Skip to content

Commit

Permalink
esp32c2: put v2.0 back to development stage
Browse files Browse the repository at this point in the history
  • Loading branch information
ginkgm authored and espressif-bot committed Nov 3, 2022
1 parent 1f9260d commit f2aa736
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ mainmenu "Espressif IoT Development Framework Configuration"
default "y" if IDF_TARGET_ESP32C6 # TODO: IDF-5630
option env="IDF_ENV_FPGA"

config IDF_CI_BUILD
bool
option env="IDF_CI_BUILD"

config IDF_TARGET_ARCH_RISCV
bool
default "n"
Expand Down
11 changes: 8 additions & 3 deletions components/esp_hw_support/port/esp32c2/Kconfig.hw_support
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,22 @@ config ESP_REV_MIN_FULL
# MAX Revision
#

comment "Maximum Supported ESP32-C2 Revision (Rev v2.9)"
comment "Maximum Supported ESP32-C2 Revision (Rev v1.99)"
# Maximum revision that IDF supports.
# It can not be changed by user.
# Only Espressif can change it when a new version will be supported in IDF.
# Supports all chips starting from ESP32C2_REV_MIN_FULL to ESP32C2_REV_MAX_FULL

config ESP32C2_REV_MAX_FULL
int
default 299
default 199
# keep in sync the "Maximum Supported Revision" description with this value

config ESP32C2_REV2_DEVELOPMENT
bool "Develop on ESP32-C2 v2.0 (Preview)"
default y if IDF_CI_BUILD

config ESP_REV_MAX_FULL
int
default ESP32C2_REV_MAX_FULL
default 299 if ESP32C2_REV2_DEVELOPMENT
default ESP32C2_REV_MAX_FULL if !ESP32C2_REV2_DEVELOPMENT

0 comments on commit f2aa736

Please sign in to comment.