mirror of
https://github.com/BotChain-Robots/flatbuffers.git
synced 2026-07-08 17:47:22 +02:00
Cleanup for release
This commit is contained in:
19
topology.fbs
Normal file
19
topology.fbs
Normal file
@@ -0,0 +1,19 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user