Danger-alarm/SOFTWARE-FreeRTOS/Source/boot_time.hpp

18 lines
267 B
C++
Raw Normal View History

2024-12-29 17:24:29 +08:00
#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