split pub and priv

This commit is contained in:
2026-06-30 15:54:17 -05:00
parent ff98d59039
commit d28e81c510
7 changed files with 135 additions and 100 deletions
+16
View File
@@ -0,0 +1,16 @@
/// Types for the BLK_BOX expantion devices
#ifndef _BB_EXPANTIONS_H
#define _BB_EXPANTIONS_H
#include <stdint.h>
/// The expantion device ids in the BLK_BOX ecosystem.
enum class BlkBoxExpantion: uint16_t {
NONE = 0,
WIRES = 1,
TENS = 2,
MAX = 2,
};
#endif /* _BB_EXPANTIONS_H */