mirror of
				https://github.com/alexandrebobkov/ESP-Nodes.git
				synced 2025-10-31 20:24:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			915 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			915 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Load esp32c3 ROM ELF symbols
 | |
| define target hookpost-remote
 | |
| set confirm off
 | |
|   # if $_streq((char *) 0x3ff1b878, "Sep 18 2020")
 | |
|   if (*(int*) 0x3ff1b878) == 0x20706553 && (*(int*) 0x3ff1b87c) == 0x32203831 && (*(int*) 0x3ff1b880) == 0x303230
 | |
|     add-symbol-file /home/abobkov/.espressif/tools/esp-rom-elfs/20230320/esp32c3_rev0_rom.elf
 | |
|   else
 | |
|     # if $_streq((char *) 0x3ff1a374, "Feb  7 2021")
 | |
|     if (*(int*) 0x3ff1a374) == 0x20626546 && (*(int*) 0x3ff1a378) == 0x32203720 && (*(int*) 0x3ff1a37c) == 0x313230
 | |
|       add-symbol-file /home/abobkov/.espressif/tools/esp-rom-elfs/20230320/esp32c3_rev3_rom.elf
 | |
|     else
 | |
|       echo Warning: Unknown esp32c3 ROM revision.\n
 | |
|     end
 | |
|   end
 | |
| set confirm on
 | |
| end
 | |
| 
 | |
| 
 | |
| # Load bootloader symbols
 | |
| set confirm off
 | |
|     # Bootloader elf was not found
 | |
| set confirm on
 | |
| 
 | |
| # Load application symbols
 | |
| file /home/abobkov/MyProjects/ESP-Nodes/ESP32-IDF_mqtt-ssl/build/bootloader/bootloader.elf
 |