1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
|
Archive member included because of file (symbol)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(_thumb1_case_uqi.o)
./src/core/SPI.o (__gnu_thumb1_case_uqi)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(_udivsi3.o)
./src/core/delay.o (__aeabi_uidiv)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(_divsi3.o)
./src/core/Print.o (__aeabi_idiv)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(_dvmd_tls.o)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(_udivsi3.o) (__aeabi_idiv0)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(unwind-arm.o)
./src/user_application.o (__aeabi_unwind_cpp_pr0)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(libunwind.o)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(unwind-arm.o) (restore_core_regs)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(pr-support.o)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(unwind-arm.o) (__gnu_unwind_execute)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-abort.o)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(unwind-arm.o) (abort)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-init.o)
./src/core/cr_startup_lpc11.o (__libc_init_array)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-malloc.o)
./src/core/cr_cpp_config.o (malloc)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-mallocr.o)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-malloc.o) (_malloc_r)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-memcpy.o)
./src/core/maryoled.o (memcpy)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-mlock.o)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-mallocr.o) (__malloc_lock)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-sbrkr.o)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-mallocr.o) (_sbrk_r)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-signal.o)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-abort.o) (raise)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-signalr.o)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-signal.o) (_kill_r)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-freer.o)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-malloc.o) (_free_r)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-impure.o)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-malloc.o) (_impure_ptr)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-reent.o)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-sbrkr.o) (errno)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_sbrk.o)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-sbrkr.o) (_sbrk)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_exit.o)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-abort.o) (_exit)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(getpid.o)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-signalr.o) (_getpid)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(kill.o)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-signalr.o) (_kill)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_check_heap.o)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_sbrk.o) (__check_heap_overflow)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-errno.o)
c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_sbrk.o) (__errno)
Allocating common symbols
Common symbol size file
errno 0x4 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-reent.o)
__end_of_heap 0x4 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_sbrk.o)
Discarded input sections
.text 0x00000000 0x0 ./src/user_application.o
.data 0x00000000 0x0 ./src/user_application.o
.bss 0x00000000 0x0 ./src/user_application.o
.ARM.extab.text._Z9playSoundv
0x00000000 0x0 ./src/user_application.o
.ARM.extab.text._Z9readSoundv
0x00000000 0x0 ./src/user_application.o
.ARM.extab.text._Z5setupv
0x00000000 0x0 ./src/user_application.o
.ARM.extab.text._Z4loopv
0x00000000 0x0 ./src/user_application.o
.bss.proc_r 0x00000000 0x2 ./src/user_application.o
.text 0x00000000 0x0 ./src/core/Print.o
.data 0x00000000 0x0 ./src/core/Print.o
.bss 0x00000000 0x0 ./src/core/Print.o
.ARM.extab.text._ZN5Print7printlnEv
0x00000000 0x0 ./src/core/Print.o
.ARM.extab.text._ZN5Print5printEPKc
0x00000000 0x0 ./src/core/Print.o
.ARM.extab.text._ZN5Print5printEi12RADIX_FORMAT
0x00000000 0x0 ./src/core/Print.o
.text._ZN5Print5writeEPKci
0x00000000 0x1e ./src/core/Print.o
.ARM.extab.text._ZN5Print5writeEPKci
0x00000000 0x0 ./src/core/Print.o
.ARM.exidx.text._ZN5Print5writeEPKci
0x00000000 0x8 ./src/core/Print.o
.ARM.extab.text._ZN5Print7printlnEPKc
0x00000000 0x0 ./src/core/Print.o
.ARM.extab.text._ZN5Print7printlnEi12RADIX_FORMAT
0x00000000 0x0 ./src/core/Print.o
.text._ZN5Print5printEc
0x00000000 0xa ./src/core/Print.o
.ARM.extab.text._ZN5Print5printEc
0x00000000 0xc ./src/core/Print.o
.ARM.exidx.text._ZN5Print5printEc
0x00000000 0x8 ./src/core/Print.o
.text._ZN5Print7printlnEc
0x00000000 0x14 ./src/core/Print.o
.ARM.extab.text._ZN5Print7printlnEc
0x00000000 0x0 ./src/core/Print.o
.ARM.exidx.text._ZN5Print7printlnEc
0x00000000 0x8 ./src/core/Print.o
.text 0x00000000 0x0 ./src/core/SPI.o
.data 0x00000000 0x0 ./src/core/SPI.o
.bss 0x00000000 0x0 ./src/core/SPI.o
.ARM.extab.text._ZN3SSPD2Ev
0x00000000 0x0 ./src/core/SPI.o
.ARM.extab.text._ZN3SSP12setBitLengthEi
0x00000000 0x0 ./src/core/SPI.o
.text._ZN3SSP3endEv
0x00000000 0x10 ./src/core/SPI.o
.ARM.extab.text._ZN3SSP3endEv
0x00000000 0x0 ./src/core/SPI.o
.ARM.exidx.text._ZN3SSP3endEv
0x00000000 0x8 ./src/core/SPI.o
.ARM.extab.text._ZN3SSP11setBitOrderE13SSP_BIT_ORDER
0x00000000 0x0 ./src/core/SPI.o
.ARM.extab.text._ZN3SSP15setClockDividerE15SSP_CLK_DIVIDER
0x00000000 0x0 ./src/core/SPI.o
.ARM.extab.text._ZN3SSP11setDataModeE13SSP_DATA_MODE
0x00000000 0x0 ./src/core/SPI.o
.ARM.extab.text.ssp_begin
0x00000000 0x0 ./src/core/SPI.o
.text._ZN3SSP5beginE8SSP_PORT
0x00000000 0x14 ./src/core/SPI.o
.ARM.extab.text._ZN3SSP5beginE8SSP_PORT
0x00000000 0xc ./src/core/SPI.o
.ARM.exidx.text._ZN3SSP5beginE8SSP_PORT
0x00000000 0x8 ./src/core/SPI.o
.ARM.extab.text._ZN3SSPC2Ev
0x00000000 0x0 ./src/core/SPI.o
.ARM.extab.text.ssp_transfer
0x00000000 0x0 ./src/core/SPI.o
.ARM.extab.text._ZN3SSP8transferEm
0x00000000 0x0 ./src/core/SPI.o
.ARM.extab.text._GLOBAL__I_SPI
0x00000000 0x0 ./src/core/SPI.o
.text 0x00000000 0x0 ./src/core/SPI1.o
.data 0x00000000 0x0 ./src/core/SPI1.o
.bss 0x00000000 0x0 ./src/core/SPI1.o
.ARM.extab.text._ZN4SSP1D2Ev
0x00000000 0x0 ./src/core/SPI1.o
.ARM.extab.text._ZN4SSP112setBitLengthEi
0x00000000 0x0 ./src/core/SPI1.o
.text._ZN4SSP13endEv
0x00000000 0x10 ./src/core/SPI1.o
.ARM.extab.text._ZN4SSP13endEv
0x00000000 0x0 ./src/core/SPI1.o
.ARM.exidx.text._ZN4SSP13endEv
0x00000000 0x8 ./src/core/SPI1.o
.ARM.extab.text._ZN4SSP111setBitOrderE13SSP_BIT_ORDER
0x00000000 0x0 ./src/core/SPI1.o
.ARM.extab.text._ZN4SSP115setClockDividerE15SSP_CLK_DIVIDER
0x00000000 0x0 ./src/core/SPI1.o
.text._ZN4SSP111setDataModeE13SSP_DATA_MODE
0x00000000 0x4 ./src/core/SPI1.o
.ARM.extab.text._ZN4SSP111setDataModeE13SSP_DATA_MODE
0x00000000 0x0 ./src/core/SPI1.o
.ARM.exidx.text._ZN4SSP111setDataModeE13SSP_DATA_MODE
0x00000000 0x8 ./src/core/SPI1.o
.ARM.extab.text.ssp1_begin
0x00000000 0x0 ./src/core/SPI1.o
.text._ZN4SSP15beginE8SSP_PORT
0x00000000 0x14 ./src/core/SPI1.o
.ARM.extab.text._ZN4SSP15beginE8SSP_PORT
0x00000000 0xc ./src/core/SPI1.o
.ARM.exidx.text._ZN4SSP15beginE8SSP_PORT
0x00000000 0x8 ./src/core/SPI1.o
.ARM.extab.text._ZN4SSP1C2Ev
0x00000000 0x0 ./src/core/SPI1.o
.ARM.extab.text.ssp1_transfer
0x00000000 0x0 ./src/core/SPI1.o
.ARM.extab.text._ZN4SSP18transferEm
0x00000000 0x0 ./src/core/SPI1.o
.ARM.extab.text._GLOBAL__I_SPI1
0x00000000 0x0 ./src/core/SPI1.o
.group 0x00000000 0x10 ./src/core/SoftwareSerial.o
.group 0x00000000 0x10 ./src/core/SoftwareSerial.o
.group 0x00000000 0x10 ./src/core/SoftwareSerial.o
.text 0x00000000 0x0 ./src/core/SoftwareSerial.o
.data 0x00000000 0x0 ./src/core/SoftwareSerial.o
.bss 0x00000000 0x0 ./src/core/SoftwareSerial.o
.text._ZN14SoftwareSerial5writeEc
0x00000000 0x7e ./src/core/SoftwareSerial.o
.ARM.extab.text._ZN14SoftwareSerial5writeEc
0x00000000 0x0 ./src/core/SoftwareSerial.o
.ARM.exidx.text._ZN14SoftwareSerial5writeEc
0x00000000 0x8 ./src/core/SoftwareSerial.o
.text._ZN14SoftwareSerial11isListeningEv
0x00000000 0x10 ./src/core/SoftwareSerial.o
.ARM.extab.text._ZN14SoftwareSerial11isListeningEv
0x00000000 0x0 ./src/core/SoftwareSerial.o
.ARM.exidx.text._ZN14SoftwareSerial11isListeningEv
0x00000000 0x8 ./src/core/SoftwareSerial.o
.text._ZN14SoftwareSerial6listenEv
0x00000000 0x34 ./src/core/SoftwareSerial.o
.ARM.extab.text._ZN14SoftwareSerial6listenEv
0x00000000 0x0 ./src/core/SoftwareSerial.o
.ARM.exidx.text._ZN14SoftwareSerial6listenEv
0x00000000 0x8 ./src/core/SoftwareSerial.o
.text._ZN14SoftwareSerial4recvEv
0x00000000 0x98 ./src/core/SoftwareSerial.o
.ARM.extab.text._ZN14SoftwareSerial4recvEv
0x00000000 0x0 ./src/core/SoftwareSerial.o
.ARM.exidx.text._ZN14SoftwareSerial4recvEv
0x00000000 0x8 ./src/core/SoftwareSerial.o
.text._ZN14SoftwareSerial16handle_interruptEv
0x00000000 0x14 ./src/core/SoftwareSerial.o
.ARM.extab.text._ZN14SoftwareSerial16handle_interruptEv
0x00000000 0xc ./src/core/SoftwareSerial.o
.ARM.exidx.text._ZN14SoftwareSerial16handle_interruptEv
0x00000000 0x8 ./src/core/SoftwareSerial.o
.text._ZN14SoftwareSerial5setTXEh
0x00000000 0x1a ./src/core/SoftwareSerial.o
.ARM.extab.text._ZN14SoftwareSerial5setTXEh
0x00000000 0x0 ./src/core/SoftwareSerial.o
.ARM.exidx.text._ZN14SoftwareSerial5setTXEh
0x00000000 0x8 ./src/core/SoftwareSerial.o
.text._ZN14SoftwareSerial5setRXEh
0x00000000 0x4 ./src/core/SoftwareSerial.o
.ARM.extab.text._ZN14SoftwareSerial5setRXEh
0x00000000 0x0 ./src/core/SoftwareSerial.o
.ARM.exidx.text._ZN14SoftwareSerial5setRXEh
0x00000000 0x8 ./src/core/SoftwareSerial.o
.text._ZN14SoftwareSerialC2Ehhb
0x00000000 0x4c ./src/core/SoftwareSerial.o
.ARM.extab.text._ZN14SoftwareSerialC2Ehhb
0x00000000 0x0 ./src/core/SoftwareSerial.o
.ARM.exidx.text._ZN14SoftwareSerialC2Ehhb
0x00000000 0x8 ./src/core/SoftwareSerial.o
.text._ZN14SoftwareSerial5beginEl
0x00000000 0x7c ./src/core/SoftwareSerial.o
.ARM.extab.text._ZN14SoftwareSerial5beginEl
0x00000000 0x0 ./src/core/SoftwareSerial.o
.ARM.exidx.text._ZN14SoftwareSerial5beginEl
0x00000000 0x8 ./src/core/SoftwareSerial.o
.text._ZN14SoftwareSerial3endEv
0x00000000 0xe ./src/core/SoftwareSerial.o
.ARM.extab.text._ZN14SoftwareSerial3endEv
0x00000000 0xc ./src/core/SoftwareSerial.o
.ARM.exidx.text._ZN14SoftwareSerial3endEv
0x00000000 0x8 ./src/core/SoftwareSerial.o
.text._ZN14SoftwareSerialD2Ev
0x00000000 0x18 ./src/core/SoftwareSerial.o
.ARM.extab.text._ZN14SoftwareSerialD2Ev
0x00000000 0x0 ./src/core/SoftwareSerial.o
.ARM.exidx.text._ZN14SoftwareSerialD2Ev
0x00000000 0x8 ./src/core/SoftwareSerial.o
.text._ZN14SoftwareSerial4readEv
0x00000000 0x3c ./src/core/SoftwareSerial.o
.ARM.extab.text._ZN14SoftwareSerial4readEv
0x00000000 0x0 ./src/core/SoftwareSerial.o
.ARM.exidx.text._ZN14SoftwareSerial4readEv
0x00000000 0x8 ./src/core/SoftwareSerial.o
.text._ZN14SoftwareSerial9availableEv
0x00000000 0x38 ./src/core/SoftwareSerial.o
.ARM.extab.text._ZN14SoftwareSerial9availableEv
0x00000000 0x0 ./src/core/SoftwareSerial.o
.ARM.exidx.text._ZN14SoftwareSerial9availableEv
0x00000000 0x8 ./src/core/SoftwareSerial.o
.text._ZN14SoftwareSerial5flushEv
0x00000000 0x20 ./src/core/SoftwareSerial.o
.ARM.extab.text._ZN14SoftwareSerial5flushEv
0x00000000 0x0 ./src/core/SoftwareSerial.o
.ARM.exidx.text._ZN14SoftwareSerial5flushEv
0x00000000 0x8 ./src/core/SoftwareSerial.o
.text._ZN14SoftwareSerial4peekEv
0x00000000 0x30 ./src/core/SoftwareSerial.o
.ARM.extab.text._ZN14SoftwareSerial4peekEv
0x00000000 0x0 ./src/core/SoftwareSerial.o
.ARM.exidx.text._ZN14SoftwareSerial4peekEv
0x00000000 0x8 ./src/core/SoftwareSerial.o
.bss._ZN14SoftwareSerial13active_objectE
0x00000000 0x4 ./src/core/SoftwareSerial.o
.rodata._ZL5table
0x00000000 0x30 ./src/core/SoftwareSerial.o
.bss._ZN14SoftwareSerial20_receive_buffer_headE
0x00000000 0x1 ./src/core/SoftwareSerial.o
.bss._ZN14SoftwareSerial15_receive_bufferE
0x00000000 0x40 ./src/core/SoftwareSerial.o
.bss._ZN14SoftwareSerial20_receive_buffer_tailE
0x00000000 0x1 ./src/core/SoftwareSerial.o
.rodata._ZTV14SoftwareSerial
0x00000000 0x10 ./src/core/SoftwareSerial.o
.text 0x00000000 0x0 ./src/core/cr_cpp_config.o
.data 0x00000000 0x0 ./src/core/cr_cpp_config.o
.bss 0x00000000 0x0 ./src/core/cr_cpp_config.o
.text._Znwj 0x00000000 0x8 ./src/core/cr_cpp_config.o
.ARM.extab.text._Znwj
0x00000000 0x0 ./src/core/cr_cpp_config.o
.ARM.exidx.text._Znwj
0x00000000 0x8 ./src/core/cr_cpp_config.o
.text._ZdlPv 0x00000000 0x8 ./src/core/cr_cpp_config.o
.ARM.extab.text._ZdlPv
0x00000000 0x0 ./src/core/cr_cpp_config.o
.ARM.exidx.text._ZdlPv
0x00000000 0x8 ./src/core/cr_cpp_config.o
.ARM.extab.text.__aeabi_atexit
0x00000000 0x0 ./src/core/cr_cpp_config.o
.text 0x00000000 0x0 ./src/core/cr_startup_lpc11.o
.data 0x00000000 0x0 ./src/core/cr_startup_lpc11.o
.bss 0x00000000 0x0 ./src/core/cr_startup_lpc11.o
.ARM.extab.after_vectors
0x00000000 0x0 ./src/core/cr_startup_lpc11.o
.ARM.extab.text.__cxa_pure_virtual
0x00000000 0x0 ./src/core/cr_startup_lpc11.o
.text 0x00000000 0x0 ./src/core/delay.o
.data 0x00000000 0x0 ./src/core/delay.o
.bss 0x00000000 0x0 ./src/core/delay.o
.ARM.extab.text.NVIC_SetPriority
0x00000000 0x0 ./src/core/delay.o
.ARM.extab.text.NVIC_DisableIRQ.clone.0
0x00000000 0x0 ./src/core/delay.o
.text.delay 0x00000000 0x18 ./src/core/delay.o
.ARM.extab.text.delay
0x00000000 0x0 ./src/core/delay.o
.ARM.exidx.text.delay
0x00000000 0x8 ./src/core/delay.o
.text.millis 0x00000000 0xc ./src/core/delay.o
.ARM.extab.text.millis
0x00000000 0x0 ./src/core/delay.o
.ARM.exidx.text.millis
0x00000000 0x8 ./src/core/delay.o
.ARM.extab.text.delayMicroseconds
0x00000000 0x0 ./src/core/delay.o
.text.micros 0x00000000 0xc ./src/core/delay.o
.ARM.extab.text.micros
0x00000000 0x0 ./src/core/delay.o
.ARM.exidx.text.micros
0x00000000 0x8 ./src/core/delay.o
.ARM.extab.text.setup_TIMER32_1
0x00000000 0x0 ./src/core/delay.o
.ARM.extab.text.attachMicroseconds
0x00000000 0x0 ./src/core/delay.o
.ARM.extab.text.detachMicroseconds
0x00000000 0x0 ./src/core/delay.o
.ARM.extab.text.TIMER32_1_IRQHandler
0x00000000 0x0 ./src/core/delay.o
.ARM.extab.text.SysTick_Handler
0x00000000 0x0 ./src/core/delay.o
.ARM.extab.text.setup_systick
0x00000000 0x0 ./src/core/delay.o
.text 0x00000000 0x0 ./src/core/gpio.o
.data 0x00000000 0x0 ./src/core/gpio.o
.bss 0x00000000 0x0 ./src/core/gpio.o
.ARM.extab.text.pinMode
0x00000000 0x0 ./src/core/gpio.o
.ARM.extab.text.digitalWrite
0x00000000 0x0 ./src/core/gpio.o
.ARM.extab.text.digitalRead
0x00000000 0x0 ./src/core/gpio.o
.text.GPIOSetInterrupt
0x00000000 0x10c ./src/core/gpio.o
.ARM.extab.text.GPIOSetInterrupt
0x00000000 0x0 ./src/core/gpio.o
.ARM.exidx.text.GPIOSetInterrupt
0x00000000 0x8 ./src/core/gpio.o
.text.GPIOIntEnable
0x00000000 0x44 ./src/core/gpio.o
.ARM.extab.text.GPIOIntEnable
0x00000000 0x0 ./src/core/gpio.o
.ARM.exidx.text.GPIOIntEnable
0x00000000 0x8 ./src/core/gpio.o
.text.GPIOIntDisable
0x00000000 0x44 ./src/core/gpio.o
.ARM.extab.text.GPIOIntDisable
0x00000000 0x0 ./src/core/gpio.o
.ARM.exidx.text.GPIOIntDisable
0x00000000 0x8 ./src/core/gpio.o
.ARM.extab.text.GPIOIntStatus
0x00000000 0x0 ./src/core/gpio.o
.ARM.extab.text.GPIOIntClear
0x00000000 0x0 ./src/core/gpio.o
.text 0x00000000 0x0 ./src/core/gpio_int.o
.data 0x00000000 0x0 ./src/core/gpio_int.o
.bss 0x00000000 0x0 ./src/core/gpio_int.o
.text.NVIC_EnableIRQ
0x00000000 0x14 ./src/core/gpio_int.o
.ARM.extab.text.NVIC_EnableIRQ
0x00000000 0x0 ./src/core/gpio_int.o
.ARM.exidx.text.NVIC_EnableIRQ
0x00000000 0x8 ./src/core/gpio_int.o
.text.NVIC_DisableIRQ
0x00000000 0x14 ./src/core/gpio_int.o
.ARM.extab.text.NVIC_DisableIRQ
0x00000000 0x0 ./src/core/gpio_int.o
.ARM.exidx.text.NVIC_DisableIRQ
0x00000000 0x8 ./src/core/gpio_int.o
.text.attachInterrupt
0x00000000 0xac ./src/core/gpio_int.o
.ARM.extab.text.attachInterrupt
0x00000000 0x0 ./src/core/gpio_int.o
.ARM.exidx.text.attachInterrupt
0x00000000 0x8 ./src/core/gpio_int.o
.text.detachInterrupt
0x00000000 0x78 ./src/core/gpio_int.o
.ARM.extab.text.detachInterrupt
0x00000000 0x0 ./src/core/gpio_int.o
.ARM.exidx.text.detachInterrupt
0x00000000 0x8 ./src/core/gpio_int.o
.ARM.extab.text.GPIO_IRQHandler
0x00000000 0x0 ./src/core/gpio_int.o
.rodata._ZL8LPC_GPIO
0x00000000 0x10 ./src/core/gpio_int.o
.rodata._ZL14mary_pinAssign
0x00000000 0xe0 ./src/core/gpio_int.o
.rodata._ZL17arduino_pinAssign
0x00000000 0x70 ./src/core/gpio_int.o
.text 0x00000000 0x0 ./src/core/maryoled.o
.data 0x00000000 0x0 ./src/core/maryoled.o
.bss 0x00000000 0x0 ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLEDD2Ev
0x00000000 0x0 ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLEDC2Ev
0x00000000 0x0 ./src/core/maryoled.o
.text._ZN8MARYOLED7commandEi
0x00000000 0x28 ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLED7commandEi
0x00000000 0x0 ./src/core/maryoled.o
.ARM.exidx.text._ZN8MARYOLED7commandEi
0x00000000 0x8 ./src/core/maryoled.o
.text._ZN8MARYOLED4dataEi
0x00000000 0x28 ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLED4dataEi
0x00000000 0x0 ./src/core/maryoled.o
.ARM.exidx.text._ZN8MARYOLED4dataEi
0x00000000 0x8 ./src/core/maryoled.o
.text._ZN8MARYOLED7_windowEiiii
0x00000000 0x48 ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLED7_windowEiiii
0x00000000 0x0 ./src/core/maryoled.o
.ARM.exidx.text._ZN8MARYOLED7_windowEiiii
0x00000000 0x8 ./src/core/maryoled.o
.text._ZN8MARYOLED11WindowResetEv
0x00000000 0x3c ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLED11WindowResetEv
0x00000000 0x0 ./src/core/maryoled.o
.ARM.exidx.text._ZN8MARYOLED11WindowResetEv
0x00000000 0x8 ./src/core/maryoled.o
.text._ZN8MARYOLED6locateEii
0x00000000 0x6 ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLED6locateEii
0x00000000 0x0 ./src/core/maryoled.o
.ARM.exidx.text._ZN8MARYOLED6locateEii
0x00000000 0x8 ./src/core/maryoled.o
.text._ZN8MARYOLED7newlineEv
0x00000000 0x14 ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLED7newlineEv
0x00000000 0x0 ./src/core/maryoled.o
.ARM.exidx.text._ZN8MARYOLED7newlineEv
0x00000000 0x8 ./src/core/maryoled.o
.text._ZN8MARYOLED5_putpEi
0x00000000 0x24 ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLED5_putpEi
0x00000000 0x0 ./src/core/maryoled.o
.ARM.exidx.text._ZN8MARYOLED5_putpEi
0x00000000 0x8 ./src/core/maryoled.o
.text._ZN8MARYOLED6windowEiiii
0x00000000 0xc ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLED6windowEiiii
0x00000000 0x0 ./src/core/maryoled.o
.ARM.exidx.text._ZN8MARYOLED6windowEiiii
0x00000000 0x8 ./src/core/maryoled.o
.text._ZN8MARYOLED4putpEi
0x00000000 0x8 ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLED4putpEi
0x00000000 0xc ./src/core/maryoled.o
.ARM.exidx.text._ZN8MARYOLED4putpEi
0x00000000 0x8 ./src/core/maryoled.o
.text._ZN8MARYOLED5pixelEiii
0x00000000 0x18 ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLED5pixelEiii
0x00000000 0x0 ./src/core/maryoled.o
.ARM.exidx.text._ZN8MARYOLED5pixelEiii
0x00000000 0x8 ./src/core/maryoled.o
.text._ZN8MARYOLED4fillEiiiii
0x00000000 0x50 ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLED4fillEiiiii
0x00000000 0x0 ./src/core/maryoled.o
.ARM.exidx.text._ZN8MARYOLED4fillEiiiii
0x00000000 0x8 ./src/core/maryoled.o
.text._ZN8MARYOLED3clsEv
0x00000000 0x1c ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLED3clsEv
0x00000000 0x0 ./src/core/maryoled.o
.ARM.exidx.text._ZN8MARYOLED3clsEv
0x00000000 0x8 ./src/core/maryoled.o
.text._ZN8MARYOLED5resetEv
0x00000000 0x228 ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLED5resetEv
0x00000000 0x0 ./src/core/maryoled.o
.ARM.exidx.text._ZN8MARYOLED5resetEv
0x00000000 0x8 ./src/core/maryoled.o
.text._ZN8MARYOLED5resetE8SSP_PORT
0x00000000 0x46 ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLED5resetE8SSP_PORT
0x00000000 0x0 ./src/core/maryoled.o
.ARM.exidx.text._ZN8MARYOLED5resetE8SSP_PORT
0x00000000 0x8 ./src/core/maryoled.o
.text._ZN8MARYOLED4blitEiiiiPKi
0x00000000 0x56 ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLED4blitEiiiiPKi
0x00000000 0x0 ./src/core/maryoled.o
.ARM.exidx.text._ZN8MARYOLED4blitEiiiiPKi
0x00000000 0x8 ./src/core/maryoled.o
.text._ZN8MARYOLED7bitblitEiiiiPKc
0x00000000 0x80 ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLED7bitblitEiiiiPKc
0x00000000 0x0 ./src/core/maryoled.o
.ARM.exidx.text._ZN8MARYOLED7bitblitEiiiiPKc
0x00000000 0x8 ./src/core/maryoled.o
.text._ZN8MARYOLED5_putcEi
0x00000000 0x50 ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLED5_putcEi
0x00000000 0x0 ./src/core/maryoled.o
.ARM.exidx.text._ZN8MARYOLED5_putcEi
0x00000000 0x8 ./src/core/maryoled.o
.text._ZN8MARYOLED10foregroundEi
0x00000000 0x4 ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLED10foregroundEi
0x00000000 0x0 ./src/core/maryoled.o
.ARM.exidx.text._ZN8MARYOLED10foregroundEi
0x00000000 0x8 ./src/core/maryoled.o
.text._ZN8MARYOLED10backgroundEi
0x00000000 0x4 ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLED10backgroundEi
0x00000000 0x0 ./src/core/maryoled.o
.ARM.exidx.text._ZN8MARYOLED10backgroundEi
0x00000000 0x8 ./src/core/maryoled.o
.text._ZN8MARYOLED5widthEv
0x00000000 0x4 ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLED5widthEv
0x00000000 0x0 ./src/core/maryoled.o
.ARM.exidx.text._ZN8MARYOLED5widthEv
0x00000000 0x8 ./src/core/maryoled.o
.text._ZN8MARYOLED6heightEv
0x00000000 0x4 ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLED6heightEv
0x00000000 0x0 ./src/core/maryoled.o
.ARM.exidx.text._ZN8MARYOLED6heightEv
0x00000000 0x8 ./src/core/maryoled.o
.text._ZN8MARYOLED7columnsEv
0x00000000 0x4 ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLED7columnsEv
0x00000000 0x0 ./src/core/maryoled.o
.ARM.exidx.text._ZN8MARYOLED7columnsEv
0x00000000 0x8 ./src/core/maryoled.o
.text._ZN8MARYOLED4rowsEv
0x00000000 0x4 ./src/core/maryoled.o
.ARM.extab.text._ZN8MARYOLED4rowsEv
0x00000000 0x0 ./src/core/maryoled.o
.ARM.exidx.text._ZN8MARYOLED4rowsEv
0x00000000 0x8 ./src/core/maryoled.o
.ARM.extab.text._GLOBAL__I_oled
0x00000000 0x0 ./src/core/maryoled.o
.rodata._ZL7FONT8x8
0x00000000 0x308 ./src/core/maryoled.o
.rodata._ZZN8MARYOLED5resetEvE3C.8
0x00000000 0x3f ./src/core/maryoled.o
.text 0x00000000 0x0 ./src/core/startup_mary.o
.data 0x00000000 0x0 ./src/core/startup_mary.o
.bss 0x00000000 0x0 ./src/core/startup_mary.o
.text 0x00000000 0x0 ./src/core/system_LPC11xx.o
.data 0x00000000 0x0 ./src/core/system_LPC11xx.o
.bss 0x00000000 0x0 ./src/core/system_LPC11xx.o
.text.SystemCoreClockUpdate
0x00000000 0x9c ./src/core/system_LPC11xx.o
.ARM.extab.text.SystemCoreClockUpdate
0x00000000 0x0 ./src/core/system_LPC11xx.o
.ARM.exidx.text.SystemCoreClockUpdate
0x00000000 0x8 ./src/core/system_LPC11xx.o
.ARM.extab.text.SystemInit
0x00000000 0x0 ./src/core/system_LPC11xx.o
.rodata.CSWTCH.16
0x00000000 0x40 ./src/core/system_LPC11xx.o
.group 0x00000000 0x10 ./src/core/uart.o
.text 0x00000000 0x0 ./src/core/uart.o
.data 0x00000000 0x0 ./src/core/uart.o
.bss 0x00000000 0x0 ./src/core/uart.o
.ARM.extab.text._ZN7USerialD2Ev
0x00000000 0x0 ./src/core/uart.o
.ARM.extab.text._ZN7USerial5writeEc
0x00000000 0x0 ./src/core/uart.o
.text._ZN5PrintC2Ev
0x00000000 0xc ./src/core/uart.o
.ARM.extab.text._ZN5PrintC2Ev
0x00000000 0x0 ./src/core/uart.o
.ARM.exidx.text._ZN5PrintC2Ev
0x00000000 0x8 ./src/core/uart.o
.ARM.extab.text._ZN7USerialC2Ev
0x00000000 0x0 ./src/core/uart.o
.ARM.extab.text._ZN7USerial5beginEi
0x00000000 0x0 ./src/core/uart.o
.text._ZN7USerial3endEv
0x00000000 0x2 ./src/core/uart.o
.ARM.extab.text._ZN7USerial3endEv
0x00000000 0x0 ./src/core/uart.o
.ARM.exidx.text._ZN7USerial3endEv
0x00000000 0x8 ./src/core/uart.o
.text._ZN7USerial9availableEv
0x00000000 0x10 ./src/core/uart.o
.ARM.extab.text._ZN7USerial9availableEv
0x00000000 0x0 ./src/core/uart.o
.ARM.exidx.text._ZN7USerial9availableEv
0x00000000 0x8 ./src/core/uart.o
.text._ZN7USerial4readEv
0x00000000 0xc ./src/core/uart.o
.ARM.extab.text._ZN7USerial4readEv
0x00000000 0x0 ./src/core/uart.o
.ARM.exidx.text._ZN7USerial4readEv
0x00000000 0x8 ./src/core/uart.o
.ARM.extab.text._GLOBAL__I_Serial
0x00000000 0x0 ./src/core/uart.o
.group 0x00000000 0x8 ./src/XBee/XBee.o
.group 0x00000000 0x8 ./src/XBee/XBee.o
.group 0x00000000 0x8 ./src/XBee/XBee.o
.group 0x00000000 0x8 ./src/XBee/XBee.o
.text 0x00000000 0x0 ./src/XBee/XBee.o
.data 0x00000000 0x0 ./src/XBee/XBee.o
.bss 0x00000000 0x0 ./src/XBee/XBee.o
.text._ZN12ZBRxResponse13getDataOffsetEv
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN12ZBRxResponse13getDataOffsetEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12ZBRxResponse13getDataOffsetEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN16AtCommandRequest12getFrameDataEh
0x00000000 0x20 ./src/XBee/XBee.o
.ARM.extab.text._ZN16AtCommandRequest12getFrameDataEh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN16AtCommandRequest12getFrameDataEh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN16AtCommandRequest18getFrameDataLengthEv
0x00000000 0x8 ./src/XBee/XBee.o
.ARM.extab.text._ZN16AtCommandRequest18getFrameDataLengthEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN16AtCommandRequest18getFrameDataLengthEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN11XBeeRequest8setApiIdEh.clone.1
0x00000000 0x6 ./src/XBee/XBee.o
.ARM.extab.text._ZN11XBeeRequest8setApiIdEh.clone.1
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN11XBeeRequest8setApiIdEh.clone.1
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponseC2Ev
0x00000000 0x2 ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponseC2Ev
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponseC2Ev
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse8getApiIdEv
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse8getApiIdEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse8getApiIdEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse8setApiIdEh
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse8setApiIdEh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse8setApiIdEh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse12getMsbLengthEv
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse12getMsbLengthEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse12getMsbLengthEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse12setMsbLengthEh
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse12setMsbLengthEh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse12setMsbLengthEh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse12getLsbLengthEv
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse12getLsbLengthEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse12getLsbLengthEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse12setLsbLengthEh
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse12setLsbLengthEh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse12setLsbLengthEh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse11getChecksumEv
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse11getChecksumEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse11getChecksumEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse11setChecksumEh
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse11setChecksumEh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse11setChecksumEh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse18getFrameDataLengthEv
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse18getFrameDataLengthEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse18getFrameDataLengthEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse14setFrameLengthEh
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse14setFrameLengthEh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse14setFrameLengthEh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse11isAvailableEv
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse11isAvailableEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse11isAvailableEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse12setAvailableEb
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse12setAvailableEb
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse12setAvailableEb
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse7isErrorEv
0x00000000 0x8 ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse7isErrorEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse7isErrorEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse12getErrorCodeEv
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse12getErrorCodeEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse12getErrorCodeEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse12setErrorCodeEh
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse12setErrorCodeEh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse12setErrorCodeEh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse9setCommonERS_
0x00000000 0x68 ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse9setCommonERS_
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse9setCommonERS_
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN18ZBTxStatusResponseC2Ev
0x00000000 0x2 ./src/XBee/XBee.o
.ARM.extab.text._ZN18ZBTxStatusResponseC2Ev
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN18ZBTxStatusResponseC2Ev
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12ZBRxResponse18getRemoteAddress64Ev
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN12ZBRxResponse18getRemoteAddress64Ev
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12ZBRxResponse18getRemoteAddress64Ev
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN23RemoteAtCommandResponseC2Ev
0x00000000 0x2 ./src/XBee/XBee.o
.ARM.extab.text._ZN23RemoteAtCommandResponseC2Ev
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN23RemoteAtCommandResponseC2Ev
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN23RemoteAtCommandResponse14getValueLengthEv
0x00000000 0xc ./src/XBee/XBee.o
.ARM.extab.text._ZN23RemoteAtCommandResponse14getValueLengthEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN23RemoteAtCommandResponse14getValueLengthEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN23RemoteAtCommandResponse18getRemoteAddress64Ev
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN23RemoteAtCommandResponse18getRemoteAddress64Ev
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN23RemoteAtCommandResponse18getRemoteAddress64Ev
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN14RxDataResponseC2Ev
0x00000000 0xc ./src/XBee/XBee.o
.ARM.extab.text._ZN14RxDataResponseC2Ev
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN14RxDataResponseC2Ev
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12ZBRxResponseC2Ev
0x00000000 0x1c ./src/XBee/XBee.o
.ARM.extab.text._ZN12ZBRxResponseC2Ev
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12ZBRxResponseC2Ev
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN20ZBRxIoSampleResponseC2Ev
0x00000000 0x14 ./src/XBee/XBee.o
.ARM.extab.text._ZN20ZBRxIoSampleResponseC2Ev
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN20ZBRxIoSampleResponseC2Ev
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN15FrameIdResponseC2Ev
0x00000000 0x2 ./src/XBee/XBee.o
.ARM.extab.text._ZN15FrameIdResponseC2Ev
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN15FrameIdResponseC2Ev
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN19ModemStatusResponseC2Ev
0x00000000 0x2 ./src/XBee/XBee.o
.ARM.extab.text._ZN19ModemStatusResponseC2Ev
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN19ModemStatusResponseC2Ev
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN17AtCommandResponseC2Ev
0x00000000 0x2 ./src/XBee/XBee.o
.ARM.extab.text._ZN17AtCommandResponseC2Ev
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN17AtCommandResponseC2Ev
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN17AtCommandResponse14getValueLengthEv
0x00000000 0xc ./src/XBee/XBee.o
.ARM.extab.text._ZN17AtCommandResponse14getValueLengthEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN17AtCommandResponse14getValueLengthEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse15getPacketLengthEv
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse15getPacketLengthEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse15getPacketLengthEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12ZBRxResponse13getDataLengthEv
0x00000000 0x1c ./src/XBee/XBee.o
.ARM.extab.text._ZN12ZBRxResponse13getDataLengthEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12ZBRxResponse13getDataLengthEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse12getFrameDataEv
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse12getFrameDataEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse12getFrameDataEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN17AtCommandResponse8getValueEv
0x00000000 0x16 ./src/XBee/XBee.o
.ARM.extab.text._ZN17AtCommandResponse8getValueEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN17AtCommandResponse8getValueEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN17AtCommandResponse9getStatusEv
0x00000000 0xa ./src/XBee/XBee.o
.ARM.extab.text._ZN17AtCommandResponse9getStatusEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN17AtCommandResponse9getStatusEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN17AtCommandResponse4isOkEv
0x00000000 0xc ./src/XBee/XBee.o
.ARM.extab.text._ZN17AtCommandResponse4isOkEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN17AtCommandResponse4isOkEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN17AtCommandResponse10getCommandEv
0x00000000 0xa ./src/XBee/XBee.o
.ARM.extab.text._ZN17AtCommandResponse10getCommandEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN17AtCommandResponse10getCommandEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN19ModemStatusResponse9getStatusEv
0x00000000 0xa ./src/XBee/XBee.o
.ARM.extab.text._ZN19ModemStatusResponse9getStatusEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN19ModemStatusResponse9getStatusEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN15FrameIdResponse10getFrameIdEv
0x00000000 0xa ./src/XBee/XBee.o
.ARM.extab.text._ZN15FrameIdResponse10getFrameIdEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN15FrameIdResponse10getFrameIdEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN14RxDataResponse7getDataEv
0x00000000 0x18 ./src/XBee/XBee.o
.ARM.extab.text._ZN14RxDataResponse7getDataEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN14RxDataResponse7getDataEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN14RxDataResponse7getDataEi
0x00000000 0x1c ./src/XBee/XBee.o
.ARM.extab.text._ZN14RxDataResponse7getDataEi
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN14RxDataResponse7getDataEi
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN23RemoteAtCommandResponse18getRemoteAddress16Ev
0x00000000 0x12 ./src/XBee/XBee.o
.ARM.extab.text._ZN23RemoteAtCommandResponse18getRemoteAddress16Ev
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN23RemoteAtCommandResponse18getRemoteAddress16Ev
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN23RemoteAtCommandResponse8getValueEv
0x00000000 0x16 ./src/XBee/XBee.o
.ARM.extab.text._ZN23RemoteAtCommandResponse8getValueEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN23RemoteAtCommandResponse8getValueEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN23RemoteAtCommandResponse9getStatusEv
0x00000000 0xa ./src/XBee/XBee.o
.ARM.extab.text._ZN23RemoteAtCommandResponse9getStatusEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN23RemoteAtCommandResponse9getStatusEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN23RemoteAtCommandResponse4isOkEv
0x00000000 0xc ./src/XBee/XBee.o
.ARM.extab.text._ZN23RemoteAtCommandResponse4isOkEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN23RemoteAtCommandResponse4isOkEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN23RemoteAtCommandResponse10getCommandEv
0x00000000 0xa ./src/XBee/XBee.o
.ARM.extab.text._ZN23RemoteAtCommandResponse10getCommandEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN23RemoteAtCommandResponse10getCommandEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN20ZBRxIoSampleResponse11isDigitalOnEh
0x00000000 0x22 ./src/XBee/XBee.o
.ARM.extab.text._ZN20ZBRxIoSampleResponse11isDigitalOnEh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN20ZBRxIoSampleResponse11isDigitalOnEh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN20ZBRxIoSampleResponse13getAnalogMaskEv
0x00000000 0x10 ./src/XBee/XBee.o
.ARM.extab.text._ZN20ZBRxIoSampleResponse13getAnalogMaskEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN20ZBRxIoSampleResponse13getAnalogMaskEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN20ZBRxIoSampleResponse15isAnalogEnabledEh
0x00000000 0x10 ./src/XBee/XBee.o
.ARM.extab.text._ZN20ZBRxIoSampleResponse15isAnalogEnabledEh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN20ZBRxIoSampleResponse15isAnalogEnabledEh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN20ZBRxIoSampleResponse14containsAnalogEv
0x00000000 0xc ./src/XBee/XBee.o
.ARM.extab.text._ZN20ZBRxIoSampleResponse14containsAnalogEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN20ZBRxIoSampleResponse14containsAnalogEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN20ZBRxIoSampleResponse17getDigitalMaskLsbEv
0x00000000 0xc ./src/XBee/XBee.o
.ARM.extab.text._ZN20ZBRxIoSampleResponse17getDigitalMaskLsbEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN20ZBRxIoSampleResponse17getDigitalMaskLsbEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN20ZBRxIoSampleResponse17getDigitalMaskMsbEv
0x00000000 0x10 ./src/XBee/XBee.o
.ARM.extab.text._ZN20ZBRxIoSampleResponse17getDigitalMaskMsbEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN20ZBRxIoSampleResponse17getDigitalMaskMsbEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN20ZBRxIoSampleResponse16isDigitalEnabledEh
0x00000000 0x1c ./src/XBee/XBee.o
.ARM.extab.text._ZN20ZBRxIoSampleResponse16isDigitalEnabledEh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN20ZBRxIoSampleResponse16isDigitalEnabledEh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN20ZBRxIoSampleResponse15containsDigitalEv
0x00000000 0x1c ./src/XBee/XBee.o
.ARM.extab.text._ZN20ZBRxIoSampleResponse15containsDigitalEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN20ZBRxIoSampleResponse15containsDigitalEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN20ZBRxIoSampleResponse9getAnalogEh
0x00000000 0x40 ./src/XBee/XBee.o
.ARM.extab.text._ZN20ZBRxIoSampleResponse9getAnalogEh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN20ZBRxIoSampleResponse9getAnalogEh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12ZBRxResponse9getOptionEv
0x00000000 0xc ./src/XBee/XBee.o
.ARM.extab.text._ZN12ZBRxResponse9getOptionEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12ZBRxResponse9getOptionEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12ZBRxResponse18getRemoteAddress16Ev
0x00000000 0x14 ./src/XBee/XBee.o
.ARM.extab.text._ZN12ZBRxResponse18getRemoteAddress16Ev
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12ZBRxResponse18getRemoteAddress16Ev
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN18ZBTxStatusResponse18getDiscoveryStatusEv
0x00000000 0xa ./src/XBee/XBee.o
.ARM.extab.text._ZN18ZBTxStatusResponse18getDiscoveryStatusEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN18ZBTxStatusResponse18getDiscoveryStatusEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN18ZBTxStatusResponse17getDeliveryStatusEv
0x00000000 0xa ./src/XBee/XBee.o
.ARM.extab.text._ZN18ZBTxStatusResponse17getDeliveryStatusEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN18ZBTxStatusResponse17getDeliveryStatusEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN18ZBTxStatusResponse9isSuccessEv
0x00000000 0xc ./src/XBee/XBee.o
.ARM.extab.text._ZN18ZBTxStatusResponse9isSuccessEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN18ZBTxStatusResponse9isSuccessEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN18ZBTxStatusResponse15getTxRetryCountEv
0x00000000 0xa ./src/XBee/XBee.o
.ARM.extab.text._ZN18ZBTxStatusResponse15getTxRetryCountEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN18ZBTxStatusResponse15getTxRetryCountEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN18ZBTxStatusResponse16getRemoteAddressEv
0x00000000 0x12 ./src/XBee/XBee.o
.ARM.extab.text._ZN18ZBTxStatusResponse16getRemoteAddressEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN18ZBTxStatusResponse16getRemoteAddressEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse12setFrameDataEPh
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse12setFrameDataEPh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse12setFrameDataEPh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse20getAtCommandResponseERS_
0x00000000 0x1c ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse20getAtCommandResponseERS_
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse20getAtCommandResponseERS_
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse22getModemStatusResponseERS_
0x00000000 0x1c ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse22getModemStatusResponseERS_
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse22getModemStatusResponseERS_
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse21getZBTxStatusResponseERS_
0x00000000 0x1c ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse21getZBTxStatusResponseERS_
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse21getZBTxStatusResponseERS_
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse4initEv
0x00000000 0xa ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse4initEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse4initEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse5resetEv
0x00000000 0x26 ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse5resetEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse5resetEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN4XBee13resetResponseEv
0x00000000 0xe ./src/XBee/XBee.o
.ARM.extab.text._ZN4XBee13resetResponseEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN4XBee13resetResponseEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN4XBeeC2Ev
0x00000000 0x20 ./src/XBee/XBee.o
.ARM.extab.text._ZN4XBeeC2Ev
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN4XBeeC2Ev
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN4XBee14getNextFrameIdEv
0x00000000 0x16 ./src/XBee/XBee.o
.ARM.extab.text._ZN4XBee14getNextFrameIdEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN4XBee14getNextFrameIdEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN4XBee5beginEi
0x00000000 0x10 ./src/XBee/XBee.o
.ARM.extab.text._ZN4XBee5beginEi
0x00000000 0xc ./src/XBee/XBee.o
.ARM.exidx.text._ZN4XBee5beginEi
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN4XBee11getResponseEv
0x00000000 0x2 ./src/XBee/XBee.o
.ARM.extab.text._ZN4XBee11getResponseEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN4XBee11getResponseEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN4XBee11getResponseER12XBeeResponse
0x00000000 0x4c ./src/XBee/XBee.o
.ARM.extab.text._ZN4XBee11getResponseER12XBeeResponse
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN4XBee11getResponseER12XBeeResponse
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN4XBee10readPacketEv
0x00000000 0x124 ./src/XBee/XBee.o
.ARM.extab.text._ZN4XBee10readPacketEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN4XBee10readPacketEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN4XBee10readPacketEi
0x00000000 0x4c ./src/XBee/XBee.o
.ARM.extab.text._ZN4XBee10readPacketEi
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN4XBee10readPacketEi
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN4XBee24readPacketUntilAvailableEv
0x00000000 0x28 ./src/XBee/XBee.o
.ARM.extab.text._ZN4XBee24readPacketUntilAvailableEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN4XBee24readPacketUntilAvailableEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN11XBeeRequestC2Ehh
0x00000000 0x10 ./src/XBee/XBee.o
.ARM.extab.text._ZN11XBeeRequestC2Ehh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN11XBeeRequestC2Ehh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN11XBeeRequest10setFrameIdEh
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN11XBeeRequest10setFrameIdEh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN11XBeeRequest10setFrameIdEh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN11XBeeRequest10getFrameIdEv
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN11XBeeRequest10getFrameIdEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN11XBeeRequest10getFrameIdEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN11XBeeRequest8getApiIdEv
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN11XBeeRequest8getApiIdEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN11XBeeRequest8getApiIdEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN11XBeeRequest8setApiIdEh
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN11XBeeRequest8setApiIdEh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN11XBeeRequest8setApiIdEh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN14PayloadRequestC2EhhPhh
0x00000000 0x20 ./src/XBee/XBee.o
.ARM.extab.text._ZN14PayloadRequestC2EhhPhh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN14PayloadRequestC2EhhPhh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN14PayloadRequest10getPayloadEv
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN14PayloadRequest10getPayloadEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN14PayloadRequest10getPayloadEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN14PayloadRequest10setPayloadEPh
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN14PayloadRequest10setPayloadEPh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN14PayloadRequest10setPayloadEPh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN14PayloadRequest16getPayloadLengthEv
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN14PayloadRequest16getPayloadLengthEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN14PayloadRequest16getPayloadLengthEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN11ZBTxRequest18getFrameDataLengthEv
0x00000000 0xc ./src/XBee/XBee.o
.ARM.extab.text._ZN11ZBTxRequest18getFrameDataLengthEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN11ZBTxRequest18getFrameDataLengthEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN14PayloadRequest16setPayloadLengthEh
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN14PayloadRequest16setPayloadLengthEh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN14PayloadRequest16setPayloadLengthEh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN11XBeeAddressC2Ev
0x00000000 0x2 ./src/XBee/XBee.o
.ARM.extab.text._ZN11XBeeAddressC2Ev
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN11XBeeAddressC2Ev
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN13XBeeAddress64C2Ev
0x00000000 0x2 ./src/XBee/XBee.o
.ARM.extab.text._ZN13XBeeAddress64C2Ev
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN13XBeeAddress64C2Ev
0x00000000 0x8 ./src/XBee/XBee.o
.ARM.extab.text._ZN13XBeeAddress64C2Emm
0x00000000 0x0 ./src/XBee/XBee.o
.text._ZN13XBeeAddress646getMsbEv
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN13XBeeAddress646getMsbEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN13XBeeAddress646getMsbEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN13XBeeAddress646setMsbEm
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN13XBeeAddress646setMsbEm
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN13XBeeAddress646setMsbEm
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN13XBeeAddress646getLsbEv
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN13XBeeAddress646getLsbEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN13XBeeAddress646getLsbEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN11ZBTxRequest12getFrameDataEh
0x00000000 0x98 ./src/XBee/XBee.o
.ARM.extab.text._ZN11ZBTxRequest12getFrameDataEh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN11ZBTxRequest12getFrameDataEh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN13XBeeAddress646setLsbEm
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN13XBeeAddress646setLsbEm
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN13XBeeAddress646setLsbEm
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse26getRemoteAtCommandResponseERS_
0x00000000 0x64 ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse26getRemoteAtCommandResponseERS_
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse26getRemoteAtCommandResponseERS_
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse23getZBRxIoSampleResponseERS_
0x00000000 0x66 ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse23getZBRxIoSampleResponseERS_
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse23getZBRxIoSampleResponseERS_
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN12XBeeResponse15getZBRxResponseERS_
0x00000000 0x66 ./src/XBee/XBee.o
.ARM.extab.text._ZN12XBeeResponse15getZBRxResponseERS_
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN12XBeeResponse15getZBRxResponseERS_
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN11ZBTxRequestC2Ev
0x00000000 0x20 ./src/XBee/XBee.o
.ARM.extab.text._ZN11ZBTxRequestC2Ev
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN11ZBTxRequestC2Ev
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN11ZBTxRequestC2ER13XBeeAddress64thhPhhh
0x00000000 0x48 ./src/XBee/XBee.o
.ARM.extab.text._ZN11ZBTxRequestC2ER13XBeeAddress64thhPhhh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN11ZBTxRequestC2ER13XBeeAddress64thhPhhh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN11ZBTxRequestC2ER13XBeeAddress64Phh
0x00000000 0x38 ./src/XBee/XBee.o
.ARM.extab.text._ZN11ZBTxRequestC2ER13XBeeAddress64Phh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN11ZBTxRequestC2ER13XBeeAddress64Phh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN11ZBTxRequest12getAddress64Ev
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN11ZBTxRequest12getAddress64Ev
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN11ZBTxRequest12getAddress64Ev
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN11ZBTxRequest12getAddress16Ev
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN11ZBTxRequest12getAddress16Ev
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN11ZBTxRequest12getAddress16Ev
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN11ZBTxRequest18getBroadcastRadiusEv
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN11ZBTxRequest18getBroadcastRadiusEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN11ZBTxRequest18getBroadcastRadiusEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN11ZBTxRequest9getOptionEv
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN11ZBTxRequest9getOptionEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN11ZBTxRequest9getOptionEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN11ZBTxRequest12setAddress64ER13XBeeAddress64
0x00000000 0x8 ./src/XBee/XBee.o
.ARM.extab.text._ZN11ZBTxRequest12setAddress64ER13XBeeAddress64
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN11ZBTxRequest12setAddress64ER13XBeeAddress64
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN11ZBTxRequest12setAddress16Et
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN11ZBTxRequest12setAddress16Et
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN11ZBTxRequest12setAddress16Et
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN11ZBTxRequest18setBroadcastRadiusEh
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN11ZBTxRequest18setBroadcastRadiusEh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN11ZBTxRequest18setBroadcastRadiusEh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN11ZBTxRequest9setOptionEh
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN11ZBTxRequest9setOptionEh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN11ZBTxRequest9setOptionEh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN16AtCommandRequestC2EPhS0_h
0x00000000 0x28 ./src/XBee/XBee.o
.ARM.extab.text._ZN16AtCommandRequestC2EPhS0_h
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN16AtCommandRequestC2EPhS0_h
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN16AtCommandRequest10getCommandEv
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN16AtCommandRequest10getCommandEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN16AtCommandRequest10getCommandEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN16AtCommandRequest15getCommandValueEv
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN16AtCommandRequest15getCommandValueEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN16AtCommandRequest15getCommandValueEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN22RemoteAtCommandRequest12getFrameDataEh
0x00000000 0xae ./src/XBee/XBee.o
.ARM.extab.text._ZN22RemoteAtCommandRequest12getFrameDataEh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN22RemoteAtCommandRequest12getFrameDataEh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN16AtCommandRequest21getCommandValueLengthEv
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN16AtCommandRequest21getCommandValueLengthEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN16AtCommandRequest21getCommandValueLengthEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN22RemoteAtCommandRequest18getFrameDataLengthEv
0x00000000 0xc ./src/XBee/XBee.o
.ARM.extab.text._ZN22RemoteAtCommandRequest18getFrameDataLengthEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN22RemoteAtCommandRequest18getFrameDataLengthEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN16AtCommandRequest10setCommandEPh
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN16AtCommandRequest10setCommandEPh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN16AtCommandRequest10setCommandEPh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN16AtCommandRequest15setCommandValueEPh
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN16AtCommandRequest15setCommandValueEPh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN16AtCommandRequest15setCommandValueEPh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN16AtCommandRequest21setCommandValueLengthEh
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN16AtCommandRequest21setCommandValueLengthEh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN16AtCommandRequest21setCommandValueLengthEh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN16AtCommandRequest17clearCommandValueEv
0x00000000 0x8 ./src/XBee/XBee.o
.ARM.extab.text._ZN16AtCommandRequest17clearCommandValueEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN16AtCommandRequest17clearCommandValueEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN16AtCommandRequestC2EPh
0x00000000 0x24 ./src/XBee/XBee.o
.ARM.extab.text._ZN16AtCommandRequestC2EPh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN16AtCommandRequestC2EPh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN16AtCommandRequestC2Ev
0x00000000 0x24 ./src/XBee/XBee.o
.ARM.extab.text._ZN16AtCommandRequestC2Ev
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN16AtCommandRequestC2Ev
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN22RemoteAtCommandRequestC2Ev
0x00000000 0x28 ./src/XBee/XBee.o
.ARM.extab.text._ZN22RemoteAtCommandRequestC2Ev
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN22RemoteAtCommandRequestC2Ev
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN22RemoteAtCommandRequestC2EtPhS0_h
0x00000000 0x3c ./src/XBee/XBee.o
.ARM.extab.text._ZN22RemoteAtCommandRequestC2EtPhS0_h
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN22RemoteAtCommandRequestC2EtPhS0_h
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN22RemoteAtCommandRequestC2EtPh
0x00000000 0x38 ./src/XBee/XBee.o
.ARM.extab.text._ZN22RemoteAtCommandRequestC2EtPh
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN22RemoteAtCommandRequestC2EtPh
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN22RemoteAtCommandRequestC2ER13XBeeAddress64PhS2_h
0x00000000 0x38 ./src/XBee/XBee.o
.ARM.extab.text._ZN22RemoteAtCommandRequestC2ER13XBeeAddress64PhS2_h
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN22RemoteAtCommandRequestC2ER13XBeeAddress64PhS2_h
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN22RemoteAtCommandRequestC2ER13XBeeAddress64Ph
0x00000000 0x38 ./src/XBee/XBee.o
.ARM.extab.text._ZN22RemoteAtCommandRequestC2ER13XBeeAddress64Ph
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN22RemoteAtCommandRequestC2ER13XBeeAddress64Ph
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN22RemoteAtCommandRequest18getRemoteAddress16Ev
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN22RemoteAtCommandRequest18getRemoteAddress16Ev
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN22RemoteAtCommandRequest18getRemoteAddress16Ev
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN22RemoteAtCommandRequest18setRemoteAddress16Et
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN22RemoteAtCommandRequest18setRemoteAddress16Et
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN22RemoteAtCommandRequest18setRemoteAddress16Et
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN22RemoteAtCommandRequest18getRemoteAddress64Ev
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN22RemoteAtCommandRequest18getRemoteAddress64Ev
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN22RemoteAtCommandRequest18getRemoteAddress64Ev
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN22RemoteAtCommandRequest18setRemoteAddress64ER13XBeeAddress64
0x00000000 0x8 ./src/XBee/XBee.o
.ARM.extab.text._ZN22RemoteAtCommandRequest18setRemoteAddress64ER13XBeeAddress64
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN22RemoteAtCommandRequest18setRemoteAddress64ER13XBeeAddress64
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN22RemoteAtCommandRequest15getApplyChangesEv
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN22RemoteAtCommandRequest15getApplyChangesEv
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN22RemoteAtCommandRequest15getApplyChangesEv
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN22RemoteAtCommandRequest15setApplyChangesEb
0x00000000 0x4 ./src/XBee/XBee.o
.ARM.extab.text._ZN22RemoteAtCommandRequest15setApplyChangesEb
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN22RemoteAtCommandRequest15setApplyChangesEb
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN4XBee8sendByteEhb
0x00000000 0x3c ./src/XBee/XBee.o
.ARM.extab.text._ZN4XBee8sendByteEhb
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN4XBee8sendByteEhb
0x00000000 0x8 ./src/XBee/XBee.o
.text._ZN4XBee4sendER11XBeeRequest
0x00000000 0xb4 ./src/XBee/XBee.o
.ARM.extab.text._ZN4XBee4sendER11XBeeRequest
0x00000000 0x0 ./src/XBee/XBee.o
.ARM.exidx.text._ZN4XBee4sendER11XBeeRequest
0x00000000 0x8 ./src/XBee/XBee.o
.ARM.extab.text._GLOBAL__I__ZN12XBeeResponseC2Ev
0x00000000 0x0 ./src/XBee/XBee.o
.rodata._ZTV14PayloadRequest
0x00000000 0x10 ./src/XBee/XBee.o
.rodata._ZTV11XBeeRequest
0x00000000 0x10 ./src/XBee/XBee.o
.rodata._ZTV14RxDataResponse
0x00000000 0x10 ./src/XBee/XBee.o
.rodata._ZTV20ZBRxIoSampleResponse
0x00000000 0x10 ./src/XBee/XBee.o
.rodata._ZTV16AtCommandRequest
0x00000000 0x10 ./src/XBee/XBee.o
.rodata._ZTV11ZBTxRequest
0x00000000 0x10 ./src/XBee/XBee.o
.rodata._ZTV12ZBRxResponse
0x00000000 0x10 ./src/XBee/XBee.o
.rodata._ZTV22RemoteAtCommandRequest
0x00000000 0x10 ./src/XBee/XBee.o
.text 0x00000000 0x0 ./src/FatFs/SD.o
.data 0x00000000 0x0 ./src/FatFs/SD.o
.bss 0x00000000 0x0 ./src/FatFs/SD.o
.ARM.extab.text._ZN7PETITFSD2Ev
0x00000000 0x0 ./src/FatFs/SD.o
.ARM.extab.text._ZN7PETITFSC2Ev
0x00000000 0x0 ./src/FatFs/SD.o
.ARM.extab.text._ZN7PETITFS5beginEv
0x00000000 0x0 ./src/FatFs/SD.o
.text._ZN7PETITFS5beginEi
0x00000000 0xe ./src/FatFs/SD.o
.ARM.extab.text._ZN7PETITFS5beginEi
0x00000000 0xc ./src/FatFs/SD.o
.ARM.exidx.text._ZN7PETITFS5beginEi
0x00000000 0x8 ./src/FatFs/SD.o
.text._ZN7PETITFS5beginE8SSP_PORT
0x00000000 0x28 ./src/FatFs/SD.o
.ARM.extab.text._ZN7PETITFS5beginE8SSP_PORT
0x00000000 0x0 ./src/FatFs/SD.o
.ARM.exidx.text._ZN7PETITFS5beginE8SSP_PORT
0x00000000 0x8 ./src/FatFs/SD.o
.text._ZN7PETITFS6existsEv
0x00000000 0x4 ./src/FatFs/SD.o
.ARM.extab.text._ZN7PETITFS6existsEv
0x00000000 0x0 ./src/FatFs/SD.o
.ARM.exidx.text._ZN7PETITFS6existsEv
0x00000000 0x8 ./src/FatFs/SD.o
.text._ZN7PETITFS5mkdirEv
0x00000000 0x4 ./src/FatFs/SD.o
.ARM.extab.text._ZN7PETITFS5mkdirEv
0x00000000 0x0 ./src/FatFs/SD.o
.ARM.exidx.text._ZN7PETITFS5mkdirEv
0x00000000 0x8 ./src/FatFs/SD.o
.ARM.extab.text._ZN7PETITFS4openEPKc
0x00000000 0x0 ./src/FatFs/SD.o
.text._ZN7PETITFS6removeEPKc
0x00000000 0x4 ./src/FatFs/SD.o
.ARM.extab.text._ZN7PETITFS6removeEPKc
0x00000000 0x0 ./src/FatFs/SD.o
.ARM.exidx.text._ZN7PETITFS6removeEPKc
0x00000000 0x8 ./src/FatFs/SD.o
.text._ZN7PETITFS5rmdirEPKc
0x00000000 0x4 ./src/FatFs/SD.o
.ARM.extab.text._ZN7PETITFS5rmdirEPKc
0x00000000 0x0 ./src/FatFs/SD.o
.ARM.exidx.text._ZN7PETITFS5rmdirEPKc
0x00000000 0x8 ./src/FatFs/SD.o
.text._ZN7PETITFS9availableEv
0x00000000 0x2 ./src/FatFs/SD.o
.ARM.extab.text._ZN7PETITFS9availableEv
0x00000000 0x0 ./src/FatFs/SD.o
.ARM.exidx.text._ZN7PETITFS9availableEv
0x00000000 0x8 ./src/FatFs/SD.o
.ARM.extab.text._ZN7PETITFS5closeEv
0x00000000 0x0 ./src/FatFs/SD.o
.text._ZN7PETITFS5flushEv
0x00000000 0x2 ./src/FatFs/SD.o
.ARM.extab.text._ZN7PETITFS5flushEv
0x00000000 0x0 ./src/FatFs/SD.o
.ARM.exidx.text._ZN7PETITFS5flushEv
0x00000000 0x8 ./src/FatFs/SD.o
.text._ZN7PETITFS4peekEv
0x00000000 0x2 ./src/FatFs/SD.o
.ARM.extab.text._ZN7PETITFS4peekEv
0x00000000 0x0 ./src/FatFs/SD.o
.ARM.exidx.text._ZN7PETITFS4peekEv
0x00000000 0x8 ./src/FatFs/SD.o
.text._ZN7PETITFS8positionEv
0x00000000 0x2 ./src/FatFs/SD.o
.ARM.extab.text._ZN7PETITFS8positionEv
0x00000000 0x0 ./src/FatFs/SD.o
.ARM.exidx.text._ZN7PETITFS8positionEv
0x00000000 0x8 ./src/FatFs/SD.o
.text._ZN7PETITFS5printEPKc
0x00000000 0x2 ./src/FatFs/SD.o
.ARM.extab.text._ZN7PETITFS5printEPKc
0x00000000 0x0 ./src/FatFs/SD.o
.ARM.exidx.text._ZN7PETITFS5printEPKc
0x00000000 0x8 ./src/FatFs/SD.o
.text._ZN7PETITFS5printEi12RADIX_FORMAT
0x00000000 0x2 ./src/FatFs/SD.o
.ARM.extab.text._ZN7PETITFS5printEi12RADIX_FORMAT
0x00000000 0x0 ./src/FatFs/SD.o
.ARM.exidx.text._ZN7PETITFS5printEi12RADIX_FORMAT
0x00000000 0x8 ./src/FatFs/SD.o
.text._ZN7PETITFS7printlnEPKc
0x00000000 0x2 ./src/FatFs/SD.o
.ARM.extab.text._ZN7PETITFS7printlnEPKc
0x00000000 0x0 ./src/FatFs/SD.o
.ARM.exidx.text._ZN7PETITFS7printlnEPKc
0x00000000 0x8 ./src/FatFs/SD.o
.text._ZN7PETITFS7printlnEi12RADIX_FORMAT
0x00000000 0x2 ./src/FatFs/SD.o
.ARM.extab.text._ZN7PETITFS7printlnEi12RADIX_FORMAT
0x00000000 0x0 ./src/FatFs/SD.o
.ARM.exidx.text._ZN7PETITFS7printlnEi12RADIX_FORMAT
0x00000000 0x8 ./src/FatFs/SD.o
.text._ZN7PETITFS4seekEm
0x00000000 0x2 ./src/FatFs/SD.o
.ARM.extab.text._ZN7PETITFS4seekEm
0x00000000 0x0 ./src/FatFs/SD.o
.ARM.exidx.text._ZN7PETITFS4seekEm
0x00000000 0x8 ./src/FatFs/SD.o
.text._ZN7PETITFS4sizeEv
0x00000000 0x2 ./src/FatFs/SD.o
.ARM.extab.text._ZN7PETITFS4sizeEv
0x00000000 0x0 ./src/FatFs/SD.o
.ARM.exidx.text._ZN7PETITFS4sizeEv
0x00000000 0x8 ./src/FatFs/SD.o
.text._ZN7PETITFS4readEv
0x00000000 0x2e ./src/FatFs/SD.o
.ARM.extab.text._ZN7PETITFS4readEv
0x00000000 0x0 ./src/FatFs/SD.o
.ARM.exidx.text._ZN7PETITFS4readEv
0x00000000 0x8 ./src/FatFs/SD.o
.text._ZN7PETITFS5writeEPKc
0x00000000 0x2 ./src/FatFs/SD.o
.ARM.extab.text._ZN7PETITFS5writeEPKc
0x00000000 0x0 ./src/FatFs/SD.o
.ARM.exidx.text._ZN7PETITFS5writeEPKc
0x00000000 0x8 ./src/FatFs/SD.o
.text._ZN7PETITFS5writeEPKci
0x00000000 0x2 ./src/FatFs/SD.o
.ARM.extab.text._ZN7PETITFS5writeEPKci
0x00000000 0x0 ./src/FatFs/SD.o
.ARM.exidx.text._ZN7PETITFS5writeEPKci
0x00000000 0x8 ./src/FatFs/SD.o
.ARM.extab.text._GLOBAL__I_SDFile
0x00000000 0x0 ./src/FatFs/SD.o
.text 0x00000000 0x0 ./src/FatFs/pff.o
.data 0x00000000 0x0 ./src/FatFs/pff.o
.bss 0x00000000 0x0 ./src/FatFs/pff.o
.ARM.extab.text._ZL10clust2sectm
0x00000000 0x0 ./src/FatFs/pff.o
.ARM.extab.text._ZL10dir_rewindP5_DIR_
0x00000000 0x0 ./src/FatFs/pff.o
.ARM.extab.text._ZL7get_fatm
0x00000000 0x0 ./src/FatFs/pff.o
.ARM.extab.text._ZL8dir_nextP5_DIR_
0x00000000 0x0 ./src/FatFs/pff.o
.ARM.extab.text._ZL8check_fsPhm
0x00000000 0x0 ./src/FatFs/pff.o
.ARM.extab.text._ZL11follow_pathP5_DIR_PKc
0x00000000 0x0 ./src/FatFs/pff.o
.ARM.extab.text._Z8pf_mountP7_FATFS_
0x00000000 0x0 ./src/FatFs/pff.o
.ARM.extab.text._Z7pf_openPKc
0x00000000 0x0 ./src/FatFs/pff.o
.ARM.extab.text._Z7pf_readPvtPt
0x00000000 0x0 ./src/FatFs/pff.o
.text._Z8pf_writePKvtPt
0x00000000 0x11c ./src/FatFs/pff.o
.ARM.extab.text._Z8pf_writePKvtPt
0x00000000 0x0 ./src/FatFs/pff.o
.ARM.exidx.text._Z8pf_writePKvtPt
0x00000000 0x8 ./src/FatFs/pff.o
.text._Z8pf_lseekm
0x00000000 0xb0 ./src/FatFs/pff.o
.ARM.extab.text._Z8pf_lseekm
0x00000000 0x0 ./src/FatFs/pff.o
.ARM.exidx.text._Z8pf_lseekm
0x00000000 0x8 ./src/FatFs/pff.o
.text._Z10pf_opendirP5_DIR_PKc
0x00000000 0x5c ./src/FatFs/pff.o
.ARM.extab.text._Z10pf_opendirP5_DIR_PKc
0x00000000 0x0 ./src/FatFs/pff.o
.ARM.exidx.text._Z10pf_opendirP5_DIR_PKc
0x00000000 0x8 ./src/FatFs/pff.o
.text._Z10pf_readdirP5_DIR_P9_FILINFO_
0x00000000 0x110 ./src/FatFs/pff.o
.ARM.extab.text._Z10pf_readdirP5_DIR_P9_FILINFO_
0x00000000 0x0 ./src/FatFs/pff.o
.ARM.exidx.text._Z10pf_readdirP5_DIR_P9_FILINFO_
0x00000000 0x8 ./src/FatFs/pff.o
.text 0x00000000 0x0 ./src/FatFs/sdcard.o
.data 0x00000000 0x0 ./src/FatFs/sdcard.o
.bss 0x00000000 0x0 ./src/FatFs/sdcard.o
.ARM.extab.text._ZL8send_cmdhm
0x00000000 0x0 ./src/FatFs/sdcard.o
.ARM.extab.text._Z10disk_readpPhmtt
0x00000000 0x0 ./src/FatFs/sdcard.o
.ARM.extab.text._Z11disk_writepPKhm
0x00000000 0x0 ./src/FatFs/sdcard.o
.ARM.extab.text._Z15disk_initializev
0x00000000 0x0 ./src/FatFs/sdcard.o
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(_thumb1_case_uqi.o)
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(_thumb1_case_uqi.o)
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(_udivsi3.o)
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(_udivsi3.o)
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(_divsi3.o)
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(_divsi3.o)
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(_dvmd_tls.o)
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(_dvmd_tls.o)
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(unwind-arm.o)
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(unwind-arm.o)
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(libunwind.o)
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(libunwind.o)
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(pr-support.o)
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(pr-support.o)
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-abort.o)
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-abort.o)
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-init.o)
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-init.o)
.text 0x00000000 0x28 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-malloc.o)
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-malloc.o)
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-malloc.o)
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-memcpy.o)
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-memcpy.o)
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-mlock.o)
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-mlock.o)
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-sbrkr.o)
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-sbrkr.o)
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-signal.o)
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-signal.o)
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-signalr.o)
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-signalr.o)
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-freer.o)
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-freer.o)
.text 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-impure.o)
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-impure.o)
.rodata 0x00000000 0x4 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-impure.o)
.text 0x00000000 0x100 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-reent.o)
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-reent.o)
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-reent.o)
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_sbrk.o)
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_sbrk.o)
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_exit.o)
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_exit.o)
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(getpid.o)
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(getpid.o)
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(kill.o)
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(kill.o)
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_check_heap.o)
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_check_heap.o)
.text 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crti.o
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crti.o
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crti.o
.text 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crtn.o
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crtn.o
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crtn.o
.fini_array 0x00000000 0x4 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crtbegin.o
.text 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crtend.o
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crtend.o
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crtend.o
.jcr 0x00000000 0x4 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crtend.o
.data 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-errno.o)
.bss 0x00000000 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-errno.o)
Memory Configuration
Name Origin Length Attributes
MFlash32 0x00001000 0x00007000 xr
RamLoc8 0x10000000 0x00001fe0 xrw
//RamLoc8 0x10000000 0x00000fe0 xrw
*default* 0x00000000 0xffffffff
Linker script and memory map
LOAD ./src/user_application.o
LOAD ./src/core/Print.o
LOAD ./src/core/SPI.o
LOAD ./src/core/SPI1.o
LOAD ./src/core/SoftwareSerial.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
LOAD c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libstdc++.a
LOAD c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libm.a
START GROUP
LOAD c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a
LOAD c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a
END GROUP
START GROUP
LOAD c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a
LOAD c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a
LOAD c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libstdc++.a
LOAD c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libm.a
LOAD c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a
LOAD c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crti.o
LOAD c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crtn.o
LOAD c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crtbegin.o
LOAD c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crtend.o
END GROUP
0x00008000 __top_MFlash32 = 0x8000
0x10001fe0 __top_RamLoc8 = 0x10001fe0
0x10000fe0 //__top_RamLoc8 = 0x10000fe0
.text 0x00001000 0x377c
FILL mask 0xff
*(.isr_vector)
.isr_vector 0x00001000 0xc0 ./src/core/cr_startup_lpc11.o
0x00001000 g_pfnVectors
0x000010c0 . = ALIGN (0x4)
0x000010c0 __section_table_start = .
0x000010c0 __data_section_table = .
0x000010c0 0x4 LONG 0x4ad0 LOADADDR (.data)
0x000010c4 0x4 LONG 0x10000000 ADDR (.data)
0x000010c8 0x4 LONG 0x84c SIZEOF (.data)
0x000010cc __data_section_table_end = .
0x000010cc __bss_section_table = .
0x000010cc 0x4 LONG 0x1000084c ADDR (.bss)
0x000010d0 0x4 LONG 0x5a0 SIZEOF (.bss)
0x000010d4 __bss_section_table_end = .
0x000010d4 __section_table_end = .
*(.after_vectors*)
.after_vectors
0x000010d4 0x80 ./src/core/cr_startup_lpc11.o
0x000010d4 NMI_Handler
0x000010d8 HardFault_Handler
0x000010dc SVCall_Handler
0x000010e0 PendSV_Handler
0x000010e8 data_init(unsigned int, unsigned int, unsigned int)
0x000010fa bss_init(unsigned int, unsigned int)
0x0000110c ResetISR
0x00001150 IntDefaultHandler
0x00001150 CAN_IRQHandler
0x00001150 TIMER32_0_IRQHandler
0x00001150 TIMER16_1_IRQHandler
0x00001150 ADC_IRQHandler
0x00001150 SSP1_IRQHandler
0x00001150 UART_IRQHandler
0x00001150 BOD_IRQHandler
0x00001150 WAKEUP_IRQHandler
0x00001150 I2C_IRQHandler
0x00001150 SSP0_IRQHandler
0x00001150 WDT_IRQHandler
0x00001150 TIMER16_0_IRQHandler
*(.text*)
.text._Z9playSoundv
0x00001154 0x98 ./src/user_application.o
0x00001154 playSound()
.text._Z9readSoundv
0x000011ec 0x90 ./src/user_application.o
0x000011ec readSound()
.text._Z5setupv
0x0000127c 0x90 ./src/user_application.o
0x0000127c setup()
.text._Z4loopv
0x0000130c 0x74 ./src/user_application.o
0x0000130c loop()
.text._ZN5Print7printlnEv
0x00001380 0x18 ./src/core/Print.o
0x00001380 Print::println()
.text._ZN5Print5printEPKc
0x00001398 0x1a ./src/core/Print.o
0x00001398 Print::print(char const*)
*fill* 0x000013b2 0x2 00
.text._ZN5Print5printEi12RADIX_FORMAT
0x000013b4 0x12c ./src/core/Print.o
0x000013b4 Print::print(int, RADIX_FORMAT)
.text._ZN5Print7printlnEPKc
0x000014e0 0x12 ./src/core/Print.o
0x000014e0 Print::println(char const*)
.text._ZN5Print7printlnEi12RADIX_FORMAT
0x000014f2 0x12 ./src/core/Print.o
0x000014f2 Print::println(int, RADIX_FORMAT)
.text._ZN3SSPD2Ev
0x00001504 0x2 ./src/core/SPI.o
0x00001504 SSP::~SSP()
0x00001504 SSP::~SSP()
.text._ZN3SSP12setBitLengthEi
0x00001506 0x4 ./src/core/SPI.o
0x00001506 SSP::setBitLength(int)
.text._ZN3SSP11setBitOrderE13SSP_BIT_ORDER
0x0000150a 0x4 ./src/core/SPI.o
0x0000150a SSP::setBitOrder(SSP_BIT_ORDER)
.text._ZN3SSP15setClockDividerE15SSP_CLK_DIVIDER
0x0000150e 0x4 ./src/core/SPI.o
0x0000150e SSP::setClockDivider(SSP_CLK_DIVIDER)
.text._ZN3SSP11setDataModeE13SSP_DATA_MODE
0x00001512 0x4 ./src/core/SPI.o
0x00001512 SSP::setDataMode(SSP_DATA_MODE)
*fill* 0x00001516 0x2 00
.text.ssp_begin
0x00001518 0xf8 ./src/core/SPI.o
0x00001518 ssp_begin
.text._ZN3SSP5beginEv
0x00001610 0x12 ./src/core/SPI.o
0x00001610 SSP::begin()
.text._ZN3SSPC2Ev
0x00001622 0x32 ./src/core/SPI.o
0x00001622 SSP::SSP()
0x00001622 SSP::SSP()
.text.ssp_transfer
0x00001654 0x2c ./src/core/SPI.o
0x00001654 ssp_transfer
.text._ZN3SSP8transferEm
0x00001680 0xa ./src/core/SPI.o
0x00001680 SSP::transfer(unsigned long)
*fill* 0x0000168a 0x2 00
.text._GLOBAL__I_SPI
0x0000168c 0x24 ./src/core/SPI.o
.text._ZN4SSP1D2Ev
0x000016b0 0x2 ./src/core/SPI1.o
0x000016b0 SSP1::~SSP1()
0x000016b0 SSP1::~SSP1()
.text._ZN4SSP112setBitLengthEi
0x000016b2 0x4 ./src/core/SPI1.o
0x000016b2 SSP1::setBitLength(int)
.text._ZN4SSP111setBitOrderE13SSP_BIT_ORDER
0x000016b6 0x4 ./src/core/SPI1.o
0x000016b6 SSP1::setBitOrder(SSP_BIT_ORDER)
.text._ZN4SSP115setClockDividerE15SSP_CLK_DIVIDER
0x000016ba 0x4 ./src/core/SPI1.o
0x000016ba SSP1::setClockDivider(SSP_CLK_DIVIDER)
*fill* 0x000016be 0x2 00
.text.ssp1_begin
0x000016c0 0xec ./src/core/SPI1.o
0x000016c0 ssp1_begin
.text._ZN4SSP15beginEv
0x000017ac 0x12 ./src/core/SPI1.o
0x000017ac SSP1::begin()
.text._ZN4SSP1C2Ev
0x000017be 0x32 ./src/core/SPI1.o
0x000017be SSP1::SSP1()
0x000017be SSP1::SSP1()
.text.ssp1_transfer
0x000017f0 0x2c ./src/core/SPI1.o
0x000017f0 ssp1_transfer
.text._ZN4SSP18transferEm
0x0000181c 0xa ./src/core/SPI1.o
0x0000181c SSP1::transfer(unsigned long)
*fill* 0x00001826 0x2 00
.text._GLOBAL__I_SPI1
0x00001828 0x24 ./src/core/SPI1.o
.text._ZN5PrintC2Ev
0x0000184c 0xc ./src/core/SoftwareSerial.o
0x0000184c Print::Print()
0x0000184c Print::Print()
.text.__aeabi_atexit
0x00001858 0x4 ./src/core/cr_cpp_config.o
0x00001858 __aeabi_atexit
.text.__cxa_pure_virtual
0x0000185c 0x4 ./src/core/cr_startup_lpc11.o
0x0000185c __cxa_pure_virtual
.text.NVIC_SetPriority
0x00001860 0x64 ./src/core/delay.o
.text.NVIC_DisableIRQ.clone.0
0x000018c4 0x10 ./src/core/delay.o
.text.delayMicroseconds
0x000018d4 0x18 ./src/core/delay.o
0x000018d4 delayMicroseconds
.text.setup_TIMER32_1
0x000018ec 0x24 ./src/core/delay.o
0x000018ec setup_TIMER32_1
.text.attachMicroseconds
0x00001910 0x44 ./src/core/delay.o
0x00001910 attachMicroseconds
.text.detachMicroseconds
0x00001954 0x14 ./src/core/delay.o
0x00001954 detachMicroseconds
.text.TIMER32_1_IRQHandler
0x00001968 0x24 ./src/core/delay.o
0x00001968 TIMER32_1_IRQHandler
.text.SysTick_Handler
0x0000198c 0x10 ./src/core/delay.o
0x0000198c SysTick_Handler
.text.setup_systick
0x0000199c 0x54 ./src/core/delay.o
0x0000199c setup_systick
.text.pinMode 0x000019f0 0x64 ./src/core/gpio.o
0x000019f0 pinMode
.text.digitalWrite
0x00001a54 0x58 ./src/core/gpio.o
0x00001a54 digitalWrite
.text.digitalRead
0x00001aac 0x44 ./src/core/gpio.o
0x00001aac digitalRead
.text.GPIOIntStatus
0x00001af0 0x4c ./src/core/gpio.o
0x00001af0 GPIOIntStatus
.text.GPIOIntClear
0x00001b3c 0x44 ./src/core/gpio.o
0x00001b3c GPIOIntClear
.text.GPIO_IRQHandler
0x00001b80 0x30 ./src/core/gpio_int.o
0x00001b80 GPIO_IRQHandler
.text.PIOINT0_IRQHandler
0x00001bb0 0x8 ./src/core/gpio_int.o
0x00001bb0 PIOINT0_IRQHandler
.text.PIOINT1_IRQHandler
0x00001bb8 0x8 ./src/core/gpio_int.o
0x00001bb8 PIOINT1_IRQHandler
.text.PIOINT2_IRQHandler
0x00001bc0 0x8 ./src/core/gpio_int.o
0x00001bc0 PIOINT2_IRQHandler
.text.PIOINT3_IRQHandler
0x00001bc8 0x8 ./src/core/gpio_int.o
0x00001bc8 PIOINT3_IRQHandler
.text._ZN8MARYOLEDD2Ev
0x00001bd0 0x2 ./src/core/maryoled.o
0x00001bd0 MARYOLED::~MARYOLED()
0x00001bd0 MARYOLED::~MARYOLED()
*fill* 0x00001bd2 0x2 00
.text._ZN8MARYOLEDC2Ev
0x00001bd4 0x24 ./src/core/maryoled.o
0x00001bd4 MARYOLED::MARYOLED()
0x00001bd4 MARYOLED::MARYOLED()
.text._GLOBAL__I_oled
0x00001bf8 0x24 ./src/core/maryoled.o
.text.main 0x00001c1c 0x14 ./src/core/startup_mary.o
0x00001c1c main
.text.SystemInit
0x00001c30 0x7c ./src/core/system_LPC11xx.o
0x00001c30 SystemInit
.text._ZN7USerialD2Ev
0x00001cac 0xc ./src/core/uart.o
0x00001cac USerial::~USerial()
0x00001cac USerial::~USerial()
.text._ZN7USerial5writeEc
0x00001cb8 0x14 ./src/core/uart.o
0x00001cb8 USerial::write(char)
.text._ZN7USerialC2Ev
0x00001ccc 0x20 ./src/core/uart.o
0x00001ccc USerial::USerial()
0x00001ccc USerial::USerial()
.text._ZN7USerial5beginEi
0x00001cec 0x80 ./src/core/uart.o
0x00001cec USerial::begin(int)
.text._GLOBAL__I_Serial
0x00001d6c 0x24 ./src/core/uart.o
.text._ZN13XBeeAddress64C2Emm
0x00001d90 0x6 ./src/XBee/XBee.o
0x00001d90 XBeeAddress64::XBeeAddress64(unsigned long, unsigned long)
0x00001d90 XBeeAddress64::XBeeAddress64(unsigned long, unsigned long)
*fill* 0x00001d96 0x2 00
.text._GLOBAL__I__ZN12XBeeResponseC2Ev
0x00001d98 0x18 ./src/XBee/XBee.o
.text._ZN7PETITFSD2Ev
0x00001db0 0x2 ./src/FatFs/SD.o
0x00001db0 PETITFS::~PETITFS()
0x00001db0 PETITFS::~PETITFS()
.text._ZN7PETITFSC2Ev
0x00001db2 0xa ./src/FatFs/SD.o
0x00001db2 PETITFS::PETITFS()
0x00001db2 PETITFS::PETITFS()
.text._ZN7PETITFS5beginEv
0x00001dbc 0x12 ./src/FatFs/SD.o
0x00001dbc PETITFS::begin()
.text._ZN7PETITFS4openEPKc
0x00001dce 0x10 ./src/FatFs/SD.o
0x00001dce PETITFS::open(char const*)
.text._ZN7PETITFS5closeEv
0x00001dde 0x2 ./src/FatFs/SD.o
0x00001dde PETITFS::close()
.text._GLOBAL__I_SDFile
0x00001de0 0x24 ./src/FatFs/SD.o
.text._ZL10clust2sectm
0x00001e04 0x20 ./src/FatFs/pff.o
.text._ZL10dir_rewindP5_DIR_
0x00001e24 0x44 ./src/FatFs/pff.o
.text._ZL7get_fatm
0x00001e68 0xdc ./src/FatFs/pff.o
.text._ZL8dir_nextP5_DIR_
0x00001f44 0x60 ./src/FatFs/pff.o
.text._ZL8check_fsPhm
0x00001fa4 0x80 ./src/FatFs/pff.o
.text._ZL11follow_pathP5_DIR_PKc
0x00002024 0x14c ./src/FatFs/pff.o
.text._Z8pf_mountP7_FATFS_
0x00002170 0x170 ./src/FatFs/pff.o
0x00002170 pf_mount(_FATFS_*)
.text._Z7pf_openPKc
0x000022e0 0x74 ./src/FatFs/pff.o
0x000022e0 pf_open(char const*)
.text._Z7pf_readPvtPt
0x00002354 0xcc ./src/FatFs/pff.o
0x00002354 pf_read(void*, unsigned short, unsigned short*)
.text._Z8xmit_spih
0x00002420 0x10 ./src/FatFs/sdcard.o
0x00002420 xmit_spi(unsigned char)
.text._Z7rcv_spiv
0x00002430 0x10 ./src/FatFs/sdcard.o
0x00002430 rcv_spi()
.text._ZL8send_cmdhm
0x00002440 0x88 ./src/FatFs/sdcard.o
.text._ZL11release_spiv
0x000024c8 0x18 ./src/FatFs/sdcard.o
.text._Z10disk_readpPhmtt
0x000024e0 0xa4 ./src/FatFs/sdcard.o
0x000024e0 disk_readp(unsigned char*, unsigned long, unsigned short, unsigned short)
.text._Z11disk_writepPKhm
0x00002584 0xb4 ./src/FatFs/sdcard.o
0x00002584 disk_writep(unsigned char const*, unsigned long)
.text._Z15disk_initializev
0x00002638 0x144 ./src/FatFs/sdcard.o
0x00002638 disk_initialize()
.text 0x0000277c 0x14 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(_thumb1_case_uqi.o)
0x0000277c __gnu_thumb1_case_uqi
.text 0x00002790 0x9c c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(_udivsi3.o)
0x00002790 __aeabi_uidiv
0x00002790 __udivsi3
0x00002818 __aeabi_uidivmod
.text 0x0000282c 0xc0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(_divsi3.o)
0x0000282c __divsi3
0x0000282c __aeabi_idiv
0x000028d8 __aeabi_idivmod
.text 0x000028ec 0x4 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(_dvmd_tls.o)
0x000028ec __aeabi_idiv0
0x000028ec __aeabi_ldiv0
.text 0x000028f0 0xbf8 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(unwind-arm.o)
0x00002bb0 _Unwind_VRS_Get
0x00002bfc _Unwind_VRS_Set
0x00002fb8 __aeabi_unwind_cpp_pr2
0x00002fc4 __aeabi_unwind_cpp_pr1
0x00002fd0 __aeabi_unwind_cpp_pr0
0x00002fdc _Unwind_VRS_Pop
0x00003394 _Unwind_GetCFA
0x00003398 __gnu_Unwind_RaiseException
0x000033f4 __gnu_Unwind_ForcedUnwind
0x00003408 __gnu_Unwind_Resume
0x00003448 __gnu_Unwind_Resume_or_Rethrow
0x00003464 _Unwind_Complete
0x00003468 _Unwind_DeleteException
0x00003478 __gnu_Unwind_Backtrace
.text 0x000034e8 0x144 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(libunwind.o)
0x000034e8 __restore_core_regs
0x000034e8 restore_core_regs
0x00003514 __gnu_Unwind_Restore_VFP
0x00003518 __gnu_Unwind_Save_VFP
0x0000351c __gnu_Unwind_Restore_VFP_D
0x00003520 __gnu_Unwind_Save_VFP_D
0x00003524 __gnu_Unwind_Restore_VFP_D_16_to_31
0x00003528 __gnu_Unwind_Save_VFP_D_16_to_31
0x0000352c __gnu_Unwind_Restore_WMMXD
0x00003530 __gnu_Unwind_Save_WMMXD
0x00003534 __gnu_Unwind_Restore_WMMXC
0x00003538 __gnu_Unwind_Save_WMMXC
0x0000353c ___Unwind_RaiseException
0x0000353c _Unwind_RaiseException
0x0000356c _Unwind_Resume
0x0000356c ___Unwind_Resume
0x0000359c _Unwind_Resume_or_Rethrow
0x0000359c ___Unwind_Resume_or_Rethrow
0x000035cc _Unwind_ForcedUnwind
0x000035cc ___Unwind_ForcedUnwind
0x000035fc ___Unwind_Backtrace
0x000035fc _Unwind_Backtrace
.text 0x0000362c 0x3d0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(pr-support.o)
0x0000367c __gnu_unwind_execute
0x000039a4 __gnu_unwind_frame
0x000039cc _Unwind_GetRegionStart
0x000039d8 _Unwind_GetLanguageSpecificData
0x000039ec _Unwind_GetDataRelBase
0x000039f4 _Unwind_GetTextRelBase
.text 0x000039fc 0x10 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-abort.o)
0x000039fc abort
.text 0x00003a0c 0x48 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-init.o)
0x00003a0c __libc_init_array
.text 0x00003a54 0x508 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-mallocr.o)
0x00003a54 _malloc_r
.text 0x00003f5c 0xf8 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-memcpy.o)
0x00003f5c memcpy
.text 0x00004054 0x8 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-mlock.o)
0x00004054 __malloc_lock
0x00004058 __malloc_unlock
.text 0x0000405c 0x24 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-sbrkr.o)
0x0000405c _sbrk_r
.text 0x00004080 0x168 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-signal.o)
0x00004080 _init_signal_r
0x000040b8 _signal_r
0x000040f4 _raise_r
0x0000414c __sigtramp_r
0x00004198 raise
0x000041ac signal
0x000041c4 _init_signal
0x000041d4 __sigtramp
.text 0x000041e8 0x30 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-signalr.o)
0x000041e8 _kill_r
0x00004210 _getpid_r
.text 0x00004218 0x244 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-freer.o)
0x00004218 _malloc_trim_r
0x000042b8 _free_r
.text 0x0000445c 0x40 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_sbrk.o)
0x0000445c _sbrk
.text 0x0000449c 0x4 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_exit.o)
0x0000449c _exit
.text 0x000044a0 0x10 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(getpid.o)
0x000044a0 _getpid
.text 0x000044b0 0x10 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(kill.o)
0x000044b0 _kill
.text 0x000044c0 0x2c c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_check_heap.o)
0x000044c0 __check_heap_overflow
.text 0x000044ec 0x30 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crtbegin.o
.text 0x0000451c 0xc c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-errno.o)
0x0000451c __errno
*(.rodata .rodata.*)
.rodata.str1.1
0x00004528 0x60 ./src/user_application.o
0x61 (size before relaxing)
.rodata._ZTV5Print
0x00004588 0x10 ./src/core/Print.o
0x00004588 vtable for Print
.rodata._ZL9radix_hex
0x00004598 0x11 ./src/core/Print.o
.rodata._ZL9radix_dec
0x000045a9 0xb ./src/core/Print.o
.rodata._ZL9radix_oct
0x000045b4 0x9 ./src/core/Print.o
.rodata._ZL9radix_bin
0x000045bd 0x3 ./src/core/Print.o
.rodata._ZL8LPC_GPIO
0x000045c0 0x10 ./src/core/gpio.o
.rodata._ZL14mary_pinAssign
0x000045d0 0xe0 ./src/core/gpio.o
.rodata._ZL17arduino_pinAssign
0x000046b0 0x70 ./src/core/gpio.o
.rodata._ZTV7USerial
0x00004720 0x10 ./src/core/uart.o
0x00004720 vtable for USerial
.rodata 0x00004730 0x14 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(unwind-arm.o)
.rodata.str1.4
0x00004744 0x4 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-impure.o)
0x00004748 . = ALIGN (0x4)
0x00004748 . = ALIGN (0x4)
*(.init)
.init 0x00004748 0x4 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crti.o
0x00004748 _init
.init 0x0000474c 0x8 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crtn.o
0x00004754 . = ALIGN (0x4)
0x00004754 __preinit_array_start = .
*(.preinit_array)
0x00004754 __preinit_array_end = .
0x00004754 . = ALIGN (0x4)
0x00004754 __init_array_start = .
*(SORT(.init_array.*))
*(.init_array)
.init_array 0x00004754 0x4 ./src/core/SPI.o
.init_array 0x00004758 0x4 ./src/core/SPI1.o
.init_array 0x0000475c 0x4 ./src/core/maryoled.o
.init_array 0x00004760 0x4 ./src/core/uart.o
.init_array 0x00004764 0x4 ./src/XBee/XBee.o
.init_array 0x00004768 0x4 ./src/FatFs/SD.o
.init_array 0x0000476c 0x4 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crtbegin.o
0x00004770 __init_array_end = .
*(.fini)
.fini 0x00004770 0x4 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crti.o
0x00004770 _fini
.fini 0x00004774 0x8 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crtn.o
0x0000477c . = ALIGN (0x4)
*crtbegin.o(.ctors)
*(EXCLUDE_FILE(*crtend.o) .ctors)
*(SORT(.ctors.*))
*crtend.o(.ctors)
0x0000477c . = ALIGN (0x4)
*crtbegin.o(.dtors)
*(EXCLUDE_FILE(*crtend.o) .dtors)
*(SORT(.dtors.*))
*crtend.o(.dtors)
.glue_7 0x0000477c 0x0
.glue_7 0x00000000 0x0 linker stubs
.glue_7t 0x0000477c 0x0
.glue_7t 0x00000000 0x0 linker stubs
.vfp11_veneer 0x0000477c 0x0
.vfp11_veneer 0x00000000 0x0 linker stubs
.v4_bx 0x0000477c 0x0
.v4_bx 0x00000000 0x0 linker stubs
.ARM.extab 0x0000477c 0x114
*(.ARM.extab* .gnu.linkonce.armextab.*)
.ARM.extab.text._ZN3SSP5beginEv
0x0000477c 0xc ./src/core/SPI.o
.ARM.extab.text._ZN4SSP15beginEv
0x00004788 0xc ./src/core/SPI1.o
.ARM.extab.text._ZN5PrintC2Ev
0x00004794 0x0 ./src/core/SoftwareSerial.o
.ARM.extab.text.PIOINT0_IRQHandler
0x00004794 0xc ./src/core/gpio_int.o
.ARM.extab.text.PIOINT1_IRQHandler
0x000047a0 0xc ./src/core/gpio_int.o
.ARM.extab.text.PIOINT2_IRQHandler
0x000047ac 0xc ./src/core/gpio_int.o
.ARM.extab.text.PIOINT3_IRQHandler
0x000047b8 0xc ./src/core/gpio_int.o
.ARM.extab.text.main
0x000047c4 0xc ./src/core/startup_mary.o
.ARM.extab.text._Z8xmit_spih
0x000047d0 0xc ./src/FatFs/sdcard.o
.ARM.extab.text._Z7rcv_spiv
0x000047dc 0xc ./src/FatFs/sdcard.o
.ARM.extab.text._ZL11release_spiv
0x000047e8 0xc ./src/FatFs/sdcard.o
.ARM.extab 0x000047f4 0x6c c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(unwind-arm.o)
.ARM.extab 0x00004860 0x30 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(pr-support.o)
0x00004890 __exidx_start = .
.ARM.exidx 0x00004890 0x240
*(.ARM.exidx* .gnu.linkonce.armexidx.*)
.ARM.exidx.text._Z9playSoundv
0x000048a8 0x8 ./src/user_application.o
.ARM.exidx.text._Z9readSoundv
0x000048b0 0x8 ./src/user_application.o
.ARM.exidx.text._Z5setupv
0x000048b8 0x8 ./src/user_application.o
.ARM.exidx.text._Z4loopv
0x000048c0 0x0 ./src/user_application.o
0x8 (size before relaxing)
.ARM.exidx.text._ZN5Print7printlnEv
0x000048c0 0x8 ./src/core/Print.o
.ARM.exidx.text._ZN5Print5printEPKc
0x000048c8 0x8 ./src/core/Print.o
.ARM.exidx.text._ZN5Print5printEi12RADIX_FORMAT
0x000048d0 0x8 ./src/core/Print.o
.ARM.exidx.text._ZN5Print7printlnEPKc
0x000048d8 0x8 ./src/core/Print.o
.ARM.exidx.text._ZN5Print7printlnEi12RADIX_FORMAT
0x000048e0 0x0 ./src/core/Print.o
0x8 (size before relaxing)
.ARM.exidx.text._ZN3SSPD2Ev
0x000048e0 0x8 ./src/core/SPI.o
.ARM.exidx.text._ZN3SSP12setBitLengthEi
0x000048e8 0x0 ./src/core/SPI.o
0x8 (size before relaxing)
.ARM.exidx.text._ZN3SSP11setBitOrderE13SSP_BIT_ORDER
0x000048e8 0x0 ./src/core/SPI.o
0x8 (size before relaxing)
.ARM.exidx.text._ZN3SSP15setClockDividerE15SSP_CLK_DIVIDER
0x000048e8 0x0 ./src/core/SPI.o
0x8 (size before relaxing)
.ARM.exidx.text._ZN3SSP11setDataModeE13SSP_DATA_MODE
0x000048e8 0x0 ./src/core/SPI.o
0x8 (size before relaxing)
.ARM.exidx.text.ssp_begin
0x000048e8 0x8 ./src/core/SPI.o
.ARM.exidx.text._ZN3SSP5beginEv
0x000048f0 0x8 ./src/core/SPI.o
.ARM.exidx.text._ZN3SSPC2Ev
0x000048f8 0x8 ./src/core/SPI.o
.ARM.exidx.text.ssp_transfer
0x00004900 0x8 ./src/core/SPI.o
.ARM.exidx.text._ZN3SSP8transferEm
0x00004908 0x0 ./src/core/SPI.o
0x8 (size before relaxing)
.ARM.exidx.text._GLOBAL__I_SPI
0x00004908 0x0 ./src/core/SPI.o
0x8 (size before relaxing)
.ARM.exidx.text._ZN4SSP1D2Ev
0x00004908 0x0 ./src/core/SPI1.o
0x8 (size before relaxing)
.ARM.exidx.text._ZN4SSP112setBitLengthEi
0x00004908 0x0 ./src/core/SPI1.o
0x8 (size before relaxing)
.ARM.exidx.text._ZN4SSP111setBitOrderE13SSP_BIT_ORDER
0x00004908 0x0 ./src/core/SPI1.o
0x8 (size before relaxing)
.ARM.exidx.text._ZN4SSP115setClockDividerE15SSP_CLK_DIVIDER
0x00004908 0x0 ./src/core/SPI1.o
0x8 (size before relaxing)
.ARM.exidx.text.ssp1_begin
0x00004908 0x8 ./src/core/SPI1.o
.ARM.exidx.text._ZN4SSP15beginEv
0x00004910 0x8 ./src/core/SPI1.o
.ARM.exidx.text._ZN4SSP1C2Ev
0x00004918 0x8 ./src/core/SPI1.o
.ARM.exidx.text.ssp1_transfer
0x00004920 0x8 ./src/core/SPI1.o
.ARM.exidx.text._ZN4SSP18transferEm
0x00004928 0x0 ./src/core/SPI1.o
0x8 (size before relaxing)
.ARM.exidx.text._GLOBAL__I_SPI1
0x00004928 0x0 ./src/core/SPI1.o
0x8 (size before relaxing)
.ARM.exidx.text._ZN5PrintC2Ev
0x00004928 0x0 ./src/core/SoftwareSerial.o
0x8 (size before relaxing)
.ARM.exidx.text.__aeabi_atexit
0x00004928 0x0 ./src/core/cr_cpp_config.o
0x8 (size before relaxing)
.ARM.exidx.after_vectors
0x00004890 0x18 ./src/core/cr_startup_lpc11.o
0x48 (size before relaxing)
.ARM.exidx.text.__cxa_pure_virtual
0x00004928 0x0 ./src/core/cr_startup_lpc11.o
0x8 (size before relaxing)
.ARM.exidx.text.NVIC_SetPriority
0x00004928 0x0 ./src/core/delay.o
0x8 (size before relaxing)
.ARM.exidx.text.NVIC_DisableIRQ.clone.0
0x00004928 0x0 ./src/core/delay.o
0x8 (size before relaxing)
.ARM.exidx.text.delayMicroseconds
0x00004928 0x0 ./src/core/delay.o
0x8 (size before relaxing)
.ARM.exidx.text.setup_TIMER32_1
0x00004928 0x0 ./src/core/delay.o
0x8 (size before relaxing)
.ARM.exidx.text.attachMicroseconds
0x00004928 0x0 ./src/core/delay.o
0x8 (size before relaxing)
.ARM.exidx.text.detachMicroseconds
0x00004928 0x0 ./src/core/delay.o
0x8 (size before relaxing)
.ARM.exidx.text.TIMER32_1_IRQHandler
0x00004928 0x8 ./src/core/delay.o
.ARM.exidx.text.SysTick_Handler
0x00004930 0x8 ./src/core/delay.o
.ARM.exidx.text.setup_systick
0x00004938 0x0 ./src/core/delay.o
0x8 (size before relaxing)
.ARM.exidx.text.pinMode
0x00004938 0x0 ./src/core/gpio.o
0x8 (size before relaxing)
.ARM.exidx.text.digitalWrite
0x00004938 0x0 ./src/core/gpio.o
0x8 (size before relaxing)
.ARM.exidx.text.digitalRead
0x00004938 0x0 ./src/core/gpio.o
0x8 (size before relaxing)
.ARM.exidx.text.GPIOIntStatus
0x00004938 0x0 ./src/core/gpio.o
0x8 (size before relaxing)
.ARM.exidx.text.GPIOIntClear
0x00004938 0x0 ./src/core/gpio.o
0x8 (size before relaxing)
.ARM.exidx.text.GPIO_IRQHandler
0x00004938 0x8 ./src/core/gpio_int.o
.ARM.exidx.text.PIOINT0_IRQHandler
0x00004940 0x8 ./src/core/gpio_int.o
.ARM.exidx.text.PIOINT1_IRQHandler
0x00004948 0x8 ./src/core/gpio_int.o
.ARM.exidx.text.PIOINT2_IRQHandler
0x00004950 0x8 ./src/core/gpio_int.o
.ARM.exidx.text.PIOINT3_IRQHandler
0x00004958 0x8 ./src/core/gpio_int.o
.ARM.exidx.text._ZN8MARYOLEDD2Ev
0x00004960 0x8 ./src/core/maryoled.o
.ARM.exidx.text._ZN8MARYOLEDC2Ev
0x00004968 0x0 ./src/core/maryoled.o
0x8 (size before relaxing)
.ARM.exidx.text._GLOBAL__I_oled
0x00004968 0x0 ./src/core/maryoled.o
0x8 (size before relaxing)
.ARM.exidx.text.main
0x00004968 0x8 ./src/core/startup_mary.o
.ARM.exidx.text.SystemInit
0x00004970 0x8 ./src/core/system_LPC11xx.o
.ARM.exidx.text._ZN7USerialD2Ev
0x00004978 0x0 ./src/core/uart.o
0x8 (size before relaxing)
.ARM.exidx.text._ZN7USerial5writeEc
0x00004978 0x0 ./src/core/uart.o
0x8 (size before relaxing)
.ARM.exidx.text._ZN7USerialC2Ev
0x00004978 0x0 ./src/core/uart.o
0x8 (size before relaxing)
.ARM.exidx.text._ZN7USerial5beginEi
0x00004978 0x0 ./src/core/uart.o
0x8 (size before relaxing)
.ARM.exidx.text._GLOBAL__I_Serial
0x00004978 0x0 ./src/core/uart.o
0x8 (size before relaxing)
.ARM.exidx.text._ZN13XBeeAddress64C2Emm
0x00004978 0x0 ./src/XBee/XBee.o
0x8 (size before relaxing)
.ARM.exidx.text._GLOBAL__I__ZN12XBeeResponseC2Ev
0x00004978 0x0 ./src/XBee/XBee.o
0x8 (size before relaxing)
.ARM.exidx.text._ZN7PETITFSD2Ev
0x00004978 0x0 ./src/FatFs/SD.o
0x8 (size before relaxing)
.ARM.exidx.text._ZN7PETITFSC2Ev
0x00004978 0x0 ./src/FatFs/SD.o
0x8 (size before relaxing)
.ARM.exidx.text._ZN7PETITFS5beginEv
0x00004978 0x8 ./src/FatFs/SD.o
.ARM.exidx.text._ZN7PETITFS4openEPKc
0x00004980 0x0 ./src/FatFs/SD.o
0x8 (size before relaxing)
.ARM.exidx.text._ZN7PETITFS5closeEv
0x00004980 0x8 ./src/FatFs/SD.o
.ARM.exidx.text._GLOBAL__I_SDFile
0x00004988 0x0 ./src/FatFs/SD.o
0x8 (size before relaxing)
.ARM.exidx.text._ZL10clust2sectm
0x00004988 0x0 ./src/FatFs/pff.o
0x8 (size before relaxing)
.ARM.exidx.text._ZL10dir_rewindP5_DIR_
0x00004988 0x0 ./src/FatFs/pff.o
0x8 (size before relaxing)
.ARM.exidx.text._ZL7get_fatm
0x00004988 0x8 ./src/FatFs/pff.o
.ARM.exidx.text._ZL8dir_nextP5_DIR_
0x00004990 0x8 ./src/FatFs/pff.o
.ARM.exidx.text._ZL8check_fsPhm
0x00004998 0x8 ./src/FatFs/pff.o
.ARM.exidx.text._ZL11follow_pathP5_DIR_PKc
0x000049a0 0x8 ./src/FatFs/pff.o
.ARM.exidx.text._Z8pf_mountP7_FATFS_
0x000049a8 0x8 ./src/FatFs/pff.o
.ARM.exidx.text._Z7pf_openPKc
0x000049b0 0x8 ./src/FatFs/pff.o
.ARM.exidx.text._Z7pf_readPvtPt
0x000049b8 0x8 ./src/FatFs/pff.o
.ARM.exidx.text._Z8xmit_spih
0x000049c0 0x8 ./src/FatFs/sdcard.o
.ARM.exidx.text._Z7rcv_spiv
0x000049c8 0x8 ./src/FatFs/sdcard.o
.ARM.exidx.text._ZL8send_cmdhm
0x000049d0 0x8 ./src/FatFs/sdcard.o
.ARM.exidx.text._ZL11release_spiv
0x000049d8 0x8 ./src/FatFs/sdcard.o
.ARM.exidx.text._Z10disk_readpPhmtt
0x000049e0 0x8 ./src/FatFs/sdcard.o
.ARM.exidx.text._Z11disk_writepPKhm
0x000049e8 0x8 ./src/FatFs/sdcard.o
.ARM.exidx.text._Z15disk_initializev
0x000049f0 0x10 ./src/FatFs/sdcard.o
0x8 (size before relaxing)
.ARM.exidx 0x00004a00 0x98 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(unwind-arm.o)
0xc0 (size before relaxing)
.ARM.exidx 0x00004a98 0x38 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(pr-support.o)
0x48 (size before relaxing)
0x00004ad0 __exidx_end = .
0x00004ad0 _etext = .
.uninit_RESERVED
*(.bss.$RESERVED*)
.data 0x10000000 0x84c load address 0x00004ad0
FILL mask 0xff
0x10000000 _data = .
*(vtable)
*(.data*)
.data.SystemCoreClock
0x10000000 0x4 ./src/core/system_LPC11xx.o
0x10000000 SystemCoreClock
.data 0x10000004 0x410 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-mallocr.o)
0x10000004 __malloc_av_
0x1000040c __malloc_sbrk_base
0x10000410 __malloc_trim_threshold
*fill* 0x10000414 0x4 00
.data 0x10000418 0x430 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-impure.o)
0x10000418 _impure_ptr
.data 0x10000848 0x4 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crtbegin.o
0x10000848 __dso_handle
0x1000084c . = ALIGN (0x4)
0x1000084c _edata = .
.jcr 0x1000084c 0x0 load address 0x0000531c
.jcr 0x1000084c 0x0 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crtbegin.o
.bss 0x1000084c 0x5a0 load address 0x0000531c
0x1000084c _bss = .
*(.bss*)
.bss.empty_c 0x1000084c 0x2 ./src/user_application.o
0x1000084c empty_c
.bss.br 0x1000084e 0x2 ./src/user_application.o
0x1000084e br
.bss.rc 0x10000850 0x1 ./src/user_application.o
0x10000850 rc
.bss.dac_semp 0x10000851 0x1 ./src/user_application.o
0x10000851 dac_semp
.bss._ZZ9playSoundvE1i
0x10000852 0x2 ./src/user_application.o
.bss._ZZ9playSoundvE1j
0x10000854 0x2 ./src/user_application.o
.bss.AudioBuf 0x10000856 0x400 ./src/user_application.o
0x10000856 AudioBuf
*fill* 0x10000c56 0x2 00
.bss.SPI 0x10000c58 0x8 ./src/core/SPI.o
0x10000c58 SPI
.bss.SPI1 0x10000c60 0x8 ./src/core/SPI1.o
0x10000c60 SPI1
.bss.userfunc 0x10000c68 0x4 ./src/core/delay.o
0x10000c68 userfunc
.bss._ZL7msTicks
0x10000c6c 0x4 ./src/core/delay.o
.bss._ZL7intFunc
0x10000c70 0x50 ./src/core/gpio_int.o
.bss.oled 0x10000cc0 0x28 ./src/core/maryoled.o
0x10000cc0 oled
.bss.Serial 0x10000ce8 0xc ./src/core/uart.o
0x10000ce8 Serial
.bss._ZN22RemoteAtCommandRequest18broadcastAddress64E
0x10000cf4 0x8 ./src/XBee/XBee.o
0x10000cf4 RemoteAtCommandRequest::broadcastAddress64
.bss.SDFile 0x10000cfc 0xa8 ./src/FatFs/SD.o
0x10000cfc SDFile
.bss._ZL5FatFs
0x10000da4 0x4 ./src/FatFs/pff.o
.bss._ZL8CardType
0x10000da8 0x1 ./src/FatFs/sdcard.o
*fill* 0x10000da9 0x1 00
.bss._ZZ11disk_writepPKhmE2wc
0x10000daa 0x2 ./src/FatFs/sdcard.o
.bss 0x10000dac 0x34 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-mallocr.o)
0x10000dac __malloc_top_pad
0x10000db0 __malloc_current_mallinfo
0x10000dd8 __malloc_max_sbrked_mem
0x10000ddc __malloc_max_total_mem
.bss 0x10000de0 0x1 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crtbegin.o
*(COMMON)
*fill* 0x10000de1 0x3 00
COMMON 0x10000de4 0x4 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-reent.o)
0x10000de4 errno
COMMON 0x10000de8 0x4 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_sbrk.o)
0x10000de8 __end_of_heap
0x10000dec . = ALIGN (0x4)
0x10000dec _ebss = .
0x10000dec PROVIDE (end, .)
0x10000dec PROVIDE (_pvHeapStart, .)
0x10001fe0 PROVIDE (_vStackTop, (__top_RamLoc8 - 0x0))
OUTPUT(exodusino.axf elf32-littlearm)
.comment 0x00000000 0x2a
.comment 0x00000000 0x2a ./src/user_application.o
0x2b (size before relaxing)
.comment 0x00000000 0x2b ./src/core/Print.o
.comment 0x00000000 0x2b ./src/core/SPI.o
.comment 0x00000000 0x2b ./src/core/SPI1.o
.comment 0x00000000 0x2b ./src/core/SoftwareSerial.o
.comment 0x00000000 0x2b ./src/core/cr_cpp_config.o
.comment 0x00000000 0x2b ./src/core/cr_startup_lpc11.o
.comment 0x00000000 0x2b ./src/core/delay.o
.comment 0x00000000 0x2b ./src/core/gpio.o
.comment 0x00000000 0x2b ./src/core/gpio_int.o
.comment 0x00000000 0x2b ./src/core/maryoled.o
.comment 0x00000000 0x2b ./src/core/startup_mary.o
.comment 0x00000000 0x2b ./src/core/system_LPC11xx.o
.comment 0x00000000 0x2b ./src/core/uart.o
.comment 0x00000000 0x2b ./src/XBee/XBee.o
.comment 0x00000000 0x2b ./src/FatFs/SD.o
.comment 0x00000000 0x2b ./src/FatFs/pff.o
.comment 0x00000000 0x2b ./src/FatFs/sdcard.o
.comment 0x00000000 0x2b c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_sbrk.o)
.comment 0x00000000 0x2b c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_exit.o)
.comment 0x00000000 0x2b c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(getpid.o)
.comment 0x00000000 0x2b c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(kill.o)
.comment 0x00000000 0x2b c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_check_heap.o)
.ARM.attributes
0x00000000 0x31
.ARM.attributes
0x00000000 0x33 ./src/user_application.o
.ARM.attributes
0x00000033 0x33 ./src/core/Print.o
.ARM.attributes
0x00000066 0x33 ./src/core/SPI.o
.ARM.attributes
0x00000099 0x33 ./src/core/SPI1.o
.ARM.attributes
0x000000cc 0x33 ./src/core/SoftwareSerial.o
.ARM.attributes
0x000000ff 0x33 ./src/core/cr_cpp_config.o
.ARM.attributes
0x00000132 0x33 ./src/core/cr_startup_lpc11.o
.ARM.attributes
0x00000165 0x33 ./src/core/delay.o
.ARM.attributes
0x00000198 0x33 ./src/core/gpio.o
.ARM.attributes
0x000001cb 0x33 ./src/core/gpio_int.o
.ARM.attributes
0x000001fe 0x33 ./src/core/maryoled.o
.ARM.attributes
0x00000231 0x33 ./src/core/startup_mary.o
.ARM.attributes
0x00000264 0x33 ./src/core/system_LPC11xx.o
.ARM.attributes
0x00000297 0x33 ./src/core/uart.o
.ARM.attributes
0x000002ca 0x33 ./src/XBee/XBee.o
.ARM.attributes
0x000002fd 0x33 ./src/FatFs/SD.o
.ARM.attributes
0x00000330 0x33 ./src/FatFs/pff.o
.ARM.attributes
0x00000363 0x33 ./src/FatFs/sdcard.o
.ARM.attributes
0x00000396 0x1f c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(_thumb1_case_uqi.o)
.ARM.attributes
0x000003b5 0x1f c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(_udivsi3.o)
.ARM.attributes
0x000003d4 0x1f c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(_divsi3.o)
.ARM.attributes
0x000003f3 0x1f c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(_dvmd_tls.o)
.ARM.attributes
0x00000412 0x2d c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(unwind-arm.o)
.ARM.attributes
0x0000043f 0x1f c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(libunwind.o)
.ARM.attributes
0x0000045e 0x2d c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(pr-support.o)
.ARM.attributes
0x0000048b 0x2d c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-abort.o)
.ARM.attributes
0x000004b8 0x2d c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-init.o)
.ARM.attributes
0x000004e5 0x2d c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-malloc.o)
.ARM.attributes
0x00000512 0x2d c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-mallocr.o)
.ARM.attributes
0x0000053f 0x2d c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-memcpy.o)
.ARM.attributes
0x0000056c 0x2d c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-mlock.o)
.ARM.attributes
0x00000599 0x2d c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-sbrkr.o)
.ARM.attributes
0x000005c6 0x2d c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-signal.o)
.ARM.attributes
0x000005f3 0x2d c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-signalr.o)
.ARM.attributes
0x00000620 0x2d c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-freer.o)
.ARM.attributes
0x0000064d 0x2d c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-impure.o)
.ARM.attributes
0x0000067a 0x2d c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-reent.o)
.ARM.attributes
0x000006a7 0x33 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_sbrk.o)
.ARM.attributes
0x000006da 0x33 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_exit.o)
.ARM.attributes
0x0000070d 0x33 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(getpid.o)
.ARM.attributes
0x00000740 0x33 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(kill.o)
.ARM.attributes
0x00000773 0x33 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_check_heap.o)
.ARM.attributes
0x000007a6 0x1d c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crti.o
.ARM.attributes
0x000007c3 0x1d c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crtn.o
.ARM.attributes
0x000007e0 0x2d c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crtbegin.o
.ARM.attributes
0x0000080d 0x2d c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\crtend.o
.ARM.attributes
0x0000083a 0x2d c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-errno.o)
.debug_frame 0x00000000 0x80c
.debug_frame 0x00000000 0x20 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(_udivsi3.o)
.debug_frame 0x00000020 0x20 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(_divsi3.o)
.debug_frame 0x00000040 0x2ac c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(unwind-arm.o)
.debug_frame 0x000002ec 0xfc c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/armv6-m\libgcc.a(pr-support.o)
.debug_frame 0x000003e8 0x28 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-abort.o)
.debug_frame 0x00000410 0x2c c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-init.o)
.debug_frame 0x0000043c 0x40 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-malloc.o)
.debug_frame 0x0000047c 0x3c c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-mallocr.o)
.debug_frame 0x000004b8 0x34 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-memcpy.o)
.debug_frame 0x000004ec 0x30 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-mlock.o)
.debug_frame 0x0000051c 0x2c c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-sbrkr.o)
.debug_frame 0x00000548 0xe4 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-signal.o)
.debug_frame 0x0000062c 0x44 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-signalr.o)
.debug_frame 0x00000670 0x58 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-freer.o)
.debug_frame 0x000006c8 0x68 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-reent.o)
.debug_frame 0x00000730 0x2c c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_sbrk.o)
.debug_frame 0x0000075c 0x28 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_exit.o)
.debug_frame 0x00000784 0x20 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(getpid.o)
.debug_frame 0x000007a4 0x20 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(kill.o)
.debug_frame 0x000007c4 0x28 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_check_heap.o)
.debug_frame 0x000007ec 0x20 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libc.a(lib_a-errno.o)
.debug_abbrev 0x00000000 0x21d
.debug_abbrev 0x00000000 0x97 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_sbrk.o)
.debug_abbrev 0x00000097 0x52 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_exit.o)
.debug_abbrev 0x000000e9 0x52 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(getpid.o)
.debug_abbrev 0x0000013b 0x72 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(kill.o)
.debug_abbrev 0x000001ad 0x70 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_check_heap.o)
.debug_info 0x00000000 0x37d
.debug_info 0x00000000 0x104 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_sbrk.o)
.debug_info 0x00000104 0x5c c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_exit.o)
.debug_info 0x00000160 0xa5 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(getpid.o)
.debug_info 0x00000205 0xc6 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(kill.o)
.debug_info 0x000002cb 0xb2 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_check_heap.o)
.debug_line 0x00000000 0x1d5
.debug_line 0x00000000 0xc2 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_sbrk.o)
.debug_line 0x000000c2 0x3e c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_exit.o)
.debug_line 0x00000100 0x43 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(getpid.o)
.debug_line 0x00000143 0x41 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(kill.o)
.debug_line 0x00000184 0x51 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_check_heap.o)
.debug_loc 0x00000000 0xce
.debug_loc 0x00000000 0x68 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_sbrk.o)
.debug_loc 0x00000068 0x20 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_exit.o)
.debug_loc 0x00000088 0x13 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(kill.o)
.debug_loc 0x0000009b 0x33 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_check_heap.o)
.debug_pubnames
0x00000000 0xbe
.debug_pubnames
0x00000000 0x2e c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_sbrk.o)
.debug_pubnames
0x0000002e 0x1c c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_exit.o)
.debug_pubnames
0x0000004a 0x1e c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(getpid.o)
.debug_pubnames
0x00000068 0x1c c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(kill.o)
.debug_pubnames
0x00000084 0x3a c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_check_heap.o)
.debug_pubtypes
0x00000000 0x41
.debug_pubtypes
0x00000000 0x1d c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_sbrk.o)
.debug_pubtypes
0x0000001d 0x12 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(getpid.o)
.debug_pubtypes
0x0000002f 0x12 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(kill.o)
.debug_aranges 0x00000000 0xa0
.debug_aranges
0x00000000 0x20 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_sbrk.o)
.debug_aranges
0x00000020 0x20 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_exit.o)
.debug_aranges
0x00000040 0x20 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(getpid.o)
.debug_aranges
0x00000060 0x20 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(kill.o)
.debug_aranges
0x00000080 0x20 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_check_heap.o)
.debug_str 0x00000000 0x196
.debug_str 0x00000000 0x10a c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_sbrk.o)
0x143 (size before relaxing)
.debug_str 0x0000010a 0x15 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_exit.o)
0x70 (size before relaxing)
.debug_str 0x0000011f 0x1e c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(getpid.o)
0x102 (size before relaxing)
.debug_str 0x0000013d 0x14 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(kill.o)
0xfe (size before relaxing)
.debug_str 0x00000151 0x45 c:/nxp/lpcxpresso_4.2.0_264/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.5.1/../../../../arm-none-eabi/lib/armv6-m\libcr_newlib_nohost.a(_cr_check_heap.o)
0xcf (size before relaxing)
|