Skip to content

Commit

Permalink
Jolt.js: Increase Storage area from 40kb to 400kb
Browse files Browse the repository at this point in the history
  • Loading branch information
gfwilliams committed Oct 3, 2024
1 parent 6af8c75 commit c543895
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
Ensure x%Infinity===x (fix #2542)
Bangle.js: Remove meridian from default locale.time function (to match 'Languages' app)
nRF5x: When finding the CCCD for a Bluetooth Characteristic, now check at +2 as well as +1 (fix Bluefruit NUS TX)
Jolt.js: Increase Storage area from 40kb to 400kb

2v24 : Bangle.js2: Add 'Bangle.touchRd()', 'Bangle.touchWr()'
Bangle.js2: After Bangle.showTestScreen, put Bangle.js into a hard off state (not soft off)
Expand Down
6 changes: 3 additions & 3 deletions boards/JOLTJS.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@
'adc' : 1,
'dac' : 0,
'saved_code' : {
'address' : ((246 - 10) * 4096), # Bootloader takes pages 248-255, FS takes 246-247
'address' : ((246 - 100) * 4096), # Bootloader takes pages 248-255, FS takes 246-247
'page_size' : 4096,
'pages' : 10,
'flash_available' : 1024 - ((31 + 8 + 2 + 10)*4) # Softdevice uses 31 pages of flash, bootloader 8, FS 2, code 10. Each page is 4 kb.
'pages' : 100,
'flash_available' : 1024 - ((31 + 8 + 2 + 100)*4) # Softdevice uses 31 pages of flash, bootloader 8, FS 2, code 100. Each page is 4 kb.
},
};

Expand Down

0 comments on commit c543895

Please sign in to comment.