tests: atmel_sam0: Update platform name

This update all atmel_sam0 related entries to use the new
platform name.

Signed-off-by: Gerson Fernando Budke <nandojve@gmail.com>
This commit is contained in:
Gerson Fernando Budke
2024-02-17 12:03:59 +01:00
committed by Carles Cufi
parent ccb4c63324
commit 253ee9638c
35 changed files with 15 additions and 15 deletions

View File

@@ -30,7 +30,7 @@ tests:
drivers.adc.nrf.saadc.build:
platform_allow: nrf21540dk/nrf52840
drivers.adc.sam0.build:
platform_allow: atsame54_xpro
platform_allow: same54_xpro
drivers.adc.sam.afec.build:
platform_allow: sam_e70_xplained/same70q21
drivers.adc.stm32.build:

View File

@@ -15,6 +15,6 @@ tests:
drivers.dac.mcux32.build:
platform_allow: twr_ke18f
drivers.dac.sam0.build:
platform_allow: atsamd21_xpro
platform_allow: samd21_xpro
drivers.dac.stm32.build:
platform_allow: nucleo_f091rc

View File

@@ -38,7 +38,7 @@ tests:
platform_allow: nrf52840dk/nrf52840
extra_args: SHIELD=adafruit_pca9685
drivers.pwm.sam0.tcc.build:
platform_allow: atsame54_xpro
platform_allow: same54_xpro
drivers.pwm.build.sam:
platform_allow:
- sam_e70_xplained/same70q21

View File

@@ -90,9 +90,9 @@ tests:
fixture: external_flash_mx25v1635f
drivers.flash.common.sam0:
platform_allow:
- atsamd20_xpro
- atsamr21_xpro
- atsame54_xpro
- samd20_xpro
- samr21_xpro
- same54_xpro
drivers.flash.common.gd32:
platform_allow:
- gd32vf103v_eval

View File

@@ -65,12 +65,12 @@ tests:
drivers.uart.async_api.sam0:
filter: CONFIG_SERIAL_SUPPORT_ASYNC and CONFIG_SOC_FAMILY_SAM0
platform_allow:
- atsamc21n_xpro
- atsamd21_xpro
- atsaml21_xpro
- atsamr21_xpro
- atsamr34_xpro
- atsame54_xpro
- samc21n_xpro
- samd21_xpro
- saml21_xpro
- samr21_xpro
- samr34_xpro
- same54_xpro
extra_configs:
- CONFIG_UART_SAM0_ASYNC=y
- CONFIG_DMA=y

View File

@@ -19,11 +19,11 @@
#if DT_NODE_EXISTS(DT_NODELABEL(dut))
#define UART_NODE DT_NODELABEL(dut)
#elif defined(CONFIG_BOARD_ATSAMD21_XPRO)
#elif defined(CONFIG_BOARD_SAMD21_XPRO)
#define UART_NODE DT_NODELABEL(sercom1)
#elif defined(CONFIG_BOARD_ATSAMR21_XPRO)
#elif defined(CONFIG_BOARD_SAMR21_XPRO)
#define UART_NODE DT_NODELABEL(sercom3)
#elif defined(CONFIG_BOARD_ATSAME54_XPRO)
#elif defined(CONFIG_BOARD_SAME54_XPRO)
#define UART_NODE DT_NODELABEL(sercom1)
#else
#define UART_NODE DT_CHOSEN(zephyr_console)