Document how to update the SoftDevice or Bootloader.

This commit is contained in:
Michael Dietz
2016-03-07 11:26:17 +01:00
parent 8a9a2bce3d
commit 5c7d041620
2 changed files with 15 additions and 1 deletions

2
dist/hex2bin.js vendored
View File

@@ -111,7 +111,7 @@
* And we are not to send UICR data (above maxAddress) when updating the bootloader or application.
*/
return function(hex, minAddress, maxAddress) {
maxAddress = maxAddress || 0xFFFFFFFF;
maxAddress = maxAddress || 0x80000; // This will always cut off the UICR and the user will not have to every specify this parameter.
minAddress = minAddress || 0x0;
var startAddress = helperGetBinaryStartAddress(hex.split("\n"), minAddress);