NETSIM 1.2.0
Hardware-in-the-loop acoustic network simulator
 
Loading...
Searching...
No Matches
logger.proto
Go to the documentation of this file.
1syntax="proto2";
2
3package netsim.protobuf;
4
5message LoggerEvent
6{
7 enum Event
8 {
9 ALL_LOGS_CLOSED_FOR_PACKET = 1;
10 PACKET_START = 2;
11 }
12 required Event event = 1;
13
14 optional string log_dir = 2;
15 optional string start_time = 3;
16 required int32 packet_id = 4;
17
18 optional int32 tx_modem_id = 5;
19}