mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-31 04:59:55 +00:00 
			
		
		
		
	 0fd74a43c8
			
		
	
	0fd74a43c8
	
	
	
		
			
			Console example doesn't duplicate code in `console` component. Linenoise has been improved: it now has a parametrized command line length. It is now possible to paste data efficiently to the console. Note: this can only be done if the cursor is at the end of the line. Closes https://github.com/espressif/esp-idf/issues/7057
		
			
				
	
	
		
			18 lines
		
	
	
		
			537 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			537 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Reduce bootloader log verbosity
 | |
| CONFIG_BOOTLOADER_LOG_LEVEL_WARN=y
 | |
| CONFIG_BOOTLOADER_LOG_LEVEL=2
 | |
| 
 | |
| # 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
 | |
| 
 | |
| CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
 |