comparison Lib/mk20dx256vlh7.ld @ 340:e8841d3c6db5

mk20dx256vlh7 working! - Interrupt vector table position fix (affected everything in the firmware) - Added fault debug messages - Fixed usbMuxUart
author Jacob Alexander <haata@kiibohd.com>
date Sat, 13 Jun 2015 20:42:12 -0700
parents 795cc567b018
children
comparison
equal deleted inserted replaced
339:2f415c0b4b28 340:e8841d3c6db5
38 /* Section Definitions */ 38 /* Section Definitions */
39 SECTIONS 39 SECTIONS
40 { 40 {
41 .text : 41 .text :
42 { 42 {
43 . = 0; 43 . = 0; KEEP(* (.vectors)) /* MUST BE AT 0 */
44 KEEP(* (.vectors))
45 *(.startup*) 44 *(.startup*)
46 . = 0x400; KEEP(* (.flashconfig)) /* MUST BE AT 0x400 */ 45 . = 0x400; KEEP(* (.flashconfig)) /* MUST BE AT 0x400 */
47 *(.text*) 46 *(.text*)
48 *(.rodata*) 47 *(.rodata*)
49 . = ALIGN(4); 48 . = ALIGN(4);