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.
2 parents a6316c4 + 4a84e0d commit c430027Copy full SHA for c430027
memory.x
@@ -3,9 +3,14 @@ MEMORY
3
/* NOTE K = KiBi = 1024 bytes */
4
FLASH : ORIGIN = 0x08000000, LENGTH = 1M
5
RAM : ORIGIN = 0x20000000, LENGTH = 128K
6
+ CCRAM : ORIGIN = 0x10000000, LENGTH = 64K
7
}
8
9
/* This is where the call stack will be allocated. */
10
/* The stack is of the full descending type. */
11
/* NOTE Do NOT modify `_stack_start` unless you know what you are doing */
12
_stack_start = ORIGIN(RAM) + LENGTH(RAM);
13
+
14
+/* Advanced users can place the stack inthe CCRAM */
15
+/* which is smaller but faster. */
16
+/* _stack_start = ORIGIN(CCRAM) + LENGTH(CCRAM); */
0 commit comments