Skip to content

Commit

Permalink
Update README.md (#34)
Browse files Browse the repository at this point in the history
Added some shortcuts to the readme
  • Loading branch information
Mikefly123 authored Oct 11, 2024
1 parent 7f44b7b commit 5da4463
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,17 @@ For CircuitPython load new software by doing the following:
import storage
storage.erase_filesystem()
```
4. The target board will now disappear and remount. Once remounted copy and paste the contents of the flight software folder for the target board from your GitHub repo.
4. The target board will now disappear and remount. Once remounted, copy and paste the contents of the flight software folder for the target board from your GitHub repo.
5. When the new files are onboard you can verify that all the hardware on the board is working properly by opening a serial connection and typing one of the two following commands:

__For Flight Controller Board__
```py
from pysquared import cubesat as c
```
__For Battery Board__
```py
from pysquared_eps import cubesat as c
```

# General Structure:
- **boot.py** This is the code that runs on boot and initializes the stack limit
Expand Down

0 comments on commit 5da4463

Please sign in to comment.