stm32f3discovery ld script corrected as recommended in #82.

This commit is contained in:
Federico Ruiz Ugalde
2013-06-26 05:45:41 -06:00
committed by Piotr Esden-Tempski
parent 757d044c23
commit 4832449dd2

View File

@@ -18,13 +18,13 @@
* along with this library. If not, see <http://www.gnu.org/licenses/>. * along with this library. If not, see <http://www.gnu.org/licenses/>.
*/ */
/* Linker script for ST STM32F4DISCOVERY (STM32F407VG, 1024K flash, 128K RAM). */ /* Linker script for ST STM32F3DISCOVERY (STM32F303VC, 256K flash, 48K RAM (Of which 8kB are CCM RAM and 40KB are SRAM). */
/* Define memory regions. */ /* Define memory regions. */
MEMORY MEMORY
{ {
rom (rx) : ORIGIN = 0x08000000, LENGTH = 256K rom (rx) : ORIGIN = 0x08000000, LENGTH = 256K
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 20K ram (rwx) : ORIGIN = 0x20000000, LENGTH = 40K
} }
/* Include the common ld script. */ /* Include the common ld script. */