esp-idf/examples/peripherals/dedicated_gpio/.build-test-rules.yml
Omar Chebib 801f934ac9 Dedicated GPIO: add software UART implementation for Xtensa targets
The software UART example is now compatible with Xtensa targets that have dedicated GPIOs. In other words, this example is now compatible with ESP32-S2 and ESP32-S3.
2023-04-14 15:31:34 +08:00

23 lines
730 B
YAML

# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
examples/peripherals/dedicated_gpio/soft_i2c:
disable:
- if: SOC_DEDICATED_GPIO_SUPPORTED != 1
temporary: false
reason: Target doesn't support dedicated GPIO
examples/peripherals/dedicated_gpio/soft_spi:
disable:
- if: SOC_DEDICATED_GPIO_SUPPORTED != 1
temporary: false
reason: Target doesn't support dedicated GPIO
- if: IDF_TARGET in ["esp32s2", "esp32s3"]
temporary: true
reason: Xtensa targets not supported yet
examples/peripherals/dedicated_gpio/soft_uart:
disable:
- if: SOC_DEDICATED_GPIO_SUPPORTED != 1
temporary: false
reason: Target doesn't support dedicated GPIO