CI: Enable ESP8684 build stage CI on master

This commit is contained in:
Cao Sen Miao
2021-11-26 17:03:47 +08:00
parent 2764ee8caf
commit e81841318f
57 changed files with 385 additions and 40 deletions

View File

@@ -25,6 +25,8 @@ constexpr std::array<uint32_t, 4> INVALID_GPIOS = {22, 23, 24, 25};
constexpr std::array<uint32_t, 4> INVALID_GPIOS = {22, 23, 24, 25};
#elif CONFIG_IDF_TARGET_ESP32C3
constexpr std::array<uint32_t, 0> INVALID_GPIOS = {};
#elif CONFIG_IDF_TARGET_ESP8684
constexpr std::array<uint32_t, 0> INVALID_GPIOS = {};
#else
#error "No GPIOs defined for the current target"
#endif