From c79485c286d96ca7b1d0bdeb7360488b838a841e Mon Sep 17 00:00:00 2001 From: Ulf Lilleengen Date: Tue, 21 Sep 2021 13:42:27 +0200 Subject: Support for STM32L1 * Add RCC * Fix more issues with dash in chip names * Update stm32-data version * Add blinky and spi example --- .github/workflows/rust.yml | 5 +++++ 1 file changed, 5 insertions(+) (limited to '.github/workflows') diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 79a5ad796..5cdf75d7b 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -78,6 +78,9 @@ jobs: - package: embassy-stm32 target: thumbv6m-none-eabi features: stm32l072cz,defmt + - package: embassy-stm32 + target: thumbv7m-none-eabi + features: stm32l151cb-a,defmt - package: examples/stm32f4 target: thumbv7em-none-eabi - package: examples/stm32l4 @@ -86,6 +89,8 @@ jobs: target: thumbv7em-none-eabi - package: examples/stm32l0 target: thumbv6m-none-eabi + - package: examples/stm32l1 + target: thumbv7m-none-eabi - package: examples/stm32wb55 target: thumbv7em-none-eabihf - package: examples/stm32wl55 -- cgit