To setup your environment and learn about the exercises follow the book. You can access the book in a few ways:
- On https://aerorust.org/nanosat-workshop/
- Using the Markdown (links pointing to the documentation of items in the project will not work)
- Run the included
mdbook
(Installation) book:
- Clone the repo
git clone [email protected]:AeroRust/nanosat-workshop.git && \
cd nanosat-workshop
NB: Using [email protected]:AeroRust/nanosat-workshop.git
requires SSH key set up on Github.
- Build the docs of the applications
cargo +nightly website-docs
-
Start the local book server
mdbook serve
-
Use your browser to open http://localhost:3000
cargo install [email protected]
- For
power-system
application (Olimex board)cargo run -p power-system
- For
onboard-computer
application (Espressif Rust board)cargo run -p onboard-computer
Repository PDF file: https://github.com/OLIMEX/ESP32-C3-DevKit-Lipo/raw/main/HARDWARE/ESP32-C3-DevKit-Lipo_Rev_B/ESP32-C3-DevKit-Lipo_Rev_B.pdf
Pinout, docs, schematics, etc. can be found here: https://github.com/esp-rs/esp-rust-board
Use UART0 at 21 (TX) & 20 (RX) GPIO pins.
Run minicom at correct baud rate (115 200
):
minicom -b 115200 --noinit --statline --capturefile=uart_debug.cap --wrap -D /dev/ttyUSB0
This will save all caught data in a file called uart_debug.cap
.
MIT or APACHE-2.0