diff options
| author | lynxeyed-atsu <lynxeyed@xj9.so-net.ne.jp> | 2012-08-09 22:13:57 +0900 |
|---|---|---|
| committer | lynxeyed-atsu <lynxeyed@xj9.so-net.ne.jp> | 2012-08-09 22:13:57 +0900 |
| commit | a936b176fe2aae6ac6378b73fcaad1a61cb8eca3 (patch) | |
| tree | f302e299bc5add3a7117b9f93b993cf741a2ee21 /LPC1114FN28_102_DIP28 | |
| parent | b9cff0a1eac16d0351053ab41237a69dfcb3ca5e (diff) | |
changed MCU settings
We can switch linker script each MCU using Configuration tab of
LPCXpresso project's properties.
Diffstat (limited to 'LPC1114FN28_102_DIP28')
36 files changed, 4607 insertions, 0 deletions
diff --git a/LPC1114FN28_102_DIP28/eXodusino.axf b/LPC1114FN28_102_DIP28/eXodusino.axf Binary files differnew file mode 100755 index 0000000..4aa5f2b --- /dev/null +++ b/LPC1114FN28_102_DIP28/eXodusino.axf diff --git a/LPC1114FN28_102_DIP28/eXodusino.bin b/LPC1114FN28_102_DIP28/eXodusino.bin Binary files differnew file mode 100755 index 0000000..3ba7c1a --- /dev/null +++ b/LPC1114FN28_102_DIP28/eXodusino.bin diff --git a/LPC1114FN28_102_DIP28/eXodusino.ld b/LPC1114FN28_102_DIP28/eXodusino.ld new file mode 100755 index 0000000..6bfdbdc --- /dev/null +++ b/LPC1114FN28_102_DIP28/eXodusino.ld @@ -0,0 +1,127 @@ +/*
+* GENERATED FILE - DO NOT EDIT
+* (C) Code Red Technologies Ltd, 2008-10
+* Generated linker script file for LPC1114/301
+* Created from generic_cpp.ld (vLPCXpresso v4.0 (6 [Build 152] [01/08/2011] ))
+* By LPCXpresso v4.0.6 [Build 152] [01/08/2011] on Wed Jan 18 21:43:17 JST 2012
+*/
+
+
+INCLUDE "eXodusino_Release_lib.ld" +INCLUDE "eXodusino_Release_mem.ld" +
+ENTRY(ResetISR)
+
+SECTIONS
+{
+
+ /* MAIN TEXT SECTION */
+ .text : ALIGN(4)
+ {
+ FILL(0xff)
+ KEEP(*(.isr_vector))
+
+ /* Global Section Table */
+ . = ALIGN(4) ;
+ __section_table_start = .;
+ __data_section_table = .;
+ LONG(LOADADDR(.data));
+ LONG( ADDR(.data)) ;
+ LONG( SIZEOF(.data));
+ __data_section_table_end = .;
+ __bss_section_table = .;
+ LONG( ADDR(.bss));
+ LONG( SIZEOF(.bss));
+ __bss_section_table_end = .;
+ __section_table_end = . ;
+ /* End of Global Section Table */
+
+
+ *(.after_vectors*)
+
+ *(.text*)
+ *(.rodata .rodata.*)
+ . = ALIGN(4);
+
+ /* C++ constructors etc */
+ . = ALIGN(4);
+ KEEP(*(.init))
+
+ . = ALIGN(4);
+ __preinit_array_start = .;
+ KEEP (*(.preinit_array))
+ __preinit_array_end = .;
+
+ . = ALIGN(4);
+ __init_array_start = .;
+ KEEP (*(SORT(.init_array.*)))
+ KEEP (*(.init_array))
+ __init_array_end = .;
+
+ KEEP(*(.fini));
+
+ . = ALIGN(0x4);
+ KEEP (*crtbegin.o(.ctors))
+ KEEP (*(EXCLUDE_FILE (*crtend.o) .ctors))
+ KEEP (*(SORT(.ctors.*)))
+ KEEP (*crtend.o(.ctors))
+
+ . = ALIGN(0x4);
+ KEEP (*crtbegin.o(.dtors))
+ KEEP (*(EXCLUDE_FILE (*crtend.o) .dtors))
+ KEEP (*(SORT(.dtors.*)))
+ KEEP (*crtend.o(.dtors))
+ /* End C++ */
+ } > MFlash32
+
+ /*
+ * for exception handling/unwind - some Newlib functions (in common
+ * with C++ and STDC++) use this.
+ */
+ .ARM.extab : ALIGN(4)
+ {
+ *(.ARM.extab* .gnu.linkonce.armextab.*)
+ } > MFlash32
+ __exidx_start = .;
+
+ .ARM.exidx : ALIGN(4)
+ {
+ *(.ARM.exidx* .gnu.linkonce.armexidx.*)
+ } > MFlash32
+ __exidx_end = .;
+
+ _etext = .;
+
+
+ /* MAIN DATA SECTION */
+
+ .uninit_RESERVED : ALIGN(4)
+ {
+ KEEP(*(.bss.$RESERVED*))
+ } > RamLoc8
+
+ .data : ALIGN(4)
+ {
+ FILL(0xff)
+ _data = .;
+ *(vtable)
+ *(.data*)
+ . = ALIGN(4) ;
+ _edata = .;
+ } > RamLoc8 AT>MFlash32
+
+
+ /* MAIN BSS SECTION */
+ .bss : ALIGN(4)
+ {
+ _bss = .;
+ *(.bss*)
+ *(COMMON)
+ . = ALIGN(4) ;
+ _ebss = .;
+ PROVIDE(end = .);
+ } > RamLoc8
+
+ PROVIDE(_pvHeapStart = .);
+ PROVIDE(_vStackTop = __top_RamLoc8 - 0);
+}
diff --git a/LPC1114FN28_102_DIP28/eXodusino_Release.ld b/LPC1114FN28_102_DIP28/eXodusino_Release.ld new file mode 100644 index 0000000..187974f --- /dev/null +++ b/LPC1114FN28_102_DIP28/eXodusino_Release.ld @@ -0,0 +1,128 @@ +/* + * GENERATED FILE - DO NOT EDIT + * (C) Code Red Technologies Ltd, 2008-2012 + * Generated linker script file for LPC1114/301 + * Created from generic_cpp.ld (vLPCXpresso v4.2 (4 [Build 267] [2012-07-11] )) + * By LPCXpresso v4.2.4 [Build 267] [2012-07-11] on Fri Jul 13 01:18:22 JST 2012 + */ + + +INCLUDE "eXodusino_Release_lib.ld" +INCLUDE "eXodusino_Release_mem.ld" + +ENTRY(ResetISR) + +SECTIONS +{ + + /* MAIN TEXT SECTION */ + .text : ALIGN(4) + { + FILL(0xff) + KEEP(*(.isr_vector)) + + /* Global Section Table */ + . = ALIGN(4) ; + __section_table_start = .; + __data_section_table = .; + LONG(LOADADDR(.data)); + LONG( ADDR(.data)) ; + LONG( SIZEOF(.data)); + __data_section_table_end = .; + __bss_section_table = .; + LONG( ADDR(.bss)); + LONG( SIZEOF(.bss)); + __bss_section_table_end = .; + __section_table_end = . ; + /* End of Global Section Table */ + + + *(.after_vectors*) + + *(.text*) + *(.rodata .rodata.*) + . = ALIGN(4); + + /* C++ constructors etc */ + . = ALIGN(4); + KEEP(*(.init)) + + . = ALIGN(4); + __preinit_array_start = .; + KEEP (*(.preinit_array)) + __preinit_array_end = .; + + . = ALIGN(4); + __init_array_start = .; + KEEP (*(SORT(.init_array.*))) + KEEP (*(.init_array)) + __init_array_end = .; + + KEEP(*(.fini)); + + . = ALIGN(0x4); + KEEP (*crtbegin.o(.ctors)) + KEEP (*(EXCLUDE_FILE (*crtend.o) .ctors)) + KEEP (*(SORT(.ctors.*))) + KEEP (*crtend.o(.ctors)) + + . = ALIGN(0x4); + KEEP (*crtbegin.o(.dtors)) + KEEP (*(EXCLUDE_FILE (*crtend.o) .dtors)) + KEEP (*(SORT(.dtors.*))) + KEEP (*crtend.o(.dtors)) + /* End C++ */ + } > MFlash32 + + /* + * for exception handling/unwind - some Newlib functions (in common + * with C++ and STDC++) use this. + * Use KEEP so not discarded with --gc-sections + */ + .ARM.extab : ALIGN(4) + { + KEEP(*(.ARM.extab* .gnu.linkonce.armextab.*)) + } > MFlash32 + __exidx_start = .; + + .ARM.exidx : ALIGN(4) + { + KEEP(*(.ARM.exidx* .gnu.linkonce.armexidx.*)) + } > MFlash32 + __exidx_end = .; + + _etext = .; + + + /* MAIN DATA SECTION */ + + .uninit_RESERVED : ALIGN(4) + { + KEEP(*(.bss.$RESERVED*)) + } > RamLoc8 + + .data : ALIGN(4) + { + FILL(0xff) + _data = .; + *(vtable) + *(.data*) + . = ALIGN(4) ; + _edata = .; + } > RamLoc8 AT>MFlash32 + + + /* MAIN BSS SECTION */ + .bss : ALIGN(4) + { + _bss = .; + *(.bss*) + *(COMMON) + . = ALIGN(4) ; + _ebss = .; + PROVIDE(end = .); + } > RamLoc8 + + PROVIDE(_pvHeapStart = .); + PROVIDE(_vStackTop = __top_RamLoc8 - 0); +} diff --git a/LPC1114FN28_102_DIP28/eXodusino_Release_lib.ld b/LPC1114FN28_102_DIP28/eXodusino_Release_lib.ld new file mode 100644 index 0000000..4dbe511 --- /dev/null +++ b/LPC1114FN28_102_DIP28/eXodusino_Release_lib.ld @@ -0,0 +1,19 @@ +/* + * GENERATED FILE - DO NOT EDIT + * (C) Code Red Technologies Ltd, 2008-2012 + * Generated linker script file for LPC1114/301 + * Created from LibIncTemplate.ld (vLPCXpresso v4.2 (4 [Build 267] [2012-07-11] )) + * By LPCXpresso v4.2.4 [Build 267] [2012-07-11] on Fri Jul 13 01:18:22 JST 2012 + */ + + + GROUP( + libgcc.a + libc.a + libm.a + libcr_newlib_nohost.a + crti.o + crtn.o + crtbegin.o + crtend.o + ) diff --git a/LPC1114FN28_102_DIP28/eXodusino_Release_mem.ld b/LPC1114FN28_102_DIP28/eXodusino_Release_mem.ld new file mode 100644 index 0000000..59aeb22 --- /dev/null +++ b/LPC1114FN28_102_DIP28/eXodusino_Release_mem.ld @@ -0,0 +1,21 @@ +/* + * GENERATED FILE - DO NOT EDIT + * (C) Code Red Technologies Ltd, 2008-2012 + * Linker script memory definitions + * Created from LinkMemoryTemplate + * By LPCXpresso v4.2.4 [Build 267] [2012-07-11] on Fri Jul 13 01:18:22 JST 2012) +*/ + +MEMORY +{ + /* Define each memory region */ + MFlash32 (rx) : ORIGIN = 0x0000, LENGTH = 0x8000 /* 32k */ + RamLoc8 (rwx) : ORIGIN = 0x10000000, LENGTH = 0x1000 /* 4k */ + +} + /* Define a symbol for the top of each memory region */ + __top_MFlash32 = 0x0000 + 0x8000; + __top_RamLoc8 = 0x10000000 + 0x1000; + + + diff --git a/LPC1114FN28_102_DIP28/exodusino.map b/LPC1114FN28_102_DIP28/exodusino.map new file mode 100755 index 0000000..375dec5 --- /dev/null +++ b/LPC1114FN28_102_DIP28/exodusino.map @@ -0,0 +1,3576 @@ +Archive member included because of file (symbol) + +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_thumb1_case_uqi.o) + ./src/user_application.o (__gnu_thumb1_case_uqi) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_udivsi3.o) + ./src/core/delay.o (__aeabi_uidiv) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_divsi3.o) + ./src/user_application.o (__aeabi_idiv) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_dvmd_tls.o) + /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_udivsi3.o) (__aeabi_idiv0) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_arm_cmpdf2.o) + ./src/user_application.o (__aeabi_dcmpgt) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(divdf3.o) + ./src/user_application.o (__aeabi_ddiv) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(eqdf2.o) + /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_arm_cmpdf2.o) (__eqdf2) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(gedf2.o) + /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_arm_cmpdf2.o) (__gedf2) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(ledf2.o) + /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_arm_cmpdf2.o) (__ledf2) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(muldf3.o) + ./src/user_application.o (__aeabi_dmul) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(subdf3.o) + ./src/user_application.o (__aeabi_dsub) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(fixdfsi.o) + ./src/user_application.o (__aeabi_d2iz) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(floatsidf.o) + ./src/user_application.o (__aeabi_i2d) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(unwind-arm.o) + ./src/user_application.o (__aeabi_unwind_cpp_pr0) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(libunwind.o) + /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(unwind-arm.o) (restore_core_regs) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(pr-support.o) + /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(unwind-arm.o) (__gnu_unwind_execute) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_clzsi2.o) + /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(divdf3.o) (__clzsi2) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-abort.o) + /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(unwind-arm.o) (abort) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-init.o) + ./src/core/cr_startup_lpc11.o (__libc_init_array) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-malloc.o) + ./src/core/cr_cpp_config.o (malloc) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-mallocr.o) + /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-malloc.o) (_malloc_r) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-memcpy.o) + ./src/core/maryoled.o (memcpy) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-mlock.o) + /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-mallocr.o) (__malloc_lock) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-sbrkr.o) + /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-mallocr.o) (_sbrk_r) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-signal.o) + /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-abort.o) (raise) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-signalr.o) + /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-signal.o) (_kill_r) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-strlen.o) + ./src/core/Wire.o (strlen) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-freer.o) + /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-malloc.o) (_free_r) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-impure.o) + /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-malloc.o) (_impure_ptr) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-reent.o) + /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-sbrkr.o) (errno) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_sbrk.o) + /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-sbrkr.o) (_sbrk) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_exit.o) + /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-abort.o) (_exit) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(getpid.o) + /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-signalr.o) (_getpid) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(kill.o) + /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-signalr.o) (_kill) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_check_heap.o) + /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_sbrk.o) (__check_heap_overflow) +/Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-errno.o) + /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_sbrk.o) (__errno) + +Allocating common symbols +Common symbol size file + +errno 0x4 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-reent.o) +__end_of_heap 0x4 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_sbrk.o) + +Discarded input sections + + .text 0x0000000000000000 0x0 ./src/user_application.o + .data 0x0000000000000000 0x0 ./src/user_application.o + .bss 0x0000000000000000 0x0 ./src/user_application.o + .ARM.extab.text._Z7hsv2rgbi + 0x0000000000000000 0x0 ./src/user_application.o + .text._Z13encodeMessagei + 0x0000000000000000 0x48 ./src/user_application.o + .ARM.extab.text._Z13encodeMessagei + 0x0000000000000000 0x0 ./src/user_application.o + .ARM.exidx.text._Z13encodeMessagei + 0x0000000000000000 0x8 ./src/user_application.o + .ARM.extab.text._Z4loopv + 0x0000000000000000 0x0 ./src/user_application.o + .group 0x0000000000000000 0x10 ./src/core/LiquidCrystal.o + .group 0x0000000000000000 0x10 ./src/core/LiquidCrystal.o + .group 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text 0x0000000000000000 0x0 ./src/core/LiquidCrystal.o + .data 0x0000000000000000 0x0 ./src/core/LiquidCrystal.o + .bss 0x0000000000000000 0x0 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystal11pulseEnableEv + 0x0000000000000000 0x30 ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystal11pulseEnableEv + 0x0000000000000000 0x0 ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystal11pulseEnableEv + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystal10write4bitsEh + 0x0000000000000000 0x2e ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystal10write4bitsEh + 0x0000000000000000 0x0 ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystal10write4bitsEh + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystal10write8bitsEh + 0x0000000000000000 0x2e ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystal10write8bitsEh + 0x0000000000000000 0x0 ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystal10write8bitsEh + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystal4sendEhh + 0x0000000000000000 0x3c ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystal4sendEhh + 0x0000000000000000 0x0 ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystal4sendEhh + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystal5writeEc + 0x0000000000000000 0xa ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystal5writeEc + 0x0000000000000000 0xc ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystal5writeEc + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystal7commandEh + 0x0000000000000000 0xa ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystal7commandEh + 0x0000000000000000 0xc ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystal7commandEh + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystal10createCharEhPh + 0x0000000000000000 0x28 ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystal10createCharEhPh + 0x0000000000000000 0x0 ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystal10createCharEhPh + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystal12noAutoscrollEv + 0x0000000000000000 0x14 ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystal12noAutoscrollEv + 0x0000000000000000 0xc ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystal12noAutoscrollEv + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystal10autoscrollEv + 0x0000000000000000 0x14 ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystal10autoscrollEv + 0x0000000000000000 0xc ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystal10autoscrollEv + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystal11rightToLeftEv + 0x0000000000000000 0x14 ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystal11rightToLeftEv + 0x0000000000000000 0xc ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystal11rightToLeftEv + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystal11leftToRightEv + 0x0000000000000000 0x14 ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystal11leftToRightEv + 0x0000000000000000 0xc ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystal11leftToRightEv + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystal18scrollDisplayRightEv + 0x0000000000000000 0xa ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystal18scrollDisplayRightEv + 0x0000000000000000 0xc ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystal18scrollDisplayRightEv + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystal17scrollDisplayLeftEv + 0x0000000000000000 0xa ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystal17scrollDisplayLeftEv + 0x0000000000000000 0xc ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystal17scrollDisplayLeftEv + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystal5blinkEv + 0x0000000000000000 0x14 ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystal5blinkEv + 0x0000000000000000 0xc ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystal5blinkEv + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystal7noBlinkEv + 0x0000000000000000 0x14 ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystal7noBlinkEv + 0x0000000000000000 0xc ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystal7noBlinkEv + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystal6cursorEv + 0x0000000000000000 0x14 ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystal6cursorEv + 0x0000000000000000 0xc ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystal6cursorEv + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystal8noCursorEv + 0x0000000000000000 0x14 ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystal8noCursorEv + 0x0000000000000000 0xc ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystal8noCursorEv + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystal7displayEv + 0x0000000000000000 0x14 ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystal7displayEv + 0x0000000000000000 0xc ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystal7displayEv + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystal9noDisplayEv + 0x0000000000000000 0x14 ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystal9noDisplayEv + 0x0000000000000000 0xc ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystal9noDisplayEv + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystal9setCursorEhh + 0x0000000000000000 0x38 ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystal9setCursorEhh + 0x0000000000000000 0x0 ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystal9setCursorEhh + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystal4homeEv + 0x0000000000000000 0x12 ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystal4homeEv + 0x0000000000000000 0xc ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystal4homeEv + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystal5clearEv + 0x0000000000000000 0x12 ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystal5clearEv + 0x0000000000000000 0xc ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystal5clearEv + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystal5beginEhhh + 0x0000000000000000 0xe0 ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystal5beginEhhh + 0x0000000000000000 0x0 ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystal5beginEhhh + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystal4initEhhhhhhhhhhhh + 0x0000000000000000 0x9c ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystal4initEhhhhhhhhhhhh + 0x0000000000000000 0x0 ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystal4initEhhhhhhhhhhhh + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystalC2Ehhhhhh + 0x0000000000000000 0x44 ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystalC2Ehhhhhh + 0x0000000000000000 0x0 ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystalC2Ehhhhhh + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystalC2Ehhhhhhh + 0x0000000000000000 0x4c ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystalC2Ehhhhhhh + 0x0000000000000000 0x0 ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystalC2Ehhhhhhh + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystalC2Ehhhhhhhhhh + 0x0000000000000000 0x60 ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystalC2Ehhhhhhhhhh + 0x0000000000000000 0x0 ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystalC2Ehhhhhhhhhh + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .text._ZN13LiquidCrystalC2Ehhhhhhhhhhh + 0x0000000000000000 0x6c ./src/core/LiquidCrystal.o + .ARM.extab.text._ZN13LiquidCrystalC2Ehhhhhhhhhhh + 0x0000000000000000 0x0 ./src/core/LiquidCrystal.o + .ARM.exidx.text._ZN13LiquidCrystalC2Ehhhhhhhhhhh + 0x0000000000000000 0x8 ./src/core/LiquidCrystal.o + .rodata._ZTV13LiquidCrystal + 0x0000000000000000 0x10 ./src/core/LiquidCrystal.o + .rodata 0x0000000000000000 0x10 ./src/core/LiquidCrystal.o + .text 0x0000000000000000 0x0 ./src/core/Print.o + .data 0x0000000000000000 0x0 ./src/core/Print.o + .bss 0x0000000000000000 0x0 ./src/core/Print.o + .ARM.extab.text._ZN5Print7printlnEv + 0x0000000000000000 0x0 ./src/core/Print.o + .ARM.extab.text._ZN5Print5printEPKc + 0x0000000000000000 0x0 ./src/core/Print.o + .ARM.extab.text._ZN5Print5printEi12RADIX_FORMAT + 0x0000000000000000 0x0 ./src/core/Print.o + .text._ZN5Print5writeEPKci + 0x0000000000000000 0x1e ./src/core/Print.o + .ARM.extab.text._ZN5Print5writeEPKci + 0x0000000000000000 0x0 ./src/core/Print.o + .ARM.exidx.text._ZN5Print5writeEPKci + 0x0000000000000000 0x8 ./src/core/Print.o + .ARM.extab.text._ZN5Print7printlnEPKc + 0x0000000000000000 0x0 ./src/core/Print.o + .ARM.extab.text._ZN5Print7printlnEi12RADIX_FORMAT + 0x0000000000000000 0x0 ./src/core/Print.o + .text._ZN5Print5printEc + 0x0000000000000000 0xa ./src/core/Print.o + .ARM.extab.text._ZN5Print5printEc + 0x0000000000000000 0xc ./src/core/Print.o + .ARM.exidx.text._ZN5Print5printEc + 0x0000000000000000 0x8 ./src/core/Print.o + .text._ZN5Print7printlnEc + 0x0000000000000000 0x14 ./src/core/Print.o + .ARM.extab.text._ZN5Print7printlnEc + 0x0000000000000000 0x0 ./src/core/Print.o + .ARM.exidx.text._ZN5Print7printlnEc + 0x0000000000000000 0x8 ./src/core/Print.o + .rodata._ZTV5Print + 0x0000000000000000 0x10 ./src/core/Print.o + .text 0x0000000000000000 0x0 ./src/core/SPI.o + .data 0x0000000000000000 0x0 ./src/core/SPI.o + .bss 0x0000000000000000 0x0 ./src/core/SPI.o + .ARM.extab.text._ZN3SSPD2Ev + 0x0000000000000000 0x0 ./src/core/SPI.o + .text._ZN3SSP12setBitLengthEi + 0x0000000000000000 0x4 ./src/core/SPI.o + .ARM.extab.text._ZN3SSP12setBitLengthEi + 0x0000000000000000 0x0 ./src/core/SPI.o + .ARM.exidx.text._ZN3SSP12setBitLengthEi + 0x0000000000000000 0x8 ./src/core/SPI.o + .text._ZN3SSP3endEv + 0x0000000000000000 0x10 ./src/core/SPI.o + .ARM.extab.text._ZN3SSP3endEv + 0x0000000000000000 0x0 ./src/core/SPI.o + .ARM.exidx.text._ZN3SSP3endEv + 0x0000000000000000 0x8 ./src/core/SPI.o + .text._ZN3SSP11setBitOrderE13SSP_BIT_ORDER + 0x0000000000000000 0x4 ./src/core/SPI.o + .ARM.extab.text._ZN3SSP11setBitOrderE13SSP_BIT_ORDER + 0x0000000000000000 0x0 ./src/core/SPI.o + .ARM.exidx.text._ZN3SSP11setBitOrderE13SSP_BIT_ORDER + 0x0000000000000000 0x8 ./src/core/SPI.o + .text._ZN3SSP15setClockDividerE15SSP_CLK_DIVIDER + 0x0000000000000000 0x4 ./src/core/SPI.o + .ARM.extab.text._ZN3SSP15setClockDividerE15SSP_CLK_DIVIDER + 0x0000000000000000 0x0 ./src/core/SPI.o + .ARM.exidx.text._ZN3SSP15setClockDividerE15SSP_CLK_DIVIDER + 0x0000000000000000 0x8 ./src/core/SPI.o + .text._ZN3SSP11setDataModeE13SSP_DATA_MODE + 0x0000000000000000 0x4 ./src/core/SPI.o + .ARM.extab.text._ZN3SSP11setDataModeE13SSP_DATA_MODE + 0x0000000000000000 0x0 ./src/core/SPI.o + .ARM.exidx.text._ZN3SSP11setDataModeE13SSP_DATA_MODE + 0x0000000000000000 0x8 ./src/core/SPI.o + .ARM.extab.text.ssp_begin + 0x0000000000000000 0x0 ./src/core/SPI.o + .text._ZN3SSP5beginE8SSP_PORT + 0x0000000000000000 0x14 ./src/core/SPI.o + .ARM.extab.text._ZN3SSP5beginE8SSP_PORT + 0x0000000000000000 0xc ./src/core/SPI.o + .ARM.exidx.text._ZN3SSP5beginE8SSP_PORT + 0x0000000000000000 0x8 ./src/core/SPI.o + .ARM.extab.text._ZN3SSPC2Ev + 0x0000000000000000 0x0 ./src/core/SPI.o + .text.ssp_transfer + 0x0000000000000000 0x30 ./src/core/SPI.o + .ARM.extab.text.ssp_transfer + 0x0000000000000000 0x0 ./src/core/SPI.o + .ARM.exidx.text.ssp_transfer + 0x0000000000000000 0x8 ./src/core/SPI.o + .text._ZN3SSP8transferEm + 0x0000000000000000 0xa ./src/core/SPI.o + .ARM.extab.text._ZN3SSP8transferEm + 0x0000000000000000 0x0 ./src/core/SPI.o + .ARM.exidx.text._ZN3SSP8transferEm + 0x0000000000000000 0x8 ./src/core/SPI.o + .ARM.extab.text.startup._GLOBAL__sub_I_SPI + 0x0000000000000000 0x0 ./src/core/SPI.o + .text 0x0000000000000000 0x0 ./src/core/SPI1.o + .data 0x0000000000000000 0x0 ./src/core/SPI1.o + .bss 0x0000000000000000 0x0 ./src/core/SPI1.o + .ARM.extab.text._ZN4SSP1D2Ev + 0x0000000000000000 0x0 ./src/core/SPI1.o + .text._ZN4SSP112setBitLengthEi + 0x0000000000000000 0x4 ./src/core/SPI1.o + .ARM.extab.text._ZN4SSP112setBitLengthEi + 0x0000000000000000 0x0 ./src/core/SPI1.o + .ARM.exidx.text._ZN4SSP112setBitLengthEi + 0x0000000000000000 0x8 ./src/core/SPI1.o + .text._ZN4SSP13endEv + 0x0000000000000000 0x10 ./src/core/SPI1.o + .ARM.extab.text._ZN4SSP13endEv + 0x0000000000000000 0x0 ./src/core/SPI1.o + .ARM.exidx.text._ZN4SSP13endEv + 0x0000000000000000 0x8 ./src/core/SPI1.o + .text._ZN4SSP111setBitOrderE13SSP_BIT_ORDER + 0x0000000000000000 0x4 ./src/core/SPI1.o + .ARM.extab.text._ZN4SSP111setBitOrderE13SSP_BIT_ORDER + 0x0000000000000000 0x0 ./src/core/SPI1.o + .ARM.exidx.text._ZN4SSP111setBitOrderE13SSP_BIT_ORDER + 0x0000000000000000 0x8 ./src/core/SPI1.o + .text._ZN4SSP115setClockDividerE15SSP_CLK_DIVIDER + 0x0000000000000000 0x4 ./src/core/SPI1.o + .ARM.extab.text._ZN4SSP115setClockDividerE15SSP_CLK_DIVIDER + 0x0000000000000000 0x0 ./src/core/SPI1.o + .ARM.exidx.text._ZN4SSP115setClockDividerE15SSP_CLK_DIVIDER + 0x0000000000000000 0x8 ./src/core/SPI1.o + .text._ZN4SSP111setDataModeE13SSP_DATA_MODE + 0x0000000000000000 0x4 ./src/core/SPI1.o + .ARM.extab.text._ZN4SSP111setDataModeE13SSP_DATA_MODE + 0x0000000000000000 0x0 ./src/core/SPI1.o + .ARM.exidx.text._ZN4SSP111setDataModeE13SSP_DATA_MODE + 0x0000000000000000 0x8 ./src/core/SPI1.o + .ARM.extab.text.ssp1_begin + 0x0000000000000000 0x0 ./src/core/SPI1.o + .text._ZN4SSP15beginE8SSP_PORT + 0x0000000000000000 0x14 ./src/core/SPI1.o + .ARM.extab.text._ZN4SSP15beginE8SSP_PORT + 0x0000000000000000 0xc ./src/core/SPI1.o + .ARM.exidx.text._ZN4SSP15beginE8SSP_PORT + 0x0000000000000000 0x8 ./src/core/SPI1.o + .ARM.extab.text._ZN4SSP1C2Ev + 0x0000000000000000 0x0 ./src/core/SPI1.o + .text.ssp1_transfer + 0x0000000000000000 0x30 ./src/core/SPI1.o + .ARM.extab.text.ssp1_transfer + 0x0000000000000000 0x0 ./src/core/SPI1.o + .ARM.exidx.text.ssp1_transfer + 0x0000000000000000 0x8 ./src/core/SPI1.o + .text._ZN4SSP18transferEm + 0x0000000000000000 0xa ./src/core/SPI1.o + .ARM.extab.text._ZN4SSP18transferEm + 0x0000000000000000 0x0 ./src/core/SPI1.o + .ARM.exidx.text._ZN4SSP18transferEm + 0x0000000000000000 0x8 ./src/core/SPI1.o + .ARM.extab.text.startup._GLOBAL__sub_I_SPI1 + 0x0000000000000000 0x0 ./src/core/SPI1.o + .group 0x0000000000000000 0x10 ./src/core/SoftwareSerial.o + .text 0x0000000000000000 0x0 ./src/core/SoftwareSerial.o + .data 0x0000000000000000 0x0 ./src/core/SoftwareSerial.o + .bss 0x0000000000000000 0x0 ./src/core/SoftwareSerial.o + .text._ZN14SoftwareSerial5writeEc + 0x0000000000000000 0x7c ./src/core/SoftwareSerial.o + .ARM.extab.text._ZN14SoftwareSerial5writeEc + 0x0000000000000000 0x0 ./src/core/SoftwareSerial.o + .ARM.exidx.text._ZN14SoftwareSerial5writeEc + 0x0000000000000000 0x8 ./src/core/SoftwareSerial.o + .text._ZN14SoftwareSerial6listenEv + 0x0000000000000000 0x30 ./src/core/SoftwareSerial.o + .ARM.extab.text._ZN14SoftwareSerial6listenEv + 0x0000000000000000 0x0 ./src/core/SoftwareSerial.o + .ARM.exidx.text._ZN14SoftwareSerial6listenEv + 0x0000000000000000 0x8 ./src/core/SoftwareSerial.o + .text._ZN14SoftwareSerial4recvEv + 0x0000000000000000 0x98 ./src/core/SoftwareSerial.o + .ARM.extab.text._ZN14SoftwareSerial4recvEv + 0x0000000000000000 0x0 ./src/core/SoftwareSerial.o + .ARM.exidx.text._ZN14SoftwareSerial4recvEv + 0x0000000000000000 0x8 ./src/core/SoftwareSerial.o + .text._ZN14SoftwareSerial16handle_interruptEv + 0x0000000000000000 0x14 ./src/core/SoftwareSerial.o + .ARM.extab.text._ZN14SoftwareSerial16handle_interruptEv + 0x0000000000000000 0xc ./src/core/SoftwareSerial.o + .ARM.exidx.text._ZN14SoftwareSerial16handle_interruptEv + 0x0000000000000000 0x8 ./src/core/SoftwareSerial.o + .text._ZN14SoftwareSerial5setTXEh + 0x0000000000000000 0x1a ./src/core/SoftwareSerial.o + .ARM.extab.text._ZN14SoftwareSerial5setTXEh + 0x0000000000000000 0x0 ./src/core/SoftwareSerial.o + .ARM.exidx.text._ZN14SoftwareSerial5setTXEh + 0x0000000000000000 0x8 ./src/core/SoftwareSerial.o + .text._ZN14SoftwareSerial5setRXEh + 0x0000000000000000 0x22 ./src/core/SoftwareSerial.o + .ARM.extab.text._ZN14SoftwareSerial5setRXEh + 0x0000000000000000 0x0 ./src/core/SoftwareSerial.o + .ARM.exidx.text._ZN14SoftwareSerial5setRXEh + 0x0000000000000000 0x8 ./src/core/SoftwareSerial.o + .text._ZN14SoftwareSerialC2Ehhb + 0x0000000000000000 0x44 ./src/core/SoftwareSerial.o + .ARM.extab.text._ZN14SoftwareSerialC2Ehhb + 0x0000000000000000 0x0 ./src/core/SoftwareSerial.o + .ARM.exidx.text._ZN14SoftwareSerialC2Ehhb + 0x0000000000000000 0x8 ./src/core/SoftwareSerial.o + .text._ZN14SoftwareSerial5beginEl + 0x0000000000000000 0x64 ./src/core/SoftwareSerial.o + .ARM.extab.text._ZN14SoftwareSerial5beginEl + 0x0000000000000000 0x0 ./src/core/SoftwareSerial.o + .ARM.exidx.text._ZN14SoftwareSerial5beginEl + 0x0000000000000000 0x8 ./src/core/SoftwareSerial.o + .text._ZN14SoftwareSerial3endEv + 0x0000000000000000 0xe ./src/core/SoftwareSerial.o + .ARM.extab.text._ZN14SoftwareSerial3endEv + 0x0000000000000000 0xc ./src/core/SoftwareSerial.o + .ARM.exidx.text._ZN14SoftwareSerial3endEv + 0x0000000000000000 0x8 ./src/core/SoftwareSerial.o + .text._ZN14SoftwareSerialD2Ev + 0x0000000000000000 0x18 ./src/core/SoftwareSerial.o + .ARM.extab.text._ZN14SoftwareSerialD2Ev + 0x0000000000000000 0x0 ./src/core/SoftwareSerial.o + .ARM.exidx.text._ZN14SoftwareSerialD2Ev + 0x0000000000000000 0x8 ./src/core/SoftwareSerial.o + .text._ZN14SoftwareSerial4readEv + 0x0000000000000000 0x40 ./src/core/SoftwareSerial.o + .ARM.extab.text._ZN14SoftwareSerial4readEv + 0x0000000000000000 0x0 ./src/core/SoftwareSerial.o + .ARM.exidx.text._ZN14SoftwareSerial4readEv + 0x0000000000000000 0x8 ./src/core/SoftwareSerial.o + .text._ZN14SoftwareSerial9availableEv + 0x0000000000000000 0x3c ./src/core/SoftwareSerial.o + .ARM.extab.text._ZN14SoftwareSerial9availableEv + 0x0000000000000000 0x0 ./src/core/SoftwareSerial.o + .ARM.exidx.text._ZN14SoftwareSerial9availableEv + 0x0000000000000000 0x8 ./src/core/SoftwareSerial.o + .text._ZN14SoftwareSerial5flushEv + 0x0000000000000000 0x24 ./src/core/SoftwareSerial.o + .ARM.extab.text._ZN14SoftwareSerial5flushEv + 0x0000000000000000 0x0 ./src/core/SoftwareSerial.o + .ARM.exidx.text._ZN14SoftwareSerial5flushEv + 0x0000000000000000 0x8 ./src/core/SoftwareSerial.o + .text._ZN14SoftwareSerial4peekEv + 0x0000000000000000 0x34 ./src/core/SoftwareSerial.o + .ARM.extab.text._ZN14SoftwareSerial4peekEv + 0x0000000000000000 0x0 ./src/core/SoftwareSerial.o + .ARM.exidx.text._ZN14SoftwareSerial4peekEv + 0x0000000000000000 0x8 ./src/core/SoftwareSerial.o + .bss._ZN14SoftwareSerial13active_objectE + 0x0000000000000000 0x4 ./src/core/SoftwareSerial.o + .rodata._ZL5table + 0x0000000000000000 0x30 ./src/core/SoftwareSerial.o + .bss._ZN14SoftwareSerial20_receive_buffer_headE + 0x0000000000000000 0x1 ./src/core/SoftwareSerial.o + .bss._ZN14SoftwareSerial15_receive_bufferE + 0x0000000000000000 0x40 ./src/core/SoftwareSerial.o + .bss._ZN14SoftwareSerial20_receive_buffer_tailE + 0x0000000000000000 0x1 ./src/core/SoftwareSerial.o + .rodata._ZTV14SoftwareSerial + 0x0000000000000000 0x10 ./src/core/SoftwareSerial.o + .group 0x0000000000000000 0x10 ./src/core/Wire.o + .group 0x0000000000000000 0x10 ./src/core/Wire.o + .group 0x0000000000000000 0x10 ./src/core/Wire.o + .group 0x0000000000000000 0x10 ./src/core/Wire.o + .group 0x0000000000000000 0x10 ./src/core/Wire.o + .text 0x0000000000000000 0x0 ./src/core/Wire.o + .data 0x0000000000000000 0x0 ./src/core/Wire.o + .bss 0x0000000000000000 0x0 ./src/core/Wire.o + .text._ZN7TwoWireC2Ev + 0x0000000000000000 0x2 ./src/core/Wire.o + .ARM.extab.text._ZN7TwoWireC2Ev + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._ZN7TwoWireC2Ev + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._ZN7TwoWire5beginEii + 0x0000000000000000 0x4c ./src/core/Wire.o + .ARM.extab.text._ZN7TwoWire5beginEii + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._ZN7TwoWire5beginEii + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._ZN7TwoWire5beginEv + 0x0000000000000000 0x34 ./src/core/Wire.o + .ARM.extab.text._ZN7TwoWire5beginEv + 0x0000000000000000 0xc ./src/core/Wire.o + .ARM.exidx.text._ZN7TwoWire5beginEv + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._ZN7TwoWire5beginEh + 0x0000000000000000 0x8 ./src/core/Wire.o + .ARM.extab.text._ZN7TwoWire5beginEh + 0x0000000000000000 0xc ./src/core/Wire.o + .ARM.exidx.text._ZN7TwoWire5beginEh + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._ZN7TwoWire5beginEi + 0x0000000000000000 0x8 ./src/core/Wire.o + .ARM.extab.text._ZN7TwoWire5beginEi + 0x0000000000000000 0xc ./src/core/Wire.o + .ARM.exidx.text._ZN7TwoWire5beginEi + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._ZN7TwoWire17beginTransmissionEh + 0x0000000000000000 0x28 ./src/core/Wire.o + .ARM.extab.text._ZN7TwoWire17beginTransmissionEh + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._ZN7TwoWire17beginTransmissionEh + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._ZN7TwoWire17beginTransmissionEi + 0x0000000000000000 0xa ./src/core/Wire.o + .ARM.extab.text._ZN7TwoWire17beginTransmissionEi + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._ZN7TwoWire17beginTransmissionEi + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._ZN7TwoWire5writeEa + 0x0000000000000000 0x34 ./src/core/Wire.o + .ARM.extab.text._ZN7TwoWire5writeEa + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._ZN7TwoWire5writeEa + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._ZN7TwoWire4sendEPhh + 0x0000000000000000 0x2c ./src/core/Wire.o + .ARM.extab.text._ZN7TwoWire4sendEPhh + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._ZN7TwoWire4sendEPhh + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._ZN7TwoWire4sendEPa + 0x0000000000000000 0x18 ./src/core/Wire.o + .ARM.extab.text._ZN7TwoWire4sendEPa + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._ZN7TwoWire4sendEPa + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._ZN7TwoWire4sendEi + 0x0000000000000000 0xa ./src/core/Wire.o + .ARM.extab.text._ZN7TwoWire4sendEi + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._ZN7TwoWire4sendEi + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._ZN7TwoWire9availableEv + 0x0000000000000000 0x18 ./src/core/Wire.o + .ARM.extab.text._ZN7TwoWire9availableEv + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._ZN7TwoWire9availableEv + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._ZN7TwoWire7receiveEv + 0x0000000000000000 0x28 ./src/core/Wire.o + .ARM.extab.text._ZN7TwoWire7receiveEv + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._ZN7TwoWire7receiveEv + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._ZN7TwoWire16onReceiveServiceEPhi + 0x0000000000000000 0x48 ./src/core/Wire.o + .ARM.extab.text._ZN7TwoWire16onReceiveServiceEPhi + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._ZN7TwoWire16onReceiveServiceEPhi + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._ZN7TwoWire16onRequestServiceEv + 0x0000000000000000 0x24 ./src/core/Wire.o + .ARM.extab.text._ZN7TwoWire16onRequestServiceEv + 0x0000000000000000 0xc ./src/core/Wire.o + .ARM.exidx.text._ZN7TwoWire16onRequestServiceEv + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._ZN7TwoWire9onReceiveEPFviE + 0x0000000000000000 0xc ./src/core/Wire.o + .ARM.extab.text._ZN7TwoWire9onReceiveEPFviE + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._ZN7TwoWire9onReceiveEPFviE + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._ZN7TwoWire9onRequestEPFvvE + 0x0000000000000000 0xc ./src/core/Wire.o + .ARM.extab.text._ZN7TwoWire9onRequestEPFvvE + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._ZN7TwoWire9onRequestEPFvvE + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._Z4WAITv + 0x0000000000000000 0xa ./src/core/Wire.o + .ARM.extab.text._Z4WAITv + 0x0000000000000000 0xc ./src/core/Wire.o + .ARM.exidx.text._Z4WAITv + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._Z7SDA_RELi + 0x0000000000000000 0xa ./src/core/Wire.o + .ARM.extab.text._Z7SDA_RELi + 0x0000000000000000 0xc ./src/core/Wire.o + .ARM.exidx.text._Z7SDA_RELi + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._Z7SCL_RELi + 0x0000000000000000 0xa ./src/core/Wire.o + .ARM.extab.text._Z7SCL_RELi + 0x0000000000000000 0xc ./src/core/Wire.o + .ARM.exidx.text._Z7SCL_RELi + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._Z11i2c_stopbitii + 0x0000000000000000 0x20 ./src/core/Wire.o + .ARM.extab.text._Z11i2c_stopbitii + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._Z11i2c_stopbitii + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._Z7SDA_PULi + 0x0000000000000000 0x24 ./src/core/Wire.o + .ARM.extab.text._Z7SDA_PULi + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._Z7SDA_PULi + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._Z7SCL_PULi + 0x0000000000000000 0x24 ./src/core/Wire.o + .ARM.extab.text._Z7SCL_PULi + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._Z7SCL_PULi + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._Z13i2c_recv_byteii14WIRE_ACK_STATE + 0x0000000000000000 0xa2 ./src/core/Wire.o + .ARM.extab.text._Z13i2c_recv_byteii14WIRE_ACK_STATE + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._Z13i2c_recv_byteii14WIRE_ACK_STATE + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._Z13i2c_send_byteiih + 0x0000000000000000 0x90 ./src/core/Wire.o + .ARM.extab.text._Z13i2c_send_byteiih + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._Z13i2c_send_byteiih + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._Z8i2c_readiihPhh + 0x0000000000000000 0x4e ./src/core/Wire.o + .ARM.extab.text._Z8i2c_readiihPhh + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._Z8i2c_readiihPhh + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._Z9i2c_writeiihPhh + 0x0000000000000000 0x3c ./src/core/Wire.o + .ARM.extab.text._Z9i2c_writeiihPhh + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._Z9i2c_writeiihPhh + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._Z12i2c_startbitii + 0x0000000000000000 0x66 ./src/core/Wire.o + .ARM.extab.text._Z12i2c_startbitii + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._Z12i2c_startbitii + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._Z8i2c_pingiih + 0x0000000000000000 0x26 ./src/core/Wire.o + .ARM.extab.text._Z8i2c_pingiih + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._Z8i2c_pingiih + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._Z22i2c_begin_transmissioniih + 0x0000000000000000 0x8 ./src/core/Wire.o + .ARM.extab.text._Z22i2c_begin_transmissioniih + 0x0000000000000000 0xc ./src/core/Wire.o + .ARM.exidx.text._Z22i2c_begin_transmissioniih + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._Z16i2c_request_fromiihPhh + 0x0000000000000000 0x32 ./src/core/Wire.o + .ARM.extab.text._Z16i2c_request_fromiihPhh + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._Z16i2c_request_fromiihPhh + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._ZN7TwoWire11requestFromEhh + 0x0000000000000000 0x38 ./src/core/Wire.o + .ARM.extab.text._ZN7TwoWire11requestFromEhh + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._ZN7TwoWire11requestFromEhh + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._ZN7TwoWire11requestFromEii + 0x0000000000000000 0xc ./src/core/Wire.o + .ARM.extab.text._ZN7TwoWire11requestFromEii + 0x0000000000000000 0xc ./src/core/Wire.o + .ARM.exidx.text._ZN7TwoWire11requestFromEii + 0x0000000000000000 0x8 ./src/core/Wire.o + .text._ZN7TwoWire15endTransmissionEv + 0x0000000000000000 0x58 ./src/core/Wire.o + .ARM.extab.text._ZN7TwoWire15endTransmissionEv + 0x0000000000000000 0x0 ./src/core/Wire.o + .ARM.exidx.text._ZN7TwoWire15endTransmissionEv + 0x0000000000000000 0x8 ./src/core/Wire.o + .bss._ZN7TwoWire14user_onReceiveE + 0x0000000000000000 0x4 ./src/core/Wire.o + .bss._ZN7TwoWire8txBufferE + 0x0000000000000000 0x20 ./src/core/Wire.o + .bss._ZN7TwoWire8rxBufferE + 0x0000000000000000 0x20 ./src/core/Wire.o + .bss._ZN7TwoWire14user_onRequestE + 0x0000000000000000 0x4 ./src/core/Wire.o + .rodata.CSWTCH.49 + 0x0000000000000000 0x6 ./src/core/Wire.o + .bss.Wire 0x0000000000000000 0x8 ./src/core/Wire.o + .bss._ZN7TwoWire13rxBufferIndexE + 0x0000000000000000 0x1 ./src/core/Wire.o + .bss._ZN7TwoWire14rxBufferLengthE + 0x0000000000000000 0x1 ./src/core/Wire.o + .bss._ZN7TwoWire12transmittingE + 0x0000000000000000 0x1 ./src/core/Wire.o + .bss._ZN7TwoWire14txBufferLengthE + 0x0000000000000000 0x1 ./src/core/Wire.o + .bss._ZN7TwoWire13txBufferIndexE + 0x0000000000000000 0x1 ./src/core/Wire.o + .bss._ZN7TwoWire9txAddressE + 0x0000000000000000 0x1 ./src/core/Wire.o + .text 0x0000000000000000 0x0 ./src/core/analogio.o + .data 0x0000000000000000 0x0 ./src/core/analogio.o + .bss 0x0000000000000000 0x0 ./src/core/analogio.o + .ARM.extab.text.NVIC_SetPriority.constprop.2 + 0x0000000000000000 0x0 ./src/core/analogio.o + .text._Z23pwm_eucledean_algorithmi + 0x0000000000000000 0x2 ./src/core/analogio.o + .ARM.extab.text._Z23pwm_eucledean_algorithmi + 0x0000000000000000 0x0 ./src/core/analogio.o + .ARM.exidx.text._Z23pwm_eucledean_algorithmi + 0x0000000000000000 0x8 ./src/core/analogio.o + .ARM.extab.text.setup_TIMER16_0 + 0x0000000000000000 0x0 ./src/core/analogio.o + .ARM.extab.text.setup_TIMER16_1 + 0x0000000000000000 0x0 ./src/core/analogio.o + .ARM.extab.text.analogWrite + 0x0000000000000000 0x0 ./src/core/analogio.o + .ARM.extab.text.TIMER16_0_IRQHandler + 0x0000000000000000 0x0 ./src/core/analogio.o + .text 0x0000000000000000 0x0 ./src/core/arithmetical.o + .data 0x0000000000000000 0x0 ./src/core/arithmetical.o + .bss 0x0000000000000000 0x0 ./src/core/arithmetical.o + .text._Z10randomSeedj + 0x0000000000000000 0xc ./src/core/arithmetical.o + .ARM.extab.text._Z10randomSeedj + 0x0000000000000000 0x0 ./src/core/arithmetical.o + .ARM.exidx.text._Z10randomSeedj + 0x0000000000000000 0x8 ./src/core/arithmetical.o + .text._Z6randomv + 0x0000000000000000 0x50 ./src/core/arithmetical.o + .ARM.extab.text._Z6randomv + 0x0000000000000000 0x0 ./src/core/arithmetical.o + .ARM.exidx.text._Z6randomv + 0x0000000000000000 0x8 ./src/core/arithmetical.o + .text._Z11random_LFSRv + 0x0000000000000000 0x28 ./src/core/arithmetical.o + .ARM.extab.text._Z11random_LFSRv + 0x0000000000000000 0x0 ./src/core/arithmetical.o + .ARM.exidx.text._Z11random_LFSRv + 0x0000000000000000 0x8 ./src/core/arithmetical.o + .text._Z6randoml + 0x0000000000000000 0x16 ./src/core/arithmetical.o + .ARM.extab.text._Z6randoml + 0x0000000000000000 0x0 ./src/core/arithmetical.o + .ARM.exidx.text._Z6randoml + 0x0000000000000000 0x8 ./src/core/arithmetical.o + .text._Z6randomll + 0x0000000000000000 0x18 ./src/core/arithmetical.o + .ARM.extab.text._Z6randomll + 0x0000000000000000 0x0 ./src/core/arithmetical.o + .ARM.exidx.text._Z6randomll + 0x0000000000000000 0x8 ./src/core/arithmetical.o + .bss.random_seed + 0x0000000000000000 0x4 ./src/core/arithmetical.o + .text 0x0000000000000000 0x0 ./src/core/cr_cpp_config.o + .data 0x0000000000000000 0x0 ./src/core/cr_cpp_config.o + .bss 0x0000000000000000 0x0 ./src/core/cr_cpp_config.o + .text._Znwj 0x0000000000000000 0x8 ./src/core/cr_cpp_config.o + .ARM.extab.text._Znwj + 0x0000000000000000 0x0 ./src/core/cr_cpp_config.o + .ARM.exidx.text._Znwj + 0x0000000000000000 0x8 ./src/core/cr_cpp_config.o + .text._ZdlPv 0x0000000000000000 0x8 ./src/core/cr_cpp_config.o + .ARM.extab.text._ZdlPv + 0x0000000000000000 0x0 ./src/core/cr_cpp_config.o + .ARM.exidx.text._ZdlPv + 0x0000000000000000 0x8 ./src/core/cr_cpp_config.o + .ARM.extab.text.__aeabi_atexit + 0x0000000000000000 0x0 ./src/core/cr_cpp_config.o + .text 0x0000000000000000 0x0 ./src/core/cr_startup_lpc11.o + .data 0x0000000000000000 0x0 ./src/core/cr_startup_lpc11.o + .bss 0x0000000000000000 0x0 ./src/core/cr_startup_lpc11.o + .ARM.extab.after_vectors + 0x0000000000000000 0x0 ./src/core/cr_startup_lpc11.o + .text.__cxa_pure_virtual + 0x0000000000000000 0x4 ./src/core/cr_startup_lpc11.o + .ARM.extab.text.__cxa_pure_virtual + 0x0000000000000000 0x0 ./src/core/cr_startup_lpc11.o + .ARM.exidx.text.__cxa_pure_virtual + 0x0000000000000000 0x8 ./src/core/cr_startup_lpc11.o + .text.__cxa_demangle + 0x0000000000000000 0x2 ./src/core/cr_startup_lpc11.o + .ARM.extab.text.__cxa_demangle + 0x0000000000000000 0x0 ./src/core/cr_startup_lpc11.o + .ARM.exidx.text.__cxa_demangle + 0x0000000000000000 0x8 ./src/core/cr_startup_lpc11.o + .text 0x0000000000000000 0x0 ./src/core/delay.o + .data 0x0000000000000000 0x0 ./src/core/delay.o + .bss 0x0000000000000000 0x0 ./src/core/delay.o + .ARM.extab.text.NVIC_SetPriority + 0x0000000000000000 0x0 ./src/core/delay.o + .ARM.extab.text.delay + 0x0000000000000000 0x0 ./src/core/delay.o + .text.millis 0x0000000000000000 0xc ./src/core/delay.o + .ARM.extab.text.millis + 0x0000000000000000 0x0 ./src/core/delay.o + .ARM.exidx.text.millis + 0x0000000000000000 0x8 ./src/core/delay.o + .text.delayMicroseconds + 0x0000000000000000 0x18 ./src/core/delay.o + .ARM.extab.text.delayMicroseconds + 0x0000000000000000 0x0 ./src/core/delay.o + .ARM.exidx.text.delayMicroseconds + 0x0000000000000000 0x8 ./src/core/delay.o + .text.micros 0x0000000000000000 0xc ./src/core/delay.o + .ARM.extab.text.micros + 0x0000000000000000 0x0 ./src/core/delay.o + .ARM.exidx.text.micros + 0x0000000000000000 0x8 ./src/core/delay.o + .ARM.extab.text.setup_TIMER32_1 + 0x0000000000000000 0x0 ./src/core/delay.o + .text.attachMicroseconds + 0x0000000000000000 0x40 ./src/core/delay.o + .ARM.extab.text.attachMicroseconds + 0x0000000000000000 0x0 ./src/core/delay.o + .ARM.exidx.text.attachMicroseconds + 0x0000000000000000 0x8 ./src/core/delay.o + .text.detachMicroseconds + 0x0000000000000000 0x1c ./src/core/delay.o + .ARM.extab.text.detachMicroseconds + 0x0000000000000000 0x0 ./src/core/delay.o + .ARM.exidx.text.detachMicroseconds + 0x0000000000000000 0x8 ./src/core/delay.o + .ARM.extab.text.TIMER32_1_IRQHandler + 0x0000000000000000 0x0 ./src/core/delay.o + .ARM.extab.text.SysTick_Handler + 0x0000000000000000 0x0 ./src/core/delay.o + .ARM.extab.text.setup_systick + 0x0000000000000000 0x0 ./src/core/delay.o + .text 0x0000000000000000 0x0 ./src/core/gpio.o + .data 0x0000000000000000 0x0 ./src/core/gpio.o + .bss 0x0000000000000000 0x0 ./src/core/gpio.o + .ARM.extab.text.pinMode + 0x0000000000000000 0x0 ./src/core/gpio.o + .ARM.extab.text.digitalWrite + 0x0000000000000000 0x0 ./src/core/gpio.o + .text.digitalRead + 0x0000000000000000 0x48 ./src/core/gpio.o + .ARM.extab.text.digitalRead + 0x0000000000000000 0x0 ./src/core/gpio.o + .ARM.exidx.text.digitalRead + 0x0000000000000000 0x8 ./src/core/gpio.o + .text.GPIOSetInterrupt + 0x0000000000000000 0x130 ./src/core/gpio.o + .ARM.extab.text.GPIOSetInterrupt + 0x0000000000000000 0x0 ./src/core/gpio.o + .ARM.exidx.text.GPIOSetInterrupt + 0x0000000000000000 0x8 ./src/core/gpio.o + .text.GPIOIntEnable + 0x0000000000000000 0x4c ./src/core/gpio.o + .ARM.extab.text.GPIOIntEnable + 0x0000000000000000 0x0 ./src/core/gpio.o + .ARM.exidx.text.GPIOIntEnable + 0x0000000000000000 0x8 ./src/core/gpio.o + .text.GPIOIntDisable + 0x0000000000000000 0x48 ./src/core/gpio.o + .ARM.extab.text.GPIOIntDisable + 0x0000000000000000 0x0 ./src/core/gpio.o + .ARM.exidx.text.GPIOIntDisable + 0x0000000000000000 0x8 ./src/core/gpio.o + .ARM.extab.text.GPIOIntStatus + 0x0000000000000000 0x0 ./src/core/gpio.o + .ARM.extab.text.GPIOIntClear + 0x0000000000000000 0x0 ./src/core/gpio.o + .text 0x0000000000000000 0x0 ./src/core/gpio_int.o + .data 0x0000000000000000 0x0 ./src/core/gpio_int.o + .bss 0x0000000000000000 0x0 ./src/core/gpio_int.o + .text.NVIC_EnableIRQ + 0x0000000000000000 0x14 ./src/core/gpio_int.o + .ARM.extab.text.NVIC_EnableIRQ + 0x0000000000000000 0x0 ./src/core/gpio_int.o + .ARM.exidx.text.NVIC_EnableIRQ + 0x0000000000000000 0x8 ./src/core/gpio_int.o + .text.NVIC_DisableIRQ + 0x0000000000000000 0x14 ./src/core/gpio_int.o + .ARM.extab.text.NVIC_DisableIRQ + 0x0000000000000000 0x0 ./src/core/gpio_int.o + .ARM.exidx.text.NVIC_DisableIRQ + 0x0000000000000000 0x8 ./src/core/gpio_int.o + .text.attachInterrupt + 0x0000000000000000 0xac ./src/core/gpio_int.o + .ARM.extab.text.attachInterrupt + 0x0000000000000000 0x0 ./src/core/gpio_int.o + .ARM.exidx.text.attachInterrupt + 0x0000000000000000 0x8 ./src/core/gpio_int.o + .text.detachInterrupt + 0x0000000000000000 0x78 ./src/core/gpio_int.o + .ARM.extab.text.detachInterrupt + 0x0000000000000000 0x0 ./src/core/gpio_int.o + .ARM.exidx.text.detachInterrupt + 0x0000000000000000 0x8 ./src/core/gpio_int.o + .ARM.extab.text.GPIO_IRQHandler + 0x0000000000000000 0x0 ./src/core/gpio_int.o + .rodata._ZL8LPC_GPIO + 0x0000000000000000 0x10 ./src/core/gpio_int.o + .rodata._ZL14mary_pinAssign + 0x0000000000000000 0xe0 ./src/core/gpio_int.o + .rodata._ZL17arduino_pinAssign + 0x0000000000000000 0xb0 ./src/core/gpio_int.o + .text 0x0000000000000000 0x0 ./src/core/maryoled.o + .data 0x0000000000000000 0x0 ./src/core/maryoled.o + .bss 0x0000000000000000 0x0 ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLEDD2Ev + 0x0000000000000000 0x0 ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLEDC2Ev + 0x0000000000000000 0x0 ./src/core/maryoled.o + .text._ZN8MARYOLED7commandEi + 0x0000000000000000 0x24 ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLED7commandEi + 0x0000000000000000 0x0 ./src/core/maryoled.o + .ARM.exidx.text._ZN8MARYOLED7commandEi + 0x0000000000000000 0x8 ./src/core/maryoled.o + .text._ZN8MARYOLED4dataEi + 0x0000000000000000 0x28 ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLED4dataEi + 0x0000000000000000 0x0 ./src/core/maryoled.o + .ARM.exidx.text._ZN8MARYOLED4dataEi + 0x0000000000000000 0x8 ./src/core/maryoled.o + .text._ZN8MARYOLED7_windowEiiii + 0x0000000000000000 0x48 ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLED7_windowEiiii + 0x0000000000000000 0x0 ./src/core/maryoled.o + .ARM.exidx.text._ZN8MARYOLED7_windowEiiii + 0x0000000000000000 0x8 ./src/core/maryoled.o + .text._ZN8MARYOLED11WindowResetEv + 0x0000000000000000 0x3c ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLED11WindowResetEv + 0x0000000000000000 0x0 ./src/core/maryoled.o + .ARM.exidx.text._ZN8MARYOLED11WindowResetEv + 0x0000000000000000 0x8 ./src/core/maryoled.o + .text._ZN8MARYOLED6locateEii + 0x0000000000000000 0x6 ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLED6locateEii + 0x0000000000000000 0x0 ./src/core/maryoled.o + .ARM.exidx.text._ZN8MARYOLED6locateEii + 0x0000000000000000 0x8 ./src/core/maryoled.o + .text._ZN8MARYOLED7newlineEv + 0x0000000000000000 0x14 ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLED7newlineEv + 0x0000000000000000 0x0 ./src/core/maryoled.o + .ARM.exidx.text._ZN8MARYOLED7newlineEv + 0x0000000000000000 0x8 ./src/core/maryoled.o + .text._ZN8MARYOLED5_putpEi + 0x0000000000000000 0x24 ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLED5_putpEi + 0x0000000000000000 0x0 ./src/core/maryoled.o + .ARM.exidx.text._ZN8MARYOLED5_putpEi + 0x0000000000000000 0x8 ./src/core/maryoled.o + .text._ZN8MARYOLED6windowEiiii + 0x0000000000000000 0xc ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLED6windowEiiii + 0x0000000000000000 0x0 ./src/core/maryoled.o + .ARM.exidx.text._ZN8MARYOLED6windowEiiii + 0x0000000000000000 0x8 ./src/core/maryoled.o + .text._ZN8MARYOLED4putpEi + 0x0000000000000000 0x8 ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLED4putpEi + 0x0000000000000000 0xc ./src/core/maryoled.o + .ARM.exidx.text._ZN8MARYOLED4putpEi + 0x0000000000000000 0x8 ./src/core/maryoled.o + .text._ZN8MARYOLED5pixelEiii + 0x0000000000000000 0x18 ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLED5pixelEiii + 0x0000000000000000 0x0 ./src/core/maryoled.o + .ARM.exidx.text._ZN8MARYOLED5pixelEiii + 0x0000000000000000 0x8 ./src/core/maryoled.o + .text._ZN8MARYOLED4fillEiiiii + 0x0000000000000000 0x52 ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLED4fillEiiiii + 0x0000000000000000 0x0 ./src/core/maryoled.o + .ARM.exidx.text._ZN8MARYOLED4fillEiiiii + 0x0000000000000000 0x8 ./src/core/maryoled.o + .text._ZN8MARYOLED3clsEv + 0x0000000000000000 0x1c ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLED3clsEv + 0x0000000000000000 0x0 ./src/core/maryoled.o + .ARM.exidx.text._ZN8MARYOLED3clsEv + 0x0000000000000000 0x8 ./src/core/maryoled.o + .text._ZN8MARYOLED5resetEv + 0x0000000000000000 0x228 ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLED5resetEv + 0x0000000000000000 0x0 ./src/core/maryoled.o + .ARM.exidx.text._ZN8MARYOLED5resetEv + 0x0000000000000000 0x8 ./src/core/maryoled.o + .text._ZN8MARYOLED5resetE8SSP_PORT + 0x0000000000000000 0x46 ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLED5resetE8SSP_PORT + 0x0000000000000000 0x0 ./src/core/maryoled.o + .ARM.exidx.text._ZN8MARYOLED5resetE8SSP_PORT + 0x0000000000000000 0x8 ./src/core/maryoled.o + .text._ZN8MARYOLED4blitEiiiiPKi + 0x0000000000000000 0x54 ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLED4blitEiiiiPKi + 0x0000000000000000 0x0 ./src/core/maryoled.o + .ARM.exidx.text._ZN8MARYOLED4blitEiiiiPKi + 0x0000000000000000 0x8 ./src/core/maryoled.o + .text._ZN8MARYOLED7bitblitEiiiiPKc + 0x0000000000000000 0x84 ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLED7bitblitEiiiiPKc + 0x0000000000000000 0x0 ./src/core/maryoled.o + .ARM.exidx.text._ZN8MARYOLED7bitblitEiiiiPKc + 0x0000000000000000 0x8 ./src/core/maryoled.o + .text._ZN8MARYOLED5_putcEi + 0x0000000000000000 0x50 ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLED5_putcEi + 0x0000000000000000 0x0 ./src/core/maryoled.o + .ARM.exidx.text._ZN8MARYOLED5_putcEi + 0x0000000000000000 0x8 ./src/core/maryoled.o + .text._ZN8MARYOLED10foregroundEi + 0x0000000000000000 0x4 ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLED10foregroundEi + 0x0000000000000000 0x0 ./src/core/maryoled.o + .ARM.exidx.text._ZN8MARYOLED10foregroundEi + 0x0000000000000000 0x8 ./src/core/maryoled.o + .text._ZN8MARYOLED10backgroundEi + 0x0000000000000000 0x4 ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLED10backgroundEi + 0x0000000000000000 0x0 ./src/core/maryoled.o + .ARM.exidx.text._ZN8MARYOLED10backgroundEi + 0x0000000000000000 0x8 ./src/core/maryoled.o + .text._ZN8MARYOLED5widthEv + 0x0000000000000000 0x4 ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLED5widthEv + 0x0000000000000000 0x0 ./src/core/maryoled.o + .ARM.exidx.text._ZN8MARYOLED5widthEv + 0x0000000000000000 0x8 ./src/core/maryoled.o + .text._ZN8MARYOLED6heightEv + 0x0000000000000000 0x4 ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLED6heightEv + 0x0000000000000000 0x0 ./src/core/maryoled.o + .ARM.exidx.text._ZN8MARYOLED6heightEv + 0x0000000000000000 0x8 ./src/core/maryoled.o + .text._ZN8MARYOLED7columnsEv + 0x0000000000000000 0x4 ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLED7columnsEv + 0x0000000000000000 0x0 ./src/core/maryoled.o + .ARM.exidx.text._ZN8MARYOLED7columnsEv + 0x0000000000000000 0x8 ./src/core/maryoled.o + .text._ZN8MARYOLED4rowsEv + 0x0000000000000000 0x4 ./src/core/maryoled.o + .ARM.extab.text._ZN8MARYOLED4rowsEv + 0x0000000000000000 0x0 ./src/core/maryoled.o + .ARM.exidx.text._ZN8MARYOLED4rowsEv + 0x0000000000000000 0x8 ./src/core/maryoled.o + .ARM.extab.text.startup._GLOBAL__sub_I_oled + 0x0000000000000000 0x0 ./src/core/maryoled.o + .rodata 0x0000000000000000 0x3f ./src/core/maryoled.o + .rodata._ZL7FONT8x8 + 0x0000000000000000 0x308 ./src/core/maryoled.o + .text 0x0000000000000000 0x0 ./src/core/startup_mary.o + .data 0x0000000000000000 0x0 ./src/core/startup_mary.o + .bss 0x0000000000000000 0x0 ./src/core/startup_mary.o + .text 0x0000000000000000 0x0 ./src/core/system_LPC11xx.o + .data 0x0000000000000000 0x0 ./src/core/system_LPC11xx.o + .bss 0x0000000000000000 0x0 ./src/core/system_LPC11xx.o + .text.SystemCoreClockUpdate + 0x0000000000000000 0x9c ./src/core/system_LPC11xx.o + .ARM.extab.text.SystemCoreClockUpdate + 0x0000000000000000 0x0 ./src/core/system_LPC11xx.o + .ARM.exidx.text.SystemCoreClockUpdate + 0x0000000000000000 0x8 ./src/core/system_LPC11xx.o + .ARM.extab.text.SystemInit + 0x0000000000000000 0x0 ./src/core/system_LPC11xx.o + .rodata.CSWTCH.16 + 0x0000000000000000 0x40 ./src/core/system_LPC11xx.o + .text 0x0000000000000000 0x0 ./src/core/uart.o + .data 0x0000000000000000 0x0 ./src/core/uart.o + .bss 0x0000000000000000 0x0 ./src/core/uart.o + .ARM.extab.text._ZN7USerialD2Ev + 0x0000000000000000 0x0 ./src/core/uart.o + .ARM.extab.text._ZN7USerial5writeEc + 0x0000000000000000 0x0 ./src/core/uart.o + .text._ZN7USerialC2Ev + 0x0000000000000000 0x18 ./src/core/uart.o + .ARM.extab.text._ZN7USerialC2Ev + 0x0000000000000000 0x0 ./src/core/uart.o + .ARM.exidx.text._ZN7USerialC2Ev + 0x0000000000000000 0x8 ./src/core/uart.o + .ARM.extab.text._ZN7USerial5beginEi + 0x0000000000000000 0x0 ./src/core/uart.o + .text._ZN7USerial3endEv + 0x0000000000000000 0x2 ./src/core/uart.o + .ARM.extab.text._ZN7USerial3endEv + 0x0000000000000000 0x0 ./src/core/uart.o + .ARM.exidx.text._ZN7USerial3endEv + 0x0000000000000000 0x8 ./src/core/uart.o + .text._ZN7USerial9availableEv + 0x0000000000000000 0x10 ./src/core/uart.o + .ARM.extab.text._ZN7USerial9availableEv + 0x0000000000000000 0x0 ./src/core/uart.o + .ARM.exidx.text._ZN7USerial9availableEv + 0x0000000000000000 0x8 ./src/core/uart.o + .text._ZN7USerial4readEv + 0x0000000000000000 0xc ./src/core/uart.o + .ARM.extab.text._ZN7USerial4readEv + 0x0000000000000000 0x0 ./src/core/uart.o + .ARM.exidx.text._ZN7USerial4readEv + 0x0000000000000000 0x8 ./src/core/uart.o + .ARM.extab.text.startup._GLOBAL__sub_I_Serial + 0x0000000000000000 0x0 ./src/core/uart.o + .group 0x0000000000000000 0x8 ./src/XBee/XBee.o + .group 0x0000000000000000 0x8 ./src/XBee/XBee.o + .group 0x0000000000000000 0x8 ./src/XBee/XBee.o + .group 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text 0x0000000000000000 0x0 ./src/XBee/XBee.o + .data 0x0000000000000000 0x0 ./src/XBee/XBee.o + .bss 0x0000000000000000 0x0 ./src/XBee/XBee.o + .text._ZN12ZBRxResponse13getDataOffsetEv + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN12ZBRxResponse13getDataOffsetEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12ZBRxResponse13getDataOffsetEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12ZBRxResponse13getDataLengthEv + 0x0000000000000000 0x12 ./src/XBee/XBee.o + .ARM.extab.text._ZN12ZBRxResponse13getDataLengthEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12ZBRxResponse13getDataLengthEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN11ZBTxRequest18getFrameDataLengthEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .ARM.extab.text._ZN11ZBTxRequest18getFrameDataLengthEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN11ZBTxRequest18getFrameDataLengthEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN16AtCommandRequest18getFrameDataLengthEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .ARM.extab.text._ZN16AtCommandRequest18getFrameDataLengthEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN16AtCommandRequest18getFrameDataLengthEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN22RemoteAtCommandRequest18getFrameDataLengthEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .ARM.extab.text._ZN22RemoteAtCommandRequest18getFrameDataLengthEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN22RemoteAtCommandRequest18getFrameDataLengthEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN16AtCommandRequest12getFrameDataEh + 0x0000000000000000 0x20 ./src/XBee/XBee.o + .ARM.extab.text._ZN16AtCommandRequest12getFrameDataEh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN16AtCommandRequest12getFrameDataEh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN11ZBTxRequest12getFrameDataEh + 0x0000000000000000 0x6e ./src/XBee/XBee.o + .ARM.extab.text._ZN11ZBTxRequest12getFrameDataEh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN11ZBTxRequest12getFrameDataEh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN22RemoteAtCommandRequest12getFrameDataEh + 0x0000000000000000 0x80 ./src/XBee/XBee.o + .ARM.extab.text._ZN22RemoteAtCommandRequest12getFrameDataEh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN22RemoteAtCommandRequest12getFrameDataEh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponseC2Ev + 0x0000000000000000 0x2 ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponseC2Ev + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponseC2Ev + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse8getApiIdEv + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse8getApiIdEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse8getApiIdEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse8setApiIdEh + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse8setApiIdEh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse8setApiIdEh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse12getMsbLengthEv + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse12getMsbLengthEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse12getMsbLengthEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse12setMsbLengthEh + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse12setMsbLengthEh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse12setMsbLengthEh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse12getLsbLengthEv + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse12getLsbLengthEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse12getLsbLengthEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse12setLsbLengthEh + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse12setLsbLengthEh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse12setLsbLengthEh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse11getChecksumEv + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse11getChecksumEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse11getChecksumEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse11setChecksumEh + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse11setChecksumEh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse11setChecksumEh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse18getFrameDataLengthEv + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse18getFrameDataLengthEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse18getFrameDataLengthEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse14setFrameLengthEh + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse14setFrameLengthEh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse14setFrameLengthEh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse11isAvailableEv + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse11isAvailableEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse11isAvailableEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse12setAvailableEb + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse12setAvailableEb + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse12setAvailableEb + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse7isErrorEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse7isErrorEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse7isErrorEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse12getErrorCodeEv + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse12getErrorCodeEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse12getErrorCodeEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse12setErrorCodeEh + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse12setErrorCodeEh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse12setErrorCodeEh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse9setCommonERS_ + 0x0000000000000000 0x1e ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse9setCommonERS_ + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse9setCommonERS_ + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN18ZBTxStatusResponseC2Ev + 0x0000000000000000 0x2 ./src/XBee/XBee.o + .ARM.extab.text._ZN18ZBTxStatusResponseC2Ev + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN18ZBTxStatusResponseC2Ev + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN18ZBTxStatusResponse16getRemoteAddressEv + 0x0000000000000000 0xe ./src/XBee/XBee.o + .ARM.extab.text._ZN18ZBTxStatusResponse16getRemoteAddressEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN18ZBTxStatusResponse16getRemoteAddressEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN18ZBTxStatusResponse15getTxRetryCountEv + 0x0000000000000000 0x6 ./src/XBee/XBee.o + .ARM.extab.text._ZN18ZBTxStatusResponse15getTxRetryCountEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN18ZBTxStatusResponse15getTxRetryCountEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN18ZBTxStatusResponse17getDeliveryStatusEv + 0x0000000000000000 0x6 ./src/XBee/XBee.o + .ARM.extab.text._ZN18ZBTxStatusResponse17getDeliveryStatusEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN18ZBTxStatusResponse17getDeliveryStatusEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN18ZBTxStatusResponse18getDiscoveryStatusEv + 0x0000000000000000 0x6 ./src/XBee/XBee.o + .ARM.extab.text._ZN18ZBTxStatusResponse18getDiscoveryStatusEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN18ZBTxStatusResponse18getDiscoveryStatusEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN18ZBTxStatusResponse9isSuccessEv + 0x0000000000000000 0xa ./src/XBee/XBee.o + .ARM.extab.text._ZN18ZBTxStatusResponse9isSuccessEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN18ZBTxStatusResponse9isSuccessEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse21getZBTxStatusResponseERS_ + 0x0000000000000000 0xc ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse21getZBTxStatusResponseERS_ + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse21getZBTxStatusResponseERS_ + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12ZBRxResponseC2Ev + 0x0000000000000000 0x14 ./src/XBee/XBee.o + .ARM.extab.text._ZN12ZBRxResponseC2Ev + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12ZBRxResponseC2Ev + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12ZBRxResponse18getRemoteAddress16Ev + 0x0000000000000000 0xe ./src/XBee/XBee.o + .ARM.extab.text._ZN12ZBRxResponse18getRemoteAddress16Ev + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12ZBRxResponse18getRemoteAddress16Ev + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12ZBRxResponse9getOptionEv + 0x0000000000000000 0x6 ./src/XBee/XBee.o + .ARM.extab.text._ZN12ZBRxResponse9getOptionEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12ZBRxResponse9getOptionEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12ZBRxResponse18getRemoteAddress64Ev + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN12ZBRxResponse18getRemoteAddress64Ev + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12ZBRxResponse18getRemoteAddress64Ev + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse15getZBRxResponseERS_ + 0x0000000000000000 0x3e ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse15getZBRxResponseERS_ + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse15getZBRxResponseERS_ + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN20ZBRxIoSampleResponseC2Ev + 0x0000000000000000 0x10 ./src/XBee/XBee.o + .ARM.extab.text._ZN20ZBRxIoSampleResponseC2Ev + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN20ZBRxIoSampleResponseC2Ev + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN20ZBRxIoSampleResponse17getDigitalMaskMsbEv + 0x0000000000000000 0xa ./src/XBee/XBee.o + .ARM.extab.text._ZN20ZBRxIoSampleResponse17getDigitalMaskMsbEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN20ZBRxIoSampleResponse17getDigitalMaskMsbEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN20ZBRxIoSampleResponse17getDigitalMaskLsbEv + 0x0000000000000000 0x6 ./src/XBee/XBee.o + .ARM.extab.text._ZN20ZBRxIoSampleResponse17getDigitalMaskLsbEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN20ZBRxIoSampleResponse17getDigitalMaskLsbEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN20ZBRxIoSampleResponse13getAnalogMaskEv + 0x0000000000000000 0xa ./src/XBee/XBee.o + .ARM.extab.text._ZN20ZBRxIoSampleResponse13getAnalogMaskEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN20ZBRxIoSampleResponse13getAnalogMaskEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN20ZBRxIoSampleResponse14containsAnalogEv + 0x0000000000000000 0xe ./src/XBee/XBee.o + .ARM.extab.text._ZN20ZBRxIoSampleResponse14containsAnalogEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN20ZBRxIoSampleResponse14containsAnalogEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN20ZBRxIoSampleResponse15containsDigitalEv + 0x0000000000000000 0x16 ./src/XBee/XBee.o + .ARM.extab.text._ZN20ZBRxIoSampleResponse15containsDigitalEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN20ZBRxIoSampleResponse15containsDigitalEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN20ZBRxIoSampleResponse15isAnalogEnabledEh + 0x0000000000000000 0x10 ./src/XBee/XBee.o + .ARM.extab.text._ZN20ZBRxIoSampleResponse15isAnalogEnabledEh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN20ZBRxIoSampleResponse15isAnalogEnabledEh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN20ZBRxIoSampleResponse16isDigitalEnabledEh + 0x0000000000000000 0x1c ./src/XBee/XBee.o + .ARM.extab.text._ZN20ZBRxIoSampleResponse16isDigitalEnabledEh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN20ZBRxIoSampleResponse16isDigitalEnabledEh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN20ZBRxIoSampleResponse9getAnalogEh + 0x0000000000000000 0x3e ./src/XBee/XBee.o + .ARM.extab.text._ZN20ZBRxIoSampleResponse9getAnalogEh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN20ZBRxIoSampleResponse9getAnalogEh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN20ZBRxIoSampleResponse11isDigitalOnEh + 0x0000000000000000 0x18 ./src/XBee/XBee.o + .ARM.extab.text._ZN20ZBRxIoSampleResponse11isDigitalOnEh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN20ZBRxIoSampleResponse11isDigitalOnEh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse23getZBRxIoSampleResponseERS_ + 0x0000000000000000 0x3e ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse23getZBRxIoSampleResponseERS_ + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse23getZBRxIoSampleResponseERS_ + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN23RemoteAtCommandResponseC2Ev + 0x0000000000000000 0x2 ./src/XBee/XBee.o + .ARM.extab.text._ZN23RemoteAtCommandResponseC2Ev + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN23RemoteAtCommandResponseC2Ev + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN23RemoteAtCommandResponse10getCommandEv + 0x0000000000000000 0x6 ./src/XBee/XBee.o + .ARM.extab.text._ZN23RemoteAtCommandResponse10getCommandEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN23RemoteAtCommandResponse10getCommandEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN23RemoteAtCommandResponse9getStatusEv + 0x0000000000000000 0x6 ./src/XBee/XBee.o + .ARM.extab.text._ZN23RemoteAtCommandResponse9getStatusEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN23RemoteAtCommandResponse9getStatusEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN23RemoteAtCommandResponse4isOkEv + 0x0000000000000000 0xa ./src/XBee/XBee.o + .ARM.extab.text._ZN23RemoteAtCommandResponse4isOkEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN23RemoteAtCommandResponse4isOkEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN23RemoteAtCommandResponse14getValueLengthEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .ARM.extab.text._ZN23RemoteAtCommandResponse14getValueLengthEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN23RemoteAtCommandResponse14getValueLengthEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN23RemoteAtCommandResponse8getValueEv + 0x0000000000000000 0x12 ./src/XBee/XBee.o + .ARM.extab.text._ZN23RemoteAtCommandResponse8getValueEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN23RemoteAtCommandResponse8getValueEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN23RemoteAtCommandResponse18getRemoteAddress16Ev + 0x0000000000000000 0xe ./src/XBee/XBee.o + .ARM.extab.text._ZN23RemoteAtCommandResponse18getRemoteAddress16Ev + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN23RemoteAtCommandResponse18getRemoteAddress16Ev + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN23RemoteAtCommandResponse18getRemoteAddress64Ev + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN23RemoteAtCommandResponse18getRemoteAddress64Ev + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN23RemoteAtCommandResponse18getRemoteAddress64Ev + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse26getRemoteAtCommandResponseERS_ + 0x0000000000000000 0x3e ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse26getRemoteAtCommandResponseERS_ + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse26getRemoteAtCommandResponseERS_ + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN14RxDataResponseC2Ev + 0x0000000000000000 0xc ./src/XBee/XBee.o + .ARM.extab.text._ZN14RxDataResponseC2Ev + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN14RxDataResponseC2Ev + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN14RxDataResponse7getDataEi + 0x0000000000000000 0x12 ./src/XBee/XBee.o + .ARM.extab.text._ZN14RxDataResponse7getDataEi + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN14RxDataResponse7getDataEi + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN14RxDataResponse7getDataEv + 0x0000000000000000 0xe ./src/XBee/XBee.o + .ARM.extab.text._ZN14RxDataResponse7getDataEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN14RxDataResponse7getDataEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN15FrameIdResponseC2Ev + 0x0000000000000000 0x2 ./src/XBee/XBee.o + .ARM.extab.text._ZN15FrameIdResponseC2Ev + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN15FrameIdResponseC2Ev + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN15FrameIdResponse10getFrameIdEv + 0x0000000000000000 0x6 ./src/XBee/XBee.o + .ARM.extab.text._ZN15FrameIdResponse10getFrameIdEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN15FrameIdResponse10getFrameIdEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN19ModemStatusResponseC2Ev + 0x0000000000000000 0x2 ./src/XBee/XBee.o + .ARM.extab.text._ZN19ModemStatusResponseC2Ev + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN19ModemStatusResponseC2Ev + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN19ModemStatusResponse9getStatusEv + 0x0000000000000000 0x6 ./src/XBee/XBee.o + .ARM.extab.text._ZN19ModemStatusResponse9getStatusEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN19ModemStatusResponse9getStatusEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse22getModemStatusResponseERS_ + 0x0000000000000000 0xc ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse22getModemStatusResponseERS_ + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse22getModemStatusResponseERS_ + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN17AtCommandResponseC2Ev + 0x0000000000000000 0x2 ./src/XBee/XBee.o + .ARM.extab.text._ZN17AtCommandResponseC2Ev + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN17AtCommandResponseC2Ev + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN17AtCommandResponse10getCommandEv + 0x0000000000000000 0x6 ./src/XBee/XBee.o + .ARM.extab.text._ZN17AtCommandResponse10getCommandEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN17AtCommandResponse10getCommandEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN17AtCommandResponse9getStatusEv + 0x0000000000000000 0x6 ./src/XBee/XBee.o + .ARM.extab.text._ZN17AtCommandResponse9getStatusEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN17AtCommandResponse9getStatusEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN17AtCommandResponse14getValueLengthEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .ARM.extab.text._ZN17AtCommandResponse14getValueLengthEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN17AtCommandResponse14getValueLengthEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN17AtCommandResponse8getValueEv + 0x0000000000000000 0x12 ./src/XBee/XBee.o + .ARM.extab.text._ZN17AtCommandResponse8getValueEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN17AtCommandResponse8getValueEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN17AtCommandResponse4isOkEv + 0x0000000000000000 0xa ./src/XBee/XBee.o + .ARM.extab.text._ZN17AtCommandResponse4isOkEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN17AtCommandResponse4isOkEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse20getAtCommandResponseERS_ + 0x0000000000000000 0xc ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse20getAtCommandResponseERS_ + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse20getAtCommandResponseERS_ + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse15getPacketLengthEv + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse15getPacketLengthEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse15getPacketLengthEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse12getFrameDataEv + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse12getFrameDataEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse12getFrameDataEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse12setFrameDataEPh + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse12setFrameDataEPh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse12setFrameDataEPh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse4initEv + 0x0000000000000000 0xa ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse4initEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse4initEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN12XBeeResponse5resetEv + 0x0000000000000000 0x20 ./src/XBee/XBee.o + .ARM.extab.text._ZN12XBeeResponse5resetEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN12XBeeResponse5resetEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN4XBee13resetResponseEv + 0x0000000000000000 0xe ./src/XBee/XBee.o + .ARM.extab.text._ZN4XBee13resetResponseEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN4XBee13resetResponseEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN4XBeeC2Ev + 0x0000000000000000 0x18 ./src/XBee/XBee.o + .ARM.extab.text._ZN4XBeeC2Ev + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN4XBeeC2Ev + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN4XBee14getNextFrameIdEv + 0x0000000000000000 0x16 ./src/XBee/XBee.o + .ARM.extab.text._ZN4XBee14getNextFrameIdEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN4XBee14getNextFrameIdEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN4XBee5beginEi + 0x0000000000000000 0x10 ./src/XBee/XBee.o + .ARM.extab.text._ZN4XBee5beginEi + 0x0000000000000000 0xc ./src/XBee/XBee.o + .ARM.exidx.text._ZN4XBee5beginEi + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN4XBee11getResponseEv + 0x0000000000000000 0x2 ./src/XBee/XBee.o + .ARM.extab.text._ZN4XBee11getResponseEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN4XBee11getResponseEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN4XBee11getResponseER12XBeeResponse + 0x0000000000000000 0x16 ./src/XBee/XBee.o + .ARM.extab.text._ZN4XBee11getResponseER12XBeeResponse + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN4XBee11getResponseER12XBeeResponse + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN4XBee10readPacketEv + 0x0000000000000000 0xf0 ./src/XBee/XBee.o + .ARM.extab.text._ZN4XBee10readPacketEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN4XBee10readPacketEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN4XBee10readPacketEi + 0x0000000000000000 0x38 ./src/XBee/XBee.o + .ARM.extab.text._ZN4XBee10readPacketEi + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN4XBee10readPacketEi + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN4XBee24readPacketUntilAvailableEv + 0x0000000000000000 0x1a ./src/XBee/XBee.o + .ARM.extab.text._ZN4XBee24readPacketUntilAvailableEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN4XBee24readPacketUntilAvailableEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN11XBeeRequestC2Ehh + 0x0000000000000000 0x10 ./src/XBee/XBee.o + .ARM.extab.text._ZN11XBeeRequestC2Ehh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN11XBeeRequestC2Ehh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN11XBeeRequest10setFrameIdEh + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN11XBeeRequest10setFrameIdEh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN11XBeeRequest10setFrameIdEh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN11XBeeRequest10getFrameIdEv + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN11XBeeRequest10getFrameIdEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN11XBeeRequest10getFrameIdEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN11XBeeRequest8getApiIdEv + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN11XBeeRequest8getApiIdEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN11XBeeRequest8getApiIdEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN11XBeeRequest8setApiIdEh + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN11XBeeRequest8setApiIdEh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN11XBeeRequest8setApiIdEh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN14PayloadRequestC2EhhPhh + 0x0000000000000000 0x18 ./src/XBee/XBee.o + .ARM.extab.text._ZN14PayloadRequestC2EhhPhh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN14PayloadRequestC2EhhPhh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN14PayloadRequest10getPayloadEv + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN14PayloadRequest10getPayloadEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN14PayloadRequest10getPayloadEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN14PayloadRequest10setPayloadEPh + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN14PayloadRequest10setPayloadEPh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN14PayloadRequest10setPayloadEPh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN14PayloadRequest16getPayloadLengthEv + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN14PayloadRequest16getPayloadLengthEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN14PayloadRequest16getPayloadLengthEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN14PayloadRequest16setPayloadLengthEh + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN14PayloadRequest16setPayloadLengthEh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN14PayloadRequest16setPayloadLengthEh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN11XBeeAddressC2Ev + 0x0000000000000000 0x2 ./src/XBee/XBee.o + .ARM.extab.text._ZN11XBeeAddressC2Ev + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN11XBeeAddressC2Ev + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN13XBeeAddress64C2Ev + 0x0000000000000000 0x2 ./src/XBee/XBee.o + .ARM.extab.text._ZN13XBeeAddress64C2Ev + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN13XBeeAddress64C2Ev + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN13XBeeAddress64C2Emm + 0x0000000000000000 0x6 ./src/XBee/XBee.o + .ARM.extab.text._ZN13XBeeAddress64C2Emm + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN13XBeeAddress64C2Emm + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN13XBeeAddress646getMsbEv + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN13XBeeAddress646getMsbEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN13XBeeAddress646getMsbEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN13XBeeAddress646setMsbEm + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN13XBeeAddress646setMsbEm + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN13XBeeAddress646setMsbEm + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN13XBeeAddress646getLsbEv + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN13XBeeAddress646getLsbEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN13XBeeAddress646getLsbEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN13XBeeAddress646setLsbEm + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN13XBeeAddress646setLsbEm + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN13XBeeAddress646setLsbEm + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN11ZBTxRequestC2Ev + 0x0000000000000000 0x1c ./src/XBee/XBee.o + .ARM.extab.text._ZN11ZBTxRequestC2Ev + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN11ZBTxRequestC2Ev + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN11ZBTxRequestC2ER13XBeeAddress64thhPhhh + 0x0000000000000000 0x34 ./src/XBee/XBee.o + .ARM.extab.text._ZN11ZBTxRequestC2ER13XBeeAddress64thhPhhh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN11ZBTxRequestC2ER13XBeeAddress64thhPhhh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN11ZBTxRequestC2ER13XBeeAddress64Phh + 0x0000000000000000 0x30 ./src/XBee/XBee.o + .ARM.extab.text._ZN11ZBTxRequestC2ER13XBeeAddress64Phh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN11ZBTxRequestC2ER13XBeeAddress64Phh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN11ZBTxRequest12getAddress64Ev + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN11ZBTxRequest12getAddress64Ev + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN11ZBTxRequest12getAddress64Ev + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN11ZBTxRequest12getAddress16Ev + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN11ZBTxRequest12getAddress16Ev + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN11ZBTxRequest12getAddress16Ev + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN11ZBTxRequest18getBroadcastRadiusEv + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN11ZBTxRequest18getBroadcastRadiusEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN11ZBTxRequest18getBroadcastRadiusEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN11ZBTxRequest9getOptionEv + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN11ZBTxRequest9getOptionEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN11ZBTxRequest9getOptionEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN11ZBTxRequest12setAddress64ER13XBeeAddress64 + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .ARM.extab.text._ZN11ZBTxRequest12setAddress64ER13XBeeAddress64 + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN11ZBTxRequest12setAddress64ER13XBeeAddress64 + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN11ZBTxRequest12setAddress16Et + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN11ZBTxRequest12setAddress16Et + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN11ZBTxRequest12setAddress16Et + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN11ZBTxRequest18setBroadcastRadiusEh + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN11ZBTxRequest18setBroadcastRadiusEh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN11ZBTxRequest18setBroadcastRadiusEh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN11ZBTxRequest9setOptionEh + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN11ZBTxRequest9setOptionEh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN11ZBTxRequest9setOptionEh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN16AtCommandRequestC2Ev + 0x0000000000000000 0x1c ./src/XBee/XBee.o + .ARM.extab.text._ZN16AtCommandRequestC2Ev + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN16AtCommandRequestC2Ev + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN16AtCommandRequestC2EPhS0_h + 0x0000000000000000 0x1c ./src/XBee/XBee.o + .ARM.extab.text._ZN16AtCommandRequestC2EPhS0_h + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN16AtCommandRequestC2EPhS0_h + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN16AtCommandRequestC2EPh + 0x0000000000000000 0x1c ./src/XBee/XBee.o + .ARM.extab.text._ZN16AtCommandRequestC2EPh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN16AtCommandRequestC2EPh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN16AtCommandRequest10getCommandEv + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN16AtCommandRequest10getCommandEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN16AtCommandRequest10getCommandEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN16AtCommandRequest15getCommandValueEv + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN16AtCommandRequest15getCommandValueEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN16AtCommandRequest15getCommandValueEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN16AtCommandRequest21getCommandValueLengthEv + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN16AtCommandRequest21getCommandValueLengthEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN16AtCommandRequest21getCommandValueLengthEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN16AtCommandRequest10setCommandEPh + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN16AtCommandRequest10setCommandEPh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN16AtCommandRequest10setCommandEPh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN16AtCommandRequest15setCommandValueEPh + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN16AtCommandRequest15setCommandValueEPh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN16AtCommandRequest15setCommandValueEPh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN16AtCommandRequest21setCommandValueLengthEh + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN16AtCommandRequest21setCommandValueLengthEh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN16AtCommandRequest21setCommandValueLengthEh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN16AtCommandRequest17clearCommandValueEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .ARM.extab.text._ZN16AtCommandRequest17clearCommandValueEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN16AtCommandRequest17clearCommandValueEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN22RemoteAtCommandRequestC2Ev + 0x0000000000000000 0x20 ./src/XBee/XBee.o + .ARM.extab.text._ZN22RemoteAtCommandRequestC2Ev + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN22RemoteAtCommandRequestC2Ev + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN22RemoteAtCommandRequestC2EtPhS0_h + 0x0000000000000000 0x38 ./src/XBee/XBee.o + .ARM.extab.text._ZN22RemoteAtCommandRequestC2EtPhS0_h + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN22RemoteAtCommandRequestC2EtPhS0_h + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN22RemoteAtCommandRequestC2EtPh + 0x0000000000000000 0x34 ./src/XBee/XBee.o + .ARM.extab.text._ZN22RemoteAtCommandRequestC2EtPh + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN22RemoteAtCommandRequestC2EtPh + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN22RemoteAtCommandRequestC2ER13XBeeAddress64PhS2_h + 0x0000000000000000 0x34 ./src/XBee/XBee.o + .ARM.extab.text._ZN22RemoteAtCommandRequestC2ER13XBeeAddress64PhS2_h + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN22RemoteAtCommandRequestC2ER13XBeeAddress64PhS2_h + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN22RemoteAtCommandRequestC2ER13XBeeAddress64Ph + 0x0000000000000000 0x34 ./src/XBee/XBee.o + .ARM.extab.text._ZN22RemoteAtCommandRequestC2ER13XBeeAddress64Ph + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN22RemoteAtCommandRequestC2ER13XBeeAddress64Ph + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN22RemoteAtCommandRequest18getRemoteAddress16Ev + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN22RemoteAtCommandRequest18getRemoteAddress16Ev + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN22RemoteAtCommandRequest18getRemoteAddress16Ev + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN22RemoteAtCommandRequest18setRemoteAddress16Et + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN22RemoteAtCommandRequest18setRemoteAddress16Et + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN22RemoteAtCommandRequest18setRemoteAddress16Et + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN22RemoteAtCommandRequest18getRemoteAddress64Ev + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN22RemoteAtCommandRequest18getRemoteAddress64Ev + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN22RemoteAtCommandRequest18getRemoteAddress64Ev + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN22RemoteAtCommandRequest18setRemoteAddress64ER13XBeeAddress64 + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .ARM.extab.text._ZN22RemoteAtCommandRequest18setRemoteAddress64ER13XBeeAddress64 + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN22RemoteAtCommandRequest18setRemoteAddress64ER13XBeeAddress64 + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN22RemoteAtCommandRequest15getApplyChangesEv + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN22RemoteAtCommandRequest15getApplyChangesEv + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN22RemoteAtCommandRequest15getApplyChangesEv + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN22RemoteAtCommandRequest15setApplyChangesEb + 0x0000000000000000 0x4 ./src/XBee/XBee.o + .ARM.extab.text._ZN22RemoteAtCommandRequest15setApplyChangesEb + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN22RemoteAtCommandRequest15setApplyChangesEb + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN4XBee8sendByteEhb + 0x0000000000000000 0x3c ./src/XBee/XBee.o + .ARM.extab.text._ZN4XBee8sendByteEhb + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN4XBee8sendByteEhb + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .text._ZN4XBee4sendER11XBeeRequest + 0x0000000000000000 0x9e ./src/XBee/XBee.o + .ARM.extab.text._ZN4XBee4sendER11XBeeRequest + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .ARM.exidx.text._ZN4XBee4sendER11XBeeRequest + 0x0000000000000000 0x8 ./src/XBee/XBee.o + .ARM.extab.text.startup._GLOBAL__sub_I__ZN12XBeeResponseC2Ev + 0x0000000000000000 0x0 ./src/XBee/XBee.o + .rodata._ZTV14RxDataResponse + 0x0000000000000000 0x10 ./src/XBee/XBee.o + .rodata._ZTV20ZBRxIoSampleResponse + 0x0000000000000000 0x10 ./src/XBee/XBee.o + .rodata._ZTV11XBeeRequest + 0x0000000000000000 0x10 ./src/XBee/XBee.o + .rodata._ZTV14PayloadRequest + 0x0000000000000000 0x10 ./src/XBee/XBee.o + .rodata._ZTV16AtCommandRequest + 0x0000000000000000 0x10 ./src/XBee/XBee.o + .rodata._ZTV11ZBTxRequest + 0x0000000000000000 0x10 ./src/XBee/XBee.o + .rodata._ZTV12ZBRxResponse + 0x0000000000000000 0x10 ./src/XBee/XBee.o + .rodata._ZTV22RemoteAtCommandRequest + 0x0000000000000000 0x10 ./src/XBee/XBee.o + .text 0x0000000000000000 0x0 ./src/FatFs/SD.o + .data 0x0000000000000000 0x0 ./src/FatFs/SD.o + .bss 0x0000000000000000 0x0 ./src/FatFs/SD.o + .ARM.extab.text._ZN7PETITFSD2Ev + 0x0000000000000000 0x0 ./src/FatFs/SD.o + .text._ZN7PETITFSC2Ev + 0x0000000000000000 0xa ./src/FatFs/SD.o + .ARM.extab.text._ZN7PETITFSC2Ev + 0x0000000000000000 0x0 ./src/FatFs/SD.o + .ARM.exidx.text._ZN7PETITFSC2Ev + 0x0000000000000000 0x8 ./src/FatFs/SD.o + .text._ZN7PETITFS5beginEv + 0x0000000000000000 0x12 ./src/FatFs/SD.o + .ARM.extab.text._ZN7PETITFS5beginEv + 0x0000000000000000 0x0 ./src/FatFs/SD.o + .ARM.exidx.text._ZN7PETITFS5beginEv + 0x0000000000000000 0x8 ./src/FatFs/SD.o + .text._ZN7PETITFS5beginEi + 0x0000000000000000 0xe ./src/FatFs/SD.o + .ARM.extab.text._ZN7PETITFS5beginEi + 0x0000000000000000 0xc ./src/FatFs/SD.o + .ARM.exidx.text._ZN7PETITFS5beginEi + 0x0000000000000000 0x8 ./src/FatFs/SD.o + .text._ZN7PETITFS5beginE8SSP_PORT + 0x0000000000000000 0x24 ./src/FatFs/SD.o + .ARM.extab.text._ZN7PETITFS5beginE8SSP_PORT + 0x0000000000000000 0x0 ./src/FatFs/SD.o + .ARM.exidx.text._ZN7PETITFS5beginE8SSP_PORT + 0x0000000000000000 0x8 ./src/FatFs/SD.o + .text._ZN7PETITFS6existsEv + 0x0000000000000000 0x4 ./src/FatFs/SD.o + .ARM.extab.text._ZN7PETITFS6existsEv + 0x0000000000000000 0x0 ./src/FatFs/SD.o + .ARM.exidx.text._ZN7PETITFS6existsEv + 0x0000000000000000 0x8 ./src/FatFs/SD.o + .text._ZN7PETITFS5mkdirEv + 0x0000000000000000 0x4 ./src/FatFs/SD.o + .ARM.extab.text._ZN7PETITFS5mkdirEv + 0x0000000000000000 0x0 ./src/FatFs/SD.o + .ARM.exidx.text._ZN7PETITFS5mkdirEv + 0x0000000000000000 0x8 ./src/FatFs/SD.o + .text._ZN7PETITFS4openEPKc + 0x0000000000000000 0x10 ./src/FatFs/SD.o + .ARM.extab.text._ZN7PETITFS4openEPKc + 0x0000000000000000 0x0 ./src/FatFs/SD.o + .ARM.exidx.text._ZN7PETITFS4openEPKc + 0x0000000000000000 0x8 ./src/FatFs/SD.o + .text._ZN7PETITFS6removeEPKc + 0x0000000000000000 0x4 ./src/FatFs/SD.o + .ARM.extab.text._ZN7PETITFS6removeEPKc + 0x0000000000000000 0x0 ./src/FatFs/SD.o + .ARM.exidx.text._ZN7PETITFS6removeEPKc + 0x0000000000000000 0x8 ./src/FatFs/SD.o + .text._ZN7PETITFS5rmdirEPKc + 0x0000000000000000 0x4 ./src/FatFs/SD.o + .ARM.extab.text._ZN7PETITFS5rmdirEPKc + 0x0000000000000000 0x0 ./src/FatFs/SD.o + .ARM.exidx.text._ZN7PETITFS5rmdirEPKc + 0x0000000000000000 0x8 ./src/FatFs/SD.o + .text._ZN7PETITFS9availableEv + 0x0000000000000000 0x2 ./src/FatFs/SD.o + .ARM.extab.text._ZN7PETITFS9availableEv + 0x0000000000000000 0x0 ./src/FatFs/SD.o + .ARM.exidx.text._ZN7PETITFS9availableEv + 0x0000000000000000 0x8 ./src/FatFs/SD.o + .text._ZN7PETITFS5closeEv + 0x0000000000000000 0x2 ./src/FatFs/SD.o + .ARM.extab.text._ZN7PETITFS5closeEv + 0x0000000000000000 0x0 ./src/FatFs/SD.o + .ARM.exidx.text._ZN7PETITFS5closeEv + 0x0000000000000000 0x8 ./src/FatFs/SD.o + .text._ZN7PETITFS5flushEv + 0x0000000000000000 0x2 ./src/FatFs/SD.o + .ARM.extab.text._ZN7PETITFS5flushEv + 0x0000000000000000 0x0 ./src/FatFs/SD.o + .ARM.exidx.text._ZN7PETITFS5flushEv + 0x0000000000000000 0x8 ./src/FatFs/SD.o + .text._ZN7PETITFS4peekEv + 0x0000000000000000 0x2 ./src/FatFs/SD.o + .ARM.extab.text._ZN7PETITFS4peekEv + 0x0000000000000000 0x0 ./src/FatFs/SD.o + .ARM.exidx.text._ZN7PETITFS4peekEv + 0x0000000000000000 0x8 ./src/FatFs/SD.o + .text._ZN7PETITFS8positionEv + 0x0000000000000000 0x2 ./src/FatFs/SD.o + .ARM.extab.text._ZN7PETITFS8positionEv + 0x0000000000000000 0x0 ./src/FatFs/SD.o + .ARM.exidx.text._ZN7PETITFS8positionEv + 0x0000000000000000 0x8 ./src/FatFs/SD.o + .text._ZN7PETITFS5printEPKc + 0x0000000000000000 0x2 ./src/FatFs/SD.o + .ARM.extab.text._ZN7PETITFS5printEPKc + 0x0000000000000000 0x0 ./src/FatFs/SD.o + .ARM.exidx.text._ZN7PETITFS5printEPKc + 0x0000000000000000 0x8 ./src/FatFs/SD.o + .text._ZN7PETITFS5printEi12RADIX_FORMAT + 0x0000000000000000 0x2 ./src/FatFs/SD.o + .ARM.extab.text._ZN7PETITFS5printEi12RADIX_FORMAT + 0x0000000000000000 0x0 ./src/FatFs/SD.o + .ARM.exidx.text._ZN7PETITFS5printEi12RADIX_FORMAT + 0x0000000000000000 0x8 ./src/FatFs/SD.o + .text._ZN7PETITFS7printlnEPKc + 0x0000000000000000 0x2 ./src/FatFs/SD.o + .ARM.extab.text._ZN7PETITFS7printlnEPKc + 0x0000000000000000 0x0 ./src/FatFs/SD.o + .ARM.exidx.text._ZN7PETITFS7printlnEPKc + 0x0000000000000000 0x8 ./src/FatFs/SD.o + .text._ZN7PETITFS7printlnEi12RADIX_FORMAT + 0x0000000000000000 0x2 ./src/FatFs/SD.o + .ARM.extab.text._ZN7PETITFS7printlnEi12RADIX_FORMAT + 0x0000000000000000 0x0 ./src/FatFs/SD.o + .ARM.exidx.text._ZN7PETITFS7printlnEi12RADIX_FORMAT + 0x0000000000000000 0x8 ./src/FatFs/SD.o + .text._ZN7PETITFS4seekEm + 0x0000000000000000 0x2 ./src/FatFs/SD.o + .ARM.extab.text._ZN7PETITFS4seekEm + 0x0000000000000000 0x0 ./src/FatFs/SD.o + .ARM.exidx.text._ZN7PETITFS4seekEm + 0x0000000000000000 0x8 ./src/FatFs/SD.o + .text._ZN7PETITFS4sizeEv + 0x0000000000000000 0x2 ./src/FatFs/SD.o + .ARM.extab.text._ZN7PETITFS4sizeEv + 0x0000000000000000 0x0 ./src/FatFs/SD.o + .ARM.exidx.text._ZN7PETITFS4sizeEv + 0x0000000000000000 0x8 ./src/FatFs/SD.o + .text._ZN7PETITFS4readEv + 0x0000000000000000 0x2e ./src/FatFs/SD.o + .ARM.extab.text._ZN7PETITFS4readEv + 0x0000000000000000 0x0 ./src/FatFs/SD.o + .ARM.exidx.text._ZN7PETITFS4readEv + 0x0000000000000000 0x8 ./src/FatFs/SD.o + .text._ZN7PETITFS5writeEPKc + 0x0000000000000000 0x2 ./src/FatFs/SD.o + .ARM.extab.text._ZN7PETITFS5writeEPKc + 0x0000000000000000 0x0 ./src/FatFs/SD.o + .ARM.exidx.text._ZN7PETITFS5writeEPKc + 0x0000000000000000 0x8 ./src/FatFs/SD.o + .text._ZN7PETITFS5writeEPKci + 0x0000000000000000 0x2 ./src/FatFs/SD.o + .ARM.extab.text._ZN7PETITFS5writeEPKci + 0x0000000000000000 0x0 ./src/FatFs/SD.o + .ARM.exidx.text._ZN7PETITFS5writeEPKci + 0x0000000000000000 0x8 ./src/FatFs/SD.o + .ARM.extab.text.startup._GLOBAL__sub_I_SDFile + 0x0000000000000000 0x0 ./src/FatFs/SD.o + .text 0x0000000000000000 0x0 ./src/FatFs/pff.o + .data 0x0000000000000000 0x0 ./src/FatFs/pff.o + .bss 0x0000000000000000 0x0 ./src/FatFs/pff.o + .text._ZL10clust2sectm + 0x0000000000000000 0x20 ./src/FatFs/pff.o + .ARM.extab.text._ZL10clust2sectm + 0x0000000000000000 0x0 ./src/FatFs/pff.o + .ARM.exidx.text._ZL10clust2sectm + 0x0000000000000000 0x8 ./src/FatFs/pff.o + .text._ZL10dir_rewindP5_DIR_ + 0x0000000000000000 0x44 ./src/FatFs/pff.o + .ARM.extab.text._ZL10dir_rewindP5_DIR_ + 0x0000000000000000 0x0 ./src/FatFs/pff.o + .ARM.exidx.text._ZL10dir_rewindP5_DIR_ + 0x0000000000000000 0x8 ./src/FatFs/pff.o + .text._ZL7get_fatm + 0x0000000000000000 0xd4 ./src/FatFs/pff.o + .ARM.extab.text._ZL7get_fatm + 0x0000000000000000 0x0 ./src/FatFs/pff.o + .ARM.exidx.text._ZL7get_fatm + 0x0000000000000000 0x8 ./src/FatFs/pff.o + .text._ZL8dir_nextP5_DIR_ + 0x0000000000000000 0x60 ./src/FatFs/pff.o + .ARM.extab.text._ZL8dir_nextP5_DIR_ + 0x0000000000000000 0x0 ./src/FatFs/pff.o + .ARM.exidx.text._ZL8dir_nextP5_DIR_ + 0x0000000000000000 0x8 ./src/FatFs/pff.o + .text._ZL11follow_pathP5_DIR_PKc + 0x0000000000000000 0x14c ./src/FatFs/pff.o + .ARM.extab.text._ZL11follow_pathP5_DIR_PKc + 0x0000000000000000 0x0 ./src/FatFs/pff.o + .ARM.exidx.text._ZL11follow_pathP5_DIR_PKc + 0x0000000000000000 0x8 ./src/FatFs/pff.o + .text._ZL8check_fsPhm + 0x0000000000000000 0x80 ./src/FatFs/pff.o + .ARM.extab.text._ZL8check_fsPhm + 0x0000000000000000 0x0 ./src/FatFs/pff.o + .ARM.exidx.text._ZL8check_fsPhm + 0x0000000000000000 0x8 ./src/FatFs/pff.o + .text._Z8pf_mountP7_FATFS_ + 0x0000000000000000 0x16c ./src/FatFs/pff.o + .ARM.extab.text._Z8pf_mountP7_FATFS_ + 0x0000000000000000 0x0 ./src/FatFs/pff.o + .ARM.exidx.text._Z8pf_mountP7_FATFS_ + 0x0000000000000000 0x8 ./src/FatFs/pff.o + .text._Z7pf_openPKc + 0x0000000000000000 0x74 ./src/FatFs/pff.o + .ARM.extab.text._Z7pf_openPKc + 0x0000000000000000 0x0 ./src/FatFs/pff.o + .ARM.exidx.text._Z7pf_openPKc + 0x0000000000000000 0x8 ./src/FatFs/pff.o + .text._Z7pf_readPvtPt + 0x0000000000000000 0xcc ./src/FatFs/pff.o + .ARM.extab.text._Z7pf_readPvtPt + 0x0000000000000000 0x0 ./src/FatFs/pff.o + .ARM.exidx.text._Z7pf_readPvtPt + 0x0000000000000000 0x8 ./src/FatFs/pff.o + .text._Z8pf_writePKvtPt + 0x0000000000000000 0x118 ./src/FatFs/pff.o + .ARM.extab.text._Z8pf_writePKvtPt + 0x0000000000000000 0x0 ./src/FatFs/pff.o + .ARM.exidx.text._Z8pf_writePKvtPt + 0x0000000000000000 0x8 ./src/FatFs/pff.o + .text._Z8pf_lseekm + 0x0000000000000000 0xb0 ./src/FatFs/pff.o + .ARM.extab.text._Z8pf_lseekm + 0x0000000000000000 0x0 ./src/FatFs/pff.o + .ARM.exidx.text._Z8pf_lseekm + 0x0000000000000000 0x8 ./src/FatFs/pff.o + .text._Z10pf_opendirP5_DIR_PKc + 0x0000000000000000 0x5c ./src/FatFs/pff.o + .ARM.extab.text._Z10pf_opendirP5_DIR_PKc + 0x0000000000000000 0x0 ./src/FatFs/pff.o + .ARM.exidx.text._Z10pf_opendirP5_DIR_PKc + 0x0000000000000000 0x8 ./src/FatFs/pff.o + .text._Z10pf_readdirP5_DIR_P9_FILINFO_ + 0x0000000000000000 0x10c ./src/FatFs/pff.o + .ARM.extab.text._Z10pf_readdirP5_DIR_P9_FILINFO_ + 0x0000000000000000 0x0 ./src/FatFs/pff.o + .ARM.exidx.text._Z10pf_readdirP5_DIR_P9_FILINFO_ + 0x0000000000000000 0x8 ./src/FatFs/pff.o + .bss._ZL5FatFs + 0x0000000000000000 0x4 ./src/FatFs/pff.o + .text 0x0000000000000000 0x0 ./src/FatFs/sdcard.o + .data 0x0000000000000000 0x0 ./src/FatFs/sdcard.o + .bss 0x0000000000000000 0x0 ./src/FatFs/sdcard.o + .text._Z8xmit_spih + 0x0000000000000000 0x10 ./src/FatFs/sdcard.o + .ARM.extab.text._Z8xmit_spih + 0x0000000000000000 0xc ./src/FatFs/sdcard.o + .ARM.exidx.text._Z8xmit_spih + 0x0000000000000000 0x8 ./src/FatFs/sdcard.o + .text._Z7rcv_spiv + 0x0000000000000000 0x10 ./src/FatFs/sdcard.o + .ARM.extab.text._Z7rcv_spiv + 0x0000000000000000 0xc ./src/FatFs/sdcard.o + .ARM.exidx.text._Z7rcv_spiv + 0x0000000000000000 0x8 ./src/FatFs/sdcard.o + .text._ZL8send_cmdhm + 0x0000000000000000 0x88 ./src/FatFs/sdcard.o + .ARM.extab.text._ZL8send_cmdhm + 0x0000000000000000 0x0 ./src/FatFs/sdcard.o + .ARM.exidx.text._ZL8send_cmdhm + 0x0000000000000000 0x8 ./src/FatFs/sdcard.o + .text._ZL11release_spiv + 0x0000000000000000 0x18 ./src/FatFs/sdcard.o + .ARM.extab.text._ZL11release_spiv + 0x0000000000000000 0xc ./src/FatFs/sdcard.o + .ARM.exidx.text._ZL11release_spiv + 0x0000000000000000 0x8 ./src/FatFs/sdcard.o + .text._Z10disk_readpPhmtt + 0x0000000000000000 0xa4 ./src/FatFs/sdcard.o + .ARM.extab.text._Z10disk_readpPhmtt + 0x0000000000000000 0x0 ./src/FatFs/sdcard.o + .ARM.exidx.text._Z10disk_readpPhmtt + 0x0000000000000000 0x8 ./src/FatFs/sdcard.o + .text._Z11disk_writepPKhm + 0x0000000000000000 0xb4 ./src/FatFs/sdcard.o + .ARM.extab.text._Z11disk_writepPKhm + 0x0000000000000000 0x0 ./src/FatFs/sdcard.o + .ARM.exidx.text._Z11disk_writepPKhm + 0x0000000000000000 0x8 ./src/FatFs/sdcard.o + .text._Z15disk_initializev + 0x0000000000000000 0x144 ./src/FatFs/sdcard.o + .ARM.extab.text._Z15disk_initializev + 0x0000000000000000 0x0 ./src/FatFs/sdcard.o + .ARM.exidx.text._Z15disk_initializev + 0x0000000000000000 0x8 ./src/FatFs/sdcard.o + .bss._ZL8CardType + 0x0000000000000000 0x1 ./src/FatFs/sdcard.o + .bss._ZZ11disk_writepPKhmE2wc + 0x0000000000000000 0x2 ./src/FatFs/sdcard.o + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_thumb1_case_uqi.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_thumb1_case_uqi.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_udivsi3.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_udivsi3.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_divsi3.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_divsi3.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_dvmd_tls.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_dvmd_tls.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_arm_cmpdf2.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_arm_cmpdf2.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(divdf3.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(divdf3.o) + .ARM.extab 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(divdf3.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(eqdf2.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(eqdf2.o) + .ARM.extab 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(eqdf2.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(gedf2.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(gedf2.o) + .ARM.extab 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(gedf2.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(ledf2.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(ledf2.o) + .ARM.extab 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(ledf2.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(muldf3.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(muldf3.o) + .ARM.extab 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(muldf3.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(subdf3.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(subdf3.o) + .ARM.extab 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(subdf3.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(fixdfsi.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(fixdfsi.o) + .ARM.extab 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(fixdfsi.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(floatsidf.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(floatsidf.o) + .ARM.extab 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(floatsidf.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(unwind-arm.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(unwind-arm.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(libunwind.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(libunwind.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(pr-support.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(pr-support.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_clzsi2.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_clzsi2.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-abort.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-abort.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-init.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-init.o) + .text 0x0000000000000000 0x28 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-malloc.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-malloc.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-malloc.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-memcpy.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-memcpy.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-mlock.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-mlock.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-sbrkr.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-sbrkr.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-signal.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-signal.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-signalr.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-signalr.o) + .text 0x0000000000000000 0x10 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-strlen.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-strlen.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-strlen.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-freer.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-freer.o) + .text 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-impure.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-impure.o) + .rodata 0x0000000000000000 0x4 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-impure.o) + .text 0x0000000000000000 0x100 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-reent.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-reent.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-reent.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_sbrk.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_sbrk.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_exit.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_exit.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(getpid.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(getpid.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(kill.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(kill.o) + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_check_heap.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_check_heap.o) + .text 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crti.o + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crti.o + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crti.o + .text 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crtn.o + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crtn.o + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crtn.o + .fini_array 0x0000000000000000 0x4 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crtbegin.o + .text 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crtend.o + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crtend.o + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crtend.o + .eh_frame 0x0000000000000000 0x4 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crtend.o + .jcr 0x0000000000000000 0x4 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crtend.o + .data 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-errno.o) + .bss 0x0000000000000000 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-errno.o) + +Memory Configuration + +Name Origin Length Attributes +MFlash32 0x0000000000000000 0x0000000000008000 xr +RamLoc8 0x0000000010000000 0x0000000000001000 xrw +*default* 0x0000000000000000 0xffffffffffffffff + +Linker script and memory map + +LOAD ./src/user_application.o +LOAD ./src/core/LiquidCrystal.o +LOAD ./src/core/Print.o +LOAD ./src/core/SPI.o +LOAD ./src/core/SPI1.o +LOAD ./src/core/SoftwareSerial.o +LOAD ./src/core/Wire.o +LOAD ./src/core/analogio.o +LOAD ./src/core/arithmetical.o +LOAD ./src/core/cr_cpp_config.o +LOAD ./src/core/cr_startup_lpc11.o +LOAD ./src/core/delay.o +LOAD ./src/core/gpio.o +LOAD ./src/core/gpio_int.o +LOAD ./src/core/maryoled.o +LOAD ./src/core/startup_mary.o +LOAD ./src/core/system_LPC11xx.o +LOAD ./src/core/uart.o +LOAD ./src/XBee/XBee.o +LOAD ./src/FatFs/SD.o +LOAD ./src/FatFs/pff.o +LOAD ./src/FatFs/sdcard.o +START GROUP +LOAD /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a +LOAD /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a +LOAD /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libm.a +LOAD /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a +LOAD /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crti.o +LOAD /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crtn.o +LOAD /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crtbegin.o +LOAD /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crtend.o +END GROUP + 0x0000000000008000 __top_MFlash32 = 0x8000 + 0x0000000010001000 __top_RamLoc8 = 0x10001000 + +.text 0x0000000000000000 0x45dc + FILL mask 0xff + *(.isr_vector) + .isr_vector 0x0000000000000000 0xc0 ./src/core/cr_startup_lpc11.o + 0x0000000000000000 g_pfnVectors + 0x00000000000000c0 . = ALIGN (0x4) + 0x00000000000000c0 __section_table_start = . + 0x00000000000000c0 __data_section_table = . + 0x00000000000000c0 0x4 LONG 0x48c8 LOADADDR (.data) + 0x00000000000000c4 0x4 LONG 0x10000000 ADDR (.data) + 0x00000000000000c8 0x4 LONG 0x84c SIZEOF (.data) + 0x00000000000000cc __data_section_table_end = . + 0x00000000000000cc __bss_section_table = . + 0x00000000000000cc 0x4 LONG 0x1000084c ADDR (.bss) + 0x00000000000000d0 0x4 LONG 0x1d4 SIZEOF (.bss) + 0x00000000000000d4 __bss_section_table_end = . + 0x00000000000000d4 __section_table_end = . + *(.after_vectors*) + .after_vectors + 0x00000000000000d4 0x84 ./src/core/cr_startup_lpc11.o + 0x00000000000000d4 NMI_Handler + 0x00000000000000d8 HardFault_Handler + 0x00000000000000dc SVCall_Handler + 0x00000000000000e0 PendSV_Handler + 0x00000000000000e8 _Z9data_initjjj + 0x00000000000000fa _Z8bss_initjj + 0x000000000000010c ResetISR + 0x0000000000000154 UART_IRQHandler + 0x0000000000000154 SSP0_IRQHandler + 0x0000000000000154 ADC_IRQHandler + 0x0000000000000154 SSP1_IRQHandler + 0x0000000000000154 IntDefaultHandler + 0x0000000000000154 BOD_IRQHandler + 0x0000000000000154 WAKEUP_IRQHandler + 0x0000000000000154 I2C_IRQHandler + 0x0000000000000154 TIMER32_0_IRQHandler + 0x0000000000000154 WDT_IRQHandler + 0x0000000000000154 CAN_IRQHandler + *(.text*) + .text._Z7hsv2rgbi + 0x0000000000000158 0x210 ./src/user_application.o + 0x0000000000000158 _Z7hsv2rgbi + .text._Z13deleteMessagev + 0x0000000000000368 0x50 ./src/user_application.o + 0x0000000000000368 _Z13deleteMessagev + .text._Z5setupv + 0x00000000000003b8 0x2c ./src/user_application.o + 0x00000000000003b8 _Z5setupv + .text._Z4loopv + 0x00000000000003e4 0x74 ./src/user_application.o + 0x00000000000003e4 _Z4loopv + .text._ZN5Print7printlnEv + 0x0000000000000458 0x18 ./src/core/Print.o + 0x0000000000000458 _ZN5Print7printlnEv + .text._ZN5Print5printEPKc + 0x0000000000000470 0x1a ./src/core/Print.o + 0x0000000000000470 _ZN5Print5printEPKc + *fill* 0x000000000000048a 0x2 00 + .text._ZN5Print5printEi12RADIX_FORMAT + 0x000000000000048c 0x12c ./src/core/Print.o + 0x000000000000048c _ZN5Print5printEi12RADIX_FORMAT + .text._ZN5Print7printlnEPKc + 0x00000000000005b8 0x12 ./src/core/Print.o + 0x00000000000005b8 _ZN5Print7printlnEPKc + .text._ZN5Print7printlnEi12RADIX_FORMAT + 0x00000000000005ca 0x12 ./src/core/Print.o + 0x00000000000005ca _ZN5Print7printlnEi12RADIX_FORMAT + .text._ZN3SSPD2Ev + 0x00000000000005dc 0x2 ./src/core/SPI.o + 0x00000000000005dc _ZN3SSPD2Ev + 0x00000000000005dc _ZN3SSPD1Ev + *fill* 0x00000000000005de 0x2 00 + .text.ssp_begin + 0x00000000000005e0 0xfc ./src/core/SPI.o + 0x00000000000005e0 ssp_begin + .text._ZN3SSP5beginEv + 0x00000000000006dc 0x12 ./src/core/SPI.o + 0x00000000000006dc _ZN3SSP5beginEv + .text._ZN3SSPC2Ev + 0x00000000000006ee 0x1c ./src/core/SPI.o + 0x00000000000006ee _ZN3SSPC2Ev + 0x00000000000006ee _ZN3SSPC1Ev + *fill* 0x000000000000070a 0x2 00 + .text.startup._GLOBAL__sub_I_SPI + 0x000000000000070c 0x24 ./src/core/SPI.o + .text._ZN4SSP1D2Ev + 0x0000000000000730 0x2 ./src/core/SPI1.o + 0x0000000000000730 _ZN4SSP1D2Ev + 0x0000000000000730 _ZN4SSP1D1Ev + *fill* 0x0000000000000732 0x2 00 + .text.ssp1_begin + 0x0000000000000734 0xf0 ./src/core/SPI1.o + 0x0000000000000734 ssp1_begin + .text._ZN4SSP15beginEv + 0x0000000000000824 0x12 ./src/core/SPI1.o + 0x0000000000000824 _ZN4SSP15beginEv + .text._ZN4SSP1C2Ev + 0x0000000000000836 0x1c ./src/core/SPI1.o + 0x0000000000000836 _ZN4SSP1C2Ev + 0x0000000000000836 _ZN4SSP1C1Ev + *fill* 0x0000000000000852 0x2 00 + .text.startup._GLOBAL__sub_I_SPI1 + 0x0000000000000854 0x24 ./src/core/SPI1.o + .text.NVIC_SetPriority.constprop.2 + 0x0000000000000878 0x5c ./src/core/analogio.o + .text.setup_TIMER16_0 + 0x00000000000008d4 0x54 ./src/core/analogio.o + 0x00000000000008d4 setup_TIMER16_0 + .text.setup_TIMER16_1 + 0x0000000000000928 0x48 ./src/core/analogio.o + 0x0000000000000928 setup_TIMER16_1 + .text.analogWrite + 0x0000000000000970 0xc8 ./src/core/analogio.o + 0x0000000000000970 analogWrite + .text.TIMER16_0_IRQHandler + 0x0000000000000a38 0xe0 ./src/core/analogio.o + 0x0000000000000a38 TIMER16_0_IRQHandler + .text.TIMER16_1_IRQHandler + 0x0000000000000b18 0x8 ./src/core/analogio.o + 0x0000000000000b18 TIMER16_1_IRQHandler + .text.__aeabi_atexit + 0x0000000000000b20 0x4 ./src/core/cr_cpp_config.o + 0x0000000000000b20 __aeabi_atexit + .text.NVIC_SetPriority + 0x0000000000000b24 0x64 ./src/core/delay.o + .text.delay 0x0000000000000b88 0x18 ./src/core/delay.o + 0x0000000000000b88 delay + .text.setup_TIMER32_1 + 0x0000000000000ba0 0x2c ./src/core/delay.o + 0x0000000000000ba0 setup_TIMER32_1 + .text.TIMER32_1_IRQHandler + 0x0000000000000bcc 0x24 ./src/core/delay.o + 0x0000000000000bcc TIMER32_1_IRQHandler + .text.SysTick_Handler + 0x0000000000000bf0 0x10 ./src/core/delay.o + 0x0000000000000bf0 SysTick_Handler + .text.setup_systick + 0x0000000000000c00 0x50 ./src/core/delay.o + 0x0000000000000c00 setup_systick + .text.pinMode 0x0000000000000c50 0x100 ./src/core/gpio.o + 0x0000000000000c50 pinMode + .text.digitalWrite + 0x0000000000000d50 0xac ./src/core/gpio.o + 0x0000000000000d50 digitalWrite + .text.GPIOIntStatus + 0x0000000000000dfc 0x50 ./src/core/gpio.o + 0x0000000000000dfc GPIOIntStatus + .text.GPIOIntClear + 0x0000000000000e4c 0x4c ./src/core/gpio.o + 0x0000000000000e4c GPIOIntClear + .text.GPIO_IRQHandler + 0x0000000000000e98 0x30 ./src/core/gpio_int.o + 0x0000000000000e98 GPIO_IRQHandler + .text.PIOINT0_IRQHandler + 0x0000000000000ec8 0x8 ./src/core/gpio_int.o + 0x0000000000000ec8 PIOINT0_IRQHandler + .text.PIOINT1_IRQHandler + 0x0000000000000ed0 0x8 ./src/core/gpio_int.o + 0x0000000000000ed0 PIOINT1_IRQHandler + .text.PIOINT2_IRQHandler + 0x0000000000000ed8 0x8 ./src/core/gpio_int.o + 0x0000000000000ed8 PIOINT2_IRQHandler + .text.PIOINT3_IRQHandler + 0x0000000000000ee0 0x8 ./src/core/gpio_int.o + 0x0000000000000ee0 PIOINT3_IRQHandler + .text._ZN8MARYOLEDD2Ev + 0x0000000000000ee8 0x2 ./src/core/maryoled.o + 0x0000000000000ee8 _ZN8MARYOLEDD1Ev + 0x0000000000000ee8 _ZN8MARYOLEDD2Ev + *fill* 0x0000000000000eea 0x2 00 + .text._ZN8MARYOLEDC2Ev + 0x0000000000000eec 0x24 ./src/core/maryoled.o + 0x0000000000000eec _ZN8MARYOLEDC1Ev + 0x0000000000000eec _ZN8MARYOLEDC2Ev + .text.startup._GLOBAL__sub_I_oled + 0x0000000000000f10 0x24 ./src/core/maryoled.o + .text.startup.main + 0x0000000000000f34 0x14 ./src/core/startup_mary.o + 0x0000000000000f34 main + .text.SystemInit + 0x0000000000000f48 0x90 ./src/core/system_LPC11xx.o + 0x0000000000000f48 SystemInit + .text._ZN7USerialD2Ev + 0x0000000000000fd8 0xc ./src/core/uart.o + 0x0000000000000fd8 _ZN7USerialD1Ev + 0x0000000000000fd8 _ZN7USerialD2Ev + .text._ZN7USerial5writeEc + 0x0000000000000fe4 0x18 ./src/core/uart.o + 0x0000000000000fe4 _ZN7USerial5writeEc + .text._ZN7USerial5beginEi + 0x0000000000000ffc 0x7c ./src/core/uart.o + 0x0000000000000ffc _ZN7USerial5beginEi + .text.startup._GLOBAL__sub_I_Serial + 0x0000000000001078 0x30 ./src/core/uart.o + .text.startup._GLOBAL__sub_I__ZN12XBeeResponseC2Ev + 0x00000000000010a8 0x14 ./src/XBee/XBee.o + .text._ZN7PETITFSD2Ev + 0x00000000000010bc 0x2 ./src/FatFs/SD.o + 0x00000000000010bc _ZN7PETITFSD2Ev + 0x00000000000010bc _ZN7PETITFSD1Ev + *fill* 0x00000000000010be 0x2 00 + .text.startup._GLOBAL__sub_I_SDFile + 0x00000000000010c0 0x24 ./src/FatFs/SD.o + .text 0x00000000000010e4 0x14 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_thumb1_case_uqi.o) + 0x00000000000010e4 __gnu_thumb1_case_uqi + .text 0x00000000000010f8 0x9c /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_udivsi3.o) + 0x00000000000010f8 __udivsi3 + 0x00000000000010f8 __aeabi_uidiv + 0x0000000000001180 __aeabi_uidivmod + .text 0x0000000000001194 0xc0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_divsi3.o) + 0x0000000000001194 __aeabi_idiv + 0x0000000000001194 __divsi3 + 0x0000000000001240 __aeabi_idivmod + .text 0x0000000000001254 0x4 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_dvmd_tls.o) + 0x0000000000001254 __aeabi_ldiv0 + 0x0000000000001254 __aeabi_idiv0 + .text 0x0000000000001258 0x7c /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_arm_cmpdf2.o) + 0x0000000000001258 __aeabi_cdrcmple + 0x0000000000001268 __aeabi_cdcmple + 0x0000000000001268 __aeabi_cdcmpeq + 0x0000000000001278 __aeabi_dcmpeq + 0x0000000000001284 __aeabi_dcmplt + 0x0000000000001298 __aeabi_dcmple + 0x00000000000012ac __aeabi_dcmpgt + 0x00000000000012c0 __aeabi_dcmpge + .text 0x00000000000012d4 0x5e4 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(divdf3.o) + 0x00000000000012d4 __aeabi_ddiv + .text 0x00000000000018b8 0x80 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(eqdf2.o) + 0x00000000000018b8 __eqdf2 + 0x00000000000018b8 __nedf2 + .text 0x0000000000001938 0xec /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(gedf2.o) + 0x0000000000001938 __gtdf2 + 0x0000000000001938 __gedf2 + .text 0x0000000000001a24 0xc0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(ledf2.o) + 0x0000000000001a24 __ltdf2 + 0x0000000000001a24 __ledf2 + .text 0x0000000000001ae4 0x4a4 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(muldf3.o) + 0x0000000000001ae4 __aeabi_dmul + .text 0x0000000000001f88 0x72c /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(subdf3.o) + 0x0000000000001f88 __aeabi_dsub + .text 0x00000000000026b4 0x68 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(fixdfsi.o) + 0x00000000000026b4 __aeabi_d2iz + .text 0x000000000000271c 0x78 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(floatsidf.o) + 0x000000000000271c __aeabi_i2d + .text 0x0000000000002794 0xb5c /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(unwind-arm.o) + 0x0000000000002a54 _Unwind_VRS_Get + 0x0000000000002a98 _Unwind_VRS_Set + 0x0000000000002dfc __aeabi_unwind_cpp_pr2 + 0x0000000000002e08 __aeabi_unwind_cpp_pr1 + 0x0000000000002e14 __aeabi_unwind_cpp_pr0 + 0x0000000000002e20 _Unwind_VRS_Pop + 0x00000000000031a4 _Unwind_GetCFA + 0x00000000000031a8 __gnu_Unwind_RaiseException + 0x0000000000003200 __gnu_Unwind_ForcedUnwind + 0x0000000000003214 __gnu_Unwind_Resume + 0x0000000000003254 __gnu_Unwind_Resume_or_Rethrow + 0x0000000000003270 _Unwind_Complete + 0x0000000000003274 _Unwind_DeleteException + 0x0000000000003284 __gnu_Unwind_Backtrace + .text 0x00000000000032f0 0x144 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(libunwind.o) + 0x00000000000032f0 __restore_core_regs + 0x00000000000032f0 restore_core_regs + 0x000000000000331c __gnu_Unwind_Restore_VFP + 0x0000000000003320 __gnu_Unwind_Save_VFP + 0x0000000000003324 __gnu_Unwind_Restore_VFP_D + 0x0000000000003328 __gnu_Unwind_Save_VFP_D + 0x000000000000332c __gnu_Unwind_Restore_VFP_D_16_to_31 + 0x0000000000003330 __gnu_Unwind_Save_VFP_D_16_to_31 + 0x0000000000003334 __gnu_Unwind_Restore_WMMXD + 0x0000000000003338 __gnu_Unwind_Save_WMMXD + 0x000000000000333c __gnu_Unwind_Restore_WMMXC + 0x0000000000003340 __gnu_Unwind_Save_WMMXC + 0x0000000000003344 _Unwind_RaiseException + 0x0000000000003344 ___Unwind_RaiseException + 0x0000000000003374 ___Unwind_Resume + 0x0000000000003374 _Unwind_Resume + 0x00000000000033a4 ___Unwind_Resume_or_Rethrow + 0x00000000000033a4 _Unwind_Resume_or_Rethrow + 0x00000000000033d4 _Unwind_ForcedUnwind + 0x00000000000033d4 ___Unwind_ForcedUnwind + 0x0000000000003404 _Unwind_Backtrace + 0x0000000000003404 ___Unwind_Backtrace + .text 0x0000000000003434 0x38c /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(pr-support.o) + 0x0000000000003488 __gnu_unwind_execute + 0x0000000000003768 __gnu_unwind_frame + 0x0000000000003790 _Unwind_GetRegionStart + 0x000000000000379c _Unwind_GetLanguageSpecificData + 0x00000000000037b0 _Unwind_GetDataRelBase + 0x00000000000037b8 _Unwind_GetTextRelBase + .text 0x00000000000037c0 0x3c /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_clzsi2.o) + 0x00000000000037c0 __clzsi2 + .text 0x00000000000037fc 0x10 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-abort.o) + 0x00000000000037fc abort + .text 0x000000000000380c 0x44 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-init.o) + 0x000000000000380c __libc_init_array + .text 0x0000000000003850 0x514 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-mallocr.o) + 0x0000000000003850 _malloc_r + .text 0x0000000000003d64 0x7c /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-memcpy.o) + 0x0000000000003d64 memcpy + .text 0x0000000000003de0 0x8 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-mlock.o) + 0x0000000000003de0 __malloc_lock + 0x0000000000003de4 __malloc_unlock + .text 0x0000000000003de8 0x24 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-sbrkr.o) + 0x0000000000003de8 _sbrk_r + .text 0x0000000000003e0c 0x16c /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-signal.o) + 0x0000000000003e0c _init_signal_r + 0x0000000000003e48 _signal_r + 0x0000000000003e84 _raise_r + 0x0000000000003edc __sigtramp_r + 0x0000000000003f28 raise + 0x0000000000003f3c signal + 0x0000000000003f54 _init_signal + 0x0000000000003f64 __sigtramp + .text 0x0000000000003f78 0x30 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-signalr.o) + 0x0000000000003f78 _kill_r + 0x0000000000003fa0 _getpid_r + .text 0x0000000000003fa8 0x240 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-freer.o) + 0x0000000000003fa8 _malloc_trim_r + 0x0000000000004050 _free_r + .text 0x00000000000041e8 0x40 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_sbrk.o) + 0x00000000000041e8 _sbrk + .text 0x0000000000004228 0x4 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_exit.o) + 0x0000000000004228 _exit + .text 0x000000000000422c 0x10 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(getpid.o) + 0x000000000000422c _getpid + .text 0x000000000000423c 0x10 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(kill.o) + 0x000000000000423c _kill + .text 0x000000000000424c 0x2c /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_check_heap.o) + 0x000000000000424c __check_heap_overflow + .text 0x0000000000004278 0x60 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crtbegin.o + .text 0x00000000000042d8 0xc /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-errno.o) + 0x00000000000042d8 __errno + *(.rodata .rodata.*) + .rodata.str1.1 + 0x00000000000042e4 0x21 ./src/user_application.o + 0x22 (size before relaxing) + .rodata._ZL9radix_hex + 0x0000000000004305 0x11 ./src/core/Print.o + .rodata._ZL9radix_dec + 0x0000000000004316 0xb ./src/core/Print.o + .rodata._ZL9radix_oct + 0x0000000000004321 0x9 ./src/core/Print.o + .rodata._ZL9radix_bin + 0x000000000000432a 0x3 ./src/core/Print.o + .rodata._ZL9IOCON_LUT + 0x000000000000432d 0x30 ./src/core/gpio.o + *fill* 0x000000000000435d 0x3 00 + .rodata._ZL8LPC_GPIO + 0x0000000000004360 0x10 ./src/core/gpio.o + .rodata._ZL14mary_pinAssign + 0x0000000000004370 0xe0 ./src/core/gpio.o + .rodata._ZL17arduino_pinAssign + 0x0000000000004450 0xb0 ./src/core/gpio.o + .rodata._ZTV7USerial + 0x0000000000004500 0x10 ./src/core/uart.o + 0x0000000000004500 _ZTV7USerial + .rodata 0x0000000000004510 0x40 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(divdf3.o) + .rodata 0x0000000000004550 0x40 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(muldf3.o) + .rodata 0x0000000000004590 0x14 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(unwind-arm.o) + .rodata.str1.4 + 0x00000000000045a4 0x4 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-impure.o) + 0x00000000000045a8 . = ALIGN (0x4) + 0x00000000000045a8 . = ALIGN (0x4) + *(.init) + .init 0x00000000000045a8 0x4 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crti.o + 0x00000000000045a8 _init + .init 0x00000000000045ac 0x8 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crtn.o + 0x00000000000045b4 . = ALIGN (0x4) + 0x00000000000045b4 __preinit_array_start = . + *(.preinit_array) + 0x00000000000045b4 __preinit_array_end = . + 0x00000000000045b4 . = ALIGN (0x4) + 0x00000000000045b4 __init_array_start = . + *(SORT(.init_array.*)) + *(.init_array) + .init_array 0x00000000000045b4 0x4 ./src/core/SPI.o + .init_array 0x00000000000045b8 0x4 ./src/core/SPI1.o + .init_array 0x00000000000045bc 0x4 ./src/core/maryoled.o + .init_array 0x00000000000045c0 0x4 ./src/core/uart.o + .init_array 0x00000000000045c4 0x4 ./src/XBee/XBee.o + .init_array 0x00000000000045c8 0x4 ./src/FatFs/SD.o + .init_array 0x00000000000045cc 0x4 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crtbegin.o + 0x00000000000045d0 __init_array_end = . + *(.fini) + .fini 0x00000000000045d0 0x4 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crti.o + 0x00000000000045d0 _fini + .fini 0x00000000000045d4 0x8 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crtn.o + 0x00000000000045dc . = ALIGN (0x4) + *crtbegin.o(.ctors) + *(EXCLUDE_FILE(*crtend.o) .ctors) + *(SORT(.ctors.*)) + *crtend.o(.ctors) + 0x00000000000045dc . = ALIGN (0x4) + *crtbegin.o(.dtors) + *(EXCLUDE_FILE(*crtend.o) .dtors) + *(SORT(.dtors.*)) + *crtend.o(.dtors) + +.glue_7 0x00000000000045dc 0x0 + .glue_7 0x0000000000000000 0x0 linker stubs + +.glue_7t 0x00000000000045dc 0x0 + .glue_7t 0x0000000000000000 0x0 linker stubs + +.vfp11_veneer 0x00000000000045dc 0x0 + .vfp11_veneer 0x0000000000000000 0x0 linker stubs + +.v4_bx 0x00000000000045dc 0x0 + .v4_bx 0x0000000000000000 0x0 linker stubs + +.ARM.extab 0x00000000000045dc 0x114 + *(.ARM.extab* .gnu.linkonce.armextab.*) + .ARM.extab.text._Z13deleteMessagev + 0x00000000000045dc 0xc ./src/user_application.o + .ARM.extab.text._Z5setupv + 0x00000000000045e8 0xc ./src/user_application.o + .ARM.extab.text._ZN3SSP5beginEv + 0x00000000000045f4 0xc ./src/core/SPI.o + .ARM.extab.text._ZN4SSP15beginEv + 0x0000000000004600 0xc ./src/core/SPI1.o + .ARM.extab.text.TIMER16_1_IRQHandler + 0x000000000000460c 0xc ./src/core/analogio.o + .ARM.extab.text.PIOINT0_IRQHandler + 0x0000000000004618 0xc ./src/core/gpio_int.o + .ARM.extab.text.PIOINT1_IRQHandler + 0x0000000000004624 0xc ./src/core/gpio_int.o + .ARM.extab.text.PIOINT2_IRQHandler + 0x0000000000004630 0xc ./src/core/gpio_int.o + .ARM.extab.text.PIOINT3_IRQHandler + 0x000000000000463c 0xc ./src/core/gpio_int.o + .ARM.extab.text.startup.main + 0x0000000000004648 0xc ./src/core/startup_mary.o + .ARM.extab 0x0000000000004654 0x6c /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(unwind-arm.o) + .ARM.extab 0x00000000000046c0 0x30 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(pr-support.o) + 0x00000000000046f0 __exidx_start = . + +.eh_frame 0x00000000000046f0 0x0 + .eh_frame 0x00000000000046f0 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crtbegin.o + +.ARM.exidx 0x00000000000046f0 0x1d8 + *(.ARM.exidx* .gnu.linkonce.armexidx.*) + .ARM.exidx.text._Z7hsv2rgbi + 0x0000000000004708 0x8 ./src/user_application.o + .ARM.exidx.text._Z13deleteMessagev + 0x0000000000004710 0x8 ./src/user_application.o + .ARM.exidx.text._Z5setupv + 0x0000000000004718 0x8 ./src/user_application.o + .ARM.exidx.text._Z4loopv + 0x0000000000004720 0x8 ./src/user_application.o + .ARM.exidx.text._ZN5Print7printlnEv + 0x0000000000004728 0x8 ./src/core/Print.o + .ARM.exidx.text._ZN5Print5printEPKc + 0x0000000000004730 0x8 ./src/core/Print.o + .ARM.exidx.text._ZN5Print5printEi12RADIX_FORMAT + 0x0000000000004738 0x8 ./src/core/Print.o + .ARM.exidx.text._ZN5Print7printlnEPKc + 0x0000000000004740 0x8 ./src/core/Print.o + .ARM.exidx.text._ZN5Print7printlnEi12RADIX_FORMAT + 0x0000000000004748 0x0 ./src/core/Print.o + 0x8 (size before relaxing) + .ARM.exidx.text._ZN3SSPD2Ev + 0x0000000000004748 0x8 ./src/core/SPI.o + .ARM.exidx.text.ssp_begin + 0x0000000000004750 0x8 ./src/core/SPI.o + .ARM.exidx.text._ZN3SSP5beginEv + 0x0000000000004758 0x8 ./src/core/SPI.o + .ARM.exidx.text._ZN3SSPC2Ev + 0x0000000000004760 0x8 ./src/core/SPI.o + .ARM.exidx.text.startup._GLOBAL__sub_I_SPI + 0x0000000000004768 0x8 ./src/core/SPI.o + .ARM.exidx.text._ZN4SSP1D2Ev + 0x0000000000004770 0x0 ./src/core/SPI1.o + 0x8 (size before relaxing) + .ARM.exidx.text.ssp1_begin + 0x0000000000004770 0x8 ./src/core/SPI1.o + .ARM.exidx.text._ZN4SSP15beginEv + 0x0000000000004778 0x8 ./src/core/SPI1.o + .ARM.exidx.text._ZN4SSP1C2Ev + 0x0000000000004780 0x8 ./src/core/SPI1.o + .ARM.exidx.text.startup._GLOBAL__sub_I_SPI1 + 0x0000000000004788 0x8 ./src/core/SPI1.o + .ARM.exidx.text.NVIC_SetPriority.constprop.2 + 0x0000000000004790 0x0 ./src/core/analogio.o + 0x8 (size before relaxing) + .ARM.exidx.text.setup_TIMER16_0 + 0x0000000000004790 0x0 ./src/core/analogio.o + 0x8 (size before relaxing) + .ARM.exidx.text.setup_TIMER16_1 + 0x0000000000004790 0x0 ./src/core/analogio.o + 0x8 (size before relaxing) + .ARM.exidx.text.analogWrite + 0x0000000000004790 0x8 ./src/core/analogio.o + .ARM.exidx.text.TIMER16_0_IRQHandler + 0x0000000000004798 0x0 ./src/core/analogio.o + 0x8 (size before relaxing) + .ARM.exidx.text.TIMER16_1_IRQHandler + 0x0000000000004798 0x8 ./src/core/analogio.o + .ARM.exidx.text.__aeabi_atexit + 0x00000000000047a0 0x8 ./src/core/cr_cpp_config.o + .ARM.exidx.after_vectors + 0x00000000000046f0 0x18 ./src/core/cr_startup_lpc11.o + 0x48 (size before relaxing) + .ARM.exidx.text.NVIC_SetPriority + 0x00000000000047a8 0x0 ./src/core/delay.o + 0x8 (size before relaxing) + .ARM.exidx.text.delay + 0x00000000000047a8 0x0 ./src/core/delay.o + 0x8 (size before relaxing) + .ARM.exidx.text.setup_TIMER32_1 + 0x00000000000047a8 0x0 ./src/core/delay.o + 0x8 (size before relaxing) + .ARM.exidx.text.TIMER32_1_IRQHandler + 0x00000000000047a8 0x8 ./src/core/delay.o + .ARM.exidx.text.SysTick_Handler + 0x00000000000047b0 0x8 ./src/core/delay.o + .ARM.exidx.text.setup_systick + 0x00000000000047b8 0x0 ./src/core/delay.o + 0x8 (size before relaxing) + .ARM.exidx.text.pinMode + 0x00000000000047b8 0x0 ./src/core/gpio.o + 0x8 (size before relaxing) + .ARM.exidx.text.digitalWrite + 0x00000000000047b8 0x0 ./src/core/gpio.o + 0x8 (size before relaxing) + .ARM.exidx.text.GPIOIntStatus + 0x00000000000047b8 0x0 ./src/core/gpio.o + 0x8 (size before relaxing) + .ARM.exidx.text.GPIOIntClear + 0x00000000000047b8 0x0 ./src/core/gpio.o + 0x8 (size before relaxing) + .ARM.exidx.text.GPIO_IRQHandler + 0x00000000000047b8 0x8 ./src/core/gpio_int.o + .ARM.exidx.text.PIOINT0_IRQHandler + 0x00000000000047c0 0x8 ./src/core/gpio_int.o + .ARM.exidx.text.PIOINT1_IRQHandler + 0x00000000000047c8 0x8 ./src/core/gpio_int.o + .ARM.exidx.text.PIOINT2_IRQHandler + 0x00000000000047d0 0x8 ./src/core/gpio_int.o + .ARM.exidx.text.PIOINT3_IRQHandler + 0x00000000000047d8 0x8 ./src/core/gpio_int.o + .ARM.exidx.text._ZN8MARYOLEDD2Ev + 0x00000000000047e0 0x8 ./src/core/maryoled.o + .ARM.exidx.text._ZN8MARYOLEDC2Ev + 0x00000000000047e8 0x0 ./src/core/maryoled.o + 0x8 (size before relaxing) + .ARM.exidx.text.startup._GLOBAL__sub_I_oled + 0x00000000000047e8 0x0 ./src/core/maryoled.o + 0x8 (size before relaxing) + .ARM.exidx.text.startup.main + 0x00000000000047e8 0x8 ./src/core/startup_mary.o + .ARM.exidx.text.SystemInit + 0x00000000000047f0 0x8 ./src/core/system_LPC11xx.o + .ARM.exidx.text._ZN7USerialD2Ev + 0x00000000000047f8 0x0 ./src/core/uart.o + 0x8 (size before relaxing) + .ARM.exidx.text._ZN7USerial5writeEc + 0x00000000000047f8 0x0 ./src/core/uart.o + 0x8 (size before relaxing) + .ARM.exidx.text._ZN7USerial5beginEi + 0x00000000000047f8 0x0 ./src/core/uart.o + 0x8 (size before relaxing) + .ARM.exidx.text.startup._GLOBAL__sub_I_Serial + 0x00000000000047f8 0x0 ./src/core/uart.o + 0x8 (size before relaxing) + .ARM.exidx.text.startup._GLOBAL__sub_I__ZN12XBeeResponseC2Ev + 0x00000000000047f8 0x0 ./src/XBee/XBee.o + 0x8 (size before relaxing) + .ARM.exidx.text._ZN7PETITFSD2Ev + 0x00000000000047f8 0x0 ./src/FatFs/SD.o + 0x8 (size before relaxing) + .ARM.exidx.text.startup._GLOBAL__sub_I_SDFile + 0x00000000000047f8 0x0 ./src/FatFs/SD.o + 0x8 (size before relaxing) + .ARM.exidx 0x00000000000047f8 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(divdf3.o) + 0x8 (size before relaxing) + .ARM.exidx 0x00000000000047f8 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(eqdf2.o) + 0x8 (size before relaxing) + .ARM.exidx 0x00000000000047f8 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(gedf2.o) + 0x8 (size before relaxing) + .ARM.exidx 0x00000000000047f8 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(ledf2.o) + 0x8 (size before relaxing) + .ARM.exidx 0x00000000000047f8 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(muldf3.o) + 0x8 (size before relaxing) + .ARM.exidx 0x00000000000047f8 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(subdf3.o) + 0x8 (size before relaxing) + .ARM.exidx 0x00000000000047f8 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(fixdfsi.o) + 0x8 (size before relaxing) + .ARM.exidx 0x00000000000047f8 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(floatsidf.o) + 0x8 (size before relaxing) + .ARM.exidx 0x00000000000047f8 0x98 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(unwind-arm.o) + 0xc0 (size before relaxing) + .ARM.exidx 0x0000000000004890 0x38 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(pr-support.o) + 0x48 (size before relaxing) + 0x00000000000048c8 __exidx_end = . + 0x00000000000048c8 _etext = . + +.uninit_RESERVED + *(.bss.$RESERVED*) + +.data 0x0000000010000000 0x84c load address 0x00000000000048c8 + FILL mask 0xff + 0x0000000010000000 _data = . + *(vtable) + *(.data*) + .data.SystemCoreClock + 0x0000000010000000 0x4 ./src/core/system_LPC11xx.o + 0x0000000010000000 SystemCoreClock + .data 0x0000000010000004 0x410 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-mallocr.o) + 0x0000000010000004 __malloc_av_ + 0x000000001000040c __malloc_sbrk_base + 0x0000000010000410 __malloc_trim_threshold + *fill* 0x0000000010000414 0x4 00 + .data 0x0000000010000418 0x430 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-impure.o) + 0x0000000010000418 _impure_ptr + .data 0x0000000010000848 0x4 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crtbegin.o + 0x0000000010000848 __dso_handle + 0x000000001000084c . = ALIGN (0x4) + 0x000000001000084c _edata = . + +.jcr 0x000000001000084c 0x0 load address 0x0000000000005114 + .jcr 0x000000001000084c 0x0 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crtbegin.o + +.bss 0x000000001000084c 0x1d4 load address 0x0000000000005114 + 0x000000001000084c _bss = . + *(.bss*) + .bss.SPI 0x000000001000084c 0x8 ./src/core/SPI.o + 0x000000001000084c SPI + .bss.SPI1 0x0000000010000854 0x8 ./src/core/SPI1.o + 0x0000000010000854 SPI1 + .bss._ZL11pwm_pin_num + 0x000000001000085c 0x10 ./src/core/analogio.o + .bss._ZL14pwm_duty_value + 0x000000001000086c 0x10 ./src/core/analogio.o + .bss._ZL13pwm_init_done + 0x000000001000087c 0x4 ./src/core/analogio.o + .bss._ZL17pwm_already_inuse + 0x0000000010000880 0x4 ./src/core/analogio.o + .bss.userfunc 0x0000000010000884 0x4 ./src/core/delay.o + 0x0000000010000884 userfunc + .bss._ZL7msTicks + 0x0000000010000888 0x4 ./src/core/delay.o + .bss._ZL7intFunc + 0x000000001000088c 0x58 ./src/core/gpio_int.o + .bss.oled 0x00000000100008e4 0x28 ./src/core/maryoled.o + 0x00000000100008e4 oled + .bss.Serial 0x000000001000090c 0xc ./src/core/uart.o + 0x000000001000090c Serial + .bss._ZN22RemoteAtCommandRequest18broadcastAddress64E + 0x0000000010000918 0x8 ./src/XBee/XBee.o + 0x0000000010000918 _ZN22RemoteAtCommandRequest18broadcastAddress64E + .bss.SDFile 0x0000000010000920 0xa8 ./src/FatFs/SD.o + 0x0000000010000920 SDFile + .bss 0x00000000100009c8 0x34 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-mallocr.o) + 0x00000000100009c8 __malloc_top_pad + 0x00000000100009cc __malloc_current_mallinfo + 0x00000000100009f4 __malloc_max_sbrked_mem + 0x00000000100009f8 __malloc_max_total_mem + .bss 0x00000000100009fc 0x1c /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crtbegin.o + *(COMMON) + COMMON 0x0000000010000a18 0x4 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-reent.o) + 0x0000000010000a18 errno + COMMON 0x0000000010000a1c 0x4 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_sbrk.o) + 0x0000000010000a1c __end_of_heap + 0x0000000010000a20 . = ALIGN (0x4) + 0x0000000010000a20 _ebss = . + 0x0000000010000a20 PROVIDE (end, .) + 0x0000000010000a20 PROVIDE (_pvHeapStart, .) + 0x0000000010001000 PROVIDE (_vStackTop, (__top_RamLoc8 - 0x0)) +OUTPUT(eXodusino.axf elf32-littlearm) + +.debug_info 0x0000000000000000 0x146a6 + .debug_info 0x0000000000000000 0x4e1 ./src/user_application.o + .debug_info 0x00000000000004e1 0x1201 ./src/core/LiquidCrystal.o + .debug_info 0x00000000000016e2 0x545 ./src/core/Print.o + .debug_info 0x0000000000001c27 0x12c3 ./src/core/SPI.o + .debug_info 0x0000000000002eea 0x12c3 ./src/core/SPI1.o + .debug_info 0x00000000000041ad 0xb6b ./src/core/SoftwareSerial.o + .debug_info 0x0000000000004d18 0x27ce ./src/core/Wire.o + .debug_info 0x00000000000074e6 0xc14 ./src/core/analogio.o + .debug_info 0x00000000000080fa 0x3ea ./src/core/arithmetical.o + .debug_info 0x00000000000084e4 0x134 ./src/core/cr_cpp_config.o + .debug_info 0x0000000000008618 0x2ae ./src/core/cr_startup_lpc11.o + .debug_info 0x00000000000088c6 0xbd5 ./src/core/delay.o + .debug_info 0x000000000000949b 0x514 ./src/core/gpio.o + .debug_info 0x00000000000099af 0x5d4 ./src/core/gpio_int.o + .debug_info 0x0000000000009f83 0x1302 ./src/core/maryoled.o + .debug_info 0x000000000000b285 0x2ab ./src/core/startup_mary.o + .debug_info 0x000000000000b530 0x4f9 ./src/core/system_LPC11xx.o + .debug_info 0x000000000000ba29 0xda5 ./src/core/uart.o + .debug_info 0x000000000000c7ce 0x4c45 ./src/XBee/XBee.o + .debug_info 0x0000000000011413 0x1131 ./src/FatFs/SD.o + .debug_info 0x0000000000012544 0xf7a ./src/FatFs/pff.o + .debug_info 0x00000000000134be 0xe6b ./src/FatFs/sdcard.o + .debug_info 0x0000000000014329 0x104 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_sbrk.o) + .debug_info 0x000000000001442d 0x5c /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_exit.o) + .debug_info 0x0000000000014489 0xa5 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(getpid.o) + .debug_info 0x000000000001452e 0xc6 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(kill.o) + .debug_info 0x00000000000145f4 0xb2 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_check_heap.o) + +.debug_abbrev 0x0000000000000000 0x3e9a + .debug_abbrev 0x0000000000000000 0x1b8 ./src/user_application.o + .debug_abbrev 0x00000000000001b8 0x33f ./src/core/LiquidCrystal.o + .debug_abbrev 0x00000000000004f7 0x17c ./src/core/Print.o + .debug_abbrev 0x0000000000000673 0x3a8 ./src/core/SPI.o + .debug_abbrev 0x0000000000000a1b 0x384 ./src/core/SPI1.o + .debug_abbrev 0x0000000000000d9f 0x3f1 ./src/core/SoftwareSerial.o + .debug_abbrev 0x0000000000001190 0x5c8 ./src/core/Wire.o + .debug_abbrev 0x0000000000001758 0x270 ./src/core/analogio.o + .debug_abbrev 0x00000000000019c8 0x18a ./src/core/arithmetical.o + .debug_abbrev 0x0000000000001b52 0xcd ./src/core/cr_cpp_config.o + .debug_abbrev 0x0000000000001c1f 0x13e ./src/core/cr_startup_lpc11.o + .debug_abbrev 0x0000000000001d5d 0x272 ./src/core/delay.o + .debug_abbrev 0x0000000000001fcf 0x1ab ./src/core/gpio.o + .debug_abbrev 0x000000000000217a 0x1ce ./src/core/gpio_int.o + .debug_abbrev 0x0000000000002348 0x3c0 ./src/core/maryoled.o + .debug_abbrev 0x0000000000002708 0xff ./src/core/startup_mary.o + .debug_abbrev 0x0000000000002807 0xd8 ./src/core/system_LPC11xx.o + .debug_abbrev 0x00000000000028df 0x34e ./src/core/uart.o + .debug_abbrev 0x0000000000002c2d 0x626 ./src/XBee/XBee.o + .debug_abbrev 0x0000000000003253 0x3b4 ./src/FatFs/SD.o + .debug_abbrev 0x0000000000003607 0x34b ./src/FatFs/pff.o + .debug_abbrev 0x0000000000003952 0x32b ./src/FatFs/sdcard.o + .debug_abbrev 0x0000000000003c7d 0x97 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_sbrk.o) + .debug_abbrev 0x0000000000003d14 0x52 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_exit.o) + .debug_abbrev 0x0000000000003d66 0x52 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(getpid.o) + .debug_abbrev 0x0000000000003db8 0x72 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(kill.o) + .debug_abbrev 0x0000000000003e2a 0x70 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_check_heap.o) + +.debug_loc 0x0000000000000000 0x6e1f + .debug_loc 0x0000000000000000 0x47a ./src/user_application.o + .debug_loc 0x000000000000047a 0x92c ./src/core/LiquidCrystal.o + .debug_loc 0x0000000000000da6 0x3c5 ./src/core/Print.o + .debug_loc 0x000000000000116b 0x205 ./src/core/SPI.o + .debug_loc 0x0000000000001370 0x205 ./src/core/SPI1.o + .debug_loc 0x0000000000001575 0x4ca ./src/core/SoftwareSerial.o + .debug_loc 0x0000000000001a3f 0xc55 ./src/core/Wire.o + .debug_loc 0x0000000000002694 0x24e ./src/core/analogio.o + .debug_loc 0x00000000000028e2 0x135 ./src/core/arithmetical.o + .debug_loc 0x0000000000002a17 0x79 ./src/core/cr_cpp_config.o + .debug_loc 0x0000000000002a90 0x2af ./src/core/cr_startup_lpc11.o + .debug_loc 0x0000000000002d3f 0x1c3 ./src/core/delay.o + .debug_loc 0x0000000000002f02 0x350 ./src/core/gpio.o + .debug_loc 0x0000000000003252 0x1cc ./src/core/gpio_int.o + .debug_loc 0x000000000000341e 0x92f ./src/core/maryoled.o + .debug_loc 0x0000000000003d4d 0x20 ./src/core/startup_mary.o + .debug_loc 0x0000000000003d6d 0x98 ./src/core/system_LPC11xx.o + .debug_loc 0x0000000000003e05 0xd2 ./src/core/uart.o + .debug_loc 0x0000000000003ed7 0x1994 ./src/XBee/XBee.o + .debug_loc 0x000000000000586b 0x281 ./src/FatFs/SD.o + .debug_loc 0x0000000000005aec 0xe30 ./src/FatFs/pff.o + .debug_loc 0x000000000000691c 0x435 ./src/FatFs/sdcard.o + .debug_loc 0x0000000000006d51 0x68 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_sbrk.o) + .debug_loc 0x0000000000006db9 0x20 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_exit.o) + .debug_loc 0x0000000000006dd9 0x13 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(kill.o) + .debug_loc 0x0000000000006dec 0x33 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_check_heap.o) + +.debug_aranges 0x0000000000000000 0xed8 + .debug_aranges + 0x0000000000000000 0x40 ./src/user_application.o + .debug_aranges + 0x0000000000000040 0xf8 ./src/core/LiquidCrystal.o + .debug_aranges + 0x0000000000000138 0x58 ./src/core/Print.o + .debug_aranges + 0x0000000000000190 0x80 ./src/core/SPI.o + .debug_aranges + 0x0000000000000210 0x80 ./src/core/SPI1.o + .debug_aranges + 0x0000000000000290 0x88 ./src/core/SoftwareSerial.o + .debug_aranges + 0x0000000000000318 0x128 ./src/core/Wire.o + .debug_aranges + 0x0000000000000440 0x50 ./src/core/analogio.o + .debug_aranges + 0x0000000000000490 0x40 ./src/core/arithmetical.o + .debug_aranges + 0x00000000000004d0 0x30 ./src/core/cr_cpp_config.o + .debug_aranges + 0x0000000000000500 0x70 ./src/core/cr_startup_lpc11.o + .debug_aranges + 0x0000000000000570 0x70 ./src/core/delay.o + .debug_aranges + 0x00000000000005e0 0x58 ./src/core/gpio.o + .debug_aranges + 0x0000000000000638 0x60 ./src/core/gpio_int.o + .debug_aranges + 0x0000000000000698 0xe8 ./src/core/maryoled.o + .debug_aranges + 0x0000000000000780 0x20 ./src/core/startup_mary.o + .debug_aranges + 0x00000000000007a0 0x28 ./src/core/system_LPC11xx.o + .debug_aranges + 0x00000000000007c8 0x58 ./src/core/uart.o + .debug_aranges + 0x0000000000000820 0x468 ./src/XBee/XBee.o + .debug_aranges + 0x0000000000000c88 0xe0 ./src/FatFs/SD.o + .debug_aranges + 0x0000000000000d68 0x80 ./src/FatFs/pff.o + .debug_aranges + 0x0000000000000de8 0x50 ./src/FatFs/sdcard.o + .debug_aranges + 0x0000000000000e38 0x20 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_sbrk.o) + .debug_aranges + 0x0000000000000e58 0x20 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_exit.o) + .debug_aranges + 0x0000000000000e78 0x20 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(getpid.o) + .debug_aranges + 0x0000000000000e98 0x20 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(kill.o) + .debug_aranges + 0x0000000000000eb8 0x20 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_check_heap.o) + +.debug_ranges 0x0000000000000000 0x1610 + .debug_ranges 0x0000000000000000 0x60 ./src/user_application.o + .debug_ranges 0x0000000000000060 0xe8 ./src/core/LiquidCrystal.o + .debug_ranges 0x0000000000000148 0x48 ./src/core/Print.o + .debug_ranges 0x0000000000000190 0xd8 ./src/core/SPI.o + .debug_ranges 0x0000000000000268 0x100 ./src/core/SPI1.o + .debug_ranges 0x0000000000000368 0x90 ./src/core/SoftwareSerial.o + .debug_ranges 0x00000000000003f8 0x180 ./src/core/Wire.o + .debug_ranges 0x0000000000000578 0x68 ./src/core/analogio.o + .debug_ranges 0x00000000000005e0 0x60 ./src/core/arithmetical.o + .debug_ranges 0x0000000000000640 0x20 ./src/core/cr_cpp_config.o + .debug_ranges 0x0000000000000660 0x60 ./src/core/cr_startup_lpc11.o + .debug_ranges 0x00000000000006c0 0x60 ./src/core/delay.o + .debug_ranges 0x0000000000000720 0x48 ./src/core/gpio.o + .debug_ranges 0x0000000000000768 0x68 ./src/core/gpio_int.o + .debug_ranges 0x00000000000007d0 0x1a0 ./src/core/maryoled.o + .debug_ranges 0x0000000000000970 0x10 ./src/core/startup_mary.o + .debug_ranges 0x0000000000000980 0x48 ./src/core/system_LPC11xx.o + .debug_ranges 0x00000000000009c8 0x60 ./src/core/uart.o + .debug_ranges 0x0000000000000a28 0x7f0 ./src/XBee/XBee.o + .debug_ranges 0x0000000000001218 0xe8 ./src/FatFs/SD.o + .debug_ranges 0x0000000000001300 0x278 ./src/FatFs/pff.o + .debug_ranges 0x0000000000001578 0x98 ./src/FatFs/sdcard.o + +.debug_line 0x0000000000000000 0x488f + .debug_line 0x0000000000000000 0x1f1 ./src/user_application.o + .debug_line 0x00000000000001f1 0x3fb ./src/core/LiquidCrystal.o + .debug_line 0x00000000000005ec 0x165 ./src/core/Print.o + .debug_line 0x0000000000000751 0x260 ./src/core/SPI.o + .debug_line 0x00000000000009b1 0x27e ./src/core/SPI1.o + .debug_line 0x0000000000000c2f 0x29f ./src/core/SoftwareSerial.o + .debug_line 0x0000000000000ece 0x9a2 ./src/core/Wire.o + .debug_line 0x0000000000001870 0x227 ./src/core/analogio.o + .debug_line 0x0000000000001a97 0x195 ./src/core/arithmetical.o + .debug_line 0x0000000000001c2c 0xe6 ./src/core/cr_cpp_config.o + .debug_line 0x0000000000001d12 0xc9 ./src/core/cr_startup_lpc11.o + .debug_line 0x0000000000001ddb 0x249 ./src/core/delay.o + .debug_line 0x0000000000002024 0x1ce ./src/core/gpio.o + .debug_line 0x00000000000021f2 0x1cd ./src/core/gpio_int.o + .debug_line 0x00000000000023bf 0x3f9 ./src/core/maryoled.o + .debug_line 0x00000000000027b8 0x106 ./src/core/startup_mary.o + .debug_line 0x00000000000028be 0x16f ./src/core/system_LPC11xx.o + .debug_line 0x0000000000002a2d 0x1c4 ./src/core/uart.o + .debug_line 0x0000000000002bf1 0xf4d ./src/XBee/XBee.o + .debug_line 0x0000000000003b3e 0x30d ./src/FatFs/SD.o + .debug_line 0x0000000000003e4b 0x4ff ./src/FatFs/pff.o + .debug_line 0x000000000000434a 0x370 ./src/FatFs/sdcard.o + .debug_line 0x00000000000046ba 0xc2 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_sbrk.o) + .debug_line 0x000000000000477c 0x3e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_exit.o) + .debug_line 0x00000000000047ba 0x43 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(getpid.o) + .debug_line 0x00000000000047fd 0x41 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(kill.o) + .debug_line 0x000000000000483e 0x51 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_check_heap.o) + +.debug_str 0x0000000000000000 0x51ad + .debug_str 0x0000000000000000 0x264 ./src/user_application.o + 0x30c (size before relaxing) + .debug_str 0x0000000000000264 0x4c4 ./src/core/LiquidCrystal.o + 0x71c (size before relaxing) + .debug_str 0x0000000000000728 0x10e ./src/core/Print.o + 0x2a1 (size before relaxing) + .debug_str 0x0000000000000836 0x8f5 ./src/core/SPI.o + 0xbd0 (size before relaxing) + .debug_str 0x000000000000112b 0x126 ./src/core/SPI1.o + 0xbe7 (size before relaxing) + .debug_str 0x0000000000001251 0x3b6 ./src/core/SoftwareSerial.o + 0x6a8 (size before relaxing) + .debug_str 0x0000000000001607 0xd5b ./src/core/Wire.o + 0x1169 (size before relaxing) + .debug_str 0x0000000000002362 0x11f ./src/core/analogio.o + 0x7f2 (size before relaxing) + .debug_str 0x0000000000002481 0xa4 ./src/core/arithmetical.o + 0x267 (size before relaxing) + .debug_str 0x0000000000002525 0x62 ./src/core/cr_cpp_config.o + 0x198 (size before relaxing) + .debug_str 0x0000000000002587 0x173 ./src/core/cr_startup_lpc11.o + 0x291 (size before relaxing) + .debug_str 0x00000000000026fa 0x120 ./src/core/delay.o + 0x798 (size before relaxing) + .debug_str 0x000000000000281a 0x225 ./src/core/gpio.o + 0x43a (size before relaxing) + .debug_str 0x0000000000002a3f 0xac ./src/core/gpio_int.o + 0x4da (size before relaxing) + .debug_str 0x0000000000002aeb 0x595 ./src/core/maryoled.o + 0xb4a (size before relaxing) + .debug_str 0x0000000000003080 0x1d ./src/core/startup_mary.o + 0x1e0 (size before relaxing) + .debug_str 0x000000000000309d 0x4e ./src/core/system_LPC11xx.o + 0x40c (size before relaxing) + .debug_str 0x00000000000030eb 0x13b ./src/core/uart.o + 0x77d (size before relaxing) + .debug_str 0x0000000000003226 0x1832 ./src/XBee/XBee.o + 0x1c6b (size before relaxing) + .debug_str 0x0000000000004a58 0x377 ./src/FatFs/SD.o + 0x90b (size before relaxing) + .debug_str 0x0000000000004dcf 0x1d9 ./src/FatFs/pff.o + 0x4f9 (size before relaxing) + .debug_str 0x0000000000004fa8 0xcc ./src/FatFs/sdcard.o + 0x9e5 (size before relaxing) + .debug_str 0x0000000000005074 0xb3 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_sbrk.o) + 0x143 (size before relaxing) + .debug_str 0x0000000000005127 0x15 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_exit.o) + 0x70 (size before relaxing) + .debug_str 0x000000000000513c 0x18 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(getpid.o) + 0x102 (size before relaxing) + .debug_str 0x0000000000005154 0x14 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(kill.o) + 0xfe (size before relaxing) + .debug_str 0x0000000000005168 0x45 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_check_heap.o) + 0xcf (size before relaxing) + +.comment 0x0000000000000000 0x9a + .comment 0x0000000000000000 0x70 ./src/user_application.o + 0x71 (size before relaxing) + .comment 0x0000000000000000 0x71 ./src/core/LiquidCrystal.o + .comment 0x0000000000000000 0x71 ./src/core/Print.o + .comment 0x0000000000000000 0x71 ./src/core/SPI.o + .comment 0x0000000000000000 0x71 ./src/core/SPI1.o + .comment 0x0000000000000000 0x71 ./src/core/SoftwareSerial.o + .comment 0x0000000000000000 0x71 ./src/core/Wire.o + .comment 0x0000000000000000 0x71 ./src/core/analogio.o + .comment 0x0000000000000000 0x71 ./src/core/arithmetical.o + .comment 0x0000000000000000 0x71 ./src/core/cr_cpp_config.o + .comment 0x0000000000000000 0x71 ./src/core/cr_startup_lpc11.o + .comment 0x0000000000000000 0x71 ./src/core/delay.o + .comment 0x0000000000000000 0x71 ./src/core/gpio.o + .comment 0x0000000000000000 0x71 ./src/core/gpio_int.o + .comment 0x0000000000000000 0x71 ./src/core/maryoled.o + .comment 0x0000000000000000 0x71 ./src/core/startup_mary.o + .comment 0x0000000000000000 0x71 ./src/core/system_LPC11xx.o + .comment 0x0000000000000000 0x71 ./src/core/uart.o + .comment 0x0000000000000000 0x71 ./src/XBee/XBee.o + .comment 0x0000000000000000 0x71 ./src/FatFs/SD.o + .comment 0x0000000000000000 0x71 ./src/FatFs/pff.o + .comment 0x0000000000000000 0x71 ./src/FatFs/sdcard.o + .comment 0x0000000000000070 0x2a /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_sbrk.o) + 0x2b (size before relaxing) + .comment 0x0000000000000000 0x2b /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_exit.o) + .comment 0x0000000000000000 0x2b /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(getpid.o) + .comment 0x0000000000000000 0x2b /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(kill.o) + .comment 0x0000000000000000 0x2b /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_check_heap.o) + +.ARM.attributes + 0x0000000000000000 0x33 + .ARM.attributes + 0x0000000000000000 0x33 ./src/user_application.o + .ARM.attributes + 0x0000000000000033 0x33 ./src/core/LiquidCrystal.o + .ARM.attributes + 0x0000000000000066 0x33 ./src/core/Print.o + .ARM.attributes + 0x0000000000000099 0x33 ./src/core/SPI.o + .ARM.attributes + 0x00000000000000cc 0x33 ./src/core/SPI1.o + .ARM.attributes + 0x00000000000000ff 0x33 ./src/core/SoftwareSerial.o + .ARM.attributes + 0x0000000000000132 0x33 ./src/core/Wire.o + .ARM.attributes + 0x0000000000000165 0x33 ./src/core/analogio.o + .ARM.attributes + 0x0000000000000198 0x33 ./src/core/arithmetical.o + .ARM.attributes + 0x00000000000001cb 0x33 ./src/core/cr_cpp_config.o + .ARM.attributes + 0x00000000000001fe 0x33 ./src/core/cr_startup_lpc11.o + .ARM.attributes + 0x0000000000000231 0x33 ./src/core/delay.o + .ARM.attributes + 0x0000000000000264 0x33 ./src/core/gpio.o + .ARM.attributes + 0x0000000000000297 0x33 ./src/core/gpio_int.o + .ARM.attributes + 0x00000000000002ca 0x33 ./src/core/maryoled.o + .ARM.attributes + 0x00000000000002fd 0x33 ./src/core/startup_mary.o + .ARM.attributes + 0x0000000000000330 0x33 ./src/core/system_LPC11xx.o + .ARM.attributes + 0x0000000000000363 0x33 ./src/core/uart.o + .ARM.attributes + 0x0000000000000396 0x33 ./src/XBee/XBee.o + .ARM.attributes + 0x00000000000003c9 0x33 ./src/FatFs/SD.o + .ARM.attributes + 0x00000000000003fc 0x33 ./src/FatFs/pff.o + .ARM.attributes + 0x000000000000042f 0x33 ./src/FatFs/sdcard.o + .ARM.attributes + 0x0000000000000462 0x20 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_thumb1_case_uqi.o) + .ARM.attributes + 0x0000000000000482 0x20 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_udivsi3.o) + .ARM.attributes + 0x00000000000004a2 0x20 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_divsi3.o) + .ARM.attributes + 0x00000000000004c2 0x20 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_dvmd_tls.o) + .ARM.attributes + 0x00000000000004e2 0x20 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_arm_cmpdf2.o) + .ARM.attributes + 0x0000000000000502 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(divdf3.o) + .ARM.attributes + 0x0000000000000530 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(eqdf2.o) + .ARM.attributes + 0x000000000000055e 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(gedf2.o) + .ARM.attributes + 0x000000000000058c 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(ledf2.o) + .ARM.attributes + 0x00000000000005ba 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(muldf3.o) + .ARM.attributes + 0x00000000000005e8 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(subdf3.o) + .ARM.attributes + 0x0000000000000616 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(fixdfsi.o) + .ARM.attributes + 0x0000000000000644 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(floatsidf.o) + .ARM.attributes + 0x0000000000000672 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(unwind-arm.o) + .ARM.attributes + 0x00000000000006a0 0x20 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(libunwind.o) + .ARM.attributes + 0x00000000000006c0 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(pr-support.o) + .ARM.attributes + 0x00000000000006ee 0x20 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_clzsi2.o) + .ARM.attributes + 0x000000000000070e 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-abort.o) + .ARM.attributes + 0x000000000000073c 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-init.o) + .ARM.attributes + 0x000000000000076a 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-malloc.o) + .ARM.attributes + 0x0000000000000798 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-mallocr.o) + .ARM.attributes + 0x00000000000007c6 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-memcpy.o) + .ARM.attributes + 0x00000000000007f4 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-mlock.o) + .ARM.attributes + 0x0000000000000822 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-sbrkr.o) + .ARM.attributes + 0x0000000000000850 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-signal.o) + .ARM.attributes + 0x000000000000087e 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-signalr.o) + .ARM.attributes + 0x00000000000008ac 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-strlen.o) + .ARM.attributes + 0x00000000000008da 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-freer.o) + .ARM.attributes + 0x0000000000000908 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-impure.o) + .ARM.attributes + 0x0000000000000936 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-reent.o) + .ARM.attributes + 0x0000000000000964 0x33 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_sbrk.o) + .ARM.attributes + 0x0000000000000997 0x33 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_exit.o) + .ARM.attributes + 0x00000000000009ca 0x33 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(getpid.o) + .ARM.attributes + 0x00000000000009fd 0x33 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(kill.o) + .ARM.attributes + 0x0000000000000a30 0x33 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_check_heap.o) + .ARM.attributes + 0x0000000000000a63 0x20 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crti.o + .ARM.attributes + 0x0000000000000a83 0x20 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crtn.o + .ARM.attributes + 0x0000000000000aa3 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crtbegin.o + .ARM.attributes + 0x0000000000000ad1 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/crtend.o + .ARM.attributes + 0x0000000000000aff 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-errno.o) + +.debug_frame 0x0000000000000000 0x2ce0 + .debug_frame 0x0000000000000000 0x98 ./src/user_application.o + .debug_frame 0x0000000000000098 0x2fc ./src/core/LiquidCrystal.o + .debug_frame 0x0000000000000394 0xe4 ./src/core/Print.o + .debug_frame 0x0000000000000478 0x124 ./src/core/SPI.o + .debug_frame 0x000000000000059c 0x128 ./src/core/SPI1.o + .debug_frame 0x00000000000006c4 0x180 ./src/core/SoftwareSerial.o + .debug_frame 0x0000000000000844 0x374 ./src/core/Wire.o + .debug_frame 0x0000000000000bb8 0xb8 ./src/core/analogio.o + .debug_frame 0x0000000000000c70 0x7c ./src/core/arithmetical.o + .debug_frame 0x0000000000000cec 0x50 ./src/core/cr_cpp_config.o + .debug_frame 0x0000000000000d3c 0x114 ./src/core/cr_startup_lpc11.o + .debug_frame 0x0000000000000e50 0x104 ./src/core/delay.o + .debug_frame 0x0000000000000f54 0xe8 ./src/core/gpio.o + .debug_frame 0x000000000000103c 0xe0 ./src/core/gpio_int.o + .debug_frame 0x000000000000111c 0x284 ./src/core/maryoled.o + .debug_frame 0x00000000000013a0 0x28 ./src/core/startup_mary.o + .debug_frame 0x00000000000013c8 0x44 ./src/core/system_LPC11xx.o + .debug_frame 0x000000000000140c 0xac ./src/core/uart.o + .debug_frame 0x00000000000014b8 0xa0c ./src/XBee/XBee.o + .debug_frame 0x0000000000001ec4 0x1d8 ./src/FatFs/SD.o + .debug_frame 0x000000000000209c 0x1a4 ./src/FatFs/pff.o + .debug_frame 0x0000000000002240 0xd4 ./src/FatFs/sdcard.o + .debug_frame 0x0000000000002314 0x20 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_udivsi3.o) + .debug_frame 0x0000000000002334 0x20 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(_divsi3.o) + .debug_frame 0x0000000000002354 0x3c /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(divdf3.o) + .debug_frame 0x0000000000002390 0x34 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(eqdf2.o) + .debug_frame 0x00000000000023c4 0x34 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(gedf2.o) + .debug_frame 0x00000000000023f8 0x34 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(ledf2.o) + .debug_frame 0x000000000000242c 0x3c /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(muldf3.o) + .debug_frame 0x0000000000002468 0x38 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(subdf3.o) + .debug_frame 0x00000000000024a0 0x2c /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(fixdfsi.o) + .debug_frame 0x00000000000024cc 0x30 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(floatsidf.o) + .debug_frame 0x00000000000024fc 0x2ac /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(unwind-arm.o) + .debug_frame 0x00000000000027a8 0xfc /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/armv6-m/libgcc.a(pr-support.o) + .debug_frame 0x00000000000028a4 0x28 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-abort.o) + .debug_frame 0x00000000000028cc 0x2c /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-init.o) + .debug_frame 0x00000000000028f8 0x40 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-malloc.o) + .debug_frame 0x0000000000002938 0x3c /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-mallocr.o) + .debug_frame 0x0000000000002974 0x30 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-memcpy.o) + .debug_frame 0x00000000000029a4 0x30 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-mlock.o) + .debug_frame 0x00000000000029d4 0x2c /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-sbrkr.o) + .debug_frame 0x0000000000002a00 0xe4 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-signal.o) + .debug_frame 0x0000000000002ae4 0x44 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-signalr.o) + .debug_frame 0x0000000000002b28 0x20 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-strlen.o) + .debug_frame 0x0000000000002b48 0x54 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-freer.o) + .debug_frame 0x0000000000002b9c 0x68 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-reent.o) + .debug_frame 0x0000000000002c04 0x2c /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_sbrk.o) + .debug_frame 0x0000000000002c30 0x28 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_exit.o) + .debug_frame 0x0000000000002c58 0x20 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(getpid.o) + .debug_frame 0x0000000000002c78 0x20 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(kill.o) + .debug_frame 0x0000000000002c98 0x28 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_check_heap.o) + .debug_frame 0x0000000000002cc0 0x20 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libc.a(lib_a-errno.o) + +.debug_pubnames + 0x0000000000000000 0xbe + .debug_pubnames + 0x0000000000000000 0x2e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_sbrk.o) + .debug_pubnames + 0x000000000000002e 0x1c /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_exit.o) + .debug_pubnames + 0x000000000000004a 0x1e /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(getpid.o) + .debug_pubnames + 0x0000000000000068 0x1c /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(kill.o) + .debug_pubnames + 0x0000000000000084 0x3a /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_check_heap.o) + +.debug_pubtypes + 0x0000000000000000 0x41 + .debug_pubtypes + 0x0000000000000000 0x1d /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(_cr_sbrk.o) + .debug_pubtypes + 0x000000000000001d 0x12 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(getpid.o) + .debug_pubtypes + 0x000000000000002f 0x12 /Applications/lpcxpresso_4.2.4_267/lpcxpresso/Tools/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv6-m/libcr_newlib_nohost.a(kill.o) diff --git a/LPC1114FN28_102_DIP28/makefile b/LPC1114FN28_102_DIP28/makefile new file mode 100644 index 0000000..0e035e9 --- /dev/null +++ b/LPC1114FN28_102_DIP28/makefile @@ -0,0 +1,68 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +-include ../makefile.init + +RM := rm -rf + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir.mk +-include src/subdir.mk +-include src/core/subdir.mk +-include src/XBee/subdir.mk +-include src/FatFs/subdir.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables + +# All Target +all: eXodusino.axf + +# Tool invocations +eXodusino.axf: $(OBJS) $(USER_OBJS) + @echo 'Building target: $@' + @echo 'Invoking: MCU C++ Linker' + arm-none-eabi-c++ -nostdlib -Xlinker -Map="eXodusino.map" -Xlinker --gc-sections -mcpu=cortex-m0 -mthumb -T "eXodusino.ld" -o"eXodusino.axf" $(OBJS) $(USER_OBJS) $(LIBS) + @echo 'Finished building target: $@' + @echo ' ' + $(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(CPP_DEPS)$(EXECUTABLES)$(CXX_DEPS)$(C_UPPER_DEPS) eXodusino.axf + -@echo ' ' + +post-build: + -@echo 'Performing post-build steps' + -arm-none-eabi-size "eXodusino.axf"; arm-none-eabi-objcopy -O binary "eXodusino.axf" "eXodusino.bin" ; checksum -p LPC1114FN_102 -d "eXodusino.bin"; + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: post-build + +-include ../makefile.targets diff --git a/LPC1114FN28_102_DIP28/objects.mk b/LPC1114FN28_102_DIP28/objects.mk new file mode 100644 index 0000000..742c2da --- /dev/null +++ b/LPC1114FN28_102_DIP28/objects.mk @@ -0,0 +1,8 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +USER_OBJS := + +LIBS := + diff --git a/LPC1114FN28_102_DIP28/sources.mk b/LPC1114FN28_102_DIP28/sources.mk new file mode 100644 index 0000000..4a4ce5b --- /dev/null +++ b/LPC1114FN28_102_DIP28/sources.mk @@ -0,0 +1,31 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +O_SRCS := +CPP_SRCS := +C_UPPER_SRCS := +C_SRCS := +S_SRCS := +S_UPPER_SRCS := +OBJ_SRCS := +ASM_SRCS := +CXX_SRCS := +C++_SRCS := +CC_SRCS := +OBJS := +C++_DEPS := +C_DEPS := +CC_DEPS := +CPP_DEPS := +EXECUTABLES := +CXX_DEPS := +C_UPPER_DEPS := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +src \ +src/core \ +src/XBee \ +src/FatFs \ + diff --git a/LPC1114FN28_102_DIP28/src/FatFs/SD.d b/LPC1114FN28_102_DIP28/src/FatFs/SD.d new file mode 100644 index 0000000..adc530d --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/FatFs/SD.d @@ -0,0 +1,42 @@ +src/FatFs/SD.d: ../src/FatFs/SD.cpp \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/libmary.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/LPC11xx.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/core_cm0.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/system_LPC11xx.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/delay.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/uart.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/Print.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/gpio.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/analogio.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/arithmetical.h \ + ../src/FatFs/SD.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/SPI.h \ + ../src/FatFs/pff.h ../src/FatFs/integer.h + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/libmary.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/LPC11xx.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/core_cm0.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/system_LPC11xx.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/delay.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/uart.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/Print.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/gpio.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/analogio.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/arithmetical.h: + +../src/FatFs/SD.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/SPI.h: + +../src/FatFs/pff.h: + +../src/FatFs/integer.h: diff --git a/LPC1114FN28_102_DIP28/src/FatFs/pff.d b/LPC1114FN28_102_DIP28/src/FatFs/pff.d new file mode 100644 index 0000000..4b839ae --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/FatFs/pff.d @@ -0,0 +1,39 @@ +src/FatFs/pff.d: ../src/FatFs/pff.cpp ../src/FatFs/pff.h \ + ../src/FatFs/integer.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/libmary.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/LPC11xx.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/core_cm0.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/system_LPC11xx.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/delay.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/uart.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/Print.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/gpio.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/analogio.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/arithmetical.h \ + ../src/FatFs/diskio.h + +../src/FatFs/pff.h: + +../src/FatFs/integer.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/libmary.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/LPC11xx.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/core_cm0.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/system_LPC11xx.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/delay.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/uart.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/Print.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/gpio.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/analogio.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/arithmetical.h: + +../src/FatFs/diskio.h: diff --git a/LPC1114FN28_102_DIP28/src/FatFs/sdcard.d b/LPC1114FN28_102_DIP28/src/FatFs/sdcard.d new file mode 100644 index 0000000..d7d47f5 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/FatFs/sdcard.d @@ -0,0 +1,48 @@ +src/FatFs/sdcard.d: ../src/FatFs/sdcard.cpp ../src/FatFs/diskio.h \ + ../src/FatFs/integer.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/libmary.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/LPC11xx.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/core_cm0.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/system_LPC11xx.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/delay.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/uart.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/Print.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/gpio.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/analogio.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/arithmetical.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/SPI.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/FatFs/SD.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/FatFs/pff.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/FatFs/integer.h + +../src/FatFs/diskio.h: + +../src/FatFs/integer.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/libmary.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/LPC11xx.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/core_cm0.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/system_LPC11xx.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/delay.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/uart.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/Print.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/gpio.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/analogio.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/arithmetical.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/SPI.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/FatFs/SD.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/FatFs/pff.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/FatFs/integer.h: diff --git a/LPC1114FN28_102_DIP28/src/FatFs/subdir.mk b/LPC1114FN28_102_DIP28/src/FatFs/subdir.mk new file mode 100644 index 0000000..c367102 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/FatFs/subdir.mk @@ -0,0 +1,30 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../src/FatFs/SD.cpp \ +../src/FatFs/pff.cpp \ +../src/FatFs/sdcard.cpp + +OBJS += \ +./src/FatFs/SD.o \ +./src/FatFs/pff.o \ +./src/FatFs/sdcard.o + +CPP_DEPS += \ +./src/FatFs/SD.d \ +./src/FatFs/pff.d \ +./src/FatFs/sdcard.d + + +# Each subdirectory must supply rules for building sources it contributes +src/FatFs/%.o: ../src/FatFs/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: MCU C++ Compiler' + arm-none-eabi-c++ -D__NEWLIB__ -DNDEBUG -D__CODE_RED -I"/Users/lynxeyed/Documents/workspace/eXodusino/src" -I"/Users/lynxeyed/Documents/workspace/eXodusino/src/XBee" -I"/Users/lynxeyed/Documents/workspace/eXodusino/src/FatFs" -I"/Users/lynxeyed/Documents/workspace/eXodusino/src/core" -Os -Os -g -Wall -c -fmessage-length=0 -fno-builtin -ffunction-sections -fdata-sections -fno-rtti -mcpu=cortex-m0 -mthumb -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o"$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/LPC1114FN28_102_DIP28/src/XBee/XBee.d b/LPC1114FN28_102_DIP28/src/XBee/XBee.d new file mode 100644 index 0000000..b2f2814 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/XBee/XBee.d @@ -0,0 +1,37 @@ +src/XBee/XBee.d: ../src/XBee/XBee.cpp \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/libmary.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/LPC11xx.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/core_cm0.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/system_LPC11xx.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/delay.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/uart.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/Print.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/gpio.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/analogio.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/arithmetical.h \ + ../src/XBee/XBee.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/uart.h + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/libmary.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/LPC11xx.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/core_cm0.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/system_LPC11xx.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/delay.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/uart.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/Print.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/gpio.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/analogio.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/arithmetical.h: + +../src/XBee/XBee.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/uart.h: diff --git a/LPC1114FN28_102_DIP28/src/XBee/subdir.mk b/LPC1114FN28_102_DIP28/src/XBee/subdir.mk new file mode 100644 index 0000000..756ed4a --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/XBee/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../src/XBee/XBee.cpp + +OBJS += \ +./src/XBee/XBee.o + +CPP_DEPS += \ +./src/XBee/XBee.d + + +# Each subdirectory must supply rules for building sources it contributes +src/XBee/%.o: ../src/XBee/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: MCU C++ Compiler' + arm-none-eabi-c++ -D__NEWLIB__ -DNDEBUG -D__CODE_RED -I"/Users/lynxeyed/Documents/workspace/eXodusino/src" -I"/Users/lynxeyed/Documents/workspace/eXodusino/src/XBee" -I"/Users/lynxeyed/Documents/workspace/eXodusino/src/FatFs" -I"/Users/lynxeyed/Documents/workspace/eXodusino/src/core" -Os -Os -g -Wall -c -fmessage-length=0 -fno-builtin -ffunction-sections -fdata-sections -fno-rtti -mcpu=cortex-m0 -mthumb -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o"$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/LPC1114FN28_102_DIP28/src/core/LiquidCrystal.d b/LPC1114FN28_102_DIP28/src/core/LiquidCrystal.d new file mode 100644 index 0000000..ac302ad --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/LiquidCrystal.d @@ -0,0 +1,27 @@ +src/core/LiquidCrystal.d: ../src/core/LiquidCrystal.cpp \ + ../src/core/LiquidCrystal.h ../src/core/Print.h ../src/core/LPC11xx.h \ + ../src/core/core_cm0.h ../src/core/system_LPC11xx.h \ + ../src/core/libmary.h ../src/core/delay.h ../src/core/uart.h \ + ../src/core/gpio.h ../src/core/analogio.h ../src/core/arithmetical.h + +../src/core/LiquidCrystal.h: + +../src/core/Print.h: + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: + +../src/core/libmary.h: + +../src/core/delay.h: + +../src/core/uart.h: + +../src/core/gpio.h: + +../src/core/analogio.h: + +../src/core/arithmetical.h: diff --git a/LPC1114FN28_102_DIP28/src/core/Print.d b/LPC1114FN28_102_DIP28/src/core/Print.d new file mode 100644 index 0000000..f5409fa --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/Print.d @@ -0,0 +1,11 @@ +src/core/Print.d: ../src/core/Print.cpp ../src/core/Print.h \ + ../src/core/LPC11xx.h ../src/core/core_cm0.h \ + ../src/core/system_LPC11xx.h + +../src/core/Print.h: + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: diff --git a/LPC1114FN28_102_DIP28/src/core/SPI.d b/LPC1114FN28_102_DIP28/src/core/SPI.d new file mode 100644 index 0000000..c306dc3 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/SPI.d @@ -0,0 +1,13 @@ +src/core/SPI.d: ../src/core/SPI.cpp ../src/core/gpio.h \ + ../src/core/LPC11xx.h ../src/core/core_cm0.h \ + ../src/core/system_LPC11xx.h ../src/core/SPI.h + +../src/core/gpio.h: + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: + +../src/core/SPI.h: diff --git a/LPC1114FN28_102_DIP28/src/core/SPI1.d b/LPC1114FN28_102_DIP28/src/core/SPI1.d new file mode 100644 index 0000000..62c5acf --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/SPI1.d @@ -0,0 +1,15 @@ +src/core/SPI1.d: ../src/core/SPI1.cpp ../src/core/gpio.h \ + ../src/core/LPC11xx.h ../src/core/core_cm0.h \ + ../src/core/system_LPC11xx.h ../src/core/SPI1.h ../src/core/SPI.h + +../src/core/gpio.h: + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: + +../src/core/SPI1.h: + +../src/core/SPI.h: diff --git a/LPC1114FN28_102_DIP28/src/core/SoftwareSerial.d b/LPC1114FN28_102_DIP28/src/core/SoftwareSerial.d new file mode 100644 index 0000000..5b744b1 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/SoftwareSerial.d @@ -0,0 +1,20 @@ +src/core/SoftwareSerial.d: ../src/core/SoftwareSerial.cpp \ + ../src/core/SoftwareSerial.h ../src/core/Print.h ../src/core/LPC11xx.h \ + ../src/core/core_cm0.h ../src/core/system_LPC11xx.h ../src/core/gpio.h \ + ../src/core/delay.h ../src/core/uart.h + +../src/core/SoftwareSerial.h: + +../src/core/Print.h: + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: + +../src/core/gpio.h: + +../src/core/delay.h: + +../src/core/uart.h: diff --git a/LPC1114FN28_102_DIP28/src/core/Wire.d b/LPC1114FN28_102_DIP28/src/core/Wire.d new file mode 100644 index 0000000..01dd6e0 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/Wire.d @@ -0,0 +1,38 @@ +src/core/Wire.d: ../src/core/Wire.cpp ../src/core/Wire.h \ + ../src/core/LPC11xx.h ../src/core/core_cm0.h \ + ../src/core/system_LPC11xx.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/libmary.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/LPC11xx.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/system_LPC11xx.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/delay.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/uart.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/Print.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/gpio.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/analogio.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/arithmetical.h + +../src/core/Wire.h: + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/libmary.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/LPC11xx.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/system_LPC11xx.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/delay.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/uart.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/Print.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/gpio.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/analogio.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/arithmetical.h: diff --git a/LPC1114FN28_102_DIP28/src/core/analogio.d b/LPC1114FN28_102_DIP28/src/core/analogio.d new file mode 100644 index 0000000..abf5b13 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/analogio.d @@ -0,0 +1,13 @@ +src/core/analogio.d: ../src/core/analogio.cpp ../src/core/analogio.h \ + ../src/core/LPC11xx.h ../src/core/core_cm0.h \ + ../src/core/system_LPC11xx.h ../src/core/gpio.h + +../src/core/analogio.h: + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: + +../src/core/gpio.h: diff --git a/LPC1114FN28_102_DIP28/src/core/arithmetical.d b/LPC1114FN28_102_DIP28/src/core/arithmetical.d new file mode 100644 index 0000000..824993f --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/arithmetical.d @@ -0,0 +1,34 @@ +src/core/arithmetical.d: ../src/core/arithmetical.cpp \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/libmary.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/LPC11xx.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/core_cm0.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/system_LPC11xx.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/delay.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/uart.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/Print.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/gpio.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/analogio.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/arithmetical.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/arithmetical.h + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/libmary.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/LPC11xx.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/core_cm0.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/system_LPC11xx.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/delay.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/uart.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/Print.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/gpio.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/analogio.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/arithmetical.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/arithmetical.h: diff --git a/LPC1114FN28_102_DIP28/src/core/cr_cpp_config.d b/LPC1114FN28_102_DIP28/src/core/cr_cpp_config.d new file mode 100644 index 0000000..9e5f170 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/cr_cpp_config.d @@ -0,0 +1 @@ +src/core/cr_cpp_config.d: ../src/core/cr_cpp_config.cpp diff --git a/LPC1114FN28_102_DIP28/src/core/cr_startup_lpc11.d b/LPC1114FN28_102_DIP28/src/core/cr_startup_lpc11.d new file mode 100644 index 0000000..4f1c291 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/cr_startup_lpc11.d @@ -0,0 +1,4 @@ +src/core/cr_startup_lpc11.d: ../src/core/cr_startup_lpc11.cpp \ + ../src/core/system_LPC11xx.h + +../src/core/system_LPC11xx.h: diff --git a/LPC1114FN28_102_DIP28/src/core/delay.d b/LPC1114FN28_102_DIP28/src/core/delay.d new file mode 100644 index 0000000..96e0b43 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/delay.d @@ -0,0 +1,15 @@ +src/core/delay.d: ../src/core/delay.cpp ../src/core/delay.h \ + ../src/core/LPC11xx.h ../src/core/core_cm0.h \ + ../src/core/system_LPC11xx.h ../src/core/uart.h ../src/core/Print.h + +../src/core/delay.h: + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: + +../src/core/uart.h: + +../src/core/Print.h: diff --git a/LPC1114FN28_102_DIP28/src/core/gpio.d b/LPC1114FN28_102_DIP28/src/core/gpio.d new file mode 100644 index 0000000..c6c06a3 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/gpio.d @@ -0,0 +1,11 @@ +src/core/gpio.d: ../src/core/gpio.cpp ../src/core/gpio.h \ + ../src/core/LPC11xx.h ../src/core/core_cm0.h \ + ../src/core/system_LPC11xx.h + +../src/core/gpio.h: + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: diff --git a/LPC1114FN28_102_DIP28/src/core/gpio_int.d b/LPC1114FN28_102_DIP28/src/core/gpio_int.d new file mode 100644 index 0000000..83fe2cf --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/gpio_int.d @@ -0,0 +1,11 @@ +src/core/gpio_int.d: ../src/core/gpio_int.cpp ../src/core/gpio.h \ + ../src/core/LPC11xx.h ../src/core/core_cm0.h \ + ../src/core/system_LPC11xx.h + +../src/core/gpio.h: + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: diff --git a/LPC1114FN28_102_DIP28/src/core/maryoled.d b/LPC1114FN28_102_DIP28/src/core/maryoled.d new file mode 100644 index 0000000..9291c21 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/maryoled.d @@ -0,0 +1,22 @@ +src/core/maryoled.d: ../src/core/maryoled.cpp ../src/core/delay.h \ + ../src/core/LPC11xx.h ../src/core/core_cm0.h \ + ../src/core/system_LPC11xx.h ../src/core/uart.h ../src/core/Print.h \ + ../src/core/maryoled.h ../src/core/SPI.h ../src/core/gpio.h + +../src/core/delay.h: + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: + +../src/core/uart.h: + +../src/core/Print.h: + +../src/core/maryoled.h: + +../src/core/SPI.h: + +../src/core/gpio.h: diff --git a/LPC1114FN28_102_DIP28/src/core/startup_mary.d b/LPC1114FN28_102_DIP28/src/core/startup_mary.d new file mode 100644 index 0000000..40dcbc0 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/startup_mary.d @@ -0,0 +1,25 @@ +src/core/startup_mary.d: ../src/core/startup_mary.cpp \ + ../src/core/libmary.h ../src/core/LPC11xx.h ../src/core/core_cm0.h \ + ../src/core/system_LPC11xx.h ../src/core/delay.h ../src/core/uart.h \ + ../src/core/Print.h ../src/core/gpio.h ../src/core/analogio.h \ + ../src/core/arithmetical.h + +../src/core/libmary.h: + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: + +../src/core/delay.h: + +../src/core/uart.h: + +../src/core/Print.h: + +../src/core/gpio.h: + +../src/core/analogio.h: + +../src/core/arithmetical.h: diff --git a/LPC1114FN28_102_DIP28/src/core/subdir.mk b/LPC1114FN28_102_DIP28/src/core/subdir.mk new file mode 100644 index 0000000..7186e01 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/subdir.mk @@ -0,0 +1,72 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../src/core/LiquidCrystal.cpp \ +../src/core/Print.cpp \ +../src/core/SPI.cpp \ +../src/core/SPI1.cpp \ +../src/core/SoftwareSerial.cpp \ +../src/core/Wire.cpp \ +../src/core/analogio.cpp \ +../src/core/arithmetical.cpp \ +../src/core/cr_cpp_config.cpp \ +../src/core/cr_startup_lpc11.cpp \ +../src/core/delay.cpp \ +../src/core/gpio.cpp \ +../src/core/gpio_int.cpp \ +../src/core/maryoled.cpp \ +../src/core/startup_mary.cpp \ +../src/core/system_LPC11xx.cpp \ +../src/core/uart.cpp + +OBJS += \ +./src/core/LiquidCrystal.o \ +./src/core/Print.o \ +./src/core/SPI.o \ +./src/core/SPI1.o \ +./src/core/SoftwareSerial.o \ +./src/core/Wire.o \ +./src/core/analogio.o \ +./src/core/arithmetical.o \ +./src/core/cr_cpp_config.o \ +./src/core/cr_startup_lpc11.o \ +./src/core/delay.o \ +./src/core/gpio.o \ +./src/core/gpio_int.o \ +./src/core/maryoled.o \ +./src/core/startup_mary.o \ +./src/core/system_LPC11xx.o \ +./src/core/uart.o + +CPP_DEPS += \ +./src/core/LiquidCrystal.d \ +./src/core/Print.d \ +./src/core/SPI.d \ +./src/core/SPI1.d \ +./src/core/SoftwareSerial.d \ +./src/core/Wire.d \ +./src/core/analogio.d \ +./src/core/arithmetical.d \ +./src/core/cr_cpp_config.d \ +./src/core/cr_startup_lpc11.d \ +./src/core/delay.d \ +./src/core/gpio.d \ +./src/core/gpio_int.d \ +./src/core/maryoled.d \ +./src/core/startup_mary.d \ +./src/core/system_LPC11xx.d \ +./src/core/uart.d + + +# Each subdirectory must supply rules for building sources it contributes +src/core/%.o: ../src/core/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: MCU C++ Compiler' + arm-none-eabi-c++ -D__NEWLIB__ -DNDEBUG -D__CODE_RED -I"/Users/lynxeyed/Documents/workspace/eXodusino/src" -I"/Users/lynxeyed/Documents/workspace/eXodusino/src/XBee" -I"/Users/lynxeyed/Documents/workspace/eXodusino/src/FatFs" -I"/Users/lynxeyed/Documents/workspace/eXodusino/src/core" -Os -Os -g -Wall -c -fmessage-length=0 -fno-builtin -ffunction-sections -fdata-sections -fno-rtti -mcpu=cortex-m0 -mthumb -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o"$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/LPC1114FN28_102_DIP28/src/core/system_LPC11xx.d b/LPC1114FN28_102_DIP28/src/core/system_LPC11xx.d new file mode 100644 index 0000000..1d0a92c --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/system_LPC11xx.d @@ -0,0 +1,9 @@ +src/core/system_LPC11xx.d: ../src/core/system_LPC11xx.cpp \ + ../src/core/LPC11xx.h ../src/core/core_cm0.h \ + ../src/core/system_LPC11xx.h + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: diff --git a/LPC1114FN28_102_DIP28/src/core/uart.d b/LPC1114FN28_102_DIP28/src/core/uart.d new file mode 100644 index 0000000..a19fd82 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/core/uart.d @@ -0,0 +1,13 @@ +src/core/uart.d: ../src/core/uart.cpp ../src/core/LPC11xx.h \ + ../src/core/core_cm0.h ../src/core/system_LPC11xx.h ../src/core/uart.h \ + ../src/core/Print.h + +../src/core/LPC11xx.h: + +../src/core/core_cm0.h: + +../src/core/system_LPC11xx.h: + +../src/core/uart.h: + +../src/core/Print.h: diff --git a/LPC1114FN28_102_DIP28/src/subdir.mk b/LPC1114FN28_102_DIP28/src/subdir.mk new file mode 100644 index 0000000..9196302 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/subdir.mk @@ -0,0 +1,24 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +# Add inputs and outputs from these tool invocations to the build variables +CPP_SRCS += \ +../src/user_application.cpp + +OBJS += \ +./src/user_application.o + +CPP_DEPS += \ +./src/user_application.d + + +# Each subdirectory must supply rules for building sources it contributes +src/%.o: ../src/%.cpp + @echo 'Building file: $<' + @echo 'Invoking: MCU C++ Compiler' + arm-none-eabi-c++ -D__NEWLIB__ -DNDEBUG -D__CODE_RED -I"/Users/lynxeyed/Documents/workspace/eXodusino/src" -I"/Users/lynxeyed/Documents/workspace/eXodusino/src/XBee" -I"/Users/lynxeyed/Documents/workspace/eXodusino/src/FatFs" -I"/Users/lynxeyed/Documents/workspace/eXodusino/src/core" -Os -Os -g -Wall -c -fmessage-length=0 -fno-builtin -ffunction-sections -fdata-sections -fno-rtti -mcpu=cortex-m0 -mthumb -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o"$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/LPC1114FN28_102_DIP28/src/user_application.d b/LPC1114FN28_102_DIP28/src/user_application.d new file mode 100644 index 0000000..e194b04 --- /dev/null +++ b/LPC1114FN28_102_DIP28/src/user_application.d @@ -0,0 +1,31 @@ +src/user_application.d: ../src/user_application.cpp \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/libmary.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/LPC11xx.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/core_cm0.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/system_LPC11xx.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/delay.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/uart.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/Print.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/gpio.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/analogio.h \ + /Users/lynxeyed/Documents/workspace/eXodusino/src/core/arithmetical.h + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/libmary.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/LPC11xx.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/core_cm0.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/system_LPC11xx.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/delay.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/uart.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/Print.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/gpio.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/analogio.h: + +/Users/lynxeyed/Documents/workspace/eXodusino/src/core/arithmetical.h: |
