OBSW for the EIVE project
Go to file
Robin Müller 5789e2a3b5
EIVE/eive-obsw/pipeline/pr-develop This commit looks good Details
EIVE/eive-obsw/pipeline/head This commit looks good Details
added LICENSE and NOTICE file
2021-08-20 10:43:34 +02:00
arduino@3ea528dc5f arduino update 2020-10-13 20:56:02 +02:00
automation cleanCI 2021-07-29 12:38:24 +02:00
bsp_hosted fixes for hosted 2021-08-09 18:26:34 +02:00
bsp_linux_board new busConf file, cleaning up 2021-08-17 17:11:59 +02:00
bsp_q7s cleaned up 2021-08-17 19:50:48 +02:00
cmake generating stripped executable now 2021-08-14 15:25:30 +02:00
common cleaned up 2021-08-17 19:50:48 +02:00
doc added logo 2021-07-26 11:04:56 +02:00
fsfw@1183e5739d fsfw update 2021-08-18 11:32:49 +02:00
generators ploc updater 2021-08-08 15:02:59 +02:00
linux cleaned up 2021-08-17 19:50:48 +02:00
misc added build scripts, updated proj files 2021-07-29 18:17:14 +02:00
mission cleaning up preproc defines 2021-08-17 17:48:51 +02:00
scripts one port is okay 2021-08-09 18:23:18 +02:00
test corrections and tests 2021-07-16 21:51:30 +02:00
thirdparty arcsec star tracker update 2021-07-24 15:30:34 +02:00
tmtc@261eef449e cleaned up 2021-08-17 19:50:48 +02:00
unittest linux working 2020-09-16 16:22:36 +02:00
watchdog more corrections 2021-07-29 18:33:15 +02:00
.dockerignore added dockerignore 2021-05-24 15:47:48 +02:00
.gitignore update fsfwgen 2021-08-02 11:43:49 +02:00
.gitmodules fixed merge conflicts 2021-07-23 17:48:11 +02:00
CMakeLists.txt no ARCSEC lib for Raspberry Pi 2021-08-11 18:13:43 +02:00
LICENSE added LICENSE and NOTICE file 2021-08-20 10:43:34 +02:00
NOTICE added LICENSE and NOTICE file 2021-08-20 10:43:34 +02:00
README.md one port is okay 2021-08-09 18:23:18 +02:00
docker-compose.yml trying older version 2021-06-08 15:53:38 +02:00

README.md

EIVE On-Board Software

Index

  1. General
  2. Prerequisites
  3. Building the Software
  4. Useful and Common Host Commands
  5. Setting up Prerequisites
  6. Remote Debugging
  7. Direct Debugging
  8. Transfering Files to the Q7S
  9. Q7S OBC
  10. Static Code Analysis
  11. Eclipse
  12. Running the OBSW on a Raspberry Pi
  13. FSFW

General information

Target systems:

