mirror of
https://github.com/ruvnet/RuView
synced 2026-06-09 10:13:17 +00:00
e22a24714a
- Default sdkconfig.defaults to esp32c6 - Fix removed SOC_* macros for ESP-IDF v6; probe_peripherals split for S3 vs C6. - Banner and WiFi/BLE/power strings are target-aware; add CHIP_ESP32C6 name. - Ignore esp32-hello-world/sdkconfig.old from idf.py set-target. Signed-off-by: Chaitanya Tata <chaitanya@dotstarconsulting.com> Co-authored-by: Cursor <cursoragent@cursor.com>
19 lines
515 B
Plaintext
19 lines
515 B
Plaintext
# ESP32 Hello World — SDK Configuration (default: ESP32-C6)
|
|
CONFIG_IDF_TARGET="esp32c6"
|
|
|
|
# Flash: 4MB (this chip has Embedded Flash 4MB)
|
|
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
|
|
CONFIG_ESPTOOLPY_FLASHSIZE="4MB"
|
|
|
|
# Enable WiFi CSI so we can probe it
|
|
CONFIG_ESP_WIFI_CSI_ENABLED=y
|
|
|
|
# Verbose logging so user sees everything
|
|
CONFIG_LOG_DEFAULT_LEVEL_INFO=y
|
|
|
|
# Bigger main task stack for printf-heavy capability dump
|
|
CONFIG_ESP_MAIN_TASK_STACK_SIZE=8192
|
|
|
|
# Enable temperature sensor driver
|
|
CONFIG_SOC_TEMP_SENSOR_SUPPORTED=y
|