You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8C63XX/TARGET_MCU_PSOC6_M0/device/TOOLCHAIN_ARM_STD/cy8c6xx7_cm0plus.sct
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@
35
35
#endif
36
36
37
37
#if !defined(MBED_ROM_SIZE)
38
-
#define MBED_ROM_SIZE 0x78000
38
+
#define MBED_ROM_SIZE 0x80000
39
39
#endif
40
40
41
41
#if !defined(MBED_RAM_START)
@@ -62,7 +62,7 @@
62
62
#define FLASH_START MBED_ROM_START
63
63
#define FLASH_SIZE MBED_ROM_SIZE
64
64
65
-
; The following defines describe a 32K flash region used for EEPROM emulation.
65
+
; The following defines describe a 32K flash region used for EEPROM emulation.
66
66
; This region can also be used as the general purpose flash.
67
67
; You can assign sections to this memory region for only one of the cores.
68
68
; Note some middleware (e.g. BLE, Emulated EEPROM) can place their data into this memory region.
Copy file name to clipboardExpand all lines: targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8C63XX/TARGET_MCU_PSOC6_M0/device/TOOLCHAIN_GCC_ARM/cy8c6xx7_cm0plus.ld
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ ENTRY(Reset_Handler)
33
33
#endif
34
34
35
35
#if !defined(MBED_ROM_SIZE)
36
-
#define MBED_ROM_SIZE 0x78000
36
+
#define MBED_ROM_SIZE 0x80000
37
37
#endif
38
38
39
39
#if !defined(MBED_RAM_START)
@@ -63,7 +63,7 @@ MEMORY
63
63
* where 'xx' is the device group; for example, 'cy8c6xx7_cm4_dual.ld'.
Copy file name to clipboardExpand all lines: targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8C63XX/TARGET_MCU_PSOC6_M0/device/TOOLCHAIN_IAR/cy8c6xx7_cm0plus.icf
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ if (!isdefinedsymbol(MBED_ROM_START)) {
34
34
}
35
35
36
36
if (!isdefinedsymbol(MBED_ROM_SIZE)) {
37
-
define symbol MBED_ROM_SIZE = 0x78000;
37
+
define symbol MBED_ROM_SIZE = 0x80000;
38
38
}
39
39
40
40
if (!isdefinedsymbol(MBED_RAM_START)) {
@@ -59,7 +59,7 @@ define symbol __ICFEDIT_region_IRAM1_start__ = MBED_RAM_START;
59
59
define symbol __ICFEDIT_region_IRAM1_end__ = (MBED_RAM_START + MBED_RAM_SIZE);
60
60
/* Flash */
61
61
define symbol __ICFEDIT_region_IROM1_start__ = MBED_ROM_START;
62
-
define symbol __ICFEDIT_region_IROM1_end__ = (MBED_ROM_START + MBED_ROM_SIZE);
62
+
define symbol __ICFEDIT_region_IROM1_end__ = (MBED_ROM_START + MBED_ROM_SIZE - 0x8000);
63
63
64
64
/* The following symbols define a 32K flash region used for EEPROM emulation.
65
65
* This region can also be used as the general purpose flash.
0 commit comments