We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdd9f30 commit be254d4Copy full SHA for be254d4
cpu/cc2538/ldscripts/cc2538.ld
@@ -18,11 +18,13 @@
18
19
INCLUDE cortexm_rom_offset.ld
20
21
+_cca_length = 44;
22
+
23
/* Memory Space Definitions: */
24
MEMORY
25
{
- rom (rx) : ORIGIN = _rom_start_addr + _rom_offset, LENGTH = _fw_rom_length
- cca : ORIGIN = 0x0027ffd4, LENGTH = 44
26
+ rom (rx) : ORIGIN = _rom_start_addr + _rom_offset, LENGTH = _fw_rom_length - _cca_length
27
+ cca : ORIGIN = 0x0027ffd4, LENGTH = _cca_length
28
sram0 : ORIGIN = 0x20000000, LENGTH = 16K /* Lost in PM2 and PM3 */
29
sram1 : ORIGIN = 0x20004000, LENGTH = 16K
30
ram (w!rx) : ORIGIN = _ram_start_addr, LENGTH = _ram_length
0 commit comments