git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7968 35acf78f-673a-0410-8e92-d51de3d6d3f4
parent
e921831a18
commit
88b462badf
|
@ -34,4 +34,18 @@ MEMORY
|
||||||
ram7 : org = 0x00000000, len = 0
|
ram7 : org = 0x00000000, len = 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* RAM region to be used for Main stack. This stack accommodates the processing
|
||||||
|
of all exceptions and interrupts*/
|
||||||
|
REGION_ALIAS("MAIN_STACK_RAM", ram0);
|
||||||
|
|
||||||
|
/* RAM region to be used for the process stack. This is the stack used by
|
||||||
|
the main() function.*/
|
||||||
|
REGION_ALIAS("PROCESS_STACK_RAM", ram0);
|
||||||
|
|
||||||
|
/* RAM region to be used for data segment.*/
|
||||||
|
REGION_ALIAS("DATA_RAM", ram0);
|
||||||
|
|
||||||
|
/* RAM region to be used for BSS segment.*/
|
||||||
|
REGION_ALIAS("BSS_RAM", ram0);
|
||||||
|
|
||||||
INCLUDE rules.ld
|
INCLUDE rules.ld
|
||||||
|
|
|
@ -46,7 +46,7 @@ endif
|
||||||
# If enabled, this option makes the build process faster by not compiling
|
# If enabled, this option makes the build process faster by not compiling
|
||||||
# modules not used in the current configuration.
|
# modules not used in the current configuration.
|
||||||
ifeq ($(USE_SMART_BUILD),)
|
ifeq ($(USE_SMART_BUILD),)
|
||||||
USE_SMART_BUILD = yes
|
USE_SMART_BUILD = no
|
||||||
endif
|
endif
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue