Output hexdump file will be stored into the /tmp folder now.
This commit is contained in:
parent
75ee72e1b9
commit
402d8207db
2 changed files with 37 additions and 36 deletions
13
README.md
13
README.md
|
@ -120,12 +120,12 @@ Content:
|
||||||
Address: 0x0F18
|
Address: 0x0F18
|
||||||
Content:
|
Content:
|
||||||
0: SCAN_LIST_DEFAULT
|
0: SCAN_LIST_DEFAULT
|
||||||
1: SCAN_LIST_ENABLED[0]
|
1: SCAN_LIST_ENABLED_1
|
||||||
2: SCANLIST_PRIORITY_CH1[0]
|
2: SCANLIST_PRIORITY_CH1_1
|
||||||
3: SCANLIST_PRIORITY_CH2[0]
|
3: SCANLIST_PRIORITY_CH2_1
|
||||||
4: SCAN_LIST_ENABLED[1]
|
4: SCAN_LIST_ENABLED_2
|
||||||
5: SCANLIST_PRIORITY_CH1[1]
|
5: SCANLIST_PRIORITY_CH1_2
|
||||||
6: SCANLIST_PRIORITY_CH2[1]
|
6: SCANLIST_PRIORITY_CH2_2
|
||||||
|
|
||||||
Address: 0x0F30
|
Address: 0x0F30
|
||||||
Content:
|
Content:
|
||||||
|
@ -148,3 +148,4 @@ LiveSeekMode
|
||||||
CW_KEYTYPE
|
CW_KEYTYPE
|
||||||
CW_SPEED
|
CW_SPEED
|
||||||
CW_TONE
|
CW_TONE
|
||||||
|
|
||||||
|
|
|
@ -630,7 +630,7 @@ def do_download(radio):
|
||||||
|
|
||||||
if DEBUG_WRITE_RADIO_HEXDUMP:
|
if DEBUG_WRITE_RADIO_HEXDUMP:
|
||||||
hex_data = _convert_to_intel_hex(eeprom)
|
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)
|
return memmap.MemoryMapBytes(eeprom)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue