diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2023-05-10 19:43:55 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-10 19:43:55 +0000 |
| commit | 21b0d97e17922c023a3b5d8148a414d4277f7b87 (patch) | |
| tree | d724871c3173736594811daa84abbd57b71bf105 /examples | |
| parent | cfac6d1d90f13f22bde849816919e42f4ecf9531 (diff) | |
| parent | 67d5ade4fdbb2fb4a1c13715e4829412f4007d75 (diff) | |
Merge #748
748: Fix zero prio tasks when all async tasks have default (no) arguments r=datdenkikneit a=korken89
Without this fix the default tasks get priority 1 instead of the intended 0.
Co-authored-by: Emil Fresk <emil.fresk@gmail.com>
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/rp2040_local_i2c_init/Cargo.toml | 2 | ||||
| -rw-r--r-- | examples/stm32f3_blinky/Cargo.toml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/rp2040_local_i2c_init/Cargo.toml b/examples/rp2040_local_i2c_init/Cargo.toml index 9737c99..2d004e1 100644 --- a/examples/rp2040_local_i2c_init/Cargo.toml +++ b/examples/rp2040_local_i2c_init/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" [dependencies.rtic] path = "../../rtic" -version = "=2.0.0-alpha.1" +version = "=2.0.0-alpha.2" features = ["thumbv6-backend"] [dependencies.rtic-monotonics] diff --git a/examples/stm32f3_blinky/Cargo.toml b/examples/stm32f3_blinky/Cargo.toml index 99f1009..be4d03d 100644 --- a/examples/stm32f3_blinky/Cargo.toml +++ b/examples/stm32f3_blinky/Cargo.toml @@ -9,7 +9,7 @@ version = "0.1.0" [dependencies.rtic] path = "../../rtic" -version = "=2.0.0-alpha.1" +version = "=2.0.0-alpha.2" features = ["thumbv7-backend"] [dependencies.rtic-monotonics] |
