Referenced new linker scripts in the README

This commit is contained in:
Mike Szczys 2012-06-24 16:03:58 -05:00
parent 8ec785db3f
commit ba31e7b886
1 changed files with 2 additions and 5 deletions

View File

@ -3,8 +3,6 @@ This package is for use when compiling programs for STM32F05xx ARM microcontroll
This template will serve as a quick-start for those who do not wish to use an IDE, but rather develop in a text editor of choice and build from the command line. It is based on [an example template for the F4 Discovery board](http://jeremyherbert.net/get/stm32f4_getting_started) put together by Jeremy Herbert. This template will serve as a quick-start for those who do not wish to use an IDE, but rather develop in a text editor of choice and build from the command line. It is based on [an example template for the F4 Discovery board](http://jeremyherbert.net/get/stm32f4_getting_started) put together by Jeremy Herbert.
<font color="red">ATTENTION:</font> Because of a copyright issue the linker script (Device/stm32_flash.ld) has been removed from the repository. Programs will not compile without this. I had been using this file which is found in the TrueSTUDIO folder of the STM32F0-Discovery firmware package. Read the copyright notice from the top of that file to see why it cannot be included here. I'll be looking into an open source replacement for it.
##Subfolders: ##Subfolders:
1. Library/ 1. Library/
@ -16,11 +14,10 @@ This template will serve as a quick-start for those who do not wish to use an ID
2. Device/ 2. Device/
* Folder contains device specific files: * Folder contains device specific files:
* **stm32_flash.ld** is the linker script taken from the STM32F0-Discovery firmware package. It is found in the following directory:
* Project/Demonstration/TrueSTUDIO/STM32F0-Discovery_Demo/
* <font color="red">This file, although necessary, is missing from this repo. Please read the notice in the header of the README.</font>
* **startup_stm32f0xx.s** is the startup file taken from the STM32F0-Discovery firmware package. It is found in the following directory: * **startup_stm32f0xx.s** is the startup file taken from the STM32F0-Discovery firmware package. It is found in the following directory:
* Libraries/CMSIS/ST/STM32F0xx/Source/Templates/TrueSTUDIO/ * Libraries/CMSIS/ST/STM32F0xx/Source/Templates/TrueSTUDIO/
* Linker Scripts (Device/ldscripts)
* These linker scripts are used instead of the stm32_flash.ld script which is included in the STM demo code. This is because the original file contains an unreasonably restrictive copyright assertion.
3. inc/ 3. inc/
* All include files for this particular project. * All include files for this particular project.