AI工具写的环形缓冲区

This commit is contained in:
2025-08-11 20:11:46 +08:00
parent c6c90800d4
commit 4a488429bf
13 changed files with 470 additions and 154 deletions

10
Inc/command.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef COMMAND_H
#define COMMAND_H
#include <stdint.h>
#include <stdbool.h>
void command_process(void);
void handle_command(const uint8_t *cmd, uint8_t len);
#endif // COMMAND_H