Compare commits

...

2 commits

Author SHA1 Message Date
Kai Lauterbach 24b609f0d5 Output hexdump file will be stored into the /tmp folder now. 2024-04-22 18:55:56 +02:00
Kai Lauterbach 5e01017430 Removed trailing spaces and renamed some content 2024-04-22 18:55:34 +02:00
2 changed files with 114 additions and 114 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:

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)