Skip to content

Commit

Permalink
Merge pull request #3725 from avmelnikoff/cpu/stm32f1
Browse files Browse the repository at this point in the history
cpu/stm32f1: added stm32f103c8 linkerscript
  • Loading branch information
haukepetersen committed Sep 7, 2015
2 parents f3c0960 + 8d47f83 commit 92c8f27
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions cpu/stm32f1/ldscripts/stm32f103c8.ld
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/*
* Copyright (C) 2015 Alexander Melnikov <avmelnikoff@gmail.com>
*
* 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 Memory definitions for the STM32F103C8
*
* @author Alexander Melnikov <avmelnikoff@gmail.com>
*
* @}
*/

MEMORY
{
rom (rx) : ORIGIN = 0x08000000, LENGTH = 64K
ram (xrw) : ORIGIN = 0x20000000, LENGTH = 20K
}

INCLUDE cortexm_base.ld

0 comments on commit 92c8f27

Please sign in to comment.