Renamed from spelling mistake

This commit is contained in:
Thomas Wilkie 2023-12-03 19:05:53 +09:00
parent e4fca83e2e
commit 83fc44037e
2 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@ This is the program which scans through the code and changes the debug tokens to
## Usage
Runs over the files passed in and outputs to a reference file. There are optional arguments with defaults given below. Any argument not before a "-X" marker will be taken as an input file path.
Runs over the files passed in and outputs to a reference file. There are optional arguments with defaults given below. Any argument not before a "-O/D/R/..." marker will be taken as an input file path.
Keep in mind that (in Windows 10 powershell) if you pass in a path with a wildcard, i.e. "src/*.c" then that path will be expanded by Powershell before being passed to the app. I.e. the app will automatically receive multiple arguments of the expanded file paths.

View File

@ -4,11 +4,11 @@ This program runs while the device is being run and catches the unique ID's sent
## Usage
Currently it takes 4 arguments, the location of the `References.txt` file, the COM port to open, the desired baudrate, and the test string to send over the com port.
Currently it takes 4 arguments, the location of the `References.txt` file, the COM port to open, the desired baudrate, and the test string to send over the com port. There are other things that could be added in future but this is enough for now.
## Compilation
From the parent folder:
From the parent folder, `make build_rsvr`, or:
`gcc -o Receiver/app.exe Receiver/main.c Receiver/SerialComms.c -I Receiver -Wall --pedantic`