Skip to content

Commit

Permalink
tests: drivers: Rename the SOC_ESP32xx targets
Browse files Browse the repository at this point in the history
Update SOC_ESP32 references to match new naming scheme.

Signed-off-by: Marek Matej <marek.matej@espressif.com>
  • Loading branch information
Marek Matej committed Jun 13, 2023
1 parent 167e1d2 commit 11d534e
Show file tree
Hide file tree
Showing 12 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tests/boards/espressif_esp32/cache_coex/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Make sure you have the ESP32 DevKitC connected over USB port.

.. code-block:: console
west build -b esp32 tests/boards/espressif_esp32/cache_coex
west build -b esp32_devkitc_wrover tests/boards/espressif_esp32/cache_coex
west flash --esp-device /dev/ttyUSB0
Sample Output
Expand Down
2 changes: 1 addition & 1 deletion tests/boards/espressif_esp32/cache_coex/testcase.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
tests:
boards.esp32.cache_coex:
platform_allow: esp32 esp32s2_saola
platform_allow: esp32_devkitc_wrover esp32s2_saola
tags:
- spiram
- spiflash
Expand Down
4 changes: 2 additions & 2 deletions tests/drivers/pwm/pwm_api/src/test_pwm.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@
#endif

#if defined(CONFIG_BOARD_COLIBRI_IMX7D_M4) || defined(CONFIG_SOC_MK64F12) || \
defined(CONFIG_SOC_MKW41Z4) || defined(CONFIG_SOC_ESP32S2) || \
defined(CONFIG_SOC_ESP32S3) || defined(CONFIG_SOC_ESP32C3)
defined(CONFIG_SOC_MKW41Z4) || defined(CONFIG_SOC_SERIES_ESP32S2) || \
defined(CONFIG_SOC_ESP32S3) || defined(CONFIG_SOC_SERIES_ESP32C3)
#define DEFAULT_PERIOD_CYCLE 1024
#define DEFAULT_PULSE_CYCLE 512
#define DEFAULT_PERIOD_NSEC 2000000
Expand Down
2 changes: 1 addition & 1 deletion tests/drivers/uart/uart_async_api/src/test_uart.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

#if DT_NODE_EXISTS(DT_NODELABEL(dut))
#define UART_NODE DT_NODELABEL(dut)
#elif defined(CONFIG_SOC_ESP32C3)
#elif defined(CONFIG_SOC_SERIES_ESP32C3)
#define UART_NODE DT_NODELABEL(uart1)
#else
#define UART_NODE DT_CHOSEN(zephyr_console)
Expand Down

0 comments on commit 11d534e

Please sign in to comment.