Output hexdump file will be stored into the /tmp folder now.

This commit is contained in:
Kai Lauterbach 2024-04-22 18:55:34 +02:00
parent 75ee72e1b9
commit 402d8207db
2 changed files with 37 additions and 36 deletions

View file

@ -120,12 +120,12 @@ Content:
Address: 0x0F18
Content:
0: SCAN_LIST_DEFAULT
1: SCAN_LIST_ENABLED[0]
2: SCANLIST_PRIORITY_CH1[0]
3: SCANLIST_PRIORITY_CH2[0]
4: SCAN_LIST_ENABLED[1]
5: SCANLIST_PRIORITY_CH1[1]
6: SCANLIST_PRIORITY_CH2[1]
1: SCAN_LIST_ENABLED_1
2: SCANLIST_PRIORITY_CH1_1
3: SCANLIST_PRIORITY_CH2_1
4: SCAN_LIST_ENABLED_2
5: SCANLIST_PRIORITY_CH1_2
6: SCANLIST_PRIORITY_CH2_2
Address: 0x0F30
Content:
@ -148,3 +148,4 @@ LiveSeekMode
CW_KEYTYPE
CW_SPEED
CW_TONE

View file

@ -630,7 +630,7 @@ def do_download(radio):
if DEBUG_WRITE_RADIO_HEXDUMP:
hex_data = _convert_to_intel_hex(eeprom)
_save_to_hex_file(hex_data, "radio_dump.hex")
_save_to_hex_file(hex_data, "/tmp/radio_dump.hex")
return memmap.MemoryMapBytes(eeprom)