diff options
author | ThomasintAnker <thomasintanker1@gmail.com> | 2024-05-31 15:06:06 +0200 |
---|---|---|
committer | ThomasintAnker <thomasintanker1@gmail.com> | 2024-05-31 15:06:06 +0200 |
commit | 0278037aaf3fd497aae57d90f2638ceda3b12a6d (patch) | |
tree | 3354a14d4551b9524108d02971bfa42fc1ad4993 /shared/pb/mod | |
parent | b865921e5dcf2ae2d6532b88eba1a0a49998eb27 (diff) | |
parent | 18d06c79b9f6a625eb218a15c8216556fb99dc02 (diff) |
Merge branch 'wip/client' into wip/i2c-communication
Diffstat (limited to 'shared/pb/mod')
-rw-r--r-- | shared/pb/mod/main.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/shared/pb/mod/main.h b/shared/pb/mod/main.h new file mode 100644 index 0000000..56ccd3d --- /dev/null +++ b/shared/pb/mod/main.h @@ -0,0 +1,13 @@ +#pragma once + +#include "../types.h" + +typedef struct __packed { + const uint8_t addr; + const enum pb_state state; +} pb_mod_main_mod_t; + +enum __packed { + PB_MOD_MAIN_ADDR_MODS = 0x01, //!< connected puzzle modules +}; + |