From 3fe9f67aded1684a161189f5dd7d51e69e5f25d1 Mon Sep 17 00:00:00 2001 From: jakeg00dwin Date: Wed, 12 Feb 2025 16:55:30 -0800 Subject: [PATCH] Updated with instructions on usage for development. --- README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/README.md b/README.md index 4baaa81..27b876b 100644 --- a/README.md +++ b/README.md @@ -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 ./ +echo "2" | ./otto.sh + +``` + ### Automated Flashing Hex Files +Builds then flashes the binary hex files onto the micro-controller + +```sh +cd ./ +echo "4" | ./otto.sh + +``` + ### Running Tests + +The code below will run the cpputest tests in verbose and color mode. + +```sh +cd ./ +echo "1" | ./otto.sh + +```