Skip to content
Snippets Groups Projects
Commit 5203ad26 authored by Joakim Nohlgård's avatar Joakim Nohlgård
Browse files

k60: Use kinetis_common ldscript, rectify CPU_MODEL to full part number

parent 1079866b
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,7 @@ endif ...@@ -17,7 +17,7 @@ endif
# The linker script needs to know the flash and RAM sizes of the device. # The linker script needs to know the flash and RAM sizes of the device.
ifeq ($(CPU_MODEL),) ifeq ($(CPU_MODEL),)
CPU_MODEL = K60DN512VLL10 CPU_MODEL = mk60dn512vll10
endif endif
export CPU_MODEL export CPU_MODEL
......
...@@ -30,7 +30,7 @@ extern "C" ...@@ -30,7 +30,7 @@ extern "C"
#include <stdint.h> #include <stdint.h>
#if defined(CPU_MODEL_K60DN512VLL10) || defined(CPU_MODEL_K60DN256VLL10) #if defined(CPU_MODEL_MK60DN512VLL10) || defined(CPU_MODEL_MK60DN256VLL10)
#include "vendor/MK60D10.h" #include "vendor/MK60D10.h"
/** The expected CPUID value, can be used to implement a check that we are /** The expected CPUID value, can be used to implement a check that we are
......
OUTPUT_FORMAT ("elf32-littlearm", "elf32-bigarm", "elf32-littlearm")
OUTPUT_ARCH(arm)
MEMORY
{
vectors (rx) : ORIGIN = 0x00000000, LENGTH = 0x400
flashsec (rx) : ORIGIN = 0x00000400, LENGTH = 0x10
rom (rx) : ORIGIN = 0x00000410, LENGTH = 256K - 0x410
ram (rwx) : ORIGIN = 0x20000000 - 32K, LENGTH = 64K
}
INCLUDE kinetis.ld
OUTPUT_FORMAT ("elf32-littlearm", "elf32-bigarm", "elf32-littlearm")
OUTPUT_ARCH(arm)
MEMORY
{
vectors (rx) : ORIGIN = 0x00000000, LENGTH = 0x400
flashsec (rx) : ORIGIN = 0x00000400, LENGTH = 0x10
rom (rx) : ORIGIN = 0x00000410, LENGTH = 512K - 0x410
ram (rwx) : ORIGIN = 0x20000000 - 64K, LENGTH = 128K
}
INCLUDE kinetis.ld
../../kinetis_common/ldscripts/kinetis_f256l32u32.ld
\ No newline at end of file
../../kinetis_common/ldscripts/kinetis_f512l64u64.ld
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment