/* * communication_protocol.h * * Created on: 2024年5月18日 * Author: 34509 */ #ifndef SOFTWARE_PROTOCOL_COMMUNICATION_PROTOCOL_H_ #define SOFTWARE_PROTOCOL_COMMUNICATION_PROTOCOL_H_ #include "inc/UART.h" /* 功能码 */ typedef enum { SL_Function_Code_Read_Register = 0x30, /* 读寄存器数据 */ SL_Function_Code_Write_Register = 0x10, /* 写寄存器数据 */ SL_Function_Code_Broadcast_Scan = 0xA0, /* 广播扫描 */ SL_Function_Code_Registration_request = 0xA1, /* 注册请求 */ }SL_MsgFunctionCode; #endif /* SOFTWARE_PROTOCOL_COMMUNICATION_PROTOCOL_H_ */