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') 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