为什么IAP跳转到App中会死在下面这个函数里?香主有空帮我看看吗?
void Delay(u32 nCount) { TimingDelay = nCount;
/* Enable the SysTick Counter */ SysTick_CounterCmd(SysTick_Counter_Enable); while(TimingDelay != 0) { }
/* Disable the SysTick Counter */ SysTick_CounterCmd(SysTick_Counter_Disable);
/* Clear the SysTick Counter */ SysTick_CounterCmd(SysTick_Counter_Clear);
}
|