Files
flatbuffers/topology.fbs

19 lines
319 B
Plaintext

namespace Topology;
struct ChannelBoardConn {
channel: ubyte;
board_id: ushort;
}
table NeighbourBlob {
curr_board_id: ushort;
num_connections: ubyte;
neighbour_connections: [ChannelBoardConn];
}
table TopologyInfo {
num_boards: ushort;
boards: [NeighbourBlob];
}
root_type TopologyInfo;