* Changes from #580 * fixes USB cancel panic * style fixes * Update src/env/tock/storage.rs Co-authored-by: Zach Halvorsen <zhalvorsen@google.com> --------- Co-authored-by: Zach Halvorsen <zhalvorsen@google.com>
15 lines
392 B
Plaintext
15 lines
392 B
Plaintext
/* Layout for the nRF52840-DK and nRF52840 dongle, used by the
|
|
* app in this repository.
|
|
*/
|
|
|
|
MEMORY {
|
|
/* The application region is 64 bytes (0x40) and we reserve 0x40000 at the end
|
|
* of the flash for the persistent storage.
|
|
*/
|
|
FLASH (X) : ORIGIN = 0x00080040, LENGTH = 0x0001FFC0
|
|
RAM (W) : ORIGIN = 0x20020000, LENGTH = 128K
|
|
}
|
|
|
|
TBF_HEADER_SIZE = 0x60;
|
|
INCLUDE libtock_layout.ld
|