I've read through the tictoc example code,and currently trying to manipulate the connection between RSU node and vehicle node using the example code in Veins,which is RSUExampleScenario. After checking the only NED file of this example,there's only submodules for RSU nodes,which look like this
submodules:
rsu[2]: RSU {
@display("p=162,140;i=veins/sign/yellowdiamond;is=vs");
}
And I'm really confused right now cause according to what I've learned from tictoc tutorial,I should manipulate the module connection from NED file.In tictoc tutorial it looks like this
submodules:
tic: Txc1;
toc: Txc1;
connections:
tic.out --> { delay = exponential(200ms); } --> toc.in;
tic.in <-- { delay = 100ms; } <-- toc.out;
So I'm now hoping to have some suggestion to clarify my question,where's the submodule for vehicle nodes?