16 lines
295 B
C
Raw Normal View History

2021-09-08 21:25:52 +08:00
#include "STM32_Time.h"
2021-09-09 08:40:13 +08:00
#include <stdint.h>
2021-09-10 17:51:53 +08:00
#include "BaseObj.h"
2021-09-08 21:25:52 +08:00
#ifdef STM32G070xx
#include "stm32g0xx_hal.h"
#endif
2021-09-10 17:51:53 +08:00
void STM32_Time_sleep_ms(PikaObj* self, int ms) {
HAL_Delay(ms);
2021-09-08 21:25:52 +08:00
}
2021-09-10 17:51:53 +08:00
void STM32_Time_sleep_s(PikaObj* self, int s) {
for (int i = 0; i < s; i++) {
HAL_Delay(1000);
}
2021-09-08 21:25:52 +08:00
}