Building the OBC firmware
The following is a simple guide on building the app for the OBC.
-
Before compiling, ensure that the Python virtual environment is activated. If you do not have this configured, see Initial setup.
-
From the root directory, run the following commands:
Terminal window mkdir -p build_arm && cd build_armcmake .. -DCMAKE_BUILD_TYPE=OBCcmake --build . -
There are also plenty of extra options that you can use besides
-DCMAKE_BUILD_TYPE
by appending them to thecmake ..
command. Take a look at the CMake options guide.