Written for Bailey Fait. An embedded system that makes use of LoRa and compass modules to direct the modules towards eachother.
Find a file
2024-09-26 16:53:33 -07:00
.template_files
build
docs
inc moved the gps baud rate magic number into header as a define. 2024-09-26 16:51:51 -07:00
mocks
src Added clarifying comment of inclusion of RH_RF95.h 2024-09-26 16:53:33 -07:00
tests Added empty test for the Radio module. 2024-09-26 16:22:25 -07:00
.clang-format
.gitignore
.gitmodules
CMakeLists.txt
compile_commands.json
Doxyfile
multi-tracker.ino Changed project to make use of symlinks for the INO file. 2024-09-26 16:37:36 -07:00
otto.sh
README.md
setup.sh

Multi-Tracker(LINX)

Description

BOM(Bill of Materials)

Building

Main Project

Using Arduino IDE

  1. Install the Arduino IDE if not installed.
  2. Using the library manager in the IDE install the dependencies.
  3. Connect the micro-controller
  4. Select your development boards version and connection under the drop-down.
  5. Click the Upload button to flash the program.

Tests

Requirements:

  • CppUTest 3.X
  • Bash shell
echo "1" | ./otto.sh

The above command runs the automation script otto.sh that automates the process of running tests for the project.

Documentation

Requirements:

  • Doxygen
  • Terminal/Shell

The project's documentation is generated through documentation comments that are held within the source files. You can use the command below to generate the documentation from terminal.

doxygen ./Doxyfile

Resources:

Project Directory Overview

Below you can find a list of the root directory. The project contains the source files for arduino as well as the needed files for unit testing in the future.

tree -L 1
.
├── build
├── CMakeLists.txt
├── compile_commands.json -> ./build/compile_commands.json
├── docs
├── Doxyfile
├── inc
├── LINX_SOFTWARE-COMMENTED.ino
├── mocks
├── otto.sh
├── README.md
├── setup.sh
├── src
└── tests

6 directories, 7 files

Project Dependencies

  • RadioHead RFM9x Library
  • TinyGPS++