mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 14:14:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			307 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			307 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
set pagination off
 | 
						|
# Connect to a running instance of OpenOCD
 | 
						|
target remote 127.0.0.1:3333
 | 
						|
# Reset and halt the target
 | 
						|
mon reset halt
 | 
						|
# Run to a specific point in ROM code,
 | 
						|
#  where most of initialization is complete.
 | 
						|
thb *0x40047654
 | 
						|
c
 | 
						|
# Load the application into RAM
 | 
						|
load
 | 
						|
# Run till app_main
 | 
						|
tb app_main
 | 
						|
c
 |