Skip to content

Commit

Permalink
Set addresses to zero
Browse files Browse the repository at this point in the history
  • Loading branch information
sandeepmistry committed Jul 9, 2019
1 parent 8aa7631 commit 2949a51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Device.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Device::create()

if (id == "nRF52840-QIAA") {
_family = FAMILY_NRF52;
flashPtr = new NullFlash(_samba, "nRF52840-QIAA", 256, 4096, 0x20004000, 0x20008000);
flashPtr = new NullFlash(_samba, "nRF52840-QIAA", 256, 4096, 0x00000000, 0x00000000);
} else {
throw DeviceUnsupportedError();
}
Expand Down

0 comments on commit 2949a51

Please sign in to comment.