Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
f2eb4618
Commit
f2eb4618
authored
8 years ago
by
Hauke Petersen
Browse files
Options
Downloads
Patches
Plain Diff
boards/spark-core: added custom linkerscript
parent
ecb24e55
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
boards/spark-core/Makefile.include
+3
-0
3 additions, 0 deletions
boards/spark-core/Makefile.include
cpu/stm32f1/ldscripts/stm32f103cb_sparkcore.ld
+30
-0
30 additions, 0 deletions
cpu/stm32f1/ldscripts/stm32f103cb_sparkcore.ld
with
33 additions
and
0 deletions
boards/spark-core/Makefile.include
+
3
−
0
View file @
f2eb4618
...
...
@@ -2,6 +2,9 @@
export
CPU
=
stm32f1
export
CPU_MODEL
=
stm32f103cb
# the spark-core uses its own custom linkerscript...
export
LINKER_SCRIPT
=
stm32f103cb_sparkcore.ld
# set the default port
export
PORT
?=
/dev/ttyUSB0
...
...
This diff is collapsed.
Click to expand it.
cpu/stm32f1/ldscripts/stm32f103cb_sparkcore.ld
0 → 100644
+
30
−
0
View file @
f2eb4618
/*
* Copyright (C) 2015 Freie Universität Berlin
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @addtogroup cpu_stm32f1
* @{
*
* @file
* @brief Spark-core specific memory definitions for the STM32F103CB
*
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
*
* @}
*/
MEMORY
{
rom (rx) : ORIGIN = 0x08005000, LENGTH = 128K-0x5000
ram (xrw) : ORIGIN = 0x20000000, LENGTH = 20K
cpuid (r) : ORIGIN = 0x1ffff7e8, LENGTH = 12
}
_cpuid_address = ORIGIN(cpuid);
INCLUDE cortexm_base.ld
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment