Files
blk_box_common/include/bb_expantions.hpp
T

19 lines
342 B
C++

/// Types for the BLK_BOX expantion devices
#ifndef _BB_EXPANTIONS_H
#define _BB_EXPANTIONS_H
#include <stdint.h>
#define EXPANDER_DEVICE_NAME_MAX_LEN 32
/// 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 */