mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
7e1b48e3f7
Signed-off-by: 李昂 <liang6516@outlook.com>
9 lines
134 B
C
9 lines
134 B
C
#include <stdint.h>
|
|
#include "BaseObj.h"
|
|
|
|
#include "STM32F1_common.h"
|
|
|
|
void pika_platform_sleep_ms(uint32_t ms){
|
|
HAL_Delay(ms);
|
|
}
|