diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-11 11:53:24 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-11 11:53:24 +0200 |
commit | da57aaed1295d72d8d840c69c0e08c0bcab46aee (patch) | |
tree | 7db2924bc085c2654797fe99c322fd55660b83ef /lib/pbdrv/pb-types.h | |
parent | c99e160261c2a443f61de8e073497cce1542821e (diff) |
WIP pb-read
Diffstat (limited to 'lib/pbdrv/pb-types.h')
-rw-r--r-- | lib/pbdrv/pb-types.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/pbdrv/pb-types.h b/lib/pbdrv/pb-types.h index 76292f6..0cafab5 100644 --- a/lib/pbdrv/pb-types.h +++ b/lib/pbdrv/pb-types.h @@ -1,4 +1,5 @@ #pragma once + #include <stdint.h> #include <stddef.h> @@ -14,8 +15,15 @@ extern "C" { #define __weak #endif +//! I2C address (10 or 7 bit) typedef uint16_t i2c_addr_t; +//! binary buffer struct +typedef struct { + char * data; //! pointer to data + size_t size; //! size of data +} pbdrv_buf_t; + //! puzzle bus command types enum pb_cmd_id { PB_CMD_REQ_READ, //!< request a puzzle module property |