mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
12 lines
244 B
C
12 lines
244 B
C
#include "BL808_Time.h"
|
|
#include <FreeRTOS.h>
|
|
#include <task.h>
|
|
|
|
void BL808_Time_sleep_ms(PikaObj* self, int ms) {
|
|
vTaskDelay(pdMS_TO_TICKS(ms));
|
|
}
|
|
|
|
void BL808_Time_sleep_s(PikaObj* self, int s) {
|
|
vTaskDelay(pdMS_TO_TICKS(1000 * s));
|
|
}
|