remove STM32duino-bootloader from linker script

This commit is contained in:
King Kévin 2016-04-11 22:48:25 +02:00
parent 585b2a7d8d
commit 9fbef51255
2 changed files with 4 additions and 10 deletions

View File

@ -12,15 +12,12 @@
* along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
/* linker script for STM32F103x8 based boards (64kB flash, 20kB RAM)
* with additional STM32duino-booloader USB DFU bootloader (8kB flash, 0kB RAM)
* from https://github.com/rogerclarkmelbourne/STM32duino-bootloader
*/
/* linker script for STM32F103x8 based boards (64kB flash, 20kB RAM) */
/* Define memory regions. */
MEMORY
{
rom (rx) : ORIGIN = 0x08002000, LENGTH = 56K
rom (rx) : ORIGIN = 0x08000000, LENGTH = 64K
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 20K
}

View File

@ -12,15 +12,12 @@
* along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
/* linker script for STM32F103xB based boards (128kB flash, 20kB RAM)
* with additional STM32duino-booloader USB DFU bootloader (8kB flash, 0kB RAM)
* from https://github.com/rogerclarkmelbourne/STM32duino-bootloader
*/
/* linker script for STM32F103xB based boards (128kB flash, 20kB RAM) */
/* Define memory regions. */
MEMORY
{
rom (rx) : ORIGIN = 0x08002000, LENGTH = 120K
rom (rx) : ORIGIN = 0x08000000, LENGTH = 128K
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 20K
}