From bd9589d0ce71a2aa41c9fdf439d6de6349a09d83 Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Tue, 11 May 2021 03:04:59 +0200 Subject: nrf: add support for nrf52805, nrf52811, nrf52820 --- .github/workflows/rust.yml | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 8613f7e0d..cf70e2e5c 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -30,22 +30,31 @@ jobs: target: thumbv7em-none-eabi - package: embassy-nrf target: thumbv7em-none-eabi - features: 52810 + features: nrf52805 - package: embassy-nrf target: thumbv7em-none-eabi - features: 52832 + features: nrf52810 - package: embassy-nrf target: thumbv7em-none-eabi - features: 52833 + features: nrf52811 - package: embassy-nrf target: thumbv7em-none-eabi - features: 52840 + features: nrf52820 - package: embassy-nrf target: thumbv7em-none-eabi - features: 52840,log + features: nrf52832 - package: embassy-nrf target: thumbv7em-none-eabi - features: 52840,defmt + features: nrf52833 + - package: embassy-nrf + target: thumbv7em-none-eabi + features: nrf52840 + - package: embassy-nrf + target: thumbv7em-none-eabi + features: nrf52840,log + - package: embassy-nrf + target: thumbv7em-none-eabi + features: nrf52840,defmt - package: embassy-stm32-examples target: thumbv7em-none-eabi features: stm32f405 -- cgit From bfc7f52e6dd7b5ad12fa1f09483fa60f2732ae0c Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Mon, 17 May 2021 00:57:32 +0200 Subject: Remove stm32. stm32 developemnt continues in the `stm32-neo` branch for now. --- .github/workflows/rust.yml | 18 ------------------ 1 file changed, 18 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index cf70e2e5c..97c668aca 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -55,24 +55,6 @@ jobs: - package: embassy-nrf target: thumbv7em-none-eabi features: nrf52840,defmt - - package: embassy-stm32-examples - target: thumbv7em-none-eabi - features: stm32f405 - - package: embassy-stm32 - target: thumbv7em-none-eabi - features: stm32f405 - - package: embassy-stm32 - target: thumbv7em-none-eabi - features: stm32f446 - - package: embassy-stm32 - target: thumbv7em-none-eabi - features: stm32f405,defmt - - package: embassy-stm32 - target: thumbv6m-none-eabi - features: stm32l0x2 - - package: embassy-stm32 - target: thumbv6m-none-eabi - features: stm32l0x2,defmt - package: embassy-rp-examples target: thumbv6m-none-eabi -- cgit