Files
blk_box_common/include/bbnow_priv.hpp
T
2026-08-13 14:23:05 -05:00

21 lines
438 B
C++

/// Types for the BLK_BOX NOW priv protocol
#ifndef _BBNOW_PRIV_H
#define _BBNOW_PRIV_H
#include <stdint.h>
#define EXPANDER_DEVICE_NAME_MAX_LEN 32
/// The packet type for `BBNowPrivPacket`s.
enum class BBNowPrivPacketType: uint16_t {
NONE = 0,
ACK = 1,
// TODO: we will need to add more here for handshaking in the future.
DISCOVERY_RESPONSE = 2,
EXPANDER_MESSAGE = 3,
MAX = 3,
};
#endif /* _BBNOW_PRIV_H */