Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

If you select this option in the Setup Tab of the LCC (Deploy Distributed), the behaviour behavior of the whole deployment changes fundamentally . Your software is no longer deployed once locally on your device. If no NUCs are online or set up, one instance of your selected program is started for each vehicle that is online at that time, so make sure that your software can deal with getting one vehicle ID each and that the started programs can communicate with each other (if necessary). The same also holds if NUCs are set up - your software is started on the NUCs (HLCs). (Your system must have installed the full setup). Each NUC takes care of one vehicle only. If more vehicles than NUCs are online, the remaining programs will run locally on your PC.

Requirements

Use the main PC

...

Setting up the NUCs correctly

...

Provide all required packages

You need to do this before Before turning the NUCs on

  1. Start the main PC (IP: 192.168.1.249)
  2. Build the lab software (or make sure your desired version was the most recent build)

The middleware, cpm library and autostart software must be built - the build script puts data required for the software to work on the NUCs in folders that allow the NUCs to download it from the Apache Server (/var/www/html/nuc).

...

If you use Matlab you need to use the init script.  Load required data (e.g. XML configuration files), setup the reader and writer etc. Alternatively, use a script that is inspired by the init script. QOS_LOCAL_COMMUNICATION.xml is always located in ~/software/middleware/build, and precompiled DDS IDL Matlab files can always be found in ~/software/cpm_lib/dds_idl_matlab. Other files cannot be expected to be found on the NUC, unless you put them in the same folder as your own script.

Code Block
titleMATLAB example for init script
clc
script_directoy = fileparts([mfilename('fullpath') '.m']);
cd(script_directoy)

% Initialize data readers/writers...
init_script_path = fullfile('../', '/init_script.m');
assert(isfile(init_script_path), 'Missing file "%s".', init_script_path);
addpath(fileparts(init_script_path));
[matlabParticipant, stateReader, trajectoryWriter, systemTriggerReader, readyStatusWriter, trigger_stop] = init_script(matlabDomainID);
cd(script_directoy)

...

General information

Mapping of vehicle IDs

Vehicle IDs are matched to available NUC IPs The available NUCs are mapped to vehicles in an ascending order (IP ...211 → ID 1, IP NUC 11 → vehicle 1, NUC 15 → vehicle 4, ...215 → ID 4), depending on the vehicle IDs you have selected.You cannot simulate more vehicles remotely than NUCs are available - each .

Each NUC is always responsible for one vehilce only. Any further vehicle is simulated on your local devicevehicle only.

Using IDL-Datatypes and the cpm library

...

There is a folder called bash in the source code of the LCC. It contains scripts that are relevant for (remote) deployment of scripts, uploading scripts etc. You do not need to understand these scripts, but they are also used to load environment variables. You might encounter an error if you e.g. use another version of DDS than specified e.g. in environment_variables.bash. Your software might, for example, simply not start if the required variables could not be set. Make sure that you use the same package versions or change the entries accordingly.

Specifying the matlab version for HLCs on the NUCs
Anchor
matlab version on nucs
matlab version on nucs

In the aforementioned bash folder there is a file lab_control_center/bash/tmux_script.bash in which the path to the Matlab version that the NUC uses to execute the HLC scripts can be specified. For example to select MATLAB 2022a:

Code Block
languagebash
firstline45
linenumberstrue
...
#Evaluate the matlab script
    SCRIPT_NAME="${SCRIPT_NAME%%.*}" #remove .m
    /usr/local/MATLAB/R2022a/bin/matlab -logfile matlab.log -sd "${PATH_TO_SCRIPT}" -batch "${SCRIPT_NAME}(${SCRIPT_ARGS})"
...

or MATLAB 2020a:

Code Block
languagebash
firstline48
linenumberstrue
/opt/MATLAB/R2020a/bin/matlab -logfile matlab.log -sd "${PATH_TO_SCRIPT}" -batch "${SCRIPT_NAME}(${SCRIPT_ARGS})"


Integrated error checking

...

The UI indicates how many NUCs are online. The UI shows you how many NUCs are currently online (matching might take up to a minute after the NUCs have been booted and your program has started.) This can be useful for debugging or to find out on how many NUCs you can remotely distributedly deploy your program before, for the rest of your selected vehicles, the computation for those takes place locally. You can expand the section by clicking on the little triangle, thus revealing the IDs of the HLCs which are currently online: 

...

  • You are using the wrong domain ID (DDS) for the LCC. If LCC and NUCs are not within the same DDS domain, they cannot discover each other. Please check which ID you need to use.
  • Packages are missing on the NUCs. In this case, upload packages are missing on the main PC or the NUCs have not been set up correctly (e.g. the autostart task, see requirements)
  • The NUCs or your PC are not connected to the same network
  • You are not using the main Lab PC (which is recommended for remote distributed deployment)
  • The NUCs crashed

...

You can find out what to enter here if you hover over the input. You can either enter a comma-separated list that the LCC is supposed to remotely reboot (you can check if that worked by examining the online HLCs simultaneously), or you can enter a '*' to tell the LCC to reboot all currently connected NUCs.

Tip
titleTroubleshooting

The NUCs do not show up as online in the LCC despite running?

  • Set GCC 10 and G++10 as default on the main PC and all NUCs using `update-alternatives`. It is important that the same version is used on all devices (main PC + NUCs).
  • Rebuild the lab software
    • Run git clean -xdf and rebuild the lab software on the main PC with ./build_all.bash
    • Start the LCC
    • Restart NUCs
  • Update NUC scripts
    • ssh onto the NUCs, run the "lab_update" script in the "autostart" folder. The "autostart" and "lab_update" scripts should not be run as root, but as "guest" user.
    • The script may freeze, but the NUCs should still appear in the LCC. Do not terminate the "lab_update" script, but restart the NUCs (via the LCC or via the ssh connection).
  • If problems occur when running the "autostart" scripts on the NUCs, check and adjust the file/folder permissions. If necessary, you can also examine the scripts by inserting debug output.
  • Copying to the NUCs requires free memory on the main PC. The more NUCs are used, the more free memory is required. In general, problems are to be expected with less than 5GB of free memory.

The upload of your HLC-Files crashes due to denied permission?

  • The ssh-connection is established using an ssh-key without a passphrase. This ssh-key belongs to the user cpm on the Main-PC. Thus switch to this user or adapt the scripts in lab_control_center/bash temporarily to establish the ssh-connection using the guest users password.

Crash checks for your programs

...