mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-31 13:09:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			631 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			631 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Increase main task stack size
 | |
| CONFIG_ESP_MAIN_TASK_STACK_SIZE=7168
 | |
| 
 | |
| # Enable filesystem
 | |
| CONFIG_PARTITION_TABLE_CUSTOM=y
 | |
| CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions_example.csv"
 | |
| CONFIG_PARTITION_TABLE_FILENAME="partitions_example.csv"
 | |
| 
 | |
| # Enable FreeRTOS stats formatting functions, needed for 'tasks' command
 | |
| CONFIG_FREERTOS_USE_TRACE_FACILITY=y
 | |
| CONFIG_FREERTOS_USE_STATS_FORMATTING_FUNCTIONS=y
 | |
| 
 | |
| # Run FreeRTOS only on the first core
 | |
| CONFIG_FREERTOS_UNICORE=y
 | |
| 
 | |
| CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
 | |
| 
 | |
| # Disable watch dog
 | |
| CONFIG_ESP_INT_WDT=n
 | |
| CONFIG_ESP_TASK_WDT=n
 | |
| 
 | |
| # Enable lwIP IRAM optimization
 | |
| CONFIG_LWIP_IRAM_OPTIMIZATION=y
 | 
