diff options
Diffstat (limited to 'client/mod.c')
-rw-r--r-- | client/mod.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/client/mod.c b/client/mod.c new file mode 100644 index 0000000..b67a61d --- /dev/null +++ b/client/mod.c @@ -0,0 +1,9 @@ +#include "pb.h" +#include "pb-mod.h" + +const char * PB_MOD_NAME = "client"; +const i2c_addr_t PB_MOD_ADDR = PB_ADDR_MOD_MAIN; + +void pb_i2c_recv(const uint8_t * buf, size_t sz) {} +void pb_i2c_send(i2c_addr_t i2c_addr, const uint8_t * buf, size_t sz) {} + |