Implement I2C

This commit is contained in:
AlexanderHD27
2025-01-03 19:54:13 +01:00
parent bac01e3a9b
commit aa9d00bf6e
29 changed files with 1467 additions and 419 deletions

View File

@@ -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;
};