You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`freertos-cargo-build` depends on the [cc crate](https://docs.rs/crate/cc). So the C compiler
62
-
used can be set by using the `CC` enviroment variable or otherwise defined by internal
61
+
used can be set by using the `CC` enviroment variable or otherwise defined by internal
63
62
defaults. For the ARM architecture this is the `arm-none-eabi-gcc` which can be found [here](https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-rm/downloads).
64
63
64
+
Install:
65
+
```shell
66
+
# on Ubuntu
67
+
sudo apt-get install -y gcc-arm-none-eabi
68
+
# on Windows
69
+
scoop install gcc-arm-none-eabi
70
+
```
71
+
65
72
## Examples
66
73
To get started there are examples in [freertos-rust-examples](freertos-rust-examples) for:
67
74
68
75
* Cortex M33 (nRF9160)
69
-
* Cortex M3 (STM32L151CBU6A)
70
-
* Cortex M4 (STM32F411CEU6)
76
+
* Cortex M3 (STM32F103C8)
77
+
* Cortex M4 (STM32F411CE)
71
78
* Windows
72
79
* ...more to come...
73
80
@@ -80,7 +87,3 @@ To get started there are examples in [freertos-rust-examples](freertos-rust-exam
80
87
This repository is using the MIT License. Some parts might state different licenses that need to be respected when used.
81
88
82
89
* The [Linux port](https://github.com/michaelbecker/freertos-addons) is licensed under GPLv2
0 commit comments