tft lvgl test ok

This commit is contained in:
TuxMonkey
2026-07-20 21:59:16 +08:00
parent 8928b7c7db
commit b2169513e1
766 changed files with 443311 additions and 22 deletions

View File

@@ -0,0 +1,22 @@
#ifndef PRTS_H
#define PRTS_H
/* PRTS: Portable RoboMaster Telemetry System */
#include "robot_def.h"
#include <stdbool.h>
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
bool PRTS_Init(void);
void PRTS_UpdateStatus(float temperature_c, RobotMode_t mode);
uint32_t PRTS_Task(void);
#ifdef __cplusplus
}
#endif
#endif