Updated with instructions on usage for development.

This commit is contained in:
jakeg00dwin 2025-02-12 16:55:30 -08:00
parent 776e2130e3
commit 3fe9f67ade
1 changed files with 25 additions and 0 deletions

View File

@ -23,6 +23,31 @@ saved position read out of EEPROM memory.
### Building Hex Files
Builds the binary hex files. They are located in the `build/src/` directory
found in the project root.
```sh
cd ./<PROJECTNAME>
echo "2" | ./otto.sh
```
### Automated Flashing Hex Files
Builds then flashes the binary hex files onto the micro-controller
```sh
cd ./<PROJECTNAME>
echo "4" | ./otto.sh
```
### Running Tests
The code below will run the cpputest tests in verbose and color mode.
```sh
cd ./<PROJECTNAME>
echo "1" | ./otto.sh
```