From 97d46bae6a0dca2f8829044dd27052df230c4c3f Mon Sep 17 00:00:00 2001 From: Glenn Ruben Bakke Date: Wed, 26 Apr 2017 00:16:14 +0200 Subject: [PATCH] nrf5/boards: decrease size of ISR region from 4k to 1k in custom feather52 linker script to get some more flash space. --- nrf5/boards/feather52/custom_nrf52832_dfu_app.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nrf5/boards/feather52/custom_nrf52832_dfu_app.ld b/nrf5/boards/feather52/custom_nrf52832_dfu_app.ld index b2b785e3d8..de737e1584 100644 --- a/nrf5/boards/feather52/custom_nrf52832_dfu_app.ld +++ b/nrf5/boards/feather52/custom_nrf52832_dfu_app.ld @@ -7,7 +7,7 @@ MEMORY { FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 0x080000 /* entire flash, 512 KiB */ FLASH_ISR (rx) : ORIGIN = 0x0001c000, LENGTH = 0x001000 /* sector 0, 4 KiB */ - FLASH_TEXT (rx) : ORIGIN = 0x0001d000, LENGTH = 0x026000 /* 152 KiB - APP - ISR */ + FLASH_TEXT (rx) : ORIGIN = 0x0001c400, LENGTH = 0x026c00 /* 152 KiB - APP - ISR */ RAM (xrw) : ORIGIN = 0x200039c0, LENGTH = 0x0c640 /* 49.5 KiB, give 8KiB headroom for softdevice */ }