mirror of
https://github.com/BotChain-Robots/flatbuffers.git
synced 2026-07-08 09:37:21 +02:00
19 lines
319 B
Plaintext
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; |