2025-08-12 19:56:56 +08:00

14 lines
267 B
C

#ifndef COMMAND_H
#define COMMAND_H
#include <stdint.h>
#include <stdbool.h>
bool get_sensor_report_enabled(void);
void set_sensor_report_enabled(bool enabled);
void command_process(void);
void handle_command(const uint8_t *cmd, uint8_t len);
#endif // COMMAND_H