mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
623bffaab8
Use dedicated GPIOs in examples to show how to emulate a UART, I2C and SPI bus. (Using assembly and C)
26 lines
846 B
YAML
26 lines
846 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
|
|
- if: IDF_TARGET in ["esp32s2", "esp32s3"]
|
|
temporary: true
|
|
reason: Xtensa targets not supported yet
|