feat: config manager

This commit is contained in:
awalol
2026-05-05 01:17:15 +08:00
parent 572d017ec5
commit fb8624b61b
9 changed files with 263 additions and 15 deletions
+14
View File
@@ -0,0 +1,14 @@
//
// Created by awalol on 2026/5/4.
//
#ifndef DS5_BRIDGE_CMD_H
#define DS5_BRIDGE_CMD_H
#include <stdint.h>
bool is_pico_cmd(uint8_t report_id);
uint16_t pico_cmd_get(uint8_t report_id, uint8_t *buffer,uint16_t reqlen);
void pico_cmd_set(uint8_t report_id, uint8_t const *buffer,uint16_t bufsize);
#endif //DS5_BRIDGE_CMD_H