From 0039996e8eeda61351eaa88ea2dd92416788e2ab Mon Sep 17 00:00:00 2001 From: bjoernQ Date: Mon, 14 Feb 2022 18:46:38 +0100 Subject: [PATCH] Remove obsolete FIXME comment, check ESP32S2 in CI builds --- .github/workflows/ci.yml | 2 +- esp-hal-common/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e29f9d648..193252824 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - chip: [esp32] + chip: [esp32, esp32s2] steps: - uses: actions/checkout@v2 - uses: esp-rs/xtensa-toolchain@afb2ca0c7eefb637832d240ae357b820a1edc2c7 diff --git a/esp-hal-common/Cargo.toml b/esp-hal-common/Cargo.toml index 54f067986..9bfbca900 100644 --- a/esp-hal-common/Cargo.toml +++ b/esp-hal-common/Cargo.toml @@ -30,8 +30,8 @@ esp32s3_pac = { package = "esp32s3", git = "https://github.com/esp-rs/esp-pacs.g [features] esp32 = ["esp32_pac", "esp32_pac/rt", "xtensa-lx/esp32", "xtensa-lx-rt/esp32", "procmacros/rtc_slow", "dual_core"] esp32c3 = ["esp32c3_pac", "esp32c3_pac/rt", "riscv", "single_core"] -esp32s2 = ["esp32s2_pac", "esp32s2_pac/rt", "xtensa-lx/esp32", "xtensa-lx-rt/esp32s2", "procmacros/rtc_slow", "single_core"] # FIXME -esp32s3 = ["esp32s3_pac", "esp32s3_pac/rt", "xtensa-lx/esp32", "xtensa-lx-rt/esp32s3", "procmacros/rtc_slow", "dual_core"] # FIXME +esp32s2 = ["esp32s2_pac", "esp32s2_pac/rt", "xtensa-lx/esp32", "xtensa-lx-rt/esp32s2", "procmacros/rtc_slow", "single_core"] +esp32s3 = ["esp32s3_pac", "esp32s3_pac/rt", "xtensa-lx/esp32", "xtensa-lx-rt/esp32s3", "procmacros/rtc_slow", "dual_core"] single_core = [] dual_core = []