This commit is contained in:
Gabriel Wang 2022-02-14 17:19:28 +00:00
parent 3f10f6af37
commit 83029cc67a

View File

@ -48,13 +48,6 @@ void SysTick_Handler (void)
systimer_1ms_handler();
}
void delay_ms(uint32_t wMillisecond)
{
s_wMSCounter = wMillisecond;
while( s_wMSCounter > 0 );
}
/*! \brief initialise platform before main()
*/
__attribute__((constructor(101)))