Update platform.c

This commit is contained in:
Gabriel Wang 2022-02-19 15:30:46 +00:00
parent a2c900d27d
commit 46b3f8bde2

View File

@ -47,13 +47,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)))