The steps in the primary README are related to the main OBC target Q7S. The CMake build system can be used to generate build systems as well (see helper scripts in cmake/scripts:

  • Linux (Raspberry Pi): See special section below.
  • Linux Host: Uses the bsp_hosted BSP folder and the CMake Unix Makefiles generator.
  • Windows Host: Uses the bsp_hosted BSP folder, the CMake MinGW Makefiles generator and MSYS2.

Prerequisites

There is a separate prerequisites which specifies how to set up all prerequisites.

Building the OBSW and flashing it on the Q7S

  1. ARM cross-compiler installed, either as part of Vivado 2018.2 installation or as a separate download
  2. Q7S sysroot on local development machine
  3. Recommended: Eclipse or Vivado 2018.2 SDK for OBSW development
  4. [TCF agent] running on Q7S

Hardware Design

  1. Vivado 2018.2 for programmable logic design

Building the software

CMake

When using Windows, run theses steps in MSYS2.

  1. Clone the repository with

    git clone https://egit.irs.uni-stuttgart.de/eive/eive_obsw.git
    
  2. Update all the submodules

    git submodule init
    git submodule sync
    git submodule update
    
  3. Ensure that the cross-compiler is working with arm-linux-gnueabihf-gcc --version. It is recommended to set up a shell script which takes care of setting up the environment for convenience or to set up the PATH and the CROSS_COMPILE variable permanently in the .profile file.

  4. Run the CMake configuration to create the build system in a build-Debug-Q7S folder. Add -G "MinGW Makefiles in MinGW64 on Windows.

    mkdir build-Debug-Q7S && cd build-Debug-Q7S
    cmake -DTGT_BSP="arm/q7s" -DCMAKE_BUILD_TYPE=Debug -DOS_FSFW=linux ..
    cmake --build . -j
    

    You can also use provided shell scripts to perform these commands

    cd cmake/scripts/Q7S
    ./make_debug_cfg.sh
    cd ../../..
    

    This will invoke a Python script which in turn invokes CMake with the correct arguments to configure CMake for Q7S cross-compilation.

    You can build the hosted variant of the OBSW by replacing -DOS_FSFW=linux with -DOS_FSFW=host. There are also different values for -DTGT_BSP to build for the Raspberry Pi or the Beagle Bone Black: arm/raspberrypi and arm/beagleboneblack.

  5. Build the software with

    cd build-Debug-Q7S
    cmake --build . -j
    

Building in Xilinx SDK 2018.2

  1. Open Xilinx SDK 2018.2
  2. Import project
    • File → Import → C/C++ → Existing Code as Makefile Project
  3. Set build command. Replace <target> with either debug or release.
    • When on Linux right click project → Properties → C/C++ Build → Set build command to make <target> -j
      • -j causes the compiler to use all available cores
      • The target is used to either compile the debug or the optimized release build.
    • On windows create a make target additionally (Windows → Show View → Make Target)
      • Right click eive_obsw → New
      • Target name: all
      • Uncheck "Same as the target name"
      • Uncheck "Use builder settings"
      • As build command type: cmake --build .
      • In the Behaviour tab, you can enable build acceleration
  4. Run build command by double clicking the created target or by right clicking the project folder and selecting Build Project.

Useful and Common Commands (Host)

Build generation

Replace Debug with Release for release build. Add -G "MinGW Makefiles or -G "Ninja" on Windows or when ninja should be used. You can build with cmake --build . -j after build generation. You can finds scripts in cmake/scripts to perform the build commands automatically.

Q7S OBSW

mkdir build-Debug-Q7S && cd build-Debug-Q7S
cmake -DTGT_BSP=arm/q7s -DFSFW_OSAL=linux -DCMAKE_BUILD_TYPE=Debug ..
cmake --build . -j

Q7S Watchdog

mkdir build-Debug-Q7S && cd build-Debug-Q7S
cmake -DTGT_BSP=arm/q7s -DFSFW_OSAL=linux -DEIVE_BUILD_WATCHDOG=ON -DCMAKE_BUILD_TYPE=Debug ..
cmake --build . -j

Connect to EIVE flatsat

DNS

ssh eive@flatsat.eive.absatvirt.lw

IPv6

ssh eive@2001:7c0:2018:1099:babe:0:e1fe:f1a5

IPv4

ssh eive@192.168.199.227

Connecting to the serial console or ssh console

A serial console session is up permanently in a tmux session

Serial console

You can check whether the sessions exist with tmux ls

tmux a -t q7s-serial

If the session does not exist, you can create it like this

tmux new -s q7s-serial
/bin/bash
q7s_serial

Other useful tmux commands:

  • Enable scroll mode: You can press ctrl + b and then [ (AltGr + 8) to enable scroll mode. You can quit scroll mode with q.
  • Kill a tmux session: run ctrl + b and then k.
  • Detach from a tmux session: run ctrl + b and then d
  • Pipe last 3000 lines into file for copying or analysis: 1. ctrl + b and : 2. capture-pane -S -3000 + enter 3. save-buffer /tmp/tmux-output.txt + enter

SSH console

You can use the following command to connect to the Q7S with ssh:

q7s_ssh

Port forwarding for connection to TCF agent

This is a required step to connect to the tcf-agent on the Q7S, which is required for convenient remote debugging. Assuming the IPv6

ssh -L 1534:192.168.133.10:1534 eive@2001:7c0:2018:1099:babe:0:e1fe:f1a5 -t /bin/bash

You then need to connect to localhost with port 1534.

Port forwarding for file transfers with scp

ssh -L 1535:192.168.133.10:22 eive@2001:7c0:2018:1099:babe:0:e1fe:f1a5 -t /bin/bash

You then need to run scp with the -P 1535 flag with localhost as the target IP address.

Port forwarding for TMTC commanding

You can enable port forwarding for TMTC commanding with the following command:

ssh -L 1536:192.168.133.10:7301 eive@2001:7c0:2018:1099:babe:0:e1fe:f1a5 -t /bin/bash

This forwards TMTC packets on port 1536 of localhost to the TMTC reception port of the Q7S.

Set up all port forwarding at once

You can specify the -L option multiple times to set up all port forwarding at once. Example for using the UDP communication interface:

ssh -L 1534:192.168.133.10:1534 \
   -L 1535:192.168.133.10:22 \
   -L 1536:192.168.133.10:7301 \
   eive@2001:7c0:2018:1099:babe:0:e1fe:f1a5 \
   -t 'export CONSOLE_PREFIX="[Q7S Tunnel] /bin/bash'

There is also a shell script called q7s-port.sh which can be used to achieve the same.

Setting up prerequisites

Installing Vivado the the Xilinx development tools

It's also possible to perform debugging with a normal Eclipse installation by installing the TCF plugin and downloading the cross-compiler as specified in the section below. However, if you want to generate the *.xdi files necessary to update the firmware, you need to installed Vivado with the SDK core tools.

  • Install Vivado 2018.2 and Xilinx SDK. Install the Vivado Design Suite - HLx Editions - 2018.2 Full Product Installation instead of the updates. It is recommended to use the installer.

  • Install settings. In the Devices selection, it is sufficient to pick SoC → Zynq-7000:




Installing on Linux - Device List Issue

When installing on Ubuntu, the installer might get stuck at the Generating installed device list step. When this happens, you can kill the installation process (might be necessara to kill a process twice) and generate this list manually with the following commands, according to this forum entry.

  1. Install the following library

    sudo apt install libncurses5
    
  2. sudo <installRoot>/Vivado/2018.2/bin/vivado -nolog -nojournal -mode batch -source 
    <installRoot>/.xinstall/Vivado_2018.2/scripts/xlpartinfo.tcl -tclargs 
    <installRoot>/Vivado/2018.2/data/parts/installed_devices.txt
    

For Linux, you can also download a more recent version of the Linaro 8.3.0 cross-compiler from here

Installing toolchain without Vivado

You can download the toolchains for Windows and Linux from the EIVE cloud.

If wget is available (e.g. MinGW64), you can use the following command to download the toolchain for Windows

wget https://eive-cloud.irs.uni-stuttgart.de/index.php/s/rfoaistRd67yBbH/download/gcc-arm-linux-gnueabi-win.zip

or the following command for Linux (could be useful for CI/CD)

wget https://eive-cloud.irs.uni-stuttgart.de/index.php/s/MRaeA2XnMXpZ5Pp/download/gcc-arm-8.3-2019.03-x86_64-arm-linux-gnueabihf.tar.xz

Installing CMake and MSYS2 on Windows

  1. Install MSYS2 and CMake first.

  2. Open the MinGW64 console. It is recommended to set up aliases in .bashrc to navigate to the software repository quickly

  3. Run the following commands in MinGW64

    pacman -Syu
    

    It is recommended to install the full base development toolchain

    pacman -S base-devel
    

    It is also possible to only install required packages

    pacman -S mingw-w64-x86_64-cmake mingw-w64-x86_64-make mingw-w64-x86_64-gcc mingw-w64-x86_64-gdb python3
    

Installing CMake on Linux

  1. Run the following command

    sudo apt-get install cmake
    

Getting the Q7S system root

It is necessary to copy the Q7S system root to your local development machine for libraries like libgpio. You can find the system root for the Q7S, the Raspberry Pi and the Beagle Bone Black for download here here. Download it and unzip it somewhere in the Xilinx installation folder. You can use the following command if wget can be used or for CI/CD:

wget https://eive-cloud.irs.uni-stuttgart.de/index.php/s/agnJGYeRf6fw2ci/download/cortexa9hf-neon-xiphos-linux-gnueabi.tar.gz

Then, create a new environmental variables Q7S_SYSROOT and set it to the local system root path.

Setting up UNIX environment for real-time functionalities

Please note that on most UNIX environments (e.g. Ubuntu), the real time functionalities used by the UNIX pthread module are restricted, which will lead to permission errors when creating these tasks and configuring real-time properites like scheduling priorities.

To solve this issues, try following steps:

  1. Edit the /etc/security/limits.conf file and add following lines at the end:
<username>   hard   rtprio  99
<username>   soft   rtprio  99

The soft limit can also be set in the console with ulimit -Sr if the hard limit has been increased, but it is recommended to add it to the file as well for convenience. If adding the second line is not desired for security reasons, the soft limit needs to be set for each session. If using an IDE like eclipse in that case, the IDE needs to be started from the console after setting the soft limit higher there. After adding the two lines to the file, the computer needs to be restarted.

It is also recommended to perform the following change so that the unlockRealtime script does not need to be run anymore each time. The following steps raise the maximum allowed message queue length to a higher number permanently, which is required for some framework components. The recommended values for the new message length is 130.

  1. Edit the /etc/sysctl.conf file

    sudo nano /etc/sysctl.conf
    

    Append at end:

    fs/mqueue/msg_max = <newMsgMaxLen>
    

    Apply changes with:

    sudo sysctl -p
    

    A possible solution which only persists for the current session is

    echo <newMsgMax> | sudo tee /proc/sys/fs/mqueue/msg_max
    

TCF-Agent

Most of the steps specified here were already automated

  1. On reboot, some steps have to be taken on the Q7S. Set static IP address and netmask

    ifconfig eth0 192.168.133.10
    ifconfig eth0 netmask 255.255.255.0
    
  2. tcfagent application should run automatically but this can be checked with

    systemctl status tcfagent
    
  3. If the agent is not running, check whether agent is located inside usr/bin. You can run it manually there. To perform auto-start on boot, have a look at the start-up application section.

Remote Debugging

Open SSH connection to flatsat PC:

ssh eive@flatsat.eive.absatvirt.lw

or

ssh eive@2001:7c0:2018:1099:babe:0:e1fe:f1a5

or

ssh eive@192.168.199.227

If the static IP address of the Q7S has already been set, you can access it with ssh

ssh root@192.168.133.10

If this has not been done yet, you can access the serial console of the Q7S like this to set it

picocom -b 115200 /dev/ttyUSB0

The flatsat has the aliases and shell scripts q7s_ssh and q7s_serial for this task as well. If the serial port is blocked for some reason, you can kill the process using it with q7s_kill.

You can use AltGr + X to exit the picocom session.

To debug an application, first make sure a static IP address is assigned to the Q7S. Run ifconfig on the Q7S serial console.

ifconfig

Set IP address and netmask with

ifconfig eth0 192.168.133.10
ifconfig eth0 netmask 255.255.255.0

To launch application from Xilinx SDK setup port fowarding on the development machine (not on the flatsat!)

ssh -L 1534:192.168.133.10:1534 eive@2001:7c0:2018:1099:babe:0:e1fe:f1a5 -t bash

This forwards any requests to localhost:1534 to the port 1534 of the Q7S with the IP address 192.168.133.10. This needs to be done every time, so it is recommended to create an alias or shell script to do this quickly.

Note: When now setting up a debug session in the Xilinx SDK or Eclipse, the host must be set to localhost instead of the IP address of the Q7S.

Direct Debugging

  1. Assign static IP address to Q7S

    • Open serial console of Q7S (Accessible via the micro-USB of the PIM, see also Q7S user manual chapter 10.3)
    • Baudrate 115200
    • Login to Q7S:
      • user: root
      • pw: root
  2. Connect Q7S to workstation via ethernet

  3. Make sure the netmask of the ehternet interface of the workstation matches the netmask of the Q7S

    • When IP address is set to 192.168.133.10 and the netmask is 255.255.255.0, an example IP address for the workstation is 192.168.133.2
  4. Run tcf-agent on Q7S

    • Tcf-agent is not yet integrated in the rootfs of the Q7S. Therefore build tcf-agent manually
    git clone git://git.eclipse.org/gitroot/tcf/org.eclipse.tcf.agent.git
    cd org.eclipse.tcf.agent/agent
    make CC=arm-linux-gnueabihf-gcc LD=arm-linux-gnueabihf-ld MACHINE=arm NO_SSL=1 NO_UUID=1
    
    • Transfer executable agent from org.eclipse.tcf.agent/agent/obj/GNU/Linux/arm/Debug to /tmp of Q7S
    cd obj/GNU/Linux/arm/Debug
    scp agent root@192.168.133.10:/tmp
    
    • On Q7S
    cd /tmp
    chmod +x agent
    
    • Run agent
    ./agent
    
  5. In Xilinx SDK 2018.2 right click on project → Debug As → Debug Configurations

  6. Right click Xilinx C/C++ applicaton (System Debugger) → New →

  7. Set Debug Type to Linux Application Debug and Connectin to Linux Agent

  8. Click New

  9. Give connection a name

  10. Set Host to static IP address of Q7S. e.g. 192.168.133.10

  11. Test connection (This ensures the TCF Agent is running on the Q7S)

  12. Select Application tab

  • Project Name: eive_obsw
  • Local File Path: Path to eiveobsw-linux.elf (in _bin\linux\devel)
  • Remote File Path: /tmp/eive_obsw.elf

Transfering Files to the Q7S

To transfer files from the local machine to the Q7S, use port forwarding

ssh -L 1535:192.168.133.10:22 eive@2001:7c0:2018:1099:babe:0:e1fe:f1a5

An example file can be copied like this

scp -P 1535 example root@localhost:/tmp

Copying a file from Q7S to flatsat PC

scp -P 22 root@192.168.133.10:/tmp/kernel-config /tmp

From a windows machine files can be copied with putty tools (note: use IPv4 address)

pscp -scp -P 22 eive@192.168.199.227:</directory-to-example-file/>/example-file </windows-machine-path/>

More detailed information about the used q7s commands can be found in the Q7S user manual.

Q7S OBC

Launching an application at start-up

You can also do the steps performed here on a host computer inside the q7s-rootfs directory of the Q7S base repository. This might be more convenient while also allowing to update all images at once with the finished rootfs.xdi.

Load the root partiton from the flash memory (there are to nor-flash memories and each flash holds two xdi images). Note: It is not possible to modify the currently loaded root partition, e.g. creating directories. To do this, the parition needs to be mounted.

  1. Disable write protection of the desired root partition

    writeprotect 0 0 0 # unlocks nominal image on nor-flash 0  
    
  2. Mount the root partition

    xsc_mount_copy 0 0 # Mounts the nominal image from nor-flash 0
    

    The mounted partition will be located inside the /tmp folder

  3. Copy the executable to /usr/bin

  4. Make sure the permissions to execute the application are set

    chmod +x application
    
  5. Create systemd service in /etc/systemd/system. The following shows an example service.

    cat > example.service
    [Unit]
    Description=Example Service
    StartLimitIntervalSec=0
    
    [Service] 
    Type=simple
    Restart=always
    RestartSec=1
    User=root
    ExecStart=/usr/bin/application
    
    [Install]
    WantedBy=multi-user.target
    
  6. Enable the service. This is normally done with systemctl enable <service> which would create a symlink in the multi-user.target.wants directory. However, this is not possible when the service is created for a mounted root partition. It is also not possible during run time because symlinks can't be created in a read-only filesystem. Therefore, relative symlinks are used like this:

    cd etc/systemd/system/multi-user.target.wants/
    ln -s  ../example.service example.service
    

    You can check the symlinnks with ls -l

  7. The modified root partition is written back when the partion is locked again.

    writeprotect 0 0 1 
    
  8. Now verify the application start by booting from the modified image

    xsc_boot_copy 0 0
    
  9. After booting verify if the service is running

    systemctl status example
    

Current user systemd services

The following custom systemd services are currently running on the Q7S and can be found in the /etc/systemd/system folder. You can query that status of a service by running systemctl status <serviceName>.

eive-watchdog

The watchdog will create a pipe at /tmp/watchdog-pipe which can be used both by the watchdog and the EIVE OBSW. The watchdog will only read from this pipe while the OBSW will only write to this pipe. The watchdog checks for basic ASCII commands as a first basic feature set. The most important functionality is that the watchdog cant detect if a timeout has happened. This can happen beause the OBSW is hanging (or at least the CoreController thread) or there is simply now OBSW running on the system. It does to by checking whether the FIFO is regulary written to, which means the EIVE OBSW is alive.

If the EIVE OBSW is alive, a special file called /tmp/obsw-running will be created. This file can be used by any other software component to query whether the EIVE OBSW is running. The EIVE OBSW itself can be configured to check whether this file exists, which prevents two EIVE OBSW instances running on the Q7S at once.

If a timeout occurs, this special file will be deleted as well. The watchdog and its configuration will be directly integrated into this repostory, which makes adaptions easy.

tcfagent

This starts the /usr/bin/agent program to allows remote debugging. Might not be part of the mission code

eive-early-config

This is a configuration script which runs early after local-fs.target and sysinit.target Currently only pipes the output of xsc_boot_copy into the file /tmp/curr_copy.txt which can be used by other software components to read the current chip and copy.

eive-post-ntpd-config

This is a configuration scripts which runs after the Network Time Protocol has run. This script currently sets the static IP address 192.168.133.10 and starts the can interface.

PCDU

Connect to serial console of P60 Dock

picocom -b 500000 /dev/ttyUSBx

General information

cmp ident

List parameter table: x values: 1,2 or 4

param list x

Table 4 lists HK parameters Changing parameters First switch to table where parameter shall be changed (here table id is 1)

p60-dock # param mem 1
p60-dock # param set out_en[0] 1
p60-dock # param get out_en[0]
GET out_en[0] = 1

Core commands

Display currently running image:

xsc_boot_copy

Rebooting currently running image:

xsc_boot_copy -r

Setting time on Q7S

Setting date and time (only timezone UTC available)

timedatectl set-time 'YYYY-MM-DD HH:MM:SS'

Setting UNIX time

date +%s -s @1626337522

This only sets the system time and does not updating the time of the real time clock. To harmonize the system time with the real time clock run

hwclock -w

Reading the real time clock

hwclock --show

pa3tool Host Tool

The pa3tool is a host tool to interface with the ProASIC3 on the Q7S board. It was installed on the clean room PC but it can also be found on the Traq platform.

For more information, see Q7S datasheet.

Creating files with cat and echo

The only folder which can be written in the root filesystem is the tmp folder.

You can create a simple file with initial content with echo

echo "Hallo Welt" > /tmp/test.txt
cat /tmp/test.txt

For more useful combinations, see this link.

Using the scratch buffer of the ProASIC3

The ProASIC3 has a 1024 byte scratch buffer. The values in this scratch buffer will survive a reboot, so this buffer can be used as an alternative to the SD cards to exchange information between images or to store mission critical information.

You can use xsc_scratch --help for more information.

Write to scratch buffer:

xsc_scratch write TEST "1"

Read from scratch buffer:

xsc_scratch read TEST

Read all keys:

xsc_scratch read

Get fill count:

xsc_scratch read | wc -c

Using system when debugging

Please note that when using a system call in C++/C code and debugging, a new thread will be spawned which will appear on the left in Eclipse or Xilinx SDK as a sh program. The debugger might attach to this child process automatically, depending on debugger configuration, and the process needs to be selected and continued/started manually. You can enable or disable this behaviour by selecting or deselecting the Attach Process Children option in the Remote Application Configuration for the TCF plugin like shown in the following picture


Libgpiod

Detect all gpio device files:

gpiodetect

Get info about a specific gpio group:

gpioinfo <name of gpio group>

The following sets the gpio 18 from gpio group gpiochip7 to high level.

gpioset gpiochip7 18=1

Setting the gpio to low.

gpioset gpiochip7 18=0

Show options for setting gpios.

gpioset -h

To get the state of a gpio:

gpioget <gpiogroup> <offset>

Example to get state: gpioget gpiochip7 14

Both the MIOs and EMIOs can be accessed via the zynq_gpio instance which comprises 118 pins (54 MIOs and 64 EMIOs).

Xilinx UARTLIE

Get info about ttyUL* devices

cat /proc/tty/driver

I2C

Getting information about I2C device

ls /sys/class/i2c-dev/i2c-0/device/device/driver

This shows the memory mapping of /dev/i2c-0

CAN

ip link set can0 down
ip link set can0 type can loopback off
ip link set can0 up type can bitrate 1000000

Following command sends 8 bytes to device with id 99 (for petalinux)

cansend can0 -i99 99 88 77 11 33 11 22 99

For Q7S use this:

cansend can0 5A1#11.22.33.44.55.66.77.88

Turn loopback mode on:

ip link set can0 type can bitrate 1000000 loopback on 

Reading data from CAN:

candump can0

Preparation of a fresh rootfs and SD card

This section summarizes important changes between a fresh rootfs and the current EIVE implementation

rootfs

  • Mount point /mnt/sd0 created for SD card 0. Created with mkdir
  • Mount point /mnt/sd1 created for SD card 1. Created with mkdir
  • Folder scripts in /home/root folder.
  • scripts folder currently contains a few shell helper scripts
  • Folder profile.d in /etc folder which contains the path-set.sh script which is sourced at software startup
  • Library libwire.so in /usr/lib folder

SD Cards

  • Folder bin for binaries, for example the OBSW
  • Folder misc for miscellaneous files. Contains ls for directory listings
  • Folder tc for telecommands
  • Folder tm for telemetry
  • Folder xdi for XDI components (e.g. for firmware or device tree updates)

Running cppcheck on the Software

Static code analysis can be useful to find bugs. cppcheck can be used for this purpose. On Windows you can use MinGW64 to do this.

pacman -S mingw-w64-x86_64-cppcheck

On Ubuntu, install with

sudo apt-get install cppcheck

You can use the Eclipse integration or you can perform the scanning manually from the command line. CMake will be used for this.

Run the CMake build generation commands specified above but supply -DCMAKE_EXPORT_COMPILE_COMMANDS=ON to the build generation. Invoking the build command will generate a compile_commands.json file which can be used by cppcheck.

cppcheck --project=compile_commands.json --xml 2> report.xml

Finally, you can convert the generated .xml file to HTML with the following command

cppcheck-htmlreport --file=report.xml --report-dir=cppcheck --source-dir=..

Eclipse

When using Eclipse, there are two special build variables in the project properties → C/C++ Build → Build Variables called Q7S_SYSROOT or RPI_SYSROOT. You can set the sysroot path in those variables to get any additional includes like gpiod.h in the Eclipse indexer.

Setting up default Eclipse for Q7S projects - TCF agent

The TCF agent can be used to perform remote debugging on the Q7S.

  1. Install the TCF agent plugin in Eclipse from the releases. Go to Help → Install New Software and use the download page, for example https://download.eclipse.org/tools/tcf/releases/1.6/1.6.2/ to search for the plugin and install it.

  2. Go to Window → Perspective → Open Perspective and open the Target Explorer Perspective. Here, the Q7S should show up if the local port forwarding was set up as explained previously. Please note that you have to connect to localhost and port 1534 with port forwaring set up.

  3. A launch configuration was provided, but it might be necessary to adapt it for your own needs. Alternatively:

  • Create a new TCF Remote Application by pressing the cogs button at the top or going to Run → Debug Configurations → Remote Application and creating a new one there.

  • Set up the correct image in the main tab (it might be necessary to send the image to the Q7S manually once) and file transfer properties

  • It is also recommended to link the correct Eclipse project.

After that, comfortable remote debugging should be possible with the Debug button.

A build configuration and a shell helper script has been provided to set up the path variables and build the Q7S binary on Windows, but a launch configuration needs to be newly created because the IP address and path settings differ from machine to machine.

Running the EIVE OBSW on a Raspberry Pi

Special section for running the EIVE OBSW on the Raspberry Pi. The Raspberry Pi build uses the bsp_rpi BSP folder, and a very similar cross-compiler.

For running the software on a Raspberry Pi, it is recommended to follow the steps specified in the fsfw example and using the TCF agent to have a similar set-up process also required for the Q7S. You should run the following command first on your Raspberry Pi

sudo apt-get install gpiod libgpiod-dev

to install the required GPIO libraries before cloning the system root folder.

Flight Software Framework (FSFW)

An EIVE fork of the FSFW is submodules into this repository. To add the master upstream branch and merge changes and updates from it into the fork, run the following command in the fsfw folder first:

git remote add upstream https://egit.irs.uni-stuttgart.de/fsfw/fsfw.git
git remote update --prune

After that, an update can be merged by running

git merge upstream/master

Alternatively, changes from other upstreams (forks) and branches can be merged like that in the same way.