Implement I2C
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
enum CI_Instruction_Type {
|
||||
CI_INSTRUCTION_SEND_TRANMISSION_ERROR
|
||||
};
|
||||
|
||||
struct CI_Instruction_Transport {
|
||||
CI_Instruction_Type type;
|
||||
uint32_t addr;
|
||||
char data[16];
|
||||
};
|
||||
|
||||
struct CI_Instruction_Data_SEND_TRANMISSION_ERROR {
|
||||
bool rx;
|
||||
uint32_t addr;
|
||||
};
|
||||
Reference in New Issue
Block a user