mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-30 20:51:41 +00:00 
			
		
		
		
	 a1a2f33459
			
		
	
	a1a2f33459
	
	
	
		
			
			Adds targets erase_flash and monitor for users not using idf.py. Closes https://github.com/espressif/esp-idf/issues/2420.
		
			
				
	
	
		
			19 lines
		
	
	
		
			660 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			660 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| # Note: we can't expand these environment variables in the main IDF CMake build,
 | |
| # because we want to expand them at flashing time not at CMake runtime (so they can change
 | |
| # without needing a CMake re-run)
 | |
| set(ESPPORT $ENV{ESPPORT})
 | |
| if(NOT ESPPORT)
 | |
|     message("Note: ${TOOL} will search for a serial port. To specify a port, set the ESPPORT environment variable.")
 | |
| else()
 | |
|     set(port_arg "-p ${ESPPORT}")
 | |
| endif()
 | |
| 
 | |
| set(ESPBAUD $ENV{ESPBAUD})
 | |
| if(NOT ESPBAUD)
 | |
|     message("Note: ${TOOL} will attempt to set baud rate automatically. "
 | |
|             "To specify a baud rate, set the ESPBAUD environment variable.")
 | |
| else()
 | |
|     set(baud_arg "-b ${ESPBAUD}")
 | |
| endif()
 | |
| 
 |