FreeRTOS Add Boot Time

This commit is contained in:
2024-12-29 17:24:29 +08:00
parent dbfdce8ec9
commit f4f1772db6
8 changed files with 85 additions and 6 deletions

View File

@@ -0,0 +1,17 @@
#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