Release rtic v2.1.0, rtic-macros v2.1.0

This commit is contained in:
Emil Fresk 2024-02-27 13:34:02 +01:00
parent b1467c62b4
commit 0b365f03eb
6 changed files with 10 additions and 11 deletions

View file

@ -8,17 +8,14 @@ license = "MIT OR Apache-2.0"
[dependencies.rtic]
path="../../rtic"
version = "=2.0"
features = ["thumbv7-backend"]
[dependencies.rtic-monotonics]
path="../../rtic-monotonics"
version = "=1.5"
features = ["cortex-m-systick"]
[dependencies.rtic-sync]
path="../../rtic-sync"
version = "=1.3"
[dependencies]
# Change stm32g431cb to your chip name, if necessary. Also change .cargo/config.toml

View file

@ -2,9 +2,7 @@
#![deny(warnings)]
#![no_main]
#![no_std]
#![feature(type_alias_impl_trait)]
use defmt::*;
use embassy_stm32::gpio::{Level, Output, Speed};
use rtic::app;
use rtic_monotonics::systick::*;
@ -32,10 +30,10 @@ mod app {
Systick::start(cx.core.SYST, 25_000_000, systick_mono_token);
let p = embassy_stm32::init(Default::default());
info!("Hello World!");
defmt::info!("Hello World!");
let mut led = Output::new(p.PC6, Level::High, Speed::Low);
info!("high");
defmt::info!("high");
led.set_high();
// Schedule the blinking task
@ -48,7 +46,7 @@ mod app {
async fn blink(_cx: blink::Context, mut led: Output<'static, embassy_stm32::peripherals::PC6>) {
let mut state = true;
loop {
info!("blink");
defmt::info!("blink");
if state {
led.set_high();
} else {