diff options
| author | datdenkikniet <jcdra1@gmail.com> | 2023-04-14 21:53:56 +0200 |
|---|---|---|
| committer | datdenkikniet <jcdra1@gmail.com> | 2023-04-16 13:08:35 +0200 |
| commit | 5a9135961f34505714e23f12e4cf4bacfa492dcd (patch) | |
| tree | 14c986e17ee46a633ecce02d0f6b0c88ceb1c86b /examples/stm32f3_blinky/README.md | |
| parent | ef8046b060a375fd5e6b23d62c3a9a303bbd6e11 (diff) | |
Split remove old examples
Diffstat (limited to 'examples/stm32f3_blinky/README.md')
| -rw-r--r-- | examples/stm32f3_blinky/README.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/examples/stm32f3_blinky/README.md b/examples/stm32f3_blinky/README.md new file mode 100644 index 0000000..5152661 --- /dev/null +++ b/examples/stm32f3_blinky/README.md @@ -0,0 +1,19 @@ +# STM32F3 RTIC Blink example + +Working example of simple LED blinking application for STM32 F303 Nucleo-64 board based on the STM32F303RE chip. Example uses schedule API and peripherials access. This example is based on blue-pill blinky example. + +## How-to + +### Build + +Run `cargo +nightly build` to compile the code. If you run it for the first time, it will take some time to download and compile dependencies. + +After that, you can use for example the cargo-embed tool to flash and run it + +```bash +$ cargo +nightly embed +``` + +### Setup environment, flash and run program + +In the [Discovery Book](https://rust-embedded.github.io/discovery) you find all needed informations to setup the environment, flash the controler and run the program. |
