This repository implements control software for the tracking antenna, which can automatically point the antenna towards the rover to ensure the best signal quality.
Start from the top-level directory of the project.
- Make a
builddirectory (if one doesn't already exist), and enter it:
mkdir -p build && cd build- Run CMake to locate libraries and generate Makefiles:
cmake ..- Compile the code:
cmake --build . -j$(nproc) # nproc will return the number of cores on your machineFinally, you can run the project with ./antenna. You can run the tests with ./tests.