From d001aeecb3c6d6c2b787ce32117fcae134f6bafe Mon Sep 17 00:00:00 2001 From: Andy CA6JAU Date: Fri, 16 Feb 2018 22:51:36 -0300 Subject: [PATCH] Extend FLASH size for 128 KB parts --- bootloader.ld | 4 ++-- normal.ld | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bootloader.ld b/bootloader.ld index 09a172e..4738f25 100644 --- a/bootloader.ld +++ b/bootloader.ld @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016 by Andy Uribe CA6JAU + * Copyright (C) 2016-2018 by Andy Uribe CA6JAU * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -19,7 +19,7 @@ /* Memory areas */ MEMORY { - ROM (rx) : ORIGIN = 0x08002000, LENGTH = 56K /* FLASH */ + ROM (rx) : ORIGIN = 0x08002000, LENGTH = 120K /* FLASH */ RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 20K /* Main RAM */ } diff --git a/normal.ld b/normal.ld index 154f653..290f7ab 100644 --- a/normal.ld +++ b/normal.ld @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016 by Andy Uribe CA6JAU + * Copyright (C) 2016-2018 by Andy Uribe CA6JAU * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -19,7 +19,7 @@ /* Memory areas */ MEMORY { - ROM (rx) : ORIGIN = 0x08000000, LENGTH = 64K /* FLASH */ + ROM (rx) : ORIGIN = 0x08000000, LENGTH = 128K /* FLASH */ RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 20K /* Main RAM */ }