application/octet-stream
•
886 B
•
32 lines
# Target ESP32-S3
CONFIG_IDF_TARGET="esp32s3"
# Flash size
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
# Custom partition table for larger app (ESP-GMF audio framework is large)
CONFIG_PARTITION_TABLE_CUSTOM=y
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv"
# Enable SPI DMA
CONFIG_SPI_MASTER_IN_IRAM=y
# Use native USB for console and auto-bootloader entry
CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG=y
# Increase main task stack for LVGL (default 3584 is too small)
CONFIG_ESP_MAIN_TASK_STACK_SIZE=16384
# PSRAM disabled for now - crashes during init, needs investigation
# CONFIG_SPIRAM=y
# LVGL memory settings
CONFIG_LV_MEM_SIZE_KILOBYTES=32
# CJK font support (Japanese/Chinese/Korean)
CONFIG_LV_FONT_SOURCE_HAN_SANS_SC_14_CJK=y
# FAT filesystem long filename support (heap-based)
CONFIG_FATFS_LFN_HEAP=y
# ESP-GMF audio codec support (enabled via menuconfig or component defaults)