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 fdaf467 commit 8fa4d8dCopy full SHA for 8fa4d8d
ports/analog/linking/max32690_cktpy.ld
@@ -5,15 +5,18 @@
5
* SPDX-License-Identifier: MIT
6
*/
7
8
+/*
9
+ * FLASH_FIRMWARE: 3072 KiB - 128 KiB = 2944 KiB
10
+ *
11
+ * Start & Size for FLASH_FIRMWARE and RAM MUST be raw numbers
12
+ * b/c FLASH_FIMRWARE is parsed with Python build_memory_info.py
13
+ */
14
MEMORY {
15
ROM (rx) : ORIGIN = 0x00000000, LENGTH = 128K
- FLASH (rx) : ORIGIN = 0x10000000, LENGTH = 3M
- FLASH_FIRMWARE (rx) : ORIGIN = 0x10000000, LENGTH = 2992K
16
+ FLASH_FIRMWARE (rx) : ORIGIN = 0x10000000, LENGTH = 2944K
17
FLASH_FS (rx) : ORIGIN = 0x102E0000, LENGTH = 128K
18
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 1M
19
}
-/* Minimum flash page is 16K */
-/* FLASH FIRMWARE: 3072K [3MB] - 16K - 64K = 2992K */
20
21
SECTIONS {
22
.rom :
0 commit comments