mirror of https://github.com/ARMmbed/mbed-os.git
Modify RAM size definition of ARMCC for GR-LYCHEE
I modified RAM size of ARMCC compiler for GR-LYCHEE. In case of GR-LYCHEE, RAM size is 3M Byte(including Non-Cache area), but there was a typo at MACRO definition.pull/7311/head
parent
8e170ccbd1
commit
36ad12c403
|
|
@ -46,7 +46,7 @@
|
|||
/*--------------------- RAM Configuration -----------------------------------
|
||||
*----------------------------------------------------------------------------*/
|
||||
#define __RAM_BASE 0x20000000
|
||||
#define __RAM_SIZE 0x00200000
|
||||
#define __RAM_SIZE 0x00300000
|
||||
#define __NC_RAM_SIZE 0x00100000
|
||||
#define __NM_RAM_SIZE (__RAM_SIZE - __NC_RAM_SIZE)
|
||||
#define __DATA_NC_BASE (__RAM_BASE + __NM_RAM_SIZE + 0x40000000)
|
||||
|
|
|
|||
Loading…
Reference in New Issue