mirror of
https://git.aixiao.me/aixiao/Danger-alarm.git
synced 2025-07-29 19:13:39 +08:00
18 lines
267 B
C++
18 lines
267 B
C++
#ifndef BOOT_TIME_H
|
|
#define BOOT_TIME_H
|
|
|
|
/* Scheduler include files. */
|
|
#include "FreeRTOS.h"
|
|
#include "task.h"
|
|
#include "semphr.h"
|
|
#include "queue.h"
|
|
|
|
#include <cstring>
|
|
#include "pico/stdlib.h"
|
|
|
|
#define BUFER 256
|
|
|
|
extern void BOOT_TIME(void *pvParameters);
|
|
|
|
#endif
|