mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-06-02 13:27:32 +08:00
f60c68c130
* Fix gcc prefix and update libopencm3. See: https://github.com/libopencm3/libopencm3/commit/7be50a5e75ed2d163d38a6759347c5e778ac02ab https://github.com/libopencm3/libopencm3/commit/034dbf20ff8c54dcbee5238390b37a0d35180f44 * update luftboot * Update linker scripts. * Update deprecated function. * Update rcc_clock_scale structure. * Add compatibility defines.
36 lines
1.2 KiB
Plaintext
36 lines
1.2 KiB
Plaintext
/*
|
|
* Hey Emacs, this is a -*- makefile -*-
|
|
*
|
|
* Copyright (C) 2012 Piotr Esden-Tempski <piotr@esden.net>
|
|
*
|
|
* This file is part of Paparazzi.
|
|
*
|
|
* Paparazzi is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* Paparazzi is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Paparazzi; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
/* Linker script for Lisa-S (STM32F103REY6, 512K flash, 64K RAM). */
|
|
|
|
/* Define memory regions. */
|
|
MEMORY
|
|
{
|
|
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 64K
|
|
/* Leaving 2k of space at the end of rom for stored settings */
|
|
rom (rx) : ORIGIN = 0x08000000, LENGTH = 512K
|
|
}
|
|
|
|
/* Include the common ld script. */
|
|
INCLUDE cortex-m-generic.ld
|