start on priv

This commit is contained in:
2026-07-19 14:19:33 -05:00
parent d28e81c510
commit de3572385b
3 changed files with 16 additions and 4 deletions
+13
View File
@@ -3,4 +3,17 @@
#ifndef _BBNOW_PRIV_H
#define _BBNOW_PRIV_H
#include <stdint.h>
#define EXPANDER_DEVICE_NAME_MAX_LEN 32
/// The packet type for `BBNowPubPacket`s.
enum class BBNowPrivPacketType: uint16_t {
NONE = 0,
ACK = 1,
DISCOVERY_RESPONSE = 2,
EXPANDER_MESSAGE = 3,
MAX = 3,
};
#endif /* _BBNOW_PRIV_H */