File tree Expand file tree Collapse file tree 3 files changed +15
-15
lines changed
Expand file tree Collapse file tree 3 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -102,11 +102,11 @@ extra_scripts =
102102 post:./scripts/copy_webots_shared_libs.py
103103
104104; Custom options (https://docs.platformio.org/en/latest/scripting/examples/platformio_ini_custom_options.html)
105- webots_ip_address = 127.0.0.1 ; IP address of the Webots simulation, which is used for TCP communication
106- webots_protocol = ipc ; [ipc|tcp] - ipc is faster but only works on the same machine, tcp works also over network
107- webots_robot_name = ZumoComSystem
108- webots_robot_serial_rx_channel = 4
109- webots_robot_serial_tx_channel = 3
105+ custom_webots_ip_address = 127.0.0.1 ; IP address of the Webots simulation, which is used for TCP communication
106+ custom_webots_protocol = ipc ; [ipc|tcp] - ipc is faster but only works on the same machine, tcp works also over network
107+ custom_webots_robot_name = ZumoComSystem
108+ custom_webots_robot_serial_rx_channel = 4
109+ custom_webots_robot_serial_tx_channel = 3
110110
111111; *****************************************************************************
112112; PC target environment for tests
Original file line number Diff line number Diff line change 1919; Webots directory, e.g. WEBOTS_HOME=C:\Users\<user>\AppData\Local\Programs\Webots
2020; *****************************************************************************
2121[target:Sim]
22- webots_ip_address = 127.0.0.1 ; IP address of the Webots simulation, which is used for TCP communication
23- webots_protocol = ipc ; [ipc|tcp] - ipc is faster but only works on the same machine, tcp works also over network
24- webots_robot_name = ZumoComSystem
25- webots_robot_serial_rx_channel = 4
26- webots_robot_serial_tx_channel = 3
22+ custom_webots_ip_address = 127.0.0.1 ; IP address of the Webots simulation, which is used for TCP communication
23+ custom_webots_protocol = ipc ; [ipc|tcp] - ipc is faster but only works on the same machine, tcp works also over network
24+ custom_webots_robot_name = ZumoComSystem
25+ custom_webots_robot_serial_rx_channel = 4
26+ custom_webots_robot_serial_tx_channel = 3
Original file line number Diff line number Diff line change 4040OS_PLATFORM_TYPE_MACOS = "Darwin"
4141OS_PLATFORM_TYPE = platform .system ()
4242
43- WEBOTS_IP_ADDRESS = env .GetProjectOption ("webots_ip_address " ) # pylint: disable=undefined-variable
44- WEBOTS_PROTOCOL = env .GetProjectOption ("webots_protocol " ) # pylint: disable=undefined-variable
43+ WEBOTS_IP_ADDRESS = env .GetProjectOption ("custom_webots_ip_address " ) # pylint: disable=undefined-variable
44+ WEBOTS_PROTOCOL = env .GetProjectOption ("custom_webots_protocol " ) # pylint: disable=undefined-variable
4545
46- ROBOT_NAME = env .GetProjectOption ("webots_robot_name " ) # pylint: disable=undefined-variable
46+ ROBOT_NAME = env .GetProjectOption ("custom_webots_robot_name " ) # pylint: disable=undefined-variable
4747
48- ROBOT_SERIAL_RX_CHANNEL = env .GetProjectOption ("webots_robot_serial_rx_channel " ) # pylint: disable=undefined-variable
49- ROBOT_SERIAL_TX_CHANNEL = env .GetProjectOption ("webots_robot_serial_tx_channel " ) # pylint: disable=undefined-variable
48+ ROBOT_SERIAL_RX_CHANNEL = env .GetProjectOption ("custom_webots_robot_serial_rx_channel " ) # pylint: disable=undefined-variable
49+ ROBOT_SERIAL_TX_CHANNEL = env .GetProjectOption ("custom_webots_robot_serial_tx_channel " ) # pylint: disable=undefined-variable
5050
5151PROGRAM_PATH = "$BUILD_DIR/"
5252PROGRAM_OPTIONS = '--cfgFilePath "../../../data/config/config.json" ' \
You can’t perform that action at this time.
0 commit comments