I2C shell implementation.
This commit is contained in:
Totoo
2024-11-08 11:46:27 +01:00
committed by GitHub
parent c31fef0535
commit 5020e5bd28
13 changed files with 298 additions and 19 deletions

View File

@@ -0,0 +1,13 @@
#ifndef I2CDEVMANAGER_C_API_H
#define I2CDEVMANAGER_C_API_H
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
int oNofityI2cFromShell(uint8_t* buff, size_t len);
#ifdef __cplusplus
}
#endif
#endif