wIP TCP/IP stack demonstration for STM32F107xx connectivity line microcontrollers 演示程序中, 在main.c 文件里,有一段用systick 延时的函数
void Delay(uint32_t nCount)
{
/* Capture the current local time */
timingdelay = LocalTime + nCount;
/* wait until the desired delay finish */
while(timingdelay > LocalTime)
{
}
}
当LocalTime处于 0xfff0时, 需要延时 nCount = 0x100 时长,
在这个函数中,不是没有经过延时就return了吗?
是否这里错误了?
|