File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ def get_platform_default_threshold(mcu):
7575 "esp32c3" : 32000 , # ESP32-C3
7676 "esp32c2" : 31600 , # ESP32-C2
7777 "esp32c6" : 31600 , # ESP32-C6
78+ "esp32c61" : 31600 , # ESP32-C61
7879 "esp32h2" : 32000 , # ESP32-H2
7980 "esp32p4" : 32000 , # ESP32-P4
8081 }
@@ -110,6 +111,7 @@ def validate_threshold(threshold, mcu):
110111 "esp32s3" : {"min" : 30000 , "max" : 32767 },
111112 "esp32p4" : {"min" : 30000 , "max" : 32767 },
112113 "esp32c6" : {"min" : 30000 , "max" : 32767 },
114+ "esp32c61" : {"min" : 30000 , "max" : 32767 },
113115 "esp32h2" : {"min" : 30000 , "max" : 32767 },
114116 }
115117
@@ -537,7 +539,7 @@ def safe_remove_sdkconfig_files():
537539flag_lib_ignore = False
538540flag_lto = False
539541
540- if mcu == "esp32c2" :
542+ if mcu == "esp32c2" or mcu == "esp32c61" :
541543 flag_custom_sdkconfig = True
542544
543545# pio lib_ignore check
You can’t perform that action at this time.
0 commit comments