generated from hulk/gd32e23x_template_cmake_vscode
11 lines
182 B
C
11 lines
182 B
C
#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
|