generated from TDD-Templates/cmake_cpputest_template_avr
Updated with instructions on usage for development.
This commit is contained in:
parent
776e2130e3
commit
3fe9f67ade
25
README.md
25
README.md
|
@ -23,6 +23,31 @@ saved position read out of EEPROM memory.
|
||||||
|
|
||||||
### Building Hex Files
|
### 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
|
### Automated Flashing Hex Files
|
||||||
|
|
||||||
|
Builds then flashes the binary hex files onto the micro-controller
|
||||||
|
|
||||||
|
```sh
|
||||||
|
cd ./<PROJECTNAME>
|
||||||
|
echo "4" | ./otto.sh
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
### Running Tests
|
### Running Tests
|
||||||
|
|
||||||
|
The code below will run the cpputest tests in verbose and color mode.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
cd ./<PROJECTNAME>
|
||||||
|
echo "1" | ./otto.sh
|
||||||
|
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in New Issue