diff options
Diffstat (limited to 'tests/extmod_hardware/machine_uart_irq_break.py')
-rw-r--r-- | tests/extmod_hardware/machine_uart_irq_break.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/extmod_hardware/machine_uart_irq_break.py b/tests/extmod_hardware/machine_uart_irq_break.py index 82879c1d6e..f255e0f0e6 100644 --- a/tests/extmod_hardware/machine_uart_irq_break.py +++ b/tests/extmod_hardware/machine_uart_irq_break.py @@ -15,7 +15,8 @@ import time, sys # Configure pins based on the target. if "esp32" in sys.platform: - if "ESP32S2" in sys.implementation._machine or "ESP32C3" in sys.implementation._machine: + _machine = sys.implementation._machine + if "ESP32S2" in _machine or "ESP32C3" in _machine or "ESP32C6" in _machine: print("SKIP") raise SystemExit # ESP32 needs separate UART instances for the test |