diff options
Diffstat (limited to 'esp8266/makeimg.py')
-rw-r--r-- | esp8266/makeimg.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/esp8266/makeimg.py b/esp8266/makeimg.py index 1ac681cb74..e63f956bdd 100644 --- a/esp8266/makeimg.py +++ b/esp8266/makeimg.py @@ -1,5 +1,7 @@ import sys +SEGS_MAX_SIZE = 0x9000 + assert len(sys.argv) == 4 with open(sys.argv[3], 'wb') as fout: @@ -9,7 +11,7 @@ with open(sys.argv[3], 'wb') as fout: fout.write(data_flash) print('flash ', len(data_flash)) - pad = b'\xff' * (0x10000 - len(data_flash)) + pad = b'\xff' * (SEGS_MAX_SIZE - len(data_flash)) fout.write(pad) print('padding ', len(pad)) @@ -18,4 +20,4 @@ with open(sys.argv[3], 'wb') as fout: fout.write(data_rom) print('irom0text', len(data_rom)) - print('total ', 0x10000 + len(data_rom)) + print('total ', SEGS_MAX_SIZE + len(data_rom)) |