Skip to content

Commit

Permalink
Merge pull request #46 from dmg210/main
Browse files Browse the repository at this point in the history
add boot checksum offset for FL2
  • Loading branch information
dmg210 authored Apr 28, 2024
2 parents da783ca + 437fb45 commit a507664
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions flasher/checksum.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,33 @@
]
},
{
'name': '4mbit (FL2)',
'identification_flag_address': 0x16135, # This is a random "OK" in the middle of the prog zone.
'regions': [
{
'name': 'Boot',
'flag_address': 0x017EFE,
'init_address': 0x3F25,
'cks_address': 0x3EEC, # 663057/58
'bin_offset': 0
},
{
'name': 'Calibration',
'flag_address': 0x017EFE,
'init_address': 0x01000C,
'cks_address': 0x017EE0,
'bin_offset': -0x080000
},
{
'name': 'Program',
'flag_address': 0x17EFE,
'init_address': 0x020052,
'cks_address': 0x020010,
'bin_offset': -0x080000
}
]
},
{
'name': '4mbit',
'identification_flag_address': 0x017EFE,
'regions': [
Expand Down

0 comments on commit a507664

Please sign in to comment.