-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kei
committed
Aug 21, 2017
1 parent
e0b0787
commit 47701a2
Showing
22 changed files
with
2,506 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
project/gcc/.settings/ilg.gnuarmeclipse.managedbuild.cross.prefs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
buildTools.path=D\:\\Workspace\\Tools\\GCC_ARM_ToolChain\\5_4-2016q2\\bin | ||
eclipse.preferences.version=1 | ||
toolchain.path.1287942917=D\:\\Workspace\\Tools\\GCC_ARM_ToolChain\\5_4-2016q2\\bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
/* | ||
* Placeholder to list other libraries required by the application. | ||
|
||
GROUP( | ||
) | ||
|
||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* Memory Spaces Definitions. | ||
* | ||
* Need modifying for a specific board. | ||
* FLASH.ORIGIN: starting address of flash | ||
* FLASH.LENGTH: length of flash | ||
* RAM.ORIGIN: starting address of RAM bank 0 | ||
* RAM.LENGTH: length of RAM bank 0 | ||
* | ||
* The values below can be addressed in further linker scripts | ||
* using functions like 'ORIGIN(RAM)' or 'LENGTH(RAM)'. | ||
*/ | ||
|
||
MEMORY | ||
{ | ||
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 128K | ||
RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 16K | ||
|
||
/* | ||
* Optional sections; define the origin and length to match | ||
* the the specific requirements of your hardware. The zero | ||
* length prevents inadvertent allocation. | ||
*/ | ||
CCMRAM (xrw) : ORIGIN = 0x10000000, LENGTH = 0 | ||
FLASHB1 (rx) : ORIGIN = 0x00000000, LENGTH = 0 | ||
EXTMEMB0 (rx) : ORIGIN = 0x00000000, LENGTH = 0 | ||
EXTMEMB1 (rx) : ORIGIN = 0x00000000, LENGTH = 0 | ||
EXTMEMB2 (rx) : ORIGIN = 0x00000000, LENGTH = 0 | ||
EXTMEMB3 (rx) : ORIGIN = 0x00000000, LENGTH = 0 | ||
} | ||
|
||
/* | ||
* For external ram use something like: | ||
* RAM (xrw) : ORIGIN = 0x64000000, LENGTH = 2048K | ||
* | ||
* For special RAM areas use something like: | ||
* MEMORY_ARRAY (xrw) : ORIGIN = 0x20002000, LENGTH = 32 | ||
*/ |
Oops, something went wrong.