WXK
2025-05-23 8415b6bc61925a1a234fe393d8375d3828756931
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
Component: ARM Compiler 6.14 Tool: armlink [5db06800]
 
==============================================================================
 
Section Cross References
 
    startup_mk800x.o(.ARM.exidx.text.Default_Handler) refers to startup_mk800x.o(.text.Default_Handler) for [Anonymous Symbol]
    startup_mk800x.o(.text.Reset_Handler) refers to system_mk800x.o(.text.SystemInit) for SystemInit
    startup_mk800x.o(.text.Reset_Handler) refers to startup_mk800x.o(.text.start_main_asm) for start_main_asm
    startup_mk800x.o(.ARM.exidx.text.Reset_Handler) refers to startup_mk800x.o(.text.Reset_Handler) for [Anonymous Symbol]
    startup_mk800x.o(.text.start_main_asm) refers to entry.o(.ARM.Collect$$$$00000000) for __main
    startup_mk800x.o(.ARM.exidx.text.start_main_asm) refers to startup_mk800x.o(.text.start_main_asm) for [Anonymous Symbol]
    startup_mk800x.o(.ZBOOT_SECTION) refers to startup_mk800x.o(.ZBUILD_SECTION) for mk_build_inf
    startup_mk800x.o(RESET) refers to startup_mk800x.o(.text.Reset_Handler) for Reset_Handler
    startup_mk800x.o(RESET) refers to startup_mk800x.o(.text.Default_Handler) for NMI_Handler
    startup_mk800x.o(RESET) refers to startup_mk800x.o(.ZBOOT_SECTION) for mk_boot_desc
    startup_mk800x.o(RESET) refers to startup_mk800x.o(.ZBUILD_SECTION) for mk_build_inf
    startup_mk800x.o(RESET) refers to mk_misc.o(.text.SysTick_Handler) for SysTick_Handler
    startup_mk800x.o(RESET) refers to mk_misc.o(.text.BOD_IRQHandler) for BOD_IRQHandler
    startup_mk800x.o(RESET) refers to mk_sleep_timer.o(.text.SLEEP_TIMER_IRQHandler) for SLEEP_TIMER_IRQHandler
    startup_mk800x.o(RESET) refers to mk_dma.o(.text.DMA_IRQHandler) for DMA_IRQHandler
    startup_mk800x.o(RESET) refers to mk_gpio.o(.text.GPIO_IRQHandler) for GPIO_IRQHandler
    startup_mk800x.o(RESET) refers to mk_flash.o(.text.FLASH_CTRL_IRQHandler) for FLASH_CTRL_IRQHandler
    startup_mk800x.o(RESET) refers to mk_wdt.o(.text.WDT_IRQHandler) for WDT_IRQHandler
    startup_mk800x.o(RESET) refers to mk_dual_timer.o(.text.TIMER2_IRQHandler) for TIMER2_IRQHandler
    startup_mk800x.o(RESET) refers to mk_dual_timer.o(.text.TIMER3_IRQHandler) for TIMER3_IRQHandler
    startup_mk800x.o(RESET) refers to mk_uart.o(.text.UART0_IRQHandler) for UART0_IRQHandler
    startup_mk800x.o(RESET) refers to mk_uart.o(.text.UART1_IRQHandler) for UART1_IRQHandler
    startup_mk800x.o(RESET) refers to mk_calib.o(.text.CALIB_IRQHandler) for CALIB_IRQHandler
    system_mk800x.o(.text.SystemCoreClockUpdate) refers to system_mk800x.o(.data.SystemCoreClock) for SystemCoreClock
    system_mk800x.o(.ARM.exidx.text.SystemCoreClockUpdate) refers to system_mk800x.o(.text.SystemCoreClockUpdate) for [Anonymous Symbol]
    system_mk800x.o(.text.SystemInit) refers to system_mk800x.o(.data.SystemCoreClock) for SystemCoreClock
    system_mk800x.o(.ARM.exidx.text.SystemInit) refers to system_mk800x.o(.text.SystemInit) for [Anonymous Symbol]
    mk_clock.o(.ARM.exidx.text.clock_enable) refers to mk_clock.o(.text.clock_enable) for [Anonymous Symbol]
    mk_clock.o(.ARM.exidx.text.clock_disable) refers to mk_clock.o(.text.clock_disable) for [Anonymous Symbol]
    mk_clock.o(.text.clock_attach) refers to mk_clock.o(.text.clock_xtal38m4_injection_set) for clock_xtal38m4_injection_set
    mk_clock.o(.ARM.exidx.text.clock_attach) refers to mk_clock.o(.text.clock_attach) for [Anonymous Symbol]
    mk_clock.o(.ARM.exidx.text.clock_set_divider) refers to mk_clock.o(.text.clock_set_divider) for [Anonymous Symbol]
    mk_clock.o(.text.clock_get_frequency) refers to mk_clock.o(.text.clock_get_sys_clk_freq) for clock_get_sys_clk_freq
    mk_clock.o(.text.clock_get_frequency) refers to mk_clock.o(.text.clock_get_ahb_clk_freq) for clock_get_ahb_clk_freq
    mk_clock.o(.text.clock_get_frequency) refers to mk_clock.o(.text.clock_get_apb_clk_freq) for clock_get_apb_clk_freq
    mk_clock.o(.ARM.exidx.text.clock_get_frequency) refers to mk_clock.o(.text.clock_get_frequency) for [Anonymous Symbol]
    mk_clock.o(.ARM.exidx.text.clock_get_sys_clk_freq) refers to mk_clock.o(.text.clock_get_sys_clk_freq) for [Anonymous Symbol]
    mk_clock.o(.text.clock_get_ahb_clk_freq) refers to mk_clock.o(.text.clock_get_sys_clk_freq) for clock_get_sys_clk_freq
    mk_clock.o(.ARM.exidx.text.clock_get_ahb_clk_freq) refers to mk_clock.o(.text.clock_get_ahb_clk_freq) for [Anonymous Symbol]
    mk_clock.o(.text.clock_get_apb_clk_freq) refers to mk_clock.o(.text.clock_get_ahb_clk_freq) for clock_get_ahb_clk_freq
    mk_clock.o(.ARM.exidx.text.clock_get_apb_clk_freq) refers to mk_clock.o(.text.clock_get_apb_clk_freq) for [Anonymous Symbol]
    mk_clock.o(.ARM.exidx.text.clock_xtal38m4_injection_set) refers to mk_clock.o(.text.clock_xtal38m4_injection_set) for [Anonymous Symbol]
    mk_clock.o(.ARM.exidx.text.clock_xtal32k_injection_set) refers to mk_clock.o(.text.clock_xtal32k_injection_set) for [Anonymous Symbol]
    mk_dma.o(.text.dma_open) refers to mk_clock.o(.text.clock_enable) for clock_enable
    mk_dma.o(.text.dma_open) refers to mk_reset.o(.text.reset_module) for reset_module
    mk_dma.o(.text.dma_open) refers to mk_dma.o(.data.dma_handle) for [Anonymous Symbol]
    mk_dma.o(.ARM.exidx.text.dma_open) refers to mk_dma.o(.text.dma_open) for [Anonymous Symbol]
    mk_dma.o(.text.dma_close) refers to mk_clock.o(.text.clock_disable) for clock_disable
    mk_dma.o(.text.dma_close) refers to mk_dma.o(.data.dma_handle) for [Anonymous Symbol]
    mk_dma.o(.ARM.exidx.text.dma_close) refers to mk_dma.o(.text.dma_close) for [Anonymous Symbol]
    mk_dma.o(.text.get_uart1_dma_cndtr) refers to mk_dma.o(.data.dma_handle) for [Anonymous Symbol]
    mk_dma.o(.ARM.exidx.text.get_uart1_dma_cndtr) refers to mk_dma.o(.text.get_uart1_dma_cndtr) for [Anonymous Symbol]
    mk_dma.o(.text.get_uart0_dma_cndtr) refers to mk_dma.o(.data.dma_handle) for [Anonymous Symbol]
    mk_dma.o(.ARM.exidx.text.get_uart0_dma_cndtr) refers to mk_dma.o(.text.get_uart0_dma_cndtr) for [Anonymous Symbol]
    mk_dma.o(.text.dma_transfer) refers to mk_dma.o(.data.dma_handle) for [Anonymous Symbol]
    mk_dma.o(.ARM.exidx.text.dma_transfer) refers to mk_dma.o(.text.dma_transfer) for [Anonymous Symbol]
    mk_dma.o(.text.dma_abort) refers to mk_dma.o(.data.dma_handle) for [Anonymous Symbol]
    mk_dma.o(.ARM.exidx.text.dma_abort) refers to mk_dma.o(.text.dma_abort) for [Anonymous Symbol]
    mk_dma.o(.text.dma_force_abort) refers to mk_dma.o(.data.dma_handle) for [Anonymous Symbol]
    mk_dma.o(.ARM.exidx.text.dma_force_abort) refers to mk_dma.o(.text.dma_force_abort) for [Anonymous Symbol]
    mk_dma.o(.text.DMA_IRQHandler) refers to mk_dma.o(.data.dma_handle) for [Anonymous Symbol]
    mk_dma.o(.ARM.exidx.text.DMA_IRQHandler) refers to mk_dma.o(.text.DMA_IRQHandler) for [Anonymous Symbol]
    mk_flash.o(.text.flash_open) refers to memcpya.o(.text) for __aeabi_memcpy
    mk_flash.o(.text.flash_open) refers to mk_clock.o(.text.clock_enable) for clock_enable
    mk_flash.o(.text.flash_open) refers to mk_reset.o(.text.reset_module) for reset_module
    mk_flash.o(.text.flash_open) refers to mk_flash.o(.text.flash_reset_cmd) for flash_reset_cmd
    mk_flash.o(.text.flash_open) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_open) refers to mk_misc.o(.text.delay_us) for delay_us
    mk_flash.o(.text.flash_open) refers to mk_flash.o(.text.flash_wait_status) for flash_wait_status
    mk_flash.o(.text.flash_open) refers to mk_flash.o(.text.flash_write_quad_mode) for flash_write_quad_mode
    mk_flash.o(.text.flash_open) refers to mk_clock.o(.text.clock_set_divider) for clock_set_divider
    mk_flash.o(.text.flash_open) refers to mk_flash.o(.text.flash_write_mem_cmd) for flash_write_mem_cmd
    mk_flash.o(.text.flash_open) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_open) refers to mk_flash.o(.text.flash_open) for [Anonymous Symbol]
    mk_flash.o(.text.flash_reset_cmd) refers to mk_flash.o(.text.flash_wait_status) for flash_wait_status
    mk_flash.o(.text.flash_reset_cmd) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_reset_cmd) refers to mk_flash.o(.text.flash_reset_cmd) for [Anonymous Symbol]
    mk_flash.o(.text.flash_write_cmd) refers to mk_flash.o(.text.flash_wait_status) for flash_wait_status
    mk_flash.o(.text.flash_write_cmd) refers to mk_flash.o(.rodata.flash_cmd) for [Anonymous Symbol]
    mk_flash.o(.text.flash_write_cmd) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_write_cmd) refers to mk_flash.o(.text.flash_write_cmd) for [Anonymous Symbol]
    mk_flash.o(.text.flash_wait_status) refers to mk_misc.o(.text.sys_timer_get) for sys_timer_get
    mk_flash.o(.text.flash_wait_status) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_wait_status) refers to mk_flash.o(.text.flash_wait_status) for [Anonymous Symbol]
    mk_flash.o(.text.flash_write_quad_mode) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_write_quad_mode) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_flash.o(.text.flash_write_quad_mode) refers to mk_flash.o(.text.flash_wait_done) for flash_wait_done
    mk_flash.o(.text.flash_write_quad_mode) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.text.flash_write_quad_mode) refers to mk_misc.o(.bss.sys_timer_freq) for sys_timer_freq
    mk_flash.o(.ARM.exidx.text.flash_write_quad_mode) refers to mk_flash.o(.text.flash_write_quad_mode) for [Anonymous Symbol]
    mk_flash.o(.text.flash_write_mem_cmd) refers to mk_flash.o(.text.flash_wait_status) for flash_wait_status
    mk_flash.o(.text.flash_write_mem_cmd) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_write_mem_cmd) refers to mk_flash.o(.text.flash_write_mem_cmd) for [Anonymous Symbol]
    mk_flash.o(.text.flash_close) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_close) refers to mk_misc.o(.text.delay_us) for delay_us
    mk_flash.o(.text.flash_close) refers to mk_clock.o(.text.clock_disable) for clock_disable
    mk_flash.o(.text.flash_close) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_close) refers to mk_flash.o(.text.flash_close) for [Anonymous Symbol]
    mk_flash.o(.text.flash_open_for_xip) refers to mk_misc.o(.text.delay_us) for delay_us
    mk_flash.o(.text.flash_open_for_xip) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_open_for_xip) refers to mk_flash.o(.text.flash_open_for_xip) for [Anonymous Symbol]
    mk_flash.o(.text.flash_power_up) refers to mk_misc.o(.text.delay_us) for delay_us
    mk_flash.o(.text.flash_power_up) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_power_up) refers to mk_flash.o(.text.flash_power_up) for [Anonymous Symbol]
    mk_flash.o(.text.flash_power_down) refers to mk_misc.o(.text.delay_us) for delay_us
    mk_flash.o(.text.flash_power_down) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_power_down) refers to mk_flash.o(.text.flash_power_down) for [Anonymous Symbol]
    mk_flash.o(.text.flash_sector_erase) refers to mk_flash.o(.text.flash_state_update) for flash_state_update
    mk_flash.o(.text.flash_sector_erase) refers to mk_flash.o(.text.flash_reset_cmd) for flash_reset_cmd
    mk_flash.o(.text.flash_sector_erase) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_sector_erase) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_flash.o(.text.flash_sector_erase) refers to mk_flash.o(.text.flash_wait_done) for flash_wait_done
    mk_flash.o(.text.flash_sector_erase) refers to mk_flash.o(.text.flash_write_mem_cmd) for flash_write_mem_cmd
    mk_flash.o(.text.flash_sector_erase) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.text.flash_sector_erase) refers to mk_misc.o(.bss.sys_timer_freq) for sys_timer_freq
    mk_flash.o(.ARM.exidx.text.flash_sector_erase) refers to mk_flash.o(.text.flash_sector_erase) for [Anonymous Symbol]
    mk_flash.o(.text.flash_state_update) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_state_update) refers to mk_flash.o(.text.flash_state_update) for [Anonymous Symbol]
    mk_flash.o(.text.flash_wait_done) refers to mk_misc.o(.text.sys_timer_get) for sys_timer_get
    mk_flash.o(.text.flash_wait_done) refers to mk_flash.o(.text.flash_read_status) for flash_read_status
    mk_flash.o(.text.flash_wait_done) refers to mk_misc.o(.text.delay_us) for delay_us
    mk_flash.o(.ARM.exidx.text.flash_wait_done) refers to mk_flash.o(.text.flash_wait_done) for [Anonymous Symbol]
    mk_flash.o(.text.flash_block_erase) refers to mk_flash.o(.text.flash_state_update) for flash_state_update
    mk_flash.o(.text.flash_block_erase) refers to mk_flash.o(.text.flash_reset_cmd) for flash_reset_cmd
    mk_flash.o(.text.flash_block_erase) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_block_erase) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_flash.o(.text.flash_block_erase) refers to mk_flash.o(.text.flash_wait_done) for flash_wait_done
    mk_flash.o(.text.flash_block_erase) refers to mk_flash.o(.text.flash_write_mem_cmd) for flash_write_mem_cmd
    mk_flash.o(.text.flash_block_erase) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.text.flash_block_erase) refers to mk_misc.o(.bss.sys_timer_freq) for sys_timer_freq
    mk_flash.o(.ARM.exidx.text.flash_block_erase) refers to mk_flash.o(.text.flash_block_erase) for [Anonymous Symbol]
    mk_flash.o(.text.flash_erase) refers to uidiv.o(.text) for __aeabi_uidivmod
    mk_flash.o(.text.flash_erase) refers to mk_flash.o(.text.flash_sector_erase) for flash_sector_erase
    mk_flash.o(.text.flash_erase) refers to mk_flash.o(.text.flash_check_busy) for flash_check_busy
    mk_flash.o(.text.flash_erase) refers to mk_flash.o(.text.flash_block_erase) for flash_block_erase
    mk_flash.o(.text.flash_erase) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_erase) refers to mk_flash.o(.text.flash_erase) for [Anonymous Symbol]
    mk_flash.o(.text.flash_check_busy) refers to mk_flash.o(.text.flash_read_status) for flash_read_status
    mk_flash.o(.text.flash_check_busy) refers to mk_flash.o(.text.flash_write_mem_cmd) for flash_write_mem_cmd
    mk_flash.o(.text.flash_check_busy) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_check_busy) refers to mk_flash.o(.text.flash_check_busy) for [Anonymous Symbol]
    mk_flash.o(.text.flash_write_nbytes) refers to mk_flash.o(.text.flash_state_update) for flash_state_update
    mk_flash.o(.text.flash_write_nbytes) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_flash.o(.text.flash_write_nbytes) refers to mk_flash.o(.text.flash_reset_cmd) for flash_reset_cmd
    mk_flash.o(.text.flash_write_nbytes) refers to mk_flash.o(.text.flash_page_write_nbytes) for flash_page_write_nbytes
    mk_flash.o(.text.flash_write_nbytes) refers to memcpya.o(.text) for __aeabi_memcpy
    mk_flash.o(.text.flash_write_nbytes) refers to mk_dma.o(.text.dma_open) for dma_open
    mk_flash.o(.text.flash_write_nbytes) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_write_nbytes) refers to mk_flash.o(.text.flash_write_variable_len_cmd) for flash_write_variable_len_cmd
    mk_flash.o(.text.flash_write_nbytes) refers to mk_dma.o(.text.dma_transfer) for dma_transfer
    mk_flash.o(.text.flash_write_nbytes) refers to mk_flash.o(.text.flash_write_mem_cmd) for flash_write_mem_cmd
    mk_flash.o(.text.flash_write_nbytes) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.text.flash_write_nbytes) refers to mk_flash.o(.rodata.cst32) for .L__const.flash_write_nbytes.flash_wr_dma_cfg
    mk_flash.o(.text.flash_write_nbytes) refers to mk_flash.o(.text.flash_dma_write_nbytes_callback) for flash_dma_write_nbytes_callback
    mk_flash.o(.ARM.exidx.text.flash_write_nbytes) refers to mk_flash.o(.text.flash_write_nbytes) for [Anonymous Symbol]
    mk_flash.o(.text.flash_write_variable_len_cmd) refers to mk_flash.o(.text.flash_wait_status) for flash_wait_status
    mk_flash.o(.text.flash_write_variable_len_cmd) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_write_variable_len_cmd) refers to mk_flash.o(.text.flash_write_variable_len_cmd) for [Anonymous Symbol]
    mk_flash.o(.text.flash_dma_write_nbytes_callback) refers to mk_misc.o(.text.delay_us) for delay_us
    mk_flash.o(.text.flash_dma_write_nbytes_callback) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_dma_write_nbytes_callback) refers to mk_flash.o(.text.flash_write_variable_len_cmd) for flash_write_variable_len_cmd
    mk_flash.o(.text.flash_dma_write_nbytes_callback) refers to mk_dma.o(.text.dma_transfer) for dma_transfer
    mk_flash.o(.text.flash_dma_write_nbytes_callback) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_dma_write_nbytes_callback) refers to mk_flash.o(.text.flash_dma_write_nbytes_callback) for [Anonymous Symbol]
    mk_flash.o(.text.flash_page_write_nbytes) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_page_write_nbytes) refers to mk_flash.o(.text.flash_write_variable_len_cmd) for flash_write_variable_len_cmd
    mk_flash.o(.text.flash_page_write_nbytes) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_flash.o(.text.flash_page_write_nbytes) refers to mk_flash.o(.text.flash_wait_done) for flash_wait_done
    mk_flash.o(.text.flash_page_write_nbytes) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.text.flash_page_write_nbytes) refers to mk_misc.o(.bss.sys_timer_freq) for sys_timer_freq
    mk_flash.o(.ARM.exidx.text.flash_page_write_nbytes) refers to mk_flash.o(.text.flash_page_write_nbytes) for [Anonymous Symbol]
    mk_flash.o(.text.flash_write) refers to uidiv.o(.text) for __aeabi_uidivmod
    mk_flash.o(.text.flash_write) refers to mk_flash.o(.text.flash_state_update) for flash_state_update
    mk_flash.o(.text.flash_write) refers to mk_flash.o(.text.flash_reset_cmd) for flash_reset_cmd
    mk_flash.o(.text.flash_write) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_write) refers to mk_flash.o(.text.flash_wait_done) for flash_wait_done
    mk_flash.o(.text.flash_write) refers to memcpya.o(.text) for __aeabi_memcpy
    mk_flash.o(.text.flash_write) refers to mk_dma.o(.text.dma_open) for dma_open
    mk_flash.o(.text.flash_write) refers to mk_dma.o(.text.dma_transfer) for dma_transfer
    mk_flash.o(.text.flash_write) refers to mk_flash.o(.text.flash_write_mem_cmd) for flash_write_mem_cmd
    mk_flash.o(.text.flash_write) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.text.flash_write) refers to mk_flash.o(.rodata.cst32) for .L__const.flash_write.flash_wr_dma_cfg
    mk_flash.o(.text.flash_write) refers to mk_flash.o(.text.flash_dma_callback) for flash_dma_callback
    mk_flash.o(.text.flash_write) refers to mk_misc.o(.bss.sys_timer_freq) for sys_timer_freq
    mk_flash.o(.ARM.exidx.text.flash_write) refers to mk_flash.o(.text.flash_write) for [Anonymous Symbol]
    mk_flash.o(.text.flash_dma_callback) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_dma_callback) refers to mk_dma.o(.text.dma_transfer) for dma_transfer
    mk_flash.o(.text.flash_dma_callback) refers to mk_flash.o(.text.flash_reset_cmd) for flash_reset_cmd
    mk_flash.o(.text.flash_dma_callback) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_dma_callback) refers to mk_flash.o(.text.flash_dma_callback) for [Anonymous Symbol]
    mk_flash.o(.text.flash_read) refers to mk_flash.o(.text.flash_state_update) for flash_state_update
    mk_flash.o(.text.flash_read) refers to mk_flash.o(.text.flash_reset_cmd) for flash_reset_cmd
    mk_flash.o(.text.flash_read) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_flash.o(.text.flash_read) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_read) refers to memcpya.o(.text) for __aeabi_memcpy
    mk_flash.o(.text.flash_read) refers to mk_dma.o(.text.dma_open) for dma_open
    mk_flash.o(.text.flash_read) refers to mk_dma.o(.text.dma_transfer) for dma_transfer
    mk_flash.o(.text.flash_read) refers to mk_flash.o(.text.flash_write_mem_cmd) for flash_write_mem_cmd
    mk_flash.o(.text.flash_read) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.text.flash_read) refers to mk_flash.o(.rodata.cst32) for .L__const.flash_read.flash_rd_dma_cfg
    mk_flash.o(.text.flash_read) refers to mk_flash.o(.text.flash_dma_callback) for flash_dma_callback
    mk_flash.o(.ARM.exidx.text.flash_read) refers to mk_flash.o(.text.flash_read) for [Anonymous Symbol]
    mk_flash.o(.text.FLASH_CTRL_IRQHandler) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.FLASH_CTRL_IRQHandler) refers to mk_flash.o(.text.FLASH_CTRL_IRQHandler) for [Anonymous Symbol]
    mk_flash.o(.text.flash_read_status) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_read_status) refers to mk_flash.o(.text.flash_wait_status) for flash_wait_status
    mk_flash.o(.text.flash_read_status) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_read_status) refers to mk_flash.o(.text.flash_read_status) for [Anonymous Symbol]
    mk_reset.o(.ARM.exidx.text.reset_cause_get) refers to mk_reset.o(.text.reset_cause_get) for [Anonymous Symbol]
    mk_reset.o(.ARM.exidx.text.reset_cause_clear) refers to mk_reset.o(.text.reset_cause_clear) for [Anonymous Symbol]
    mk_reset.o(.ARM.exidx.text.reset_module) refers to mk_reset.o(.text.reset_module) for [Anonymous Symbol]
    mk_uart.o(.text.Serial0KeyPressed) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.Serial0KeyPressed) refers to mk_uart.o(.text.Serial0KeyPressed) for [Anonymous Symbol]
    mk_uart.o(.text.SerialKeyPressed) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.SerialKeyPressed) refers to mk_uart.o(.text.SerialKeyPressed) for [Anonymous Symbol]
    mk_uart.o(.text.SerialPutChar) refers to mk_uart.o(.text.uart_send) for uart_send
    mk_uart.o(.text.SerialPutChar) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.SerialPutChar) refers to mk_uart.o(.text.SerialPutChar) for [Anonymous Symbol]
    mk_uart.o(.text.uart_send) refers to mk_uart.o(.text.uart_state_set) for uart_state_set
    mk_uart.o(.text.uart_send) refers to memseta.o(.text) for __aeabi_memclr4
    mk_uart.o(.text.uart_send) refers to mk_dma.o(.text.dma_open) for dma_open
    mk_uart.o(.text.uart_send) refers to mk_dma.o(.text.dma_transfer) for dma_transfer
    mk_uart.o(.text.uart_send) refers to mk_uart.o(.text.uart_state_clear) for uart_state_clear
    mk_uart.o(.text.uart_send) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.text.uart_send) refers to mk_uart.o(.text.uart_dma_callback) for uart_dma_callback
    mk_uart.o(.ARM.exidx.text.uart_send) refers to mk_uart.o(.text.uart_send) for [Anonymous Symbol]
    mk_uart.o(.text.Serial_PutString) refers to mk_uart.o(.text.SerialPutChar) for SerialPutChar
    mk_uart.o(.ARM.exidx.text.Serial_PutString) refers to mk_uart.o(.text.Serial_PutString) for [Anonymous Symbol]
    mk_uart.o(.text.Serial0PutChar) refers to mk_uart.o(.text.uart_send) for uart_send
    mk_uart.o(.text.Serial0PutChar) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.Serial0PutChar) refers to mk_uart.o(.text.Serial0PutChar) for [Anonymous Symbol]
    mk_uart.o(.text.Serial0_PutString) refers to mk_uart.o(.text.Serial0PutChar) for Serial0PutChar
    mk_uart.o(.ARM.exidx.text.Serial0_PutString) refers to mk_uart.o(.text.Serial0_PutString) for [Anonymous Symbol]
    mk_uart.o(.text.uart_state_get) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.uart_state_get) refers to mk_uart.o(.text.uart_state_get) for [Anonymous Symbol]
    mk_uart.o(.text.uart_tx_in_progress) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.uart_tx_in_progress) refers to mk_uart.o(.text.uart_tx_in_progress) for [Anonymous Symbol]
    mk_uart.o(.text.uart_fifo_busy) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.uart_fifo_busy) refers to mk_uart.o(.text.uart_fifo_busy) for [Anonymous Symbol]
    mk_uart.o(.text.uart_rx_fifo_clear) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.uart_rx_fifo_clear) refers to mk_uart.o(.text.uart_rx_fifo_clear) for [Anonymous Symbol]
    mk_uart.o(.text.uart_baud_set) refers to mk_clock.o(.text.clock_set_divider) for clock_set_divider
    mk_uart.o(.text.uart_baud_set) refers to mk_misc.o(.text.delay_us) for delay_us
    mk_uart.o(.text.uart_baud_set) refers to mk_uart.o(.rodata.baud_table) for [Anonymous Symbol]
    mk_uart.o(.text.uart_baud_set) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.uart_baud_set) refers to mk_uart.o(.text.uart_baud_set) for [Anonymous Symbol]
    mk_uart.o(.text.uart_open) refers to mk_clock.o(.text.clock_enable) for clock_enable
    mk_uart.o(.text.uart_open) refers to mk_reset.o(.text.reset_module) for reset_module
    mk_uart.o(.text.uart_open) refers to mk_uart.o(.text.uart_baud_set) for uart_baud_set
    mk_uart.o(.text.uart_open) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.uart_open) refers to mk_uart.o(.text.uart_open) for [Anonymous Symbol]
    mk_uart.o(.text.uart_close) refers to mk_clock.o(.text.clock_disable) for clock_disable
    mk_uart.o(.text.uart_close) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.uart_close) refers to mk_uart.o(.text.uart_close) for [Anonymous Symbol]
    mk_uart.o(.text.uart_state_set) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.uart_state_set) refers to mk_uart.o(.text.uart_state_set) for [Anonymous Symbol]
    mk_uart.o(.text.uart_dma_callback) refers to mk_uart.o(.text.uart_state_clear) for uart_state_clear
    mk_uart.o(.text.uart_dma_callback) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.uart_dma_callback) refers to mk_uart.o(.text.uart_dma_callback) for [Anonymous Symbol]
    mk_uart.o(.text.uart_state_clear) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.uart_state_clear) refers to mk_uart.o(.text.uart_state_clear) for [Anonymous Symbol]
    mk_uart.o(.text.uart_receive) refers to mk_uart.o(.text.uart_state_set) for uart_state_set
    mk_uart.o(.text.uart_receive) refers to mk_dma.o(.text.dma_open) for dma_open
    mk_uart.o(.text.uart_receive) refers to mk_dma.o(.text.dma_transfer) for dma_transfer
    mk_uart.o(.text.uart_receive) refers to mk_uart.o(.text.uart_state_clear) for uart_state_clear
    mk_uart.o(.text.uart_receive) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.text.uart_receive) refers to mk_uart.o(.text.uart_dma_callback) for uart_dma_callback
    mk_uart.o(.ARM.exidx.text.uart_receive) refers to mk_uart.o(.text.uart_receive) for [Anonymous Symbol]
    mk_uart.o(.text.uart_tx_abort_dma) refers to mk_dma.o(.text.dma_abort) for dma_abort
    mk_uart.o(.text.uart_tx_abort_dma) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.text.uart_tx_abort_dma) refers to mk_uart.o(.text.uart_dma_abort_callback) for uart_dma_abort_callback
    mk_uart.o(.ARM.exidx.text.uart_tx_abort_dma) refers to mk_uart.o(.text.uart_tx_abort_dma) for [Anonymous Symbol]
    mk_uart.o(.text.uart_dma_abort_callback) refers to mk_uart.o(.text.uart_state_clear) for uart_state_clear
    mk_uart.o(.text.uart_dma_abort_callback) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.uart_dma_abort_callback) refers to mk_uart.o(.text.uart_dma_abort_callback) for [Anonymous Symbol]
    mk_uart.o(.text.uart_rx_abort_dma) refers to mk_dma.o(.text.dma_abort) for dma_abort
    mk_uart.o(.text.uart_rx_abort_dma) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.text.uart_rx_abort_dma) refers to mk_uart.o(.text.uart_dma_abort_callback) for uart_dma_abort_callback
    mk_uart.o(.ARM.exidx.text.uart_rx_abort_dma) refers to mk_uart.o(.text.uart_rx_abort_dma) for [Anonymous Symbol]
    mk_uart.o(.text.uart_irq_handler) refers to mk_uart.o(.text.uart_state_clear) for uart_state_clear
    mk_uart.o(.text.uart_irq_handler) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.uart_irq_handler) refers to mk_uart.o(.text.uart_irq_handler) for [Anonymous Symbol]
    mk_uart.o(.text.UART0_IRQHandler) refers to mk_uart.o(.text.uart_irq_handler) for uart_irq_handler
    mk_uart.o(.ARM.exidx.text.UART0_IRQHandler) refers to mk_uart.o(.text.UART0_IRQHandler) for [Anonymous Symbol]
    mk_uart.o(.text.UART1_IRQHandler) refers to mk_uart.o(.text.uart_irq_handler) for uart_irq_handler
    mk_uart.o(.ARM.exidx.text.UART1_IRQHandler) refers to mk_uart.o(.text.UART1_IRQHandler) for [Anonymous Symbol]
    mk_uart.o(.text.uart_printf_init) refers to memcpya.o(.text) for __aeabi_memcpy
    mk_uart.o(.text.uart_printf_init) refers to mk_uart.o(.text.uart_open) for uart_open
    mk_uart.o(.text.uart_printf_init) refers to mk_uart.o(.rodata.cst32) for .L__const.uart_printf_init.uart_print_cfg
    mk_uart.o(.ARM.exidx.text.uart_printf_init) refers to mk_uart.o(.text.uart_printf_init) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.uart_printf) refers to mk_uart.o(.text.uart_printf) for [Anonymous Symbol]
    aes.o(.ARM.exidx.text.CalcPowLog) refers to aes.o(.text.CalcPowLog) for [Anonymous Symbol]
    aes.o(.text.CalcSBox) refers to aes.o(.bss..L_MergedGlobals) for [Anonymous Symbol]
    aes.o(.ARM.exidx.text.CalcSBox) refers to aes.o(.text.CalcSBox) for [Anonymous Symbol]
    aes.o(.ARM.exidx.text.CalcSBoxInv) refers to aes.o(.text.CalcSBoxInv) for [Anonymous Symbol]
    aes.o(.ARM.exidx.text.CycleLeft) refers to aes.o(.text.CycleLeft) for [Anonymous Symbol]
    aes.o(.ARM.exidx.text.CalcCols) refers to aes.o(.text.CalcCols) for [Anonymous Symbol]
    aes.o(.text.InvMixColumn) refers to aes.o(.text.CalcCols) for CalcCols
    aes.o(.ARM.exidx.text.InvMixColumn) refers to aes.o(.text.InvMixColumn) for [Anonymous Symbol]
    aes.o(.text.SubBytes) refers to aes.o(.bss..L_MergedGlobals) for [Anonymous Symbol]
    aes.o(.ARM.exidx.text.SubBytes) refers to aes.o(.text.SubBytes) for [Anonymous Symbol]
    aes.o(.text.InvSubBytesAndXOR) refers to aes.o(.bss.block2) for block2
    aes.o(.ARM.exidx.text.InvSubBytesAndXOR) refers to aes.o(.text.InvSubBytesAndXOR) for [Anonymous Symbol]
    aes.o(.ARM.exidx.text.InvShiftRows) refers to aes.o(.text.InvShiftRows) for [Anonymous Symbol]
    aes.o(.ARM.exidx.text.XORBytes) refers to aes.o(.text.XORBytes) for [Anonymous Symbol]
    aes.o(.ARM.exidx.text.CopyBytes) refers to aes.o(.text.CopyBytes) for [Anonymous Symbol]
    aes.o(.text.KeyExpansion) refers to aes.o(.text.CopyBytes) for CopyBytes
    aes.o(.text.KeyExpansion) refers to aes.o(.text.SubBytes) for SubBytes
    aes.o(.text.KeyExpansion) refers to aes.o(.text.XORBytes) for XORBytes
    aes.o(.text.KeyExpansion) refers to aes.o(.rodata.kTable) for kTable
    aes.o(.ARM.exidx.text.KeyExpansion) refers to aes.o(.text.KeyExpansion) for [Anonymous Symbol]
    aes.o(.text.InvCipher) refers to aes.o(.text.XORBytes) for XORBytes
    aes.o(.text.InvCipher) refers to aes.o(.text.InvShiftRows) for InvShiftRows
    aes.o(.text.InvCipher) refers to aes.o(.text.InvSubBytesAndXOR) for InvSubBytesAndXOR
    aes.o(.text.InvCipher) refers to aes.o(.text.InvMixColumn) for InvMixColumn
    aes.o(.ARM.exidx.text.InvCipher) refers to aes.o(.text.InvCipher) for [Anonymous Symbol]
    aes.o(.text.aesDecInit) refers to aes.o(.text.CalcPowLog) for CalcPowLog
    aes.o(.text.aesDecInit) refers to aes.o(.text.CalcSBox) for CalcSBox
    aes.o(.text.aesDecInit) refers to aes.o(.text.KeyExpansion) for KeyExpansion
    aes.o(.text.aesDecInit) refers to aes.o(.text.CalcSBoxInv) for CalcSBoxInv
    aes.o(.text.aesDecInit) refers to aes.o(.bss..L_MergedGlobals) for [Anonymous Symbol]
    aes.o(.text.aesDecInit) refers to aes.o(.bss.block2) for block2
    aes.o(.text.aesDecInit) refers to aes.o(.bss.block1) for block1
    aes.o(.text.aesDecInit) refers to aes.o(.bss.tempbuf) for tempbuf
    aes.o(.ARM.exidx.text.aesDecInit) refers to aes.o(.text.aesDecInit) for [Anonymous Symbol]
    aes.o(.text.aesDecrypt) refers to aes.o(.text.aesDecInit) for aesDecInit
    aes.o(.text.aesDecrypt) refers to aes.o(.text.CopyBytes) for CopyBytes
    aes.o(.text.aesDecrypt) refers to aes.o(.text.InvCipher) for InvCipher
    aes.o(.text.aesDecrypt) refers to aes.o(.text.XORBytes) for XORBytes
    aes.o(.text.aesDecrypt) refers to aes.o(.bss.tempbuf) for tempbuf
    aes.o(.text.aesDecrypt) refers to aes.o(.bss..L_MergedGlobals) for [Anonymous Symbol]
    aes.o(.ARM.exidx.text.aesDecrypt) refers to aes.o(.text.aesDecrypt) for [Anonymous Symbol]
    aes.o(.ARM.exidx.text.Multiply) refers to aes.o(.text.Multiply) for [Anonymous Symbol]
    aes.o(.text.DotProduct) refers to aes.o(.text.Multiply) for Multiply
    aes.o(.ARM.exidx.text.DotProduct) refers to aes.o(.text.DotProduct) for [Anonymous Symbol]
    aes.o(.text.MixColumn) refers to aes.o(.text.CopyBytes) for CopyBytes
    aes.o(.text.MixColumn) refers to aes.o(.text.DotProduct) for DotProduct
    aes.o(.ARM.exidx.text.MixColumn) refers to aes.o(.text.MixColumn) for [Anonymous Symbol]
    aes.o(.ARM.exidx.text.ShiftRows) refers to aes.o(.text.ShiftRows) for [Anonymous Symbol]
    aes.o(.text.Cipher) refers to aes.o(.text.XORBytes) for XORBytes
    aes.o(.text.Cipher) refers to aes.o(.text.SubBytes) for SubBytes
    aes.o(.text.Cipher) refers to aes.o(.text.ShiftRows) for ShiftRows
    aes.o(.text.Cipher) refers to aes.o(.text.MixColumn) for MixColumn
    aes.o(.ARM.exidx.text.Cipher) refers to aes.o(.text.Cipher) for [Anonymous Symbol]
    aes.o(.text.aesEncInit) refers to aes.o(.text.CalcPowLog) for CalcPowLog
    aes.o(.text.aesEncInit) refers to aes.o(.text.CalcSBox) for CalcSBox
    aes.o(.text.aesEncInit) refers to aes.o(.text.KeyExpansion) for KeyExpansion
    aes.o(.text.aesEncInit) refers to aes.o(.bss..L_MergedGlobals) for [Anonymous Symbol]
    aes.o(.text.aesEncInit) refers to aes.o(.bss.block2) for block2
    aes.o(.text.aesEncInit) refers to aes.o(.bss.block1) for block1
    aes.o(.ARM.exidx.text.aesEncInit) refers to aes.o(.text.aesEncInit) for [Anonymous Symbol]
    aes.o(.text.aesEncrypt) refers to aes.o(.text.aesEncInit) for aesEncInit
    aes.o(.text.aesEncrypt) refers to aes.o(.text.XORBytes) for XORBytes
    aes.o(.text.aesEncrypt) refers to aes.o(.text.Cipher) for Cipher
    aes.o(.text.aesEncrypt) refers to aes.o(.text.CopyBytes) for CopyBytes
    aes.o(.text.aesEncrypt) refers to aes.o(.bss..L_MergedGlobals) for [Anonymous Symbol]
    aes.o(.ARM.exidx.text.aesEncrypt) refers to aes.o(.text.aesEncrypt) for [Anonymous Symbol]
    mk_gpio.o(.text.gpio_open) refers to mk_clock.o(.text.clock_enable) for clock_enable
    mk_gpio.o(.text.gpio_open) refers to mk_reset.o(.text.reset_module) for reset_module
    mk_gpio.o(.ARM.exidx.text.gpio_open) refers to mk_gpio.o(.text.gpio_open) for [Anonymous Symbol]
    mk_gpio.o(.text.gpio_close) refers to mk_clock.o(.text.clock_disable) for clock_disable
    mk_gpio.o(.ARM.exidx.text.gpio_close) refers to mk_gpio.o(.text.gpio_close) for [Anonymous Symbol]
    mk_gpio.o(.text.gpio_write) refers to mk_gpio.o(.data.gpio_handle) for [Anonymous Symbol]
    mk_gpio.o(.ARM.exidx.text.gpio_write) refers to mk_gpio.o(.text.gpio_write) for [Anonymous Symbol]
    mk_gpio.o(.text.gpio_read) refers to mk_gpio.o(.data.gpio_handle) for [Anonymous Symbol]
    mk_gpio.o(.ARM.exidx.text.gpio_read) refers to mk_gpio.o(.text.gpio_read) for [Anonymous Symbol]
    mk_gpio.o(.text.gpio_pin_set) refers to mk_gpio.o(.data.gpio_handle) for [Anonymous Symbol]
    mk_gpio.o(.ARM.exidx.text.gpio_pin_set) refers to mk_gpio.o(.text.gpio_pin_set) for [Anonymous Symbol]
    mk_gpio.o(.text.gpio_pin_clr) refers to mk_gpio.o(.data.gpio_handle) for [Anonymous Symbol]
    mk_gpio.o(.ARM.exidx.text.gpio_pin_clr) refers to mk_gpio.o(.text.gpio_pin_clr) for [Anonymous Symbol]
    mk_gpio.o(.text.gpio_pin_toggle) refers to mk_gpio.o(.data.gpio_handle) for [Anonymous Symbol]
    mk_gpio.o(.ARM.exidx.text.gpio_pin_toggle) refers to mk_gpio.o(.text.gpio_pin_toggle) for [Anonymous Symbol]
    mk_gpio.o(.text.gpio_pin_get_val) refers to mk_gpio.o(.data.gpio_handle) for [Anonymous Symbol]
    mk_gpio.o(.ARM.exidx.text.gpio_pin_get_val) refers to mk_gpio.o(.text.gpio_pin_get_val) for [Anonymous Symbol]
    mk_gpio.o(.text.gpio_pin_set_dir) refers to mk_gpio.o(.data.gpio_handle) for [Anonymous Symbol]
    mk_gpio.o(.ARM.exidx.text.gpio_pin_set_dir) refers to mk_gpio.o(.text.gpio_pin_set_dir) for [Anonymous Symbol]
    mk_gpio.o(.text.gpio_enable_irq) refers to mk_gpio.o(.data.gpio_handle) for [Anonymous Symbol]
    mk_gpio.o(.ARM.exidx.text.gpio_enable_irq) refers to mk_gpio.o(.text.gpio_enable_irq) for [Anonymous Symbol]
    mk_gpio.o(.text.gpio_disable_irq) refers to mk_gpio.o(.data.gpio_handle) for [Anonymous Symbol]
    mk_gpio.o(.ARM.exidx.text.gpio_disable_irq) refers to mk_gpio.o(.text.gpio_disable_irq) for [Anonymous Symbol]
    mk_gpio.o(.text.GPIO_IRQHandler) refers to mk_gpio.o(.data.gpio_handle) for [Anonymous Symbol]
    mk_gpio.o(.ARM.exidx.text.GPIO_IRQHandler) refers to mk_gpio.o(.text.GPIO_IRQHandler) for [Anonymous Symbol]
    mk_calib.o(.text.calib_open) refers to mk_clock.o(.text.clock_enable) for clock_enable
    mk_calib.o(.text.calib_open) refers to mk_reset.o(.text.reset_module) for reset_module
    mk_calib.o(.ARM.exidx.text.calib_open) refers to mk_calib.o(.text.calib_open) for [Anonymous Symbol]
    mk_calib.o(.text.calib_close) refers to mk_clock.o(.text.clock_disable) for clock_disable
    mk_calib.o(.ARM.exidx.text.calib_close) refers to mk_calib.o(.text.calib_close) for [Anonymous Symbol]
    mk_calib.o(.ARM.exidx.text.calib_start) refers to mk_calib.o(.text.calib_start) for [Anonymous Symbol]
    mk_calib.o(.ARM.exidx.text.calib_check) refers to mk_calib.o(.text.calib_check) for [Anonymous Symbol]
    mk_calib.o(.text.calib_chip) refers to mk_clock.o(.text.clock_enable) for clock_enable
    mk_calib.o(.text.calib_chip) refers to mk_misc.o(.text.mk_chip_id) for mk_chip_id
    mk_calib.o(.text.calib_chip) refers to board.o(.bss.board_param) for board_param
    mk_calib.o(.ARM.exidx.text.calib_chip) refers to mk_calib.o(.text.calib_chip) for [Anonymous Symbol]
    mk_calib.o(.ARM.exidx.text.calib_xtal38m4_load_cap_set) refers to mk_calib.o(.text.calib_xtal38m4_load_cap_set) for [Anonymous Symbol]
    mk_calib.o(.ARM.exidx.text.calib_xtal32k_load_cap_set) refers to mk_calib.o(.text.calib_xtal32k_load_cap_set) for [Anonymous Symbol]
    mk_calib.o(.ARM.exidx.text.calib_xtal38m4_load_cap_auto_tune) refers to mk_calib.o(.text.calib_xtal38m4_load_cap_auto_tune) for [Anonymous Symbol]
    mk_calib.o(.ARM.exidx.text.calib_xtal38m4_with_clock_out) refers to mk_calib.o(.text.calib_xtal38m4_with_clock_out) for [Anonymous Symbol]
    mk_calib.o(.ARM.exidx.text.calib_xtal32k_with_clock_out) refers to mk_calib.o(.text.calib_xtal32k_with_clock_out) for [Anonymous Symbol]
    mk_calib.o(.ARM.exidx.text.CALIB_IRQHandler) refers to mk_calib.o(.text.CALIB_IRQHandler) for [Anonymous Symbol]
    mk_wdt.o(.text.wdt_open) refers to mk_clock.o(.text.clock_enable) for clock_enable
    mk_wdt.o(.text.wdt_open) refers to mk_reset.o(.text.reset_module) for reset_module
    mk_wdt.o(.text.wdt_open) refers to mk_wdt.o(.data.wdt_handle) for [Anonymous Symbol]
    mk_wdt.o(.ARM.exidx.text.wdt_open) refers to mk_wdt.o(.text.wdt_open) for [Anonymous Symbol]
    mk_wdt.o(.text.wdt_close) refers to mk_clock.o(.text.clock_disable) for clock_disable
    mk_wdt.o(.text.wdt_close) refers to mk_wdt.o(.data.wdt_handle) for [Anonymous Symbol]
    mk_wdt.o(.ARM.exidx.text.wdt_close) refers to mk_wdt.o(.text.wdt_close) for [Anonymous Symbol]
    mk_wdt.o(.text.wdt_set_time) refers to mk_wdt.o(.data.wdt_handle) for [Anonymous Symbol]
    mk_wdt.o(.ARM.exidx.text.wdt_set_time) refers to mk_wdt.o(.text.wdt_set_time) for [Anonymous Symbol]
    mk_wdt.o(.text.wdt_ping) refers to mk_wdt.o(.data.wdt_handle) for [Anonymous Symbol]
    mk_wdt.o(.ARM.exidx.text.wdt_ping) refers to mk_wdt.o(.text.wdt_ping) for [Anonymous Symbol]
    mk_wdt.o(.text.wdt_time_left) refers to mk_wdt.o(.data.wdt_handle) for [Anonymous Symbol]
    mk_wdt.o(.ARM.exidx.text.wdt_time_left) refers to mk_wdt.o(.text.wdt_time_left) for [Anonymous Symbol]
    mk_wdt.o(.text.WDT_IRQHandler) refers to mk_wdt.o(.data.wdt_handle) for [Anonymous Symbol]
    mk_wdt.o(.ARM.exidx.text.WDT_IRQHandler) refers to mk_wdt.o(.text.WDT_IRQHandler) for [Anonymous Symbol]
    mk_io.o(.ARM.exidx.text.io_pin_mux_set) refers to mk_io.o(.text.io_pin_mux_set) for [Anonymous Symbol]
    mk_io.o(.ARM.exidx.text.io_open_drain_set) refers to mk_io.o(.text.io_open_drain_set) for [Anonymous Symbol]
    mk_io.o(.ARM.exidx.text.io_drive_set) refers to mk_io.o(.text.io_drive_set) for [Anonymous Symbol]
    mk_io.o(.ARM.exidx.text.io_pull_set) refers to mk_io.o(.text.io_pull_set) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.mk_chip_id) refers to mk_misc.o(.text.mk_chip_id) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.mk_chip_uuid) refers to mk_misc.o(.text.mk_chip_uuid) for [Anonymous Symbol]
    mk_misc.o(.text.bod_open) refers to mk_misc.o(.rodata.cst8) for default_bor_cfg
    mk_misc.o(.ARM.exidx.text.bod_open) refers to mk_misc.o(.text.bod_open) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.bod_close) refers to mk_misc.o(.text.bod_close) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.BOD_IRQHandler) refers to mk_misc.o(.text.BOD_IRQHandler) for [Anonymous Symbol]
    mk_misc.o(.text.bor_open) refers to mk_misc.o(.rodata.cst8) for default_bor_cfg
    mk_misc.o(.ARM.exidx.text.bor_open) refers to mk_misc.o(.text.bor_open) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.bor_close) refers to mk_misc.o(.text.bor_close) for [Anonymous Symbol]
    mk_misc.o(.text.sys_timer_open) refers to memcpya.o(.text) for __aeabi_memcpy
    mk_misc.o(.text.sys_timer_open) refers to mk_dual_timer.o(.text.dual_timer_open) for dual_timer_open
    mk_misc.o(.text.sys_timer_open) refers to mk_dual_timer.o(.text.dual_timer_start) for dual_timer_start
    mk_misc.o(.text.sys_timer_open) refers to mk_clock.o(.text.clock_get_frequency) for clock_get_frequency
    mk_misc.o(.text.sys_timer_open) refers to mk_misc.o(.rodata..L__const.sys_timer_open.sys_timer_cfg) for [Anonymous Symbol]
    mk_misc.o(.text.sys_timer_open) refers to mk_misc.o(.bss.sys_timer_freq) for sys_timer_freq
    mk_misc.o(.ARM.exidx.text.sys_timer_open) refers to mk_misc.o(.text.sys_timer_open) for [Anonymous Symbol]
    mk_misc.o(.text.sys_timer_close) refers to mk_dual_timer.o(.text.dual_timer_close) for dual_timer_close
    mk_misc.o(.ARM.exidx.text.sys_timer_close) refers to mk_misc.o(.text.sys_timer_close) for [Anonymous Symbol]
    mk_misc.o(.text.sys_timer_get) refers to mk_dual_timer.o(.text.dual_timer_get) for dual_timer_get
    mk_misc.o(.ARM.exidx.text.sys_timer_get) refers to mk_misc.o(.text.sys_timer_get) for [Anonymous Symbol]
    mk_misc.o(.text.sys_timer_delay_us) refers to mk_dual_timer.o(.text.dual_timer_get) for dual_timer_get
    mk_misc.o(.text.sys_timer_delay_us) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_misc.o(.text.sys_timer_delay_us) refers to mk_misc.o(.bss.sys_timer_freq) for sys_timer_freq
    mk_misc.o(.ARM.exidx.text.sys_timer_delay_us) refers to mk_misc.o(.text.sys_timer_delay_us) for [Anonymous Symbol]
    mk_misc.o(.text.sys_timer_delay_ms) refers to mk_dual_timer.o(.text.dual_timer_get) for dual_timer_get
    mk_misc.o(.text.sys_timer_delay_ms) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_misc.o(.text.sys_timer_delay_ms) refers to mk_misc.o(.bss.sys_timer_freq) for sys_timer_freq
    mk_misc.o(.ARM.exidx.text.sys_timer_delay_ms) refers to mk_misc.o(.text.sys_timer_delay_ms) for [Anonymous Symbol]
    mk_misc.o(.text.mac_timer_open) refers to memcpya.o(.text) for __aeabi_memcpy
    mk_misc.o(.text.mac_timer_open) refers to mk_dual_timer.o(.text.dual_timer_open) for dual_timer_open
    mk_misc.o(.text.mac_timer_open) refers to mk_misc.o(.rodata..L__const.mac_timer_open.mac_timer_cfg) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.mac_timer_open) refers to mk_misc.o(.text.mac_timer_open) for [Anonymous Symbol]
    mk_misc.o(.text.mac_timer_close) refers to mk_dual_timer.o(.text.dual_timer_close) for dual_timer_close
    mk_misc.o(.ARM.exidx.text.mac_timer_close) refers to mk_misc.o(.text.mac_timer_close) for [Anonymous Symbol]
    mk_misc.o(.text.mac_timer_start) refers to mk_dual_timer.o(.text.dual_timer_start) for dual_timer_start
    mk_misc.o(.ARM.exidx.text.mac_timer_start) refers to mk_misc.o(.text.mac_timer_start) for [Anonymous Symbol]
    mk_misc.o(.text.mac_timer_stop) refers to mk_dual_timer.o(.text.dual_timer_stop) for dual_timer_stop
    mk_misc.o(.ARM.exidx.text.mac_timer_stop) refers to mk_misc.o(.text.mac_timer_stop) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.sys_tick_start) refers to mk_misc.o(.text.sys_tick_start) for [Anonymous Symbol]
    mk_misc.o(.text.sys_tick_us) refers to mk_misc.o(.bss.sys_tick_env) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.sys_tick_us) refers to mk_misc.o(.text.sys_tick_us) for [Anonymous Symbol]
    mk_misc.o(.text.sys_tick_ms) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_misc.o(.text.sys_tick_ms) refers to mk_misc.o(.bss.sys_tick_env) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.sys_tick_ms) refers to mk_misc.o(.text.sys_tick_ms) for [Anonymous Symbol]
    mk_misc.o(.text.sys_tick_get) refers to mk_misc.o(.bss.sys_tick_env) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.sys_tick_get) refers to mk_misc.o(.text.sys_tick_get) for [Anonymous Symbol]
    mk_misc.o(.text.sys_tick_callback_set) refers to mk_misc.o(.bss.sys_tick_env) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.sys_tick_callback_set) refers to mk_misc.o(.text.sys_tick_callback_set) for [Anonymous Symbol]
    mk_misc.o(.text.sys_tick_elapse_ms) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_misc.o(.ARM.exidx.text.sys_tick_elapse_ms) refers to mk_misc.o(.text.sys_tick_elapse_ms) for [Anonymous Symbol]
    mk_misc.o(.text.sys_tick_pause) refers to mk_misc.o(.bss.sys_tick_env) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.sys_tick_pause) refers to mk_misc.o(.text.sys_tick_pause) for [Anonymous Symbol]
    mk_misc.o(.text.sys_tick_resume) refers to mk_misc.o(.text.sys_tick_start) for sys_tick_start
    mk_misc.o(.text.sys_tick_resume) refers to mk_sleep_timer.o(.text.high_xtal_off_time) for high_xtal_off_time
    mk_misc.o(.text.sys_tick_resume) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_misc.o(.text.sys_tick_resume) refers to mk_misc.o(.bss.sys_tick_env) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.sys_tick_resume) refers to mk_misc.o(.text.sys_tick_resume) for [Anonymous Symbol]
    mk_misc.o(.text.SysTick_Handler) refers to mk_misc.o(.bss.sys_tick_env) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.SysTick_Handler) refers to mk_misc.o(.text.SysTick_Handler) for [Anonymous Symbol]
    mk_misc.o(.text.sys_reset) refers to mk_reset.o(.text.reset_module) for reset_module
    mk_misc.o(.ARM.exidx.text.sys_reset) refers to mk_misc.o(.text.sys_reset) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.delay_us) refers to mk_misc.o(.text.delay_us) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.count_bits) refers to mk_misc.o(.text.count_bits) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.search_byte_right_one) refers to mk_misc.o(.text.search_byte_right_one) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.byte_right_one_mask) refers to mk_misc.o(.text.byte_right_one_mask) for [Anonymous Symbol]
    mk_misc.o(.text.average_filter) refers to ldiv.o(.text) for __aeabi_ldivmod
    mk_misc.o(.text.average_filter) refers to mk_misc.o(.bss..L_MergedGlobals) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.average_filter) refers to mk_misc.o(.text.average_filter) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.mk_q7_to_s16) refers to mk_misc.o(.text.mk_q7_to_s16) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.mk_s16_to_q7) refers to mk_misc.o(.text.mk_s16_to_q7) for [Anonymous Symbol]
    mk_misc.o(.text.mk_q7_to_f32) refers to dflti.o(.text) for __aeabi_i2d
    mk_misc.o(.text.mk_q7_to_f32) refers to dmul.o(.text) for __aeabi_dmul
    mk_misc.o(.text.mk_q7_to_f32) refers to d2f.o(.text) for __aeabi_d2f
    mk_misc.o(.ARM.exidx.text.mk_q7_to_f32) refers to mk_misc.o(.text.mk_q7_to_f32) for [Anonymous Symbol]
    mk_misc.o(.text.mk_f32_to_q7) refers to fmul.o(.text) for __aeabi_fmul
    mk_misc.o(.text.mk_f32_to_q7) refers to ffixi.o(.text) for __aeabi_f2iz
    mk_misc.o(.ARM.exidx.text.mk_f32_to_q7) refers to mk_misc.o(.text.mk_f32_to_q7) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.power_fem_tx_ctrl) refers to mk_power.o(.text.power_fem_tx_ctrl) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.power_fem_rx_ctrl) refers to mk_power.o(.text.power_fem_rx_ctrl) for [Anonymous Symbol]
    mk_power.o(.text.power_init) refers to mk_misc.o(.text.bor_close) for bor_close
    mk_power.o(.ARM.exidx.text.power_init) refers to mk_power.o(.text.power_init) for [Anonymous Symbol]
    mk_power.o(.text.power_on_radio) refers to mk_power.o(.text.power_mode_request) for power_mode_request
    mk_power.o(.text.power_on_radio) refers to mk_power.o(.text.power_fem_tx_ctrl) for power_fem_tx_ctrl
    mk_power.o(.text.power_on_radio) refers to mk_power.o(.text.power_fem_rx_ctrl) for power_fem_rx_ctrl
    mk_power.o(.ARM.exidx.text.power_on_radio) refers to mk_power.o(.text.power_on_radio) for [Anonymous Symbol]
    mk_power.o(.text.power_mode_request) refers to mk_power.o(.bss.power_env) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.power_mode_request) refers to mk_power.o(.text.power_mode_request) for [Anonymous Symbol]
    mk_power.o(.text.power_off_radio) refers to mk_power.o(.text.power_fem_tx_ctrl) for power_fem_tx_ctrl
    mk_power.o(.text.power_off_radio) refers to mk_power.o(.text.power_fem_rx_ctrl) for power_fem_rx_ctrl
    mk_power.o(.text.power_off_radio) refers to mk_power.o(.text.power_mode_clear) for power_mode_clear
    mk_power.o(.ARM.exidx.text.power_off_radio) refers to mk_power.o(.text.power_off_radio) for [Anonymous Symbol]
    mk_power.o(.text.power_mode_clear) refers to mk_power.o(.bss.power_env) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.power_mode_clear) refers to mk_power.o(.text.power_mode_clear) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.power_enter_sleep_mode) refers to mk_power.o(.text.power_enter_sleep_mode) for [Anonymous Symbol]
    mk_power.o(.text.enter_power_down_in_ram) refers to mk_flash.o(.text.flash_power_down) for flash_power_down
    mk_power.o(.text.enter_power_down_in_ram) refers to mk_flash.o(.text.flash_power_up) for flash_power_up
    mk_power.o(.text.enter_power_down_in_ram) refers to mk_misc.o(.text.delay_us) for delay_us
    mk_power.o(.ARM.exidx.text.enter_power_down_in_ram) refers to mk_power.o(.text.enter_power_down_in_ram) for [Anonymous Symbol]
    mk_power.o(.text.power_enter_power_down_mode) refers to board.o(.text.board_prepare_for_power_down) for board_prepare_for_power_down
    mk_power.o(.text.power_enter_power_down_mode) refers to mk_misc.o(.text.sys_tick_pause) for sys_tick_pause
    mk_power.o(.text.power_enter_power_down_mode) refers to mk_clock.o(.text.clock_attach) for clock_attach
    mk_power.o(.text.power_enter_power_down_mode) refers to mk_power.o(.text.enter_power_down_in_ram) for enter_power_down_in_ram
    mk_power.o(.text.power_enter_power_down_mode) refers to mk_misc.o(.text.sys_tick_resume) for sys_tick_resume
    mk_power.o(.text.power_enter_power_down_mode) refers to board.o(.text.board_restore_from_power_down) for board_restore_from_power_down
    mk_power.o(.ARM.exidx.text.power_enter_power_down_mode) refers to mk_power.o(.text.power_enter_power_down_mode) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.board_prepare_for_power_down) refers to mk_power.o(.text.board_prepare_for_power_down) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.board_restore_from_power_down) refers to mk_power.o(.text.board_restore_from_power_down) for [Anonymous Symbol]
    mk_power.o(.text.enter_shelf_mode_in_ram) refers to mk_flash.o(.text.flash_power_down) for flash_power_down
    mk_power.o(.ARM.exidx.text.enter_shelf_mode_in_ram) refers to mk_power.o(.text.enter_shelf_mode_in_ram) for [Anonymous Symbol]
    mk_power.o(.text.power_enter_shelf_mode) refers to board.o(.text.board_prepare_for_power_down) for board_prepare_for_power_down
    mk_power.o(.text.power_enter_shelf_mode) refers to mk_power.o(.text.enter_shelf_mode_in_ram) for enter_shelf_mode_in_ram
    mk_power.o(.ARM.exidx.text.power_enter_shelf_mode) refers to mk_power.o(.text.power_enter_shelf_mode) for [Anonymous Symbol]
    mk_power.o(.text.power_mode_requester_get) refers to mk_power.o(.bss.power_env) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.power_mode_requester_get) refers to mk_power.o(.text.power_mode_requester_get) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.power_wakeup_enable) refers to mk_power.o(.text.power_wakeup_enable) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.power_wakeup_disable) refers to mk_power.o(.text.power_wakeup_disable) for [Anonymous Symbol]
    mk_power.o(.text.power_manage) refers to mk_power.o(.text.power_mode_request) for power_mode_request
    mk_power.o(.text.power_manage) refers to mk_power.o(.text.power_mode_clear) for power_mode_clear
    mk_power.o(.text.power_manage) refers to mk_uart.o(.text.uart_state_get) for uart_state_get
    mk_power.o(.text.power_manage) refers to mk_uart.o(.text.uart_fifo_busy) for uart_fifo_busy
    mk_power.o(.text.power_manage) refers to mk_power.o(.text.power_enter_power_down_mode) for power_enter_power_down_mode
    mk_power.o(.text.power_manage) refers to mk_power.o(.text.power_enter_shelf_mode) for power_enter_shelf_mode
    mk_power.o(.text.power_manage) refers to mk_power.o(.text.app_restore_from_power_down) for app_restore_from_power_down
    mk_power.o(.text.power_manage) refers to mk_power.o(.bss.power_env) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.power_manage) refers to mk_power.o(.text.power_manage) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.app_restore_from_power_down) refers to mk_power.o(.text.app_restore_from_power_down) for [Anonymous Symbol]
    mk_dual_timer.o(.text.dual_timer_open) refers to mk_clock.o(.text.clock_enable) for clock_enable
    mk_dual_timer.o(.text.dual_timer_open) refers to mk_dual_timer.o(.data.dual_timer_handle) for [Anonymous Symbol]
    mk_dual_timer.o(.ARM.exidx.text.dual_timer_open) refers to mk_dual_timer.o(.text.dual_timer_open) for [Anonymous Symbol]
    mk_dual_timer.o(.text.dual_timer_close) refers to mk_clock.o(.text.clock_disable) for clock_disable
    mk_dual_timer.o(.text.dual_timer_close) refers to mk_dual_timer.o(.data.dual_timer_handle) for [Anonymous Symbol]
    mk_dual_timer.o(.ARM.exidx.text.dual_timer_close) refers to mk_dual_timer.o(.text.dual_timer_close) for [Anonymous Symbol]
    mk_dual_timer.o(.text.dual_timer_start) refers to mk_dual_timer.o(.data.dual_timer_handle) for [Anonymous Symbol]
    mk_dual_timer.o(.ARM.exidx.text.dual_timer_start) refers to mk_dual_timer.o(.text.dual_timer_start) for [Anonymous Symbol]
    mk_dual_timer.o(.text.dual_timer_stop) refers to mk_dual_timer.o(.data.dual_timer_handle) for [Anonymous Symbol]
    mk_dual_timer.o(.ARM.exidx.text.dual_timer_stop) refers to mk_dual_timer.o(.text.dual_timer_stop) for [Anonymous Symbol]
    mk_dual_timer.o(.text.dual_timer_reset) refers to mk_reset.o(.text.reset_module) for reset_module
    mk_dual_timer.o(.ARM.exidx.text.dual_timer_reset) refers to mk_dual_timer.o(.text.dual_timer_reset) for [Anonymous Symbol]
    mk_dual_timer.o(.text.dual_timer_set) refers to mk_dual_timer.o(.data.dual_timer_handle) for [Anonymous Symbol]
    mk_dual_timer.o(.ARM.exidx.text.dual_timer_set) refers to mk_dual_timer.o(.text.dual_timer_set) for [Anonymous Symbol]
    mk_dual_timer.o(.text.dual_timer_get) refers to mk_dual_timer.o(.data.dual_timer_handle) for [Anonymous Symbol]
    mk_dual_timer.o(.ARM.exidx.text.dual_timer_get) refers to mk_dual_timer.o(.text.dual_timer_get) for [Anonymous Symbol]
    mk_dual_timer.o(.text.dual_timer_delay) refers to mk_dual_timer.o(.data.dual_timer_handle) for [Anonymous Symbol]
    mk_dual_timer.o(.ARM.exidx.text.dual_timer_delay) refers to mk_dual_timer.o(.text.dual_timer_delay) for [Anonymous Symbol]
    mk_dual_timer.o(.text.TIMER2_IRQHandler) refers to mk_dual_timer.o(.data.dual_timer_handle) for [Anonymous Symbol]
    mk_dual_timer.o(.ARM.exidx.text.TIMER2_IRQHandler) refers to mk_dual_timer.o(.text.TIMER2_IRQHandler) for [Anonymous Symbol]
    mk_dual_timer.o(.text.TIMER3_IRQHandler) refers to mk_dual_timer.o(.data.dual_timer_handle) for [Anonymous Symbol]
    mk_dual_timer.o(.ARM.exidx.text.TIMER3_IRQHandler) refers to mk_dual_timer.o(.text.TIMER3_IRQHandler) for [Anonymous Symbol]
    mk_sleep_timer.o(.text.sleep_timer_open) refers to mk_clock.o(.text.clock_enable) for clock_enable
    mk_sleep_timer.o(.text.sleep_timer_open) refers to mk_power.o(.text.power_wakeup_enable) for power_wakeup_enable
    mk_sleep_timer.o(.text.sleep_timer_open) refers to mk_sleep_timer.o(.bss.sleep_timer_handle.4) for [Anonymous Symbol]
    mk_sleep_timer.o(.text.sleep_timer_open) refers to mk_sleep_timer.o(.data..L_MergedGlobals) for [Anonymous Symbol]
    mk_sleep_timer.o(.ARM.exidx.text.sleep_timer_open) refers to mk_sleep_timer.o(.text.sleep_timer_open) for [Anonymous Symbol]
    mk_sleep_timer.o(.text.sleep_timer_close) refers to mk_sleep_timer.o(.data..L_MergedGlobals) for [Anonymous Symbol]
    mk_sleep_timer.o(.ARM.exidx.text.sleep_timer_close) refers to mk_sleep_timer.o(.text.sleep_timer_close) for [Anonymous Symbol]
    mk_sleep_timer.o(.text.sleep_timer_start) refers to idiv.o(.text) for __aeabi_idiv
    mk_sleep_timer.o(.text.sleep_timer_start) refers to mk_sleep_timer.o(.bss.sleep_timer_handle.3) for [Anonymous Symbol]
    mk_sleep_timer.o(.text.sleep_timer_start) refers to mk_sleep_timer.o(.data..L_MergedGlobals) for [Anonymous Symbol]
    mk_sleep_timer.o(.ARM.exidx.text.sleep_timer_start) refers to mk_sleep_timer.o(.text.sleep_timer_start) for [Anonymous Symbol]
    mk_sleep_timer.o(.ARM.exidx.text.sleep_timer_stop) refers to mk_sleep_timer.o(.text.sleep_timer_stop) for [Anonymous Symbol]
    mk_sleep_timer.o(.ARM.exidx.text.high_xtal_off_time) refers to mk_sleep_timer.o(.text.high_xtal_off_time) for [Anonymous Symbol]
    mk_sleep_timer.o(.text.sleep_timer_ppm_set) refers to mk_sleep_timer.o(.bss.sleep_timer_handle.3) for [Anonymous Symbol]
    mk_sleep_timer.o(.ARM.exidx.text.sleep_timer_ppm_set) refers to mk_sleep_timer.o(.text.sleep_timer_ppm_set) for [Anonymous Symbol]
    mk_sleep_timer.o(.text.sleep_timer_ppm_get) refers to mk_sleep_timer.o(.bss.sleep_timer_handle.3) for [Anonymous Symbol]
    mk_sleep_timer.o(.ARM.exidx.text.sleep_timer_ppm_get) refers to mk_sleep_timer.o(.text.sleep_timer_ppm_get) for [Anonymous Symbol]
    mk_sleep_timer.o(.text.SLEEP_TIMER_IRQHandler) refers to mk_sleep_timer.o(.data..L_MergedGlobals) for [Anonymous Symbol]
    mk_sleep_timer.o(.text.SLEEP_TIMER_IRQHandler) refers to mk_sleep_timer.o(.bss.sleep_timer_handle.4) for [Anonymous Symbol]
    mk_sleep_timer.o(.ARM.exidx.text.SLEEP_TIMER_IRQHandler) refers to mk_sleep_timer.o(.text.SLEEP_TIMER_IRQHandler) for [Anonymous Symbol]
    menu.o(.text.Int2Str) refers to uidiv.o(.text) for __aeabi_uidiv
    menu.o(.ARM.exidx.text.Int2Str) refers to menu.o(.text.Int2Str) for [Anonymous Symbol]
    menu.o(.text.IAP_JumpTo) refers to memcpya.o(.text) for __aeabi_memcpy8
    menu.o(.ARM.exidx.text.IAP_JumpTo) refers to menu.o(.text.IAP_JumpTo) for [Anonymous Symbol]
    menu.o(.text.SerialDownload) refers to ymodem.o(.text.Send_Byte) for Send_Byte
    menu.o(.text.SerialDownload) refers to ymodem.o(.text.Ymodem_Receive) for Ymodem_Receive
    menu.o(.text.SerialDownload) refers to menu.o(.text.Int2Str) for Int2Str
    menu.o(.text.SerialDownload) refers to menu.o(.bss.tab_1024) for tab_1024
    menu.o(.text.SerialDownload) refers to menu.o(.rodata.str1.1) for .L.str
    menu.o(.text.SerialDownload) refers to mk_uart.o(.text.Serial_PutString) for Serial_PutString
    menu.o(.text.SerialDownload) refers to menu.o(.bss.FileName) for FileName
    menu.o(.ARM.exidx.text.SerialDownload) refers to menu.o(.text.SerialDownload) for [Anonymous Symbol]
    menu.o(.text.GetKey) refers to mk_uart.o(.text.SerialKeyPressed) for SerialKeyPressed
    menu.o(.ARM.exidx.text.GetKey) refers to menu.o(.text.GetKey) for [Anonymous Symbol]
    menu.o(.text.SerialUpload) refers to mk_uart.o(.text.Serial_PutString) for Serial_PutString
    menu.o(.text.SerialUpload) refers to menu.o(.text.GetKey) for GetKey
    menu.o(.text.SerialUpload) refers to ymodem.o(.text.Ymodem_Transmit) for Ymodem_Transmit
    menu.o(.ARM.exidx.text.SerialUpload) refers to menu.o(.text.SerialUpload) for [Anonymous Symbol]
    menu.o(.text.delay_ms) refers to mk_misc.o(.text.delay_us) for delay_us
    menu.o(.ARM.exidx.text.delay_ms) refers to menu.o(.text.delay_ms) for [Anonymous Symbol]
    menu.o(.text.Main_Menu) refers to menu.o(.text.SerialDownload) for SerialDownload
    menu.o(.text.Main_Menu) refers to mk_flash.o(.text.flash_erase) for flash_erase
    menu.o(.text.Main_Menu) refers to mk_flash.o(.text.flash_write_nbytes) for flash_write_nbytes
    menu.o(.text.Main_Menu) refers to menu.o(.text.delay_ms) for delay_ms
    menu.o(.text.Main_Menu) refers to menu.o(.text.__NVIC_SystemReset) for __NVIC_SystemReset
    menu.o(.ARM.exidx.text.Main_Menu) refers to menu.o(.text.Main_Menu) for [Anonymous Symbol]
    menu.o(.ARM.exidx.text.__NVIC_SystemReset) refers to menu.o(.text.__NVIC_SystemReset) for [Anonymous Symbol]
    ymodem.o(.ARM.exidx.text.Str2Int) refers to ymodem.o(.text.Str2Int) for [Anonymous Symbol]
    ymodem.o(.text.Receive_Byte) refers to mk_uart.o(.text.SerialKeyPressed) for SerialKeyPressed
    ymodem.o(.ARM.exidx.text.Receive_Byte) refers to ymodem.o(.text.Receive_Byte) for [Anonymous Symbol]
    ymodem.o(.text.Send_Byte) refers to mk_uart.o(.text.SerialPutChar) for SerialPutChar
    ymodem.o(.ARM.exidx.text.Send_Byte) refers to ymodem.o(.text.Send_Byte) for [Anonymous Symbol]
    ymodem.o(.ARM.exidx.text.UpdateCRC16) refers to ymodem.o(.text.UpdateCRC16) for [Anonymous Symbol]
    ymodem.o(.text.Cal_CRC16) refers to ymodem.o(.text.UpdateCRC16) for UpdateCRC16
    ymodem.o(.ARM.exidx.text.Cal_CRC16) refers to ymodem.o(.text.Cal_CRC16) for [Anonymous Symbol]
    ymodem.o(.ARM.exidx.text.CalChecksum) refers to ymodem.o(.text.CalChecksum) for [Anonymous Symbol]
    ymodem.o(.text.Ymodem_Receive) refers to aes.o(.text.aesDecInit) for aesDecInit
    ymodem.o(.text.Ymodem_Receive) refers to mk_wdt.o(.text.wdt_ping) for wdt_ping
    ymodem.o(.text.Ymodem_Receive) refers to ymodem.o(.text.Receive_Byte) for Receive_Byte
    ymodem.o(.text.Ymodem_Receive) refers to mk_uart.o(.text.SerialPutChar) for SerialPutChar
    ymodem.o(.text.Ymodem_Receive) refers to ymodem.o(.text.Cal_CRC16) for Cal_CRC16
    ymodem.o(.text.Ymodem_Receive) refers to memcpya.o(.text) for __aeabi_memcpy
    ymodem.o(.text.Ymodem_Receive) refers to aes.o(.text.aesDecrypt) for aesDecrypt
    ymodem.o(.text.Ymodem_Receive) refers to mk_flash.o(.text.flash_write_nbytes) for flash_write_nbytes
    ymodem.o(.text.Ymodem_Receive) refers to ymodem.o(.text.Str2Int) for Str2Int
    ymodem.o(.text.Ymodem_Receive) refers to mk_flash.o(.text.flash_erase) for flash_erase
    ymodem.o(.text.Ymodem_Receive) refers to ymodem.o(.bss..L_MergedGlobals) for [Anonymous Symbol]
    ymodem.o(.text.Ymodem_Receive) refers to ymodem.o(.bss.packet_data) for packet_data
    ymodem.o(.text.Ymodem_Receive) refers to customboot.o(.bss.time32_reset) for time32_reset
    ymodem.o(.text.Ymodem_Receive) refers to customboot.o(.bss..L_MergedGlobals) for shengji_time_100ms
    ymodem.o(.text.Ymodem_Receive) refers to menu.o(.bss.FileName) for FileName
    ymodem.o(.ARM.exidx.text.Ymodem_Receive) refers to ymodem.o(.text.Ymodem_Receive) for [Anonymous Symbol]
    ymodem.o(.ARM.exidx.text.Ymodem_CheckResponse) refers to ymodem.o(.text.Ymodem_CheckResponse) for [Anonymous Symbol]
    ymodem.o(.text.Ymodem_PrepareIntialPacket) refers to menu.o(.text.Int2Str) for Int2Str
    ymodem.o(.ARM.exidx.text.Ymodem_PrepareIntialPacket) refers to ymodem.o(.text.Ymodem_PrepareIntialPacket) for [Anonymous Symbol]
    ymodem.o(.ARM.exidx.text.Ymodem_PreparePacket) refers to ymodem.o(.text.Ymodem_PreparePacket) for [Anonymous Symbol]
    ymodem.o(.text.Ymodem_SendPacket) refers to mk_uart.o(.text.SerialPutChar) for SerialPutChar
    ymodem.o(.ARM.exidx.text.Ymodem_SendPacket) refers to ymodem.o(.text.Ymodem_SendPacket) for [Anonymous Symbol]
    ymodem.o(.text.Ymodem_Transmit) refers to ymodem.o(.text.Ymodem_PrepareIntialPacket) for Ymodem_PrepareIntialPacket
    ymodem.o(.text.Ymodem_Transmit) refers to ymodem.o(.text.Ymodem_SendPacket) for Ymodem_SendPacket
    ymodem.o(.text.Ymodem_Transmit) refers to ymodem.o(.text.Cal_CRC16) for Cal_CRC16
    ymodem.o(.text.Ymodem_Transmit) refers to mk_uart.o(.text.SerialPutChar) for SerialPutChar
    ymodem.o(.text.Ymodem_Transmit) refers to ymodem.o(.text.Receive_Byte) for Receive_Byte
    ymodem.o(.text.Ymodem_Transmit) refers to ymodem.o(.text.Ymodem_PreparePacket) for Ymodem_PreparePacket
    ymodem.o(.ARM.exidx.text.Ymodem_Transmit) refers to ymodem.o(.text.Ymodem_Transmit) for [Anonymous Symbol]
    customboot.o(.text.usartdata_process) refers to mk_flash.o(.text.flash_erase) for flash_erase
    customboot.o(.text.usartdata_process) refers to mk_flash.o(.text.flash_write_nbytes) for flash_write_nbytes
    customboot.o(.text.usartdata_process) refers to customboot.o(.bss.usartdata_process.state) for [Anonymous Symbol]
    customboot.o(.ARM.exidx.text.usartdata_process) refers to customboot.o(.text.usartdata_process) for [Anonymous Symbol]
    customboot.o(.ARM.exidx.text.app_wdt_callback) refers to customboot.o(.text.app_wdt_callback) for [Anonymous Symbol]
    customboot.o(.text.main) refers to board.o(.text.board_clock_run) for board_clock_run
    customboot.o(.text.main) refers to mk_calib.o(.text.calib_chip) for calib_chip
    customboot.o(.text.main) refers to mk_gpio.o(.text.gpio_open) for gpio_open
    customboot.o(.text.main) refers to pin_config.o(.text.board_pins_config) for board_pins_config
    customboot.o(.text.main) refers to mk_sleep_timer.o(.text.sleep_timer_open) for sleep_timer_open
    customboot.o(.text.main) refers to mk_sleep_timer.o(.text.sleep_timer_start) for sleep_timer_start
    customboot.o(.text.main) refers to mk_wdt.o(.text.wdt_close) for wdt_close
    customboot.o(.text.main) refers to mk_wdt.o(.text.wdt_open) for wdt_open
    customboot.o(.text.main) refers to board.o(.text.board_configure) for board_configure
    customboot.o(.text.main) refers to mk_flash.o(.text.flash_open) for flash_open
    customboot.o(.text.main) refers to menu.o(.text.delay_ms) for delay_ms
    customboot.o(.text.main) refers to ymodem.o(.text.Receive_Byte) for Receive_Byte
    customboot.o(.text.main) refers to customboot.o(.text.usartdata_process) for usartdata_process
    customboot.o(.text.main) refers to mk_uart.o(.text.Serial_PutString) for Serial_PutString
    customboot.o(.text.main) refers to mk_wdt.o(.text.wdt_ping) for wdt_ping
    customboot.o(.text.main) refers to mk_flash.o(.text.flash_read) for flash_read
    customboot.o(.text.main) refers to mk_flash.o(.text.flash_check_busy) for flash_check_busy
    customboot.o(.text.main) refers to menu.o(.text.Main_Menu) for Main_Menu
    customboot.o(.text.main) refers to mk_uart.o(.text.uart_close) for uart_close
    customboot.o(.text.main) refers to mk_gpio.o(.text.gpio_close) for gpio_close
    customboot.o(.text.main) refers to mk_sleep_timer.o(.text.sleep_timer_close) for sleep_timer_close
    customboot.o(.text.main) refers to memcpya.o(.text) for __aeabi_memcpy8
    customboot.o(.text.main) refers to mk_flash.o(.text.flash_close) for flash_close
    customboot.o(.text.main) refers to aes.o(.text.aesDecInit) for aesDecInit
    customboot.o(.text.main) refers to mk_flash.o(.text.flash_erase) for flash_erase
    customboot.o(.text.main) refers to aes.o(.text.aesDecrypt) for aesDecrypt
    customboot.o(.text.main) refers to mk_flash.o(.text.flash_write_nbytes) for flash_write_nbytes
    customboot.o(.text.main) refers to customboot.o(.text.__NVIC_SystemReset) for __NVIC_SystemReset
    customboot.o(.text.main) refers to customboot.o(.text.sleep_timer_callback) for sleep_timer_callback
    customboot.o(.text.main) refers to customboot.o(.data.app_wdt_cfg) for app_wdt_cfg
    customboot.o(.text.main) refers to customboot.o(.bss..L_MergedGlobals) for [Anonymous Symbol]
    customboot.o(.text.main) refers to customboot.o(.bss.zhongjian_shuju) for [Anonymous Symbol]
    customboot.o(.text.main) refers to customboot.o(.rodata.str1.1) for .L.str.7
    customboot.o(.ARM.exidx.text.main) refers to customboot.o(.text.main) for [Anonymous Symbol]
    customboot.o(.text.sleep_timer_callback) refers to customboot.o(.text.__NVIC_SystemReset) for __NVIC_SystemReset
    customboot.o(.text.sleep_timer_callback) refers to customboot.o(.bss..L_MergedGlobals) for [Anonymous Symbol]
    customboot.o(.ARM.exidx.text.sleep_timer_callback) refers to customboot.o(.text.sleep_timer_callback) for [Anonymous Symbol]
    customboot.o(.ARM.exidx.text.__NVIC_SystemReset) refers to customboot.o(.text.__NVIC_SystemReset) for [Anonymous Symbol]
    customboot.o(.data.app_wdt_cfg) refers to customboot.o(.text.app_wdt_callback) for app_wdt_callback
    board.o(.text.board_clock_run) refers to mk_misc.o(.text.delay_us) for delay_us
    board.o(.text.board_clock_run) refers to mk_calib.o(.text.calib_open) for calib_open
    board.o(.text.board_clock_run) refers to mk_calib.o(.text.calib_start) for calib_start
    board.o(.text.board_clock_run) refers to mk_calib.o(.text.calib_check) for calib_check
    board.o(.text.board_clock_run) refers to mk_calib.o(.text.calib_close) for calib_close
    board.o(.text.board_clock_run) refers to mk_clock.o(.text.clock_set_divider) for clock_set_divider
    board.o(.text.board_clock_run) refers to mk_misc.o(.text.sys_tick_start) for sys_tick_start
    board.o(.text.board_clock_run) refers to mk_misc.o(.text.sys_timer_open) for sys_timer_open
    board.o(.text.board_clock_run) refers to mk_clock.o(.text.clock_attach) for clock_attach
    board.o(.ARM.exidx.text.board_clock_run) refers to board.o(.text.board_clock_run) for [Anonymous Symbol]
    board.o(.ARM.exidx.text.board_debug_console_open) refers to board.o(.text.board_debug_console_open) for [Anonymous Symbol]
    board.o(.text.board_calibration_params_default) refers to board.o(.bss.board_param) for board_param
    board.o(.ARM.exidx.text.board_calibration_params_default) refers to board.o(.text.board_calibration_params_default) for [Anonymous Symbol]
    board.o(.text.board_calibration_params_load) refers to board.o(.bss.board_param) for board_param
    board.o(.ARM.exidx.text.board_calibration_params_load) refers to board.o(.text.board_calibration_params_load) for [Anonymous Symbol]
    board.o(.ARM.exidx.text.board_calibration_param_write) refers to board.o(.text.board_calibration_param_write) for [Anonymous Symbol]
    board.o(.text.board_ranging_result_correct) refers to mk_misc.o(.text.mk_q7_to_f32) for mk_q7_to_f32
    board.o(.text.board_ranging_result_correct) refers to fcmplt.o(.text) for __aeabi_fcmplt
    board.o(.text.board_ranging_result_correct) refers to fminf.o(i.fminf) for fminf
    board.o(.text.board_ranging_result_correct) refers to mk_misc.o(.text.mk_f32_to_q7) for mk_f32_to_q7
    board.o(.ARM.exidx.text.board_ranging_result_correct) refers to board.o(.text.board_ranging_result_correct) for [Anonymous Symbol]
    board.o(.text.board_5V_input_init) refers to mk_gpio.o(.text.gpio_pin_set_dir) for gpio_pin_set_dir
    board.o(.text.board_5V_input_init) refers to mk_io.o(.text.io_pull_set) for io_pull_set
    board.o(.text.board_5V_input_init) refers to board.o(.bss.button_irq_handler) for [Anonymous Symbol]
    board.o(.ARM.exidx.text.board_5V_input_init) refers to board.o(.text.board_5V_input_init) for [Anonymous Symbol]
    board.o(.text.board_button_init) refers to mk_gpio.o(.text.gpio_pin_set_dir) for gpio_pin_set_dir
    board.o(.text.board_button_init) refers to mk_io.o(.text.io_pull_set) for io_pull_set
    board.o(.text.board_button_init) refers to mk_gpio.o(.text.gpio_enable_irq) for gpio_enable_irq
    board.o(.text.board_button_init) refers to mk_power.o(.text.power_wakeup_enable) for power_wakeup_enable
    board.o(.text.board_button_init) refers to board.o(.bss.button_irq_handler) for [Anonymous Symbol]
    board.o(.ARM.exidx.text.board_button_init) refers to board.o(.text.board_button_init) for [Anonymous Symbol]
    board.o(.text.board_led_init) refers to mk_gpio.o(.text.gpio_pin_set_dir) for gpio_pin_set_dir
    board.o(.ARM.exidx.text.board_led_init) refers to board.o(.text.board_led_init) for [Anonymous Symbol]
    board.o(.text.board_led_on) refers to mk_gpio.o(.text.gpio_pin_set) for gpio_pin_set
    board.o(.ARM.exidx.text.board_led_on) refers to board.o(.text.board_led_on) for [Anonymous Symbol]
    board.o(.text.board_led_off) refers to mk_gpio.o(.text.gpio_pin_clr) for gpio_pin_clr
    board.o(.ARM.exidx.text.board_led_off) refers to board.o(.text.board_led_off) for [Anonymous Symbol]
    board.o(.text.board_led_toggle) refers to mk_gpio.o(.text.gpio_pin_toggle) for gpio_pin_toggle
    board.o(.ARM.exidx.text.board_led_toggle) refers to board.o(.text.board_led_toggle) for [Anonymous Symbol]
    board.o(.ARM.exidx.text.board_configure) refers to board.o(.text.board_configure) for [Anonymous Symbol]
    board.o(.text.board_prepare_for_power_down) refers to mk_gpio.o(.text.gpio_pin_clr) for gpio_pin_clr
    board.o(.ARM.exidx.text.board_prepare_for_power_down) refers to board.o(.text.board_prepare_for_power_down) for [Anonymous Symbol]
    board.o(.text.board_restore_from_power_down) refers to mk_gpio.o(.text.gpio_enable_irq) for gpio_enable_irq
    board.o(.text.board_restore_from_power_down) refers to mk_gpio.o(.text.gpio_pin_set) for gpio_pin_set
    board.o(.text.board_restore_from_power_down) refers to mk_misc.o(.text.sys_timer_open) for sys_timer_open
    board.o(.text.board_restore_from_power_down) refers to board.o(.bss.button_irq_handler) for [Anonymous Symbol]
    board.o(.ARM.exidx.text.board_restore_from_power_down) refers to board.o(.text.board_restore_from_power_down) for [Anonymous Symbol]
    pin_config.o(.text.uart1_change_shouhuan) refers to mk_io.o(.text.io_pin_mux_set) for io_pin_mux_set
    pin_config.o(.ARM.exidx.text.uart1_change_shouhuan) refers to pin_config.o(.text.uart1_change_shouhuan) for [Anonymous Symbol]
    pin_config.o(.text.uart1_change_gongka) refers to mk_io.o(.text.io_pin_mux_set) for io_pin_mux_set
    pin_config.o(.ARM.exidx.text.uart1_change_gongka) refers to pin_config.o(.text.uart1_change_gongka) for [Anonymous Symbol]
    pin_config.o(.text.uart1_xuanze) refers to mk_uart.o(.text.uart_close) for uart_close
    pin_config.o(.text.uart1_xuanze) refers to mk_uart.o(.text.uart_open) for uart_open
    pin_config.o(.text.uart1_xuanze) refers to mk_io.o(.text.io_pin_mux_set) for io_pin_mux_set
    pin_config.o(.text.uart1_xuanze) refers to customboot.o(.bss.flagmode) for flagmode
    pin_config.o(.text.uart1_xuanze) refers to pin_config.o(.data.test_uart_cfg) for test_uart_cfg
    pin_config.o(.ARM.exidx.text.uart1_xuanze) refers to pin_config.o(.text.uart1_xuanze) for [Anonymous Symbol]
    pin_config.o(.text.board_pins_config) refers to mk_gpio.o(.text.gpio_pin_get_val) for gpio_pin_get_val
    pin_config.o(.text.board_pins_config) refers to pin_config.o(.text.uart1_xuanze) for uart1_xuanze
    pin_config.o(.text.board_pins_config) refers to mk_io.o(.text.io_pin_mux_set) for io_pin_mux_set
    pin_config.o(.text.board_pins_config) refers to mk_io.o(.text.io_pull_set) for io_pull_set
    pin_config.o(.text.board_pins_config) refers to mk_gpio.o(.text.gpio_pin_set_dir) for gpio_pin_set_dir
    pin_config.o(.text.board_pins_config) refers to pin_config.o(.bss..L_MergedGlobals) for [Anonymous Symbol]
    pin_config.o(.ARM.exidx.text.board_pins_config) refers to pin_config.o(.text.board_pins_config) for [Anonymous Symbol]
    fminf.o(i.fminf) refers (Special) to iusefp.o(.text) for __I$use$fp
    fminf.o(i.fminf) refers to fcmp4.o(.text) for __ARM_fcmp4
    entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry10a.o(.ARM.Collect$$$$0000000D) for __rt_final_cpp
    entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry11a.o(.ARM.Collect$$$$0000000F) for __rt_final_exit
    entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry7b.o(.ARM.Collect$$$$00000008) for _main_clock
    entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry8b.o(.ARM.Collect$$$$0000000A) for _main_cpp_init
    entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry9a.o(.ARM.Collect$$$$0000000B) for _main_init
    entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry5.o(.ARM.Collect$$$$00000004) for _main_scatterload
    entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry4.o(.ARM.Collect$$$$00000003) for _main_stk
    idiv.o(.text) refers to uidiv.o(.text) for __aeabi_uidivmod
    ldiv.o(.text) refers to uldiv.o(.text) for __aeabi_uldivmod
    fmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    dmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    dmul.o(.text) refers to depilogue.o(.text) for _double_epilogue
    fcmplt.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    dflti.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    dflti.o(.text) refers to depilogue.o(.text) for _double_epilogue
    ffixi.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    d2f.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    d2f.o(.text) refers to fepilogue.o(.text) for _float_round
    entry4.o(.ARM.Collect$$$$00000003) refers to entry4.o(.ARM.Collect$$$$00002714) for __lit__00000000
    entry4.o(__vectab_stack_and_reset_area) refers to entry.o(.ARM.Collect$$$$00000000) for __main
    entry5.o(.ARM.Collect$$$$00000004) refers to init.o(.text) for __scatterload
    entry9a.o(.ARM.Collect$$$$0000000B) refers to customboot.o(.text.main) for main
    entry9b.o(.ARM.Collect$$$$0000000C) refers to customboot.o(.text.main) for main
    uldiv.o(.text) refers to llushr.o(.text) for __aeabi_llsr
    uldiv.o(.text) refers to llshl.o(.text) for __aeabi_llsl
    fepilogue.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    depilogue.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    depilogue.o(.text) refers to depilogue.o(i.__ARM_clz) for __ARM_clz
    depilogue.o(.text) refers to llshl.o(.text) for __aeabi_llsl
    depilogue.o(.text) refers to llushr.o(.text) for __aeabi_llsr
    fcmp4.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    init.o(.text) refers to entry5.o(.ARM.Collect$$$$00000004) for __main_after_scatterload
    depilogue.o(i.__ARM_clz) refers (Special) to iusefp.o(.text) for __I$use$fp
 
 
==============================================================================
 
Removing Unused input sections from the image.
 
    Removing startup_mk800x.o(.text), (0 bytes).
    Removing startup_mk800x.o(.ARM.exidx.text.Default_Handler), (8 bytes).
    Removing startup_mk800x.o(.ARM.exidx.text.Reset_Handler), (8 bytes).
    Removing startup_mk800x.o(.ARM.exidx.text.start_main_asm), (8 bytes).
    Removing system_mk800x.o(.text), (0 bytes).
    Removing system_mk800x.o(.text.SystemCoreClockUpdate), (16 bytes).
    Removing system_mk800x.o(.ARM.exidx.text.SystemCoreClockUpdate), (8 bytes).
    Removing system_mk800x.o(.ARM.exidx.text.SystemInit), (8 bytes).
    Removing mk_clock.o(.text), (0 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_enable), (8 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_disable), (8 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_attach), (8 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_set_divider), (8 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_get_frequency), (8 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_get_sys_clk_freq), (8 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_get_ahb_clk_freq), (8 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_get_apb_clk_freq), (8 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_xtal38m4_injection_set), (8 bytes).
    Removing mk_clock.o(.text.clock_xtal32k_injection_set), (24 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_xtal32k_injection_set), (8 bytes).
    Removing mk_dma.o(.text), (0 bytes).
    Removing mk_dma.o(.ARM.exidx.text.dma_open), (8 bytes).
    Removing mk_dma.o(.text.dma_close), (108 bytes).
    Removing mk_dma.o(.ARM.exidx.text.dma_close), (8 bytes).
    Removing mk_dma.o(.text.get_uart1_dma_cndtr), (16 bytes).
    Removing mk_dma.o(.ARM.exidx.text.get_uart1_dma_cndtr), (8 bytes).
    Removing mk_dma.o(.text.get_uart0_dma_cndtr), (16 bytes).
    Removing mk_dma.o(.ARM.exidx.text.get_uart0_dma_cndtr), (8 bytes).
    Removing mk_dma.o(.ARM.exidx.text.dma_transfer), (8 bytes).
    Removing mk_dma.o(.text.dma_abort), (112 bytes).
    Removing mk_dma.o(.ARM.exidx.text.dma_abort), (8 bytes).
    Removing mk_dma.o(.text.dma_force_abort), (144 bytes).
    Removing mk_dma.o(.ARM.exidx.text.dma_force_abort), (8 bytes).
    Removing mk_dma.o(.ARM.exidx.text.DMA_IRQHandler), (8 bytes).
    Removing mk_flash.o(.text), (0 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_open), (8 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_reset_cmd), (8 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_write_cmd), (8 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_wait_status), (8 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_write_quad_mode), (8 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_write_mem_cmd), (8 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_close), (8 bytes).
    Removing mk_flash.o(.text.flash_open_for_xip), (184 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_open_for_xip), (8 bytes).
    Removing mk_flash.o(.text.flash_power_up), (40 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_power_up), (8 bytes).
    Removing mk_flash.o(.text.flash_power_down), (40 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_power_down), (8 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_sector_erase), (8 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_state_update), (8 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_wait_done), (8 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_block_erase), (8 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_erase), (8 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_check_busy), (8 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_write_nbytes), (8 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_write_variable_len_cmd), (8 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_dma_write_nbytes_callback), (8 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_page_write_nbytes), (8 bytes).
    Removing mk_flash.o(.text.flash_write), (404 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_write), (8 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_dma_callback), (8 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_read), (8 bytes).
    Removing mk_flash.o(.ARM.exidx.text.FLASH_CTRL_IRQHandler), (8 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_read_status), (8 bytes).
    Removing mk_reset.o(.text), (0 bytes).
    Removing mk_reset.o(.text.reset_cause_get), (72 bytes).
    Removing mk_reset.o(.ARM.exidx.text.reset_cause_get), (8 bytes).
    Removing mk_reset.o(.text.reset_cause_clear), (16 bytes).
    Removing mk_reset.o(.ARM.exidx.text.reset_cause_clear), (8 bytes).
    Removing mk_reset.o(.ARM.exidx.text.reset_module), (8 bytes).
    Removing mk_uart.o(.text), (0 bytes).
    Removing mk_uart.o(.text.Serial0KeyPressed), (28 bytes).
    Removing mk_uart.o(.ARM.exidx.text.Serial0KeyPressed), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.SerialKeyPressed), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.SerialPutChar), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_send), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.Serial_PutString), (8 bytes).
    Removing mk_uart.o(.text.Serial0PutChar), (36 bytes).
    Removing mk_uart.o(.ARM.exidx.text.Serial0PutChar), (8 bytes).
    Removing mk_uart.o(.text.Serial0_PutString), (20 bytes).
    Removing mk_uart.o(.ARM.exidx.text.Serial0_PutString), (8 bytes).
    Removing mk_uart.o(.text.uart_state_get), (16 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_state_get), (8 bytes).
    Removing mk_uart.o(.text.uart_tx_in_progress), (32 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_tx_in_progress), (8 bytes).
    Removing mk_uart.o(.text.uart_fifo_busy), (32 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_fifo_busy), (8 bytes).
    Removing mk_uart.o(.text.uart_rx_fifo_clear), (24 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_rx_fifo_clear), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_baud_set), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_open), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_close), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_state_set), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_dma_callback), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_state_clear), (8 bytes).
    Removing mk_uart.o(.text.uart_receive), (328 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_receive), (8 bytes).
    Removing mk_uart.o(.text.uart_tx_abort_dma), (52 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_tx_abort_dma), (8 bytes).
    Removing mk_uart.o(.text.uart_dma_abort_callback), (124 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_dma_abort_callback), (8 bytes).
    Removing mk_uart.o(.text.uart_rx_abort_dma), (60 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_rx_abort_dma), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_irq_handler), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.UART0_IRQHandler), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.UART1_IRQHandler), (8 bytes).
    Removing mk_uart.o(.text.uart_printf_init), (36 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_printf_init), (8 bytes).
    Removing mk_uart.o(.text.uart_printf), (2 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_printf), (8 bytes).
    Removing mk_uart.o(.rodata.cst32), (32 bytes).
    Removing aes.o(.text), (0 bytes).
    Removing aes.o(.ARM.exidx.text.CalcPowLog), (8 bytes).
    Removing aes.o(.ARM.exidx.text.CalcSBox), (8 bytes).
    Removing aes.o(.ARM.exidx.text.CalcSBoxInv), (8 bytes).
    Removing aes.o(.text.CycleLeft), (18 bytes).
    Removing aes.o(.ARM.exidx.text.CycleLeft), (8 bytes).
    Removing aes.o(.ARM.exidx.text.CalcCols), (8 bytes).
    Removing aes.o(.ARM.exidx.text.InvMixColumn), (8 bytes).
    Removing aes.o(.ARM.exidx.text.SubBytes), (8 bytes).
    Removing aes.o(.ARM.exidx.text.InvSubBytesAndXOR), (8 bytes).
    Removing aes.o(.ARM.exidx.text.InvShiftRows), (8 bytes).
    Removing aes.o(.ARM.exidx.text.XORBytes), (8 bytes).
    Removing aes.o(.ARM.exidx.text.CopyBytes), (8 bytes).
    Removing aes.o(.ARM.exidx.text.KeyExpansion), (8 bytes).
    Removing aes.o(.ARM.exidx.text.InvCipher), (8 bytes).
    Removing aes.o(.ARM.exidx.text.aesDecInit), (8 bytes).
    Removing aes.o(.ARM.exidx.text.aesDecrypt), (8 bytes).
    Removing aes.o(.text.Multiply), (42 bytes).
    Removing aes.o(.ARM.exidx.text.Multiply), (8 bytes).
    Removing aes.o(.text.DotProduct), (36 bytes).
    Removing aes.o(.ARM.exidx.text.DotProduct), (8 bytes).
    Removing aes.o(.text.MixColumn), (72 bytes).
    Removing aes.o(.ARM.exidx.text.MixColumn), (8 bytes).
    Removing aes.o(.text.ShiftRows), (50 bytes).
    Removing aes.o(.ARM.exidx.text.ShiftRows), (8 bytes).
    Removing aes.o(.text.Cipher), (102 bytes).
    Removing aes.o(.ARM.exidx.text.Cipher), (8 bytes).
    Removing aes.o(.text.aesEncInit), (52 bytes).
    Removing aes.o(.ARM.exidx.text.aesEncInit), (8 bytes).
    Removing aes.o(.text.aesEncrypt), (48 bytes).
    Removing aes.o(.ARM.exidx.text.aesEncrypt), (8 bytes).
    Removing mk_gpio.o(.text), (0 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.gpio_open), (8 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.gpio_close), (8 bytes).
    Removing mk_gpio.o(.text.gpio_write), (12 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.gpio_write), (8 bytes).
    Removing mk_gpio.o(.text.gpio_read), (12 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.gpio_read), (8 bytes).
    Removing mk_gpio.o(.text.gpio_pin_set), (20 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.gpio_pin_set), (8 bytes).
    Removing mk_gpio.o(.text.gpio_pin_clr), (20 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.gpio_pin_clr), (8 bytes).
    Removing mk_gpio.o(.text.gpio_pin_toggle), (20 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.gpio_pin_toggle), (8 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.gpio_pin_get_val), (8 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.gpio_pin_set_dir), (8 bytes).
    Removing mk_gpio.o(.text.gpio_enable_irq), (204 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.gpio_enable_irq), (8 bytes).
    Removing mk_gpio.o(.text.gpio_disable_irq), (80 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.gpio_disable_irq), (8 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.GPIO_IRQHandler), (8 bytes).
    Removing mk_calib.o(.text), (0 bytes).
    Removing mk_calib.o(.ARM.exidx.text.calib_open), (8 bytes).
    Removing mk_calib.o(.ARM.exidx.text.calib_close), (8 bytes).
    Removing mk_calib.o(.ARM.exidx.text.calib_start), (8 bytes).
    Removing mk_calib.o(.ARM.exidx.text.calib_check), (8 bytes).
    Removing mk_calib.o(.ARM.exidx.text.calib_chip), (8 bytes).
    Removing mk_calib.o(.text.calib_xtal38m4_load_cap_set), (20 bytes).
    Removing mk_calib.o(.ARM.exidx.text.calib_xtal38m4_load_cap_set), (8 bytes).
    Removing mk_calib.o(.text.calib_xtal32k_load_cap_set), (20 bytes).
    Removing mk_calib.o(.ARM.exidx.text.calib_xtal32k_load_cap_set), (8 bytes).
    Removing mk_calib.o(.text.calib_xtal38m4_load_cap_auto_tune), (40 bytes).
    Removing mk_calib.o(.ARM.exidx.text.calib_xtal38m4_load_cap_auto_tune), (8 bytes).
    Removing mk_calib.o(.text.calib_xtal38m4_with_clock_out), (48 bytes).
    Removing mk_calib.o(.ARM.exidx.text.calib_xtal38m4_with_clock_out), (8 bytes).
    Removing mk_calib.o(.text.calib_xtal32k_with_clock_out), (52 bytes).
    Removing mk_calib.o(.ARM.exidx.text.calib_xtal32k_with_clock_out), (8 bytes).
    Removing mk_calib.o(.ARM.exidx.text.CALIB_IRQHandler), (8 bytes).
    Removing mk_wdt.o(.text), (0 bytes).
    Removing mk_wdt.o(.ARM.exidx.text.wdt_open), (8 bytes).
    Removing mk_wdt.o(.ARM.exidx.text.wdt_close), (8 bytes).
    Removing mk_wdt.o(.text.wdt_set_time), (48 bytes).
    Removing mk_wdt.o(.ARM.exidx.text.wdt_set_time), (8 bytes).
    Removing mk_wdt.o(.ARM.exidx.text.wdt_ping), (8 bytes).
    Removing mk_wdt.o(.text.wdt_time_left), (36 bytes).
    Removing mk_wdt.o(.ARM.exidx.text.wdt_time_left), (8 bytes).
    Removing mk_wdt.o(.ARM.exidx.text.WDT_IRQHandler), (8 bytes).
    Removing mk_io.o(.text), (0 bytes).
    Removing mk_io.o(.ARM.exidx.text.io_pin_mux_set), (8 bytes).
    Removing mk_io.o(.text.io_open_drain_set), (28 bytes).
    Removing mk_io.o(.ARM.exidx.text.io_open_drain_set), (8 bytes).
    Removing mk_io.o(.text.io_drive_set), (28 bytes).
    Removing mk_io.o(.ARM.exidx.text.io_drive_set), (8 bytes).
    Removing mk_io.o(.ARM.exidx.text.io_pull_set), (8 bytes).
    Removing mk_misc.o(.text), (0 bytes).
    Removing mk_misc.o(.ARM.exidx.text.mk_chip_id), (8 bytes).
    Removing mk_misc.o(.text.mk_chip_uuid), (76 bytes).
    Removing mk_misc.o(.ARM.exidx.text.mk_chip_uuid), (8 bytes).
    Removing mk_misc.o(.text.bod_open), (84 bytes).
    Removing mk_misc.o(.ARM.exidx.text.bod_open), (8 bytes).
    Removing mk_misc.o(.text.bod_close), (44 bytes).
    Removing mk_misc.o(.ARM.exidx.text.bod_close), (8 bytes).
    Removing mk_misc.o(.ARM.exidx.text.BOD_IRQHandler), (8 bytes).
    Removing mk_misc.o(.text.bor_open), (48 bytes).
    Removing mk_misc.o(.ARM.exidx.text.bor_open), (8 bytes).
    Removing mk_misc.o(.text.bor_close), (16 bytes).
    Removing mk_misc.o(.ARM.exidx.text.bor_close), (8 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_timer_open), (8 bytes).
    Removing mk_misc.o(.text.sys_timer_close), (10 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_timer_close), (8 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_timer_get), (8 bytes).
    Removing mk_misc.o(.text.sys_timer_delay_us), (56 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_timer_delay_us), (8 bytes).
    Removing mk_misc.o(.text.sys_timer_delay_ms), (48 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_timer_delay_ms), (8 bytes).
    Removing mk_misc.o(.text.mac_timer_open), (36 bytes).
    Removing mk_misc.o(.ARM.exidx.text.mac_timer_open), (8 bytes).
    Removing mk_misc.o(.text.mac_timer_close), (10 bytes).
    Removing mk_misc.o(.ARM.exidx.text.mac_timer_close), (8 bytes).
    Removing mk_misc.o(.text.mac_timer_start), (12 bytes).
    Removing mk_misc.o(.ARM.exidx.text.mac_timer_start), (8 bytes).
    Removing mk_misc.o(.text.mac_timer_stop), (10 bytes).
    Removing mk_misc.o(.ARM.exidx.text.mac_timer_stop), (8 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_tick_start), (8 bytes).
    Removing mk_misc.o(.text.sys_tick_us), (88 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_tick_us), (8 bytes).
    Removing mk_misc.o(.text.sys_tick_ms), (96 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_tick_ms), (8 bytes).
    Removing mk_misc.o(.text.sys_tick_get), (12 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_tick_get), (8 bytes).
    Removing mk_misc.o(.text.sys_tick_callback_set), (12 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_tick_callback_set), (8 bytes).
    Removing mk_misc.o(.text.sys_tick_elapse_ms), (72 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_tick_elapse_ms), (8 bytes).
    Removing mk_misc.o(.text.sys_tick_pause), (72 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_tick_pause), (8 bytes).
    Removing mk_misc.o(.text.sys_tick_resume), (72 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_tick_resume), (8 bytes).
    Removing mk_misc.o(.ARM.exidx.text.SysTick_Handler), (8 bytes).
    Removing mk_misc.o(.text.sys_reset), (36 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_reset), (8 bytes).
    Removing mk_misc.o(.ARM.exidx.text.delay_us), (8 bytes).
    Removing mk_misc.o(.text.count_bits), (18 bytes).
    Removing mk_misc.o(.ARM.exidx.text.count_bits), (8 bytes).
    Removing mk_misc.o(.text.search_byte_right_one), (50 bytes).
    Removing mk_misc.o(.ARM.exidx.text.search_byte_right_one), (8 bytes).
    Removing mk_misc.o(.text.byte_right_one_mask), (6 bytes).
    Removing mk_misc.o(.ARM.exidx.text.byte_right_one_mask), (8 bytes).
    Removing mk_misc.o(.text.average_filter), (72 bytes).
    Removing mk_misc.o(.ARM.exidx.text.average_filter), (8 bytes).
    Removing mk_misc.o(.text.mk_q7_to_s16), (12 bytes).
    Removing mk_misc.o(.ARM.exidx.text.mk_q7_to_s16), (8 bytes).
    Removing mk_misc.o(.text.mk_s16_to_q7), (6 bytes).
    Removing mk_misc.o(.ARM.exidx.text.mk_s16_to_q7), (8 bytes).
    Removing mk_misc.o(.text.mk_q7_to_f32), (22 bytes).
    Removing mk_misc.o(.ARM.exidx.text.mk_q7_to_f32), (8 bytes).
    Removing mk_misc.o(.text.mk_f32_to_q7), (16 bytes).
    Removing mk_misc.o(.ARM.exidx.text.mk_f32_to_q7), (8 bytes).
    Removing mk_misc.o(.rodata.cst8), (8 bytes).
    Removing mk_misc.o(.rodata..L__const.mac_timer_open.mac_timer_cfg), (24 bytes).
    Removing mk_misc.o(.bss..L_MergedGlobals), (24 bytes).
    Removing mk_power.o(.text), (0 bytes).
    Removing mk_power.o(.text.power_fem_tx_ctrl), (2 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_fem_tx_ctrl), (8 bytes).
    Removing mk_power.o(.text.power_fem_rx_ctrl), (2 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_fem_rx_ctrl), (8 bytes).
    Removing mk_power.o(.text.power_init), (56 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_init), (8 bytes).
    Removing mk_power.o(.text.power_on_radio), (52 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_on_radio), (8 bytes).
    Removing mk_power.o(.text.power_mode_request), (72 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_mode_request), (8 bytes).
    Removing mk_power.o(.text.power_off_radio), (48 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_off_radio), (8 bytes).
    Removing mk_power.o(.text.power_mode_clear), (60 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_mode_clear), (8 bytes).
    Removing mk_power.o(.text.power_enter_sleep_mode), (20 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_enter_sleep_mode), (8 bytes).
    Removing mk_power.o(.text.enter_power_down_in_ram), (296 bytes).
    Removing mk_power.o(.ARM.exidx.text.enter_power_down_in_ram), (8 bytes).
    Removing mk_power.o(.text.power_enter_power_down_mode), (104 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_enter_power_down_mode), (8 bytes).
    Removing mk_power.o(.text.board_prepare_for_power_down), (2 bytes).
    Removing mk_power.o(.ARM.exidx.text.board_prepare_for_power_down), (8 bytes).
    Removing mk_power.o(.text.board_restore_from_power_down), (2 bytes).
    Removing mk_power.o(.ARM.exidx.text.board_restore_from_power_down), (8 bytes).
    Removing mk_power.o(.text.enter_shelf_mode_in_ram), (40 bytes).
    Removing mk_power.o(.ARM.exidx.text.enter_shelf_mode_in_ram), (8 bytes).
    Removing mk_power.o(.text.power_enter_shelf_mode), (20 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_enter_shelf_mode), (8 bytes).
    Removing mk_power.o(.text.power_mode_requester_get), (12 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_mode_requester_get), (8 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_wakeup_enable), (8 bytes).
    Removing mk_power.o(.text.power_wakeup_disable), (32 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_wakeup_disable), (8 bytes).
    Removing mk_power.o(.text.power_manage), (240 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_manage), (8 bytes).
    Removing mk_power.o(.text.app_restore_from_power_down), (2 bytes).
    Removing mk_power.o(.ARM.exidx.text.app_restore_from_power_down), (8 bytes).
    Removing mk_power.o(.bss.power_env), (20 bytes).
    Removing mk_dual_timer.o(.text), (0 bytes).
    Removing mk_dual_timer.o(.ARM.exidx.text.dual_timer_open), (8 bytes).
    Removing mk_dual_timer.o(.text.dual_timer_close), (104 bytes).
    Removing mk_dual_timer.o(.ARM.exidx.text.dual_timer_close), (8 bytes).
    Removing mk_dual_timer.o(.ARM.exidx.text.dual_timer_start), (8 bytes).
    Removing mk_dual_timer.o(.text.dual_timer_stop), (20 bytes).
    Removing mk_dual_timer.o(.ARM.exidx.text.dual_timer_stop), (8 bytes).
    Removing mk_dual_timer.o(.text.dual_timer_reset), (10 bytes).
    Removing mk_dual_timer.o(.ARM.exidx.text.dual_timer_reset), (8 bytes).
    Removing mk_dual_timer.o(.text.dual_timer_set), (16 bytes).
    Removing mk_dual_timer.o(.ARM.exidx.text.dual_timer_set), (8 bytes).
    Removing mk_dual_timer.o(.ARM.exidx.text.dual_timer_get), (8 bytes).
    Removing mk_dual_timer.o(.text.dual_timer_delay), (24 bytes).
    Removing mk_dual_timer.o(.ARM.exidx.text.dual_timer_delay), (8 bytes).
    Removing mk_dual_timer.o(.ARM.exidx.text.TIMER2_IRQHandler), (8 bytes).
    Removing mk_dual_timer.o(.ARM.exidx.text.TIMER3_IRQHandler), (8 bytes).
    Removing mk_sleep_timer.o(.text), (0 bytes).
    Removing mk_sleep_timer.o(.ARM.exidx.text.sleep_timer_open), (8 bytes).
    Removing mk_sleep_timer.o(.ARM.exidx.text.sleep_timer_close), (8 bytes).
    Removing mk_sleep_timer.o(.ARM.exidx.text.sleep_timer_start), (8 bytes).
    Removing mk_sleep_timer.o(.text.sleep_timer_stop), (12 bytes).
    Removing mk_sleep_timer.o(.ARM.exidx.text.sleep_timer_stop), (8 bytes).
    Removing mk_sleep_timer.o(.text.high_xtal_off_time), (12 bytes).
    Removing mk_sleep_timer.o(.ARM.exidx.text.high_xtal_off_time), (8 bytes).
    Removing mk_sleep_timer.o(.text.sleep_timer_ppm_set), (12 bytes).
    Removing mk_sleep_timer.o(.ARM.exidx.text.sleep_timer_ppm_set), (8 bytes).
    Removing mk_sleep_timer.o(.text.sleep_timer_ppm_get), (12 bytes).
    Removing mk_sleep_timer.o(.ARM.exidx.text.sleep_timer_ppm_get), (8 bytes).
    Removing mk_sleep_timer.o(.ARM.exidx.text.SLEEP_TIMER_IRQHandler), (8 bytes).
    Removing menu.o(.text), (0 bytes).
    Removing menu.o(.ARM.exidx.text.Int2Str), (8 bytes).
    Removing menu.o(.text.IAP_JumpTo), (36 bytes).
    Removing menu.o(.ARM.exidx.text.IAP_JumpTo), (8 bytes).
    Removing menu.o(.ARM.exidx.text.SerialDownload), (8 bytes).
    Removing menu.o(.text.GetKey), (24 bytes).
    Removing menu.o(.ARM.exidx.text.GetKey), (8 bytes).
    Removing menu.o(.text.SerialUpload), (176 bytes).
    Removing menu.o(.ARM.exidx.text.SerialUpload), (8 bytes).
    Removing menu.o(.ARM.exidx.text.delay_ms), (8 bytes).
    Removing menu.o(.ARM.exidx.text.Main_Menu), (8 bytes).
    Removing menu.o(.ARM.exidx.text.__NVIC_SystemReset), (8 bytes).
    Removing menu.o(.bss.FlashProtection), (4 bytes).
    Removing menu.o(.bss.Jump_To_Application), (4 bytes).
    Removing menu.o(.bss.JumpAddress), (4 bytes).
    Removing menu.o(.bss.gongkaflag), (1 bytes).
    Removing menu.o(.bss.shouhuanflag), (1 bytes).
    Removing ymodem.o(.text), (0 bytes).
    Removing ymodem.o(.ARM.exidx.text.Str2Int), (8 bytes).
    Removing ymodem.o(.ARM.exidx.text.Receive_Byte), (8 bytes).
    Removing ymodem.o(.ARM.exidx.text.Send_Byte), (8 bytes).
    Removing ymodem.o(.ARM.exidx.text.UpdateCRC16), (8 bytes).
    Removing ymodem.o(.ARM.exidx.text.Cal_CRC16), (8 bytes).
    Removing ymodem.o(.text.CalChecksum), (20 bytes).
    Removing ymodem.o(.ARM.exidx.text.CalChecksum), (8 bytes).
    Removing ymodem.o(.ARM.exidx.text.Ymodem_Receive), (8 bytes).
    Removing ymodem.o(.text.Ymodem_CheckResponse), (4 bytes).
    Removing ymodem.o(.ARM.exidx.text.Ymodem_CheckResponse), (8 bytes).
    Removing ymodem.o(.text.Ymodem_PrepareIntialPacket), (86 bytes).
    Removing ymodem.o(.ARM.exidx.text.Ymodem_PrepareIntialPacket), (8 bytes).
    Removing ymodem.o(.text.Ymodem_PreparePacket), (80 bytes).
    Removing ymodem.o(.ARM.exidx.text.Ymodem_PreparePacket), (8 bytes).
    Removing ymodem.o(.text.Ymodem_SendPacket), (24 bytes).
    Removing ymodem.o(.ARM.exidx.text.Ymodem_SendPacket), (8 bytes).
    Removing ymodem.o(.text.Ymodem_Transmit), (520 bytes).
    Removing ymodem.o(.ARM.exidx.text.Ymodem_Transmit), (8 bytes).
    Removing customboot.o(.text), (0 bytes).
    Removing customboot.o(.ARM.exidx.text.usartdata_process), (8 bytes).
    Removing customboot.o(.ARM.exidx.text.app_wdt_callback), (8 bytes).
    Removing customboot.o(.ARM.exidx.text.main), (8 bytes).
    Removing customboot.o(.ARM.exidx.text.sleep_timer_callback), (8 bytes).
    Removing customboot.o(.ARM.exidx.text.__NVIC_SystemReset), (8 bytes).
    Removing customboot.o(.bss.trx_buf), (10 bytes).
    Removing customboot.o(.bss.time32_incr), (4 bytes).
    Removing customboot.o(.bss.state111), (1 bytes).
    Removing customboot.o(.bss.jiexi_shuju), (128 bytes).
    Removing customboot.o(.ARM.use_no_argv), (4 bytes).
    Removing board.o(.text), (0 bytes).
    Removing board.o(.ARM.exidx.text.board_clock_run), (8 bytes).
    Removing board.o(.text.board_debug_console_open), (2 bytes).
    Removing board.o(.ARM.exidx.text.board_debug_console_open), (8 bytes).
    Removing board.o(.text.board_calibration_params_default), (12 bytes).
    Removing board.o(.ARM.exidx.text.board_calibration_params_default), (8 bytes).
    Removing board.o(.text.board_calibration_params_load), (12 bytes).
    Removing board.o(.ARM.exidx.text.board_calibration_params_load), (8 bytes).
    Removing board.o(.text.board_calibration_param_write), (4 bytes).
    Removing board.o(.ARM.exidx.text.board_calibration_param_write), (8 bytes).
    Removing board.o(.text.board_ranging_result_correct), (64 bytes).
    Removing board.o(.ARM.exidx.text.board_ranging_result_correct), (8 bytes).
    Removing board.o(.text.board_5V_input_init), (36 bytes).
    Removing board.o(.ARM.exidx.text.board_5V_input_init), (8 bytes).
    Removing board.o(.text.board_button_init), (56 bytes).
    Removing board.o(.ARM.exidx.text.board_button_init), (8 bytes).
    Removing board.o(.text.board_led_init), (28 bytes).
    Removing board.o(.ARM.exidx.text.board_led_init), (8 bytes).
    Removing board.o(.text.board_led_on), (8 bytes).
    Removing board.o(.ARM.exidx.text.board_led_on), (8 bytes).
    Removing board.o(.text.board_led_off), (8 bytes).
    Removing board.o(.ARM.exidx.text.board_led_off), (8 bytes).
    Removing board.o(.text.board_led_toggle), (8 bytes).
    Removing board.o(.ARM.exidx.text.board_led_toggle), (8 bytes).
    Removing board.o(.ARM.exidx.text.board_configure), (8 bytes).
    Removing board.o(.text.board_prepare_for_power_down), (10 bytes).
    Removing board.o(.ARM.exidx.text.board_prepare_for_power_down), (8 bytes).
    Removing board.o(.text.board_restore_from_power_down), (36 bytes).
    Removing board.o(.ARM.exidx.text.board_restore_from_power_down), (8 bytes).
    Removing board.o(.bss.button_irq_handler), (4 bytes).
    Removing pin_config.o(.text), (0 bytes).
    Removing pin_config.o(.text.uart1_change_shouhuan), (56 bytes).
    Removing pin_config.o(.ARM.exidx.text.uart1_change_shouhuan), (8 bytes).
    Removing pin_config.o(.text.uart1_change_gongka), (56 bytes).
    Removing pin_config.o(.ARM.exidx.text.uart1_change_gongka), (8 bytes).
    Removing pin_config.o(.ARM.exidx.text.uart1_xuanze), (8 bytes).
    Removing pin_config.o(.ARM.exidx.text.board_pins_config), (8 bytes).
    Removing fmul.o(.text), (122 bytes).
    Removing dmul.o(.text), (208 bytes).
    Removing fcmplt.o(.text), (28 bytes).
    Removing dflti.o(.text), (40 bytes).
    Removing ffixi.o(.text), (50 bytes).
    Removing d2f.o(.text), (56 bytes).
    Removing fepilogue.o(.text), (130 bytes).
    Removing depilogue.o(.text), (190 bytes).
    Removing fcmp4.o(.text), (52 bytes).
    Removing depilogue.o(i.__ARM_clz), (46 bytes).
 
424 unused section(s) (total 10031 bytes) removed from the image.
 
==============================================================================
 
Image Symbol Table
 
    Local Symbols
 
    Symbol Name                              Value     Ov Type        Size  Object(Section)
 
    ../clib/../cmprslib/zerorunl.c           0x00000000   Number         0  __dczerorl.o ABSOLUTE
    ../clib/microlib/division.c              0x00000000   Number         0  uidiv.o ABSOLUTE
    ../clib/microlib/division.c              0x00000000   Number         0  idiv.o ABSOLUTE
    ../clib/microlib/division.c              0x00000000   Number         0  ldiv.o ABSOLUTE
    ../clib/microlib/division.c              0x00000000   Number         0  uldiv.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry4.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry5.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry7a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry7b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry8a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry8b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry9a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry9b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry10a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry10b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry11a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry11b.o ABSOLUTE
    ../clib/microlib/longlong.c              0x00000000   Number         0  llshl.o ABSOLUTE
    ../clib/microlib/longlong.c              0x00000000   Number         0  llushr.o ABSOLUTE
    ../clib/microlib/string/memcpy.c         0x00000000   Number         0  memcpya.o ABSOLUTE
    ../clib/microlib/string/memcpy.c         0x00000000   Number         0  memcpyb.o ABSOLUTE
    ../clib/microlib/string/memset.c         0x00000000   Number         0  memseta.o ABSOLUTE
    ../clib/microlib/stubs.s                 0x00000000   Number         0  iusefp.o ABSOLUTE
    ../fplib/microlib/d2f.c                  0x00000000   Number         0  d2f.o ABSOLUTE
    ../fplib/microlib/fpcmp.c                0x00000000   Number         0  fcmplt.o ABSOLUTE
    ../fplib/microlib/fpcmp4.c               0x00000000   Number         0  fcmp4.o ABSOLUTE
    ../fplib/microlib/fpepilogue.c           0x00000000   Number         0  fepilogue.o ABSOLUTE
    ../fplib/microlib/fpepilogue.c           0x00000000   Number         0  depilogue.o ABSOLUTE
    ../fplib/microlib/fpfix.c                0x00000000   Number         0  ffixi.o ABSOLUTE
    ../fplib/microlib/fpflt.c                0x00000000   Number         0  dflti.o ABSOLUTE
    ../fplib/microlib/fpmul.c                0x00000000   Number         0  fmul.o ABSOLUTE
    ../fplib/microlib/fpmul.c                0x00000000   Number         0  dmul.o ABSOLUTE
    ../mathlib/fmax.c                        0x00000000   Number         0  fminf.o ABSOLUTE
    aes.c                                    0x00000000   Number         0  aes.o ABSOLUTE
    board.c                                  0x00000000   Number         0  board.o ABSOLUTE
    customboot.c                             0x00000000   Number         0  customboot.o ABSOLUTE
    dc.s                                     0x00000000   Number         0  dc.o ABSOLUTE
    handlers.s                               0x00000000   Number         0  handlers.o ABSOLUTE
    init.s                                   0x00000000   Number         0  init.o ABSOLUTE
    menu.c                                   0x00000000   Number         0  menu.o ABSOLUTE
    mk_calib.c                               0x00000000   Number         0  mk_calib.o ABSOLUTE
    mk_clock.c                               0x00000000   Number         0  mk_clock.o ABSOLUTE
    mk_dma.c                                 0x00000000   Number         0  mk_dma.o ABSOLUTE
    mk_dual_timer.c                          0x00000000   Number         0  mk_dual_timer.o ABSOLUTE
    mk_flash.c                               0x00000000   Number         0  mk_flash.o ABSOLUTE
    mk_gpio.c                                0x00000000   Number         0  mk_gpio.o ABSOLUTE
    mk_io.c                                  0x00000000   Number         0  mk_io.o ABSOLUTE
    mk_misc.c                                0x00000000   Number         0  mk_misc.o ABSOLUTE
    mk_power.c                               0x00000000   Number         0  mk_power.o ABSOLUTE
    mk_reset.c                               0x00000000   Number         0  mk_reset.o ABSOLUTE
    mk_sleep_timer.c                         0x00000000   Number         0  mk_sleep_timer.o ABSOLUTE
    mk_uart.c                                0x00000000   Number         0  mk_uart.o ABSOLUTE
    mk_wdt.c                                 0x00000000   Number         0  mk_wdt.o ABSOLUTE
    pin_config.c                             0x00000000   Number         0  pin_config.o ABSOLUTE
    startup_MK800X.c                         0x00000000   Number         0  startup_mk800x.o ABSOLUTE
    system_MK800X.c                          0x00000000   Number         0  system_mk800x.o ABSOLUTE
    ymodem.c                                 0x00000000   Number         0  ymodem.o ABSOLUTE
    __tagsym$$used.0                         0x0202a000   Number         0  startup_mk800x.o(RESET)
    .ARM.Collect$$$$00000000                 0x0202a0c0   Section        0  entry.o(.ARM.Collect$$$$00000000)
    .ARM.Collect$$$$00000003                 0x0202a0c0   Section        4  entry4.o(.ARM.Collect$$$$00000003)
    .ARM.Collect$$$$00000004                 0x0202a0c4   Section        4  entry5.o(.ARM.Collect$$$$00000004)
    .ARM.Collect$$$$00000008                 0x0202a0c8   Section        0  entry7b.o(.ARM.Collect$$$$00000008)
    .ARM.Collect$$$$0000000A                 0x0202a0c8   Section        0  entry8b.o(.ARM.Collect$$$$0000000A)
    .ARM.Collect$$$$0000000B                 0x0202a0c8   Section        8  entry9a.o(.ARM.Collect$$$$0000000B)
    __lit__00000000                          0x0202a0d0   Data           4  entry4.o(.ARM.Collect$$$$00002714)
    .ARM.Collect$$$$0000000D                 0x0202a0d0   Section        0  entry10a.o(.ARM.Collect$$$$0000000D)
    .ARM.Collect$$$$0000000F                 0x0202a0d0   Section        0  entry11a.o(.ARM.Collect$$$$0000000F)
    .ARM.Collect$$$$00002714                 0x0202a0d0   Section        4  entry4.o(.ARM.Collect$$$$00002714)
    .text                                    0x0202a0d4   Section        0  uidiv.o(.text)
    .text                                    0x0202a100   Section        0  idiv.o(.text)
    .text                                    0x0202a128   Section        0  memcpya.o(.text)
    .text                                    0x0202a14c   Section        0  memseta.o(.text)
    .text                                    0x0202a170   Section       36  init.o(.text)
    .text                                    0x0202a194   Section        0  __dczerorl.o(.text)
    [Anonymous Symbol]                       0x0202a1ce   Section        0  mk_misc.o(.text.BOD_IRQHandler)
    [Anonymous Symbol]                       0x0202a1d0   Section        0  mk_calib.o(.text.CALIB_IRQHandler)
    [Anonymous Symbol]                       0x0202a1d2   Section        0  ymodem.o(.text.Cal_CRC16)
    [Anonymous Symbol]                       0x0202a1fc   Section        0  aes.o(.text.CalcCols)
    [Anonymous Symbol]                       0x0202a21c   Section        0  aes.o(.text.CalcPowLog)
    [Anonymous Symbol]                       0x0202a248   Section        0  aes.o(.text.CalcSBox)
    __arm_cp.1_0                             0x0202a288   Number         4  aes.o(.text.CalcSBox)
    [Anonymous Symbol]                       0x0202a28c   Section        0  aes.o(.text.CalcSBoxInv)
    [Anonymous Symbol]                       0x0202a2b4   Section        0  aes.o(.text.CopyBytes)
    [Anonymous Symbol]                       0x0202a2c4   Section        0  mk_dma.o(.text.DMA_IRQHandler)
    __arm_cp.7_0                             0x0202a328   Number         4  mk_dma.o(.text.DMA_IRQHandler)
    [Anonymous Symbol]                       0x0202a32c   Section        0  startup_mk800x.o(.text.Default_Handler)
    [Anonymous Symbol]                       0x0202a330   Section        0  mk_flash.o(.text.FLASH_CTRL_IRQHandler)
    __arm_cp.23_0                            0x0202a358   Number         4  mk_flash.o(.text.FLASH_CTRL_IRQHandler)
    [Anonymous Symbol]                       0x0202a35c   Section        0  mk_gpio.o(.text.GPIO_IRQHandler)
    __arm_cp.11_0                            0x0202a390   Number         4  mk_gpio.o(.text.GPIO_IRQHandler)
    [Anonymous Symbol]                       0x0202a394   Section        0  menu.o(.text.Int2Str)
    __arm_cp.0_0                             0x0202a3f0   Number         4  menu.o(.text.Int2Str)
    [Anonymous Symbol]                       0x0202a3f4   Section        0  aes.o(.text.InvCipher)
    [Anonymous Symbol]                       0x0202a44c   Section        0  aes.o(.text.InvMixColumn)
    __arm_cp.5_0                             0x0202a4f8   Number         4  aes.o(.text.InvMixColumn)
    [Anonymous Symbol]                       0x0202a4fc   Section        0  aes.o(.text.InvShiftRows)
    [Anonymous Symbol]                       0x0202a530   Section        0  aes.o(.text.InvSubBytesAndXOR)
    __arm_cp.7_0                             0x0202a54c   Number         4  aes.o(.text.InvSubBytesAndXOR)
    [Anonymous Symbol]                       0x0202a550   Section        0  aes.o(.text.KeyExpansion)
    __arm_cp.11_0                            0x0202a61c   Number         4  aes.o(.text.KeyExpansion)
    [Anonymous Symbol]                       0x0202a620   Section        0  menu.o(.text.Main_Menu)
    __arm_cp.6_0                             0x0202a664   Number         4  menu.o(.text.Main_Menu)
    __arm_cp.6_1                             0x0202a668   Number         4  menu.o(.text.Main_Menu)
    [Anonymous Symbol]                       0x0202a66c   Section        0  ymodem.o(.text.Receive_Byte)
    [Anonymous Symbol]                       0x0202a68c   Section        0  startup_mk800x.o(.text.Reset_Handler)
    __arm_cp.1_0                             0x0202a6a8   Number         4  startup_mk800x.o(.text.Reset_Handler)
    [Anonymous Symbol]                       0x0202a6ac   Section        0  mk_sleep_timer.o(.text.SLEEP_TIMER_IRQHandler)
    __arm_cp.7_0                             0x0202a6dc   Number         4  mk_sleep_timer.o(.text.SLEEP_TIMER_IRQHandler)
    __arm_cp.7_1                             0x0202a6e0   Number         4  mk_sleep_timer.o(.text.SLEEP_TIMER_IRQHandler)
    __arm_cp.7_2                             0x0202a6e4   Number         4  mk_sleep_timer.o(.text.SLEEP_TIMER_IRQHandler)
    [Anonymous Symbol]                       0x0202a6e8   Section        0  ymodem.o(.text.Send_Byte)
    [Anonymous Symbol]                       0x0202a6f4   Section        0  menu.o(.text.SerialDownload)
    __arm_cp.2_0                             0x0202a74c   Number         4  menu.o(.text.SerialDownload)
    __arm_cp.2_1                             0x0202a750   Number         4  menu.o(.text.SerialDownload)
    __arm_cp.2_2                             0x0202a754   Number         4  menu.o(.text.SerialDownload)
    __arm_cp.2_3                             0x0202a758   Number         4  menu.o(.text.SerialDownload)
    [Anonymous Symbol]                       0x0202a78c   Section        0  mk_uart.o(.text.SerialKeyPressed)
    [Anonymous Symbol]                       0x0202a7a4   Section        0  mk_uart.o(.text.SerialPutChar)
    __arm_cp.2_0                             0x0202a7c4   Number         4  mk_uart.o(.text.SerialPutChar)
    [Anonymous Symbol]                       0x0202a7c8   Section        0  mk_uart.o(.text.Serial_PutString)
    [Anonymous Symbol]                       0x0202a7dc   Section        0  ymodem.o(.text.Str2Int)
    [Anonymous Symbol]                       0x0202a888   Section        0  aes.o(.text.SubBytes)
    __arm_cp.6_0                             0x0202a8a0   Number         4  aes.o(.text.SubBytes)
    [Anonymous Symbol]                       0x0202a8a4   Section        0  mk_misc.o(.text.SysTick_Handler)
    __arm_cp.24_0                            0x0202a8b8   Number         4  mk_misc.o(.text.SysTick_Handler)
    [Anonymous Symbol]                       0x0202a8bc   Section        0  system_mk800x.o(.text.SystemInit)
    __arm_cp.1_0                             0x0202a8c4   Number         4  system_mk800x.o(.text.SystemInit)
    __arm_cp.1_1                             0x0202a8c8   Number         4  system_mk800x.o(.text.SystemInit)
    [Anonymous Symbol]                       0x0202a8cc   Section        0  mk_dual_timer.o(.text.TIMER2_IRQHandler)
    [Anonymous Symbol]                       0x0202a8e8   Section        0  mk_dual_timer.o(.text.TIMER3_IRQHandler)
    __arm_cp.9_0                             0x0202a904   Number         4  mk_dual_timer.o(.text.TIMER3_IRQHandler)
    [Anonymous Symbol]                       0x0202a908   Section        0  mk_uart.o(.text.UART0_IRQHandler)
    [Anonymous Symbol]                       0x0202a912   Section        0  mk_uart.o(.text.UART1_IRQHandler)
    [Anonymous Symbol]                       0x0202a91c   Section        0  ymodem.o(.text.UpdateCRC16)
    __arm_cp.3_0                             0x0202a944   Number         4  ymodem.o(.text.UpdateCRC16)
    [Anonymous Symbol]                       0x0202a948   Section        0  mk_wdt.o(.text.WDT_IRQHandler)
    __arm_cp.5_0                             0x0202a960   Number         4  mk_wdt.o(.text.WDT_IRQHandler)
    [Anonymous Symbol]                       0x0202a964   Section        0  aes.o(.text.XORBytes)
    [Anonymous Symbol]                       0x0202a97c   Section        0  ymodem.o(.text.Ymodem_Receive)
    __arm_cp.6_0                             0x0202ac54   Number         4  ymodem.o(.text.Ymodem_Receive)
    __arm_cp.6_1                             0x0202ac58   Number         4  ymodem.o(.text.Ymodem_Receive)
    __arm_cp.6_2                             0x0202ac5c   Number         4  ymodem.o(.text.Ymodem_Receive)
    __arm_cp.6_3                             0x0202ac60   Number         4  ymodem.o(.text.Ymodem_Receive)
    __arm_cp.6_4                             0x0202ac64   Number         4  ymodem.o(.text.Ymodem_Receive)
    __arm_cp.6_5                             0x0202ac68   Number         4  ymodem.o(.text.Ymodem_Receive)
    __arm_cp.6_6                             0x0202ac6c   Number         4  ymodem.o(.text.Ymodem_Receive)
    __NVIC_SystemReset                       0x0202ac71   Thumb Code    20  menu.o(.text.__NVIC_SystemReset)
    [Anonymous Symbol]                       0x0202ac70   Section        0  menu.o(.text.__NVIC_SystemReset)
    __NVIC_SystemReset                       0x0202ac85   Thumb Code    28  customboot.o(.text.__NVIC_SystemReset)
    [Anonymous Symbol]                       0x0202ac84   Section        0  customboot.o(.text.__NVIC_SystemReset)
    __arm_cp.4_0                             0x0202ac98   Number         4  customboot.o(.text.__NVIC_SystemReset)
    __arm_cp.4_1                             0x0202ac9c   Number         4  customboot.o(.text.__NVIC_SystemReset)
    [Anonymous Symbol]                       0x0202aca0   Section        0  aes.o(.text.aesDecInit)
    __arm_cp.13_1                            0x0202acd0   Number         4  aes.o(.text.aesDecInit)
    __arm_cp.13_2                            0x0202acd4   Number         4  aes.o(.text.aesDecInit)
    [Anonymous Symbol]                       0x0202acd8   Section        0  aes.o(.text.aesDecrypt)
    __arm_cp.14_0                            0x0202ad10   Number         4  aes.o(.text.aesDecrypt)
    __arm_cp.14_1                            0x0202ad14   Number         4  aes.o(.text.aesDecrypt)
    app_wdt_callback                         0x0202ad19   Thumb Code     2  customboot.o(.text.app_wdt_callback)
    [Anonymous Symbol]                       0x0202ad18   Section        0  customboot.o(.text.app_wdt_callback)
    [Anonymous Symbol]                       0x0202ad1c   Section        0  board.o(.text.board_clock_run)
    __arm_cp.0_0                             0x0202ad78   Number         4  board.o(.text.board_clock_run)
    __arm_cp.0_1                             0x0202ad7c   Number         4  board.o(.text.board_clock_run)
    __arm_cp.0_2                             0x0202ad80   Number         4  board.o(.text.board_clock_run)
    [Anonymous Symbol]                       0x0202ad84   Section        0  board.o(.text.board_configure)
    [Anonymous Symbol]                       0x0202ad88   Section        0  pin_config.o(.text.board_pins_config)
    __arm_cp.3_0                             0x0202ae68   Number         4  pin_config.o(.text.board_pins_config)
    __arm_cp.3_1                             0x0202ae6c   Number         4  pin_config.o(.text.board_pins_config)
    __arm_cp.3_2                             0x0202ae70   Number         4  pin_config.o(.text.board_pins_config)
    __arm_cp.3_3                             0x0202ae74   Number         4  pin_config.o(.text.board_pins_config)
    __arm_cp.3_4                             0x0202ae78   Number         4  pin_config.o(.text.board_pins_config)
    [Anonymous Symbol]                       0x0202ae7c   Section        0  mk_calib.o(.text.calib_check)
    __arm_cp.3_0                             0x0202ae88   Number         4  mk_calib.o(.text.calib_check)
    [Anonymous Symbol]                       0x0202ae8c   Section        0  mk_calib.o(.text.calib_chip)
    __arm_cp.4_0                             0x0202af80   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_1                             0x0202af84   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_2                             0x0202af88   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_3                             0x0202af8c   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_4                             0x0202af90   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_5                             0x0202af94   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_6                             0x0202af98   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_7                             0x0202af9c   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_8                             0x0202afa0   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_10                            0x0202afa4   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_11                            0x0202afa8   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_12                            0x0202afac   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_13                            0x0202afb0   Number         4  mk_calib.o(.text.calib_chip)
    [Anonymous Symbol]                       0x0202afb4   Section        0  mk_calib.o(.text.calib_close)
    [Anonymous Symbol]                       0x0202afc0   Section        0  mk_calib.o(.text.calib_open)
    [Anonymous Symbol]                       0x0202afd4   Section        0  mk_calib.o(.text.calib_start)
    __arm_cp.2_0                             0x0202afe0   Number         4  mk_calib.o(.text.calib_start)
    [Anonymous Symbol]                       0x0202afe4   Section        0  mk_clock.o(.text.clock_attach)
    __arm_cp.2_1                             0x0202b09c   Number         4  mk_clock.o(.text.clock_attach)
    [Anonymous Symbol]                       0x0202b0a0   Section        0  mk_clock.o(.text.clock_disable)
    [Anonymous Symbol]                       0x0202b0b0   Section        0  mk_clock.o(.text.clock_enable)
    __arm_cp.0_0                             0x0202b0c0   Number         4  mk_clock.o(.text.clock_enable)
    clock_get_ahb_clk_freq                   0x0202b0c5   Thumb Code    20  mk_clock.o(.text.clock_get_ahb_clk_freq)
    [Anonymous Symbol]                       0x0202b0c4   Section        0  mk_clock.o(.text.clock_get_ahb_clk_freq)
    clock_get_apb_clk_freq                   0x0202b0d9   Thumb Code    20  mk_clock.o(.text.clock_get_apb_clk_freq)
    [Anonymous Symbol]                       0x0202b0d8   Section        0  mk_clock.o(.text.clock_get_apb_clk_freq)
    [Anonymous Symbol]                       0x0202b0ec   Section        0  mk_clock.o(.text.clock_get_frequency)
    clock_get_sys_clk_freq                   0x0202b141   Thumb Code    36  mk_clock.o(.text.clock_get_sys_clk_freq)
    [Anonymous Symbol]                       0x0202b140   Section        0  mk_clock.o(.text.clock_get_sys_clk_freq)
    __arm_cp.5_0                             0x0202b15c   Number         4  mk_clock.o(.text.clock_get_sys_clk_freq)
    __arm_cp.5_1                             0x0202b160   Number         4  mk_clock.o(.text.clock_get_sys_clk_freq)
    [Anonymous Symbol]                       0x0202b164   Section        0  mk_clock.o(.text.clock_set_divider)
    __arm_cp.3_0                             0x0202b1c0   Number         4  mk_clock.o(.text.clock_set_divider)
    [Anonymous Symbol]                       0x0202b1c4   Section        0  mk_clock.o(.text.clock_xtal38m4_injection_set)
    __arm_cp.8_0                             0x0202b1ec   Number         4  mk_clock.o(.text.clock_xtal38m4_injection_set)
    __arm_cp.8_1                             0x0202b1f0   Number         4  mk_clock.o(.text.clock_xtal38m4_injection_set)
    __arm_cp.8_2                             0x0202b1f4   Number         4  mk_clock.o(.text.clock_xtal38m4_injection_set)
    __arm_cp.8_3                             0x0202b1f8   Number         4  mk_clock.o(.text.clock_xtal38m4_injection_set)
    __arm_cp.8_4                             0x0202b1fc   Number         4  mk_clock.o(.text.clock_xtal38m4_injection_set)
    [Anonymous Symbol]                       0x0202b200   Section        0  menu.o(.text.delay_ms)
    [Anonymous Symbol]                       0x0202b20e   Section        0  mk_misc.o(.text.delay_us)
    loop1                                    0x0202b222   Number         0  mk_misc.o(.text.delay_us)
    exit1                                    0x0202b228   Number         0  mk_misc.o(.text.delay_us)
    [Anonymous Symbol]                       0x0202b22c   Section        0  mk_dma.o(.text.dma_open)
    [Anonymous Symbol]                       0x0202b308   Section        0  mk_dma.o(.text.dma_transfer)
    __arm_cp.4_0                             0x0202b350   Number         4  mk_dma.o(.text.dma_transfer)
    [Anonymous Symbol]                       0x0202b354   Section        0  mk_dual_timer.o(.text.dual_timer_get)
    [Anonymous Symbol]                       0x0202b360   Section        0  mk_dual_timer.o(.text.dual_timer_open)
    __arm_cp.0_1                             0x0202b41c   Number         4  mk_dual_timer.o(.text.dual_timer_open)
    __arm_cp.0_2                             0x0202b420   Number         4  mk_dual_timer.o(.text.dual_timer_open)
    __arm_cp.0_3                             0x0202b424   Number         4  mk_dual_timer.o(.text.dual_timer_open)
    __arm_cp.0_4                             0x0202b428   Number         4  mk_dual_timer.o(.text.dual_timer_open)
    [Anonymous Symbol]                       0x0202b42c   Section        0  mk_dual_timer.o(.text.dual_timer_start)
    __arm_cp.2_0                             0x0202b440   Number         4  mk_dual_timer.o(.text.dual_timer_start)
    [Anonymous Symbol]                       0x0202b444   Section        0  mk_flash.o(.text.flash_block_erase)
    __arm_cp.13_1                            0x0202b4cc   Number         4  mk_flash.o(.text.flash_block_erase)
    [Anonymous Symbol]                       0x0202b4d0   Section        0  mk_flash.o(.text.flash_check_busy)
    [Anonymous Symbol]                       0x0202b548   Section        0  mk_flash.o(.text.flash_close)
    flash_dma_callback                       0x0202b581   Thumb Code   220  mk_flash.o(.text.flash_dma_callback)
    [Anonymous Symbol]                       0x0202b580   Section        0  mk_flash.o(.text.flash_dma_callback)
    __arm_cp.21_1                            0x0202b658   Number         4  mk_flash.o(.text.flash_dma_callback)
    flash_dma_write_nbytes_callback          0x0202b65d   Thumb Code   200  mk_flash.o(.text.flash_dma_write_nbytes_callback)
    [Anonymous Symbol]                       0x0202b65c   Section        0  mk_flash.o(.text.flash_dma_write_nbytes_callback)
    __arm_cp.18_0                            0x0202b71c   Number         4  mk_flash.o(.text.flash_dma_write_nbytes_callback)
    __arm_cp.18_1                            0x0202b720   Number         4  mk_flash.o(.text.flash_dma_write_nbytes_callback)
    [Anonymous Symbol]                       0x0202b724   Section        0  mk_flash.o(.text.flash_erase)
    __arm_cp.14_0                            0x0202b858   Number         4  mk_flash.o(.text.flash_erase)
    [Anonymous Symbol]                       0x0202b85c   Section        0  mk_flash.o(.text.flash_open)
    __arm_cp.0_1                             0x0202b9cc   Number         4  mk_flash.o(.text.flash_open)
    __arm_cp.0_2                             0x0202b9d0   Number         4  mk_flash.o(.text.flash_open)
    __arm_cp.0_3                             0x0202b9d4   Number         4  mk_flash.o(.text.flash_open)
    __arm_cp.0_4                             0x0202b9d8   Number         4  mk_flash.o(.text.flash_open)
    flash_page_write_nbytes                  0x0202b9dd   Thumb Code    88  mk_flash.o(.text.flash_page_write_nbytes)
    [Anonymous Symbol]                       0x0202b9dc   Section        0  mk_flash.o(.text.flash_page_write_nbytes)
    __arm_cp.19_0                            0x0202ba30   Number         4  mk_flash.o(.text.flash_page_write_nbytes)
    [Anonymous Symbol]                       0x0202ba34   Section        0  mk_flash.o(.text.flash_read)
    __arm_cp.22_1                            0x0202bbac   Number         4  mk_flash.o(.text.flash_read)
    __arm_cp.22_2                            0x0202bbb0   Number         4  mk_flash.o(.text.flash_read)
    flash_read_status                        0x0202bbb5   Thumb Code    32  mk_flash.o(.text.flash_read_status)
    [Anonymous Symbol]                       0x0202bbb4   Section        0  mk_flash.o(.text.flash_read_status)
    flash_reset_cmd                          0x0202bbd5   Thumb Code    28  mk_flash.o(.text.flash_reset_cmd)
    [Anonymous Symbol]                       0x0202bbd4   Section        0  mk_flash.o(.text.flash_reset_cmd)
    __arm_cp.1_0                             0x0202bbec   Number         4  mk_flash.o(.text.flash_reset_cmd)
    [Anonymous Symbol]                       0x0202bbf0   Section        0  mk_flash.o(.text.flash_sector_erase)
    __arm_cp.10_1                            0x0202bc7c   Number         4  mk_flash.o(.text.flash_sector_erase)
    flash_state_update                       0x0202bc81   Thumb Code    72  mk_flash.o(.text.flash_state_update)
    [Anonymous Symbol]                       0x0202bc80   Section        0  mk_flash.o(.text.flash_state_update)
    flash_wait_done                          0x0202bcc9   Thumb Code    40  mk_flash.o(.text.flash_wait_done)
    [Anonymous Symbol]                       0x0202bcc8   Section        0  mk_flash.o(.text.flash_wait_done)
    flash_wait_status                        0x0202bcf1   Thumb Code    56  mk_flash.o(.text.flash_wait_status)
    [Anonymous Symbol]                       0x0202bcf0   Section        0  mk_flash.o(.text.flash_wait_status)
    __arm_cp.3_0                             0x0202bd24   Number         4  mk_flash.o(.text.flash_wait_status)
    flash_write_cmd                          0x0202bd29   Thumb Code   204  mk_flash.o(.text.flash_write_cmd)
    [Anonymous Symbol]                       0x0202bd28   Section        0  mk_flash.o(.text.flash_write_cmd)
    __arm_cp.2_0                             0x0202bdf0   Number         4  mk_flash.o(.text.flash_write_cmd)
    flash_write_mem_cmd                      0x0202bdf5   Thumb Code    44  mk_flash.o(.text.flash_write_mem_cmd)
    [Anonymous Symbol]                       0x0202bdf4   Section        0  mk_flash.o(.text.flash_write_mem_cmd)
    __arm_cp.5_0                             0x0202be18   Number         4  mk_flash.o(.text.flash_write_mem_cmd)
    __arm_cp.5_1                             0x0202be1c   Number         4  mk_flash.o(.text.flash_write_mem_cmd)
    [Anonymous Symbol]                       0x0202be20   Section        0  mk_flash.o(.text.flash_write_nbytes)
    __arm_cp.16_0                            0x0202c03c   Number         4  mk_flash.o(.text.flash_write_nbytes)
    __arm_cp.16_1                            0x0202c040   Number         4  mk_flash.o(.text.flash_write_nbytes)
    __arm_cp.16_2                            0x0202c044   Number         4  mk_flash.o(.text.flash_write_nbytes)
    flash_write_quad_mode                    0x0202c049   Thumb Code   120  mk_flash.o(.text.flash_write_quad_mode)
    [Anonymous Symbol]                       0x0202c048   Section        0  mk_flash.o(.text.flash_write_quad_mode)
    __arm_cp.4_0                             0x0202c0b8   Number         4  mk_flash.o(.text.flash_write_quad_mode)
    __arm_cp.4_1                             0x0202c0bc   Number         4  mk_flash.o(.text.flash_write_quad_mode)
    flash_write_variable_len_cmd             0x0202c0c1   Thumb Code   108  mk_flash.o(.text.flash_write_variable_len_cmd)
    [Anonymous Symbol]                       0x0202c0c0   Section        0  mk_flash.o(.text.flash_write_variable_len_cmd)
    __arm_cp.17_0                            0x0202c120   Number         4  mk_flash.o(.text.flash_write_variable_len_cmd)
    __arm_cp.17_1                            0x0202c124   Number         4  mk_flash.o(.text.flash_write_variable_len_cmd)
    __arm_cp.17_2                            0x0202c128   Number         4  mk_flash.o(.text.flash_write_variable_len_cmd)
    [Anonymous Symbol]                       0x0202c12c   Section        0  mk_gpio.o(.text.gpio_close)
    [Anonymous Symbol]                       0x0202c138   Section        0  mk_gpio.o(.text.gpio_open)
    [Anonymous Symbol]                       0x0202c14c   Section        0  mk_gpio.o(.text.gpio_pin_get_val)
    [Anonymous Symbol]                       0x0202c15c   Section        0  mk_gpio.o(.text.gpio_pin_set_dir)
    __arm_cp.8_0                             0x0202c1a0   Number         4  mk_gpio.o(.text.gpio_pin_set_dir)
    __arm_cp.8_1                             0x0202c1a4   Number         4  mk_gpio.o(.text.gpio_pin_set_dir)
    [Anonymous Symbol]                       0x0202c1a8   Section        0  mk_io.o(.text.io_pin_mux_set)
    __arm_cp.0_0                             0x0202c1f4   Number         4  mk_io.o(.text.io_pin_mux_set)
    [Anonymous Symbol]                       0x0202c1f8   Section        0  mk_io.o(.text.io_pull_set)
    __arm_cp.3_0                             0x0202c240   Number         4  mk_io.o(.text.io_pull_set)
    [Anonymous Symbol]                       0x0202c244   Section        0  customboot.o(.text.main)
    __arm_cp.2_0                             0x0202c494   Number         4  customboot.o(.text.main)
    __arm_cp.2_1                             0x0202c498   Number         4  customboot.o(.text.main)
    __arm_cp.2_2                             0x0202c49c   Number         4  customboot.o(.text.main)
    __arm_cp.2_3                             0x0202c4a0   Number         4  customboot.o(.text.main)
    __arm_cp.2_5                             0x0202c4c4   Number         4  customboot.o(.text.main)
    __arm_cp.2_6                             0x0202c4c8   Number         4  customboot.o(.text.main)
    __arm_cp.2_7                             0x0202c4cc   Number         4  customboot.o(.text.main)
    __arm_cp.2_8                             0x0202c4d0   Number         4  customboot.o(.text.main)
    __arm_cp.2_9                             0x0202c4d4   Number         4  customboot.o(.text.main)
    __arm_cp.2_11                            0x0202c4ec   Number         4  customboot.o(.text.main)
    __arm_cp.2_15                            0x0202c52c   Number         4  customboot.o(.text.main)
    __arm_cp.2_17                            0x0202c548   Number         4  customboot.o(.text.main)
    __arm_cp.2_18                            0x0202c54c   Number         4  customboot.o(.text.main)
    __arm_cp.2_20                            0x0202c560   Number         4  customboot.o(.text.main)
    [Anonymous Symbol]                       0x0202c564   Section        0  mk_misc.o(.text.mk_chip_id)
    __arm_cp.0_0                             0x0202c56c   Number         4  mk_misc.o(.text.mk_chip_id)
    [Anonymous Symbol]                       0x0202c570   Section        0  mk_power.o(.text.power_wakeup_enable)
    __arm_cp.15_0                            0x0202c5a4   Number         4  mk_power.o(.text.power_wakeup_enable)
    [Anonymous Symbol]                       0x0202c5a8   Section        0  mk_reset.o(.text.reset_module)
    __arm_cp.2_0                             0x0202c5c0   Number         4  mk_reset.o(.text.reset_module)
    sleep_timer_callback                     0x0202c5c5   Thumb Code    36  customboot.o(.text.sleep_timer_callback)
    [Anonymous Symbol]                       0x0202c5c4   Section        0  customboot.o(.text.sleep_timer_callback)
    __arm_cp.3_0                             0x0202c5e4   Number         4  customboot.o(.text.sleep_timer_callback)
    [Anonymous Symbol]                       0x0202c5e8   Section        0  mk_sleep_timer.o(.text.sleep_timer_close)
    [Anonymous Symbol]                       0x0202c60c   Section        0  mk_sleep_timer.o(.text.sleep_timer_open)
    __arm_cp.0_0                             0x0202c654   Number         4  mk_sleep_timer.o(.text.sleep_timer_open)
    __arm_cp.0_1                             0x0202c658   Number         4  mk_sleep_timer.o(.text.sleep_timer_open)
    __arm_cp.0_3                             0x0202c65c   Number         4  mk_sleep_timer.o(.text.sleep_timer_open)
    __arm_cp.0_5                             0x0202c660   Number         4  mk_sleep_timer.o(.text.sleep_timer_open)
    [Anonymous Symbol]                       0x0202c664   Section        0  mk_sleep_timer.o(.text.sleep_timer_start)
    __arm_cp.2_0                             0x0202c68c   Number         4  mk_sleep_timer.o(.text.sleep_timer_start)
    __arm_cp.2_1                             0x0202c690   Number         4  mk_sleep_timer.o(.text.sleep_timer_start)
    __arm_cp.2_2                             0x0202c694   Number         4  mk_sleep_timer.o(.text.sleep_timer_start)
    __arm_cp.2_3                             0x0202c698   Number         4  mk_sleep_timer.o(.text.sleep_timer_start)
    [Anonymous Symbol]                       0x0202c69c   Section        0  startup_mk800x.o(.text.start_main_asm)
    [Anonymous Symbol]                       0x0202c6a4   Section        0  mk_misc.o(.text.sys_tick_start)
    __arm_cp.16_0                            0x0202c6c8   Number         4  mk_misc.o(.text.sys_tick_start)
    __arm_cp.16_1                            0x0202c6cc   Number         4  mk_misc.o(.text.sys_tick_start)
    [Anonymous Symbol]                       0x0202c6d0   Section        0  mk_misc.o(.text.sys_timer_get)
    [Anonymous Symbol]                       0x0202c6dc   Section        0  mk_misc.o(.text.sys_timer_open)
    __arm_cp.7_0                             0x0202c720   Number         4  mk_misc.o(.text.sys_timer_open)
    __arm_cp.7_1                             0x0202c724   Number         4  mk_misc.o(.text.sys_timer_open)
    [Anonymous Symbol]                       0x0202c728   Section        0  pin_config.o(.text.uart1_xuanze)
    __arm_cp.2_0                             0x0202c788   Number         4  pin_config.o(.text.uart1_xuanze)
    __arm_cp.2_1                             0x0202c78c   Number         4  pin_config.o(.text.uart1_xuanze)
    __arm_cp.2_2                             0x0202c790   Number         4  pin_config.o(.text.uart1_xuanze)
    [Anonymous Symbol]                       0x0202c794   Section        0  mk_uart.o(.text.uart_baud_set)
    __arm_cp.11_0                            0x0202c7d8   Number         4  mk_uart.o(.text.uart_baud_set)
    [Anonymous Symbol]                       0x0202c7dc   Section        0  mk_uart.o(.text.uart_close)
    __arm_cp.13_1                            0x0202c854   Number         4  mk_uart.o(.text.uart_close)
    __arm_cp.13_2                            0x0202c858   Number         4  mk_uart.o(.text.uart_close)
    uart_dma_callback                        0x0202c85d   Thumb Code   200  mk_uart.o(.text.uart_dma_callback)
    [Anonymous Symbol]                       0x0202c85c   Section        0  mk_uart.o(.text.uart_dma_callback)
    [Anonymous Symbol]                       0x0202c924   Section        0  mk_uart.o(.text.uart_irq_handler)
    __arm_cp.21_0                            0x0202ca98   Number         4  mk_uart.o(.text.uart_irq_handler)
    [Anonymous Symbol]                       0x0202ca9c   Section        0  mk_uart.o(.text.uart_open)
    __arm_cp.12_0                            0x0202cbdc   Number         4  mk_uart.o(.text.uart_open)
    __arm_cp.12_1                            0x0202cbe0   Number         4  mk_uart.o(.text.uart_open)
    __arm_cp.12_2                            0x0202cbe4   Number         4  mk_uart.o(.text.uart_open)
    __arm_cp.12_3                            0x0202cbe8   Number         4  mk_uart.o(.text.uart_open)
    [Anonymous Symbol]                       0x0202cbec   Section        0  mk_uart.o(.text.uart_send)
    __arm_cp.3_1                             0x0202cd3c   Number         4  mk_uart.o(.text.uart_send)
    uart_state_clear                         0x0202cd41   Thumb Code    52  mk_uart.o(.text.uart_state_clear)
    [Anonymous Symbol]                       0x0202cd40   Section        0  mk_uart.o(.text.uart_state_clear)
    uart_state_set                           0x0202cd75   Thumb Code    96  mk_uart.o(.text.uart_state_set)
    [Anonymous Symbol]                       0x0202cd74   Section        0  mk_uart.o(.text.uart_state_set)
    __arm_cp.14_0                            0x0202cdd0   Number         4  mk_uart.o(.text.uart_state_set)
    [Anonymous Symbol]                       0x0202cdd4   Section        0  customboot.o(.text.usartdata_process)
    __arm_cp.0_0                             0x0202ce70   Number         4  customboot.o(.text.usartdata_process)
    __arm_cp.0_1                             0x0202ce74   Number         4  customboot.o(.text.usartdata_process)
    __arm_cp.0_2                             0x0202ce78   Number         4  customboot.o(.text.usartdata_process)
    [Anonymous Symbol]                       0x0202ce7c   Section        0  mk_wdt.o(.text.wdt_close)
    __arm_cp.1_2                             0x0202cebc   Number         4  mk_wdt.o(.text.wdt_close)
    [Anonymous Symbol]                       0x0202cec0   Section        0  mk_wdt.o(.text.wdt_open)
    __arm_cp.0_2                             0x0202cf50   Number         4  mk_wdt.o(.text.wdt_open)
    __arm_cp.0_3                             0x0202cf54   Number         4  mk_wdt.o(.text.wdt_open)
    __arm_cp.0_4                             0x0202cf58   Number         4  mk_wdt.o(.text.wdt_open)
    [Anonymous Symbol]                       0x0202cf5c   Section        0  mk_wdt.o(.text.wdt_ping)
    __arm_cp.3_0                             0x0202cf80   Number         4  mk_wdt.o(.text.wdt_ping)
    __arm_cp.3_1                             0x0202cf84   Number         4  mk_wdt.o(.text.wdt_ping)
    i.__scatterload_copy                     0x0202cf88   Section       14  handlers.o(i.__scatterload_copy)
    i.__scatterload_null                     0x0202cf96   Section        2  handlers.o(i.__scatterload_null)
    i.__scatterload_zeroinit                 0x0202cf98   Section       14  handlers.o(i.__scatterload_zeroinit)
    [Anonymous Symbol]                       0x0202cfa8   Section        0  mk_misc.o(.rodata..L__const.sys_timer_open.sys_timer_cfg)
    baud_table                               0x0202cfc0   Data          42  mk_uart.o(.rodata.baud_table)
    [Anonymous Symbol]                       0x0202cfc0   Section        0  mk_uart.o(.rodata.baud_table)
    .L__const.flash_write_nbytes.flash_wr_dma_cfg 0x0202cfec   Data          32  mk_flash.o(.rodata.cst32)
    .L__const.flash_write.flash_wr_dma_cfg   0x0202d00c   Data          32  mk_flash.o(.rodata.cst32)
    .L__const.flash_read.flash_rd_dma_cfg    0x0202d02c   Data          32  mk_flash.o(.rodata.cst32)
    flash_cmd                                0x0202d04c   Data         220  mk_flash.o(.rodata.flash_cmd)
    [Anonymous Symbol]                       0x0202d04c   Section        0  mk_flash.o(.rodata.flash_cmd)
    .L.str                                   0x0202d148   Data          83  menu.o(.rodata.str1.1)
    [Anonymous Symbol]                       0x0202d148   Section        0  menu.o(.rodata.str1.1)
    .L.str.7                                 0x0202d19b   Data          14  customboot.o(.rodata.str1.1)
    [Anonymous Symbol]                       0x0202d19b   Section        0  customboot.o(.rodata.str1.1)
    sleep_timer_handle.0                     0x0202e800   Data           4  mk_sleep_timer.o(.data..L_MergedGlobals)
    [Anonymous Symbol]                       0x0202e800   Section        0  mk_sleep_timer.o(.data..L_MergedGlobals)
    sleep_timer_handle.1                     0x0202e804   Data           4  mk_sleep_timer.o(.data..L_MergedGlobals)
    sleep_timer_handle.2                     0x0202e808   Data           4  mk_sleep_timer.o(.data..L_MergedGlobals)
    dma_handle                               0x0202e81c   Data          72  mk_dma.o(.data.dma_handle)
    [Anonymous Symbol]                       0x0202e81c   Section        0  mk_dma.o(.data.dma_handle)
    dual_timer_handle                        0x0202e864   Data          32  mk_dual_timer.o(.data.dual_timer_handle)
    [Anonymous Symbol]                       0x0202e864   Section        0  mk_dual_timer.o(.data.dual_timer_handle)
    gpio_handle                              0x0202e900   Data          84  mk_gpio.o(.data.gpio_handle)
    [Anonymous Symbol]                       0x0202e900   Section        0  mk_gpio.o(.data.gpio_handle)
    uart_handle                              0x0202e974   Data         144  mk_uart.o(.data.uart_handle)
    [Anonymous Symbol]                       0x0202e974   Section        0  mk_uart.o(.data.uart_handle)
    wdt_handle                               0x0202ea04   Data          16  mk_wdt.o(.data.wdt_handle)
    [Anonymous Symbol]                       0x0202ea04   Section        0  mk_wdt.o(.data.wdt_handle)
    [Anonymous Symbol]                       0x0202ea14   Section        0  aes.o(.bss..L_MergedGlobals)
    [Anonymous Symbol]                       0x0202ea28   Section        0  ymodem.o(.bss..L_MergedGlobals)
    [Anonymous Symbol]                       0x0202ea8c   Section        0  customboot.o(.bss..L_MergedGlobals)
    [Anonymous Symbol]                       0x0202eab8   Section        0  pin_config.o(.bss..L_MergedGlobals)
    sleep_timer_handle.3                     0x0202f224   Data           4  mk_sleep_timer.o(.bss.sleep_timer_handle.3)
    [Anonymous Symbol]                       0x0202f224   Section        0  mk_sleep_timer.o(.bss.sleep_timer_handle.3)
    sleep_timer_handle.4                     0x0202f228   Data           4  mk_sleep_timer.o(.bss.sleep_timer_handle.4)
    [Anonymous Symbol]                       0x0202f228   Section        0  mk_sleep_timer.o(.bss.sleep_timer_handle.4)
    sys_tick_env                             0x0202f22c   Data          20  mk_misc.o(.bss.sys_tick_env)
    [Anonymous Symbol]                       0x0202f22c   Section        0  mk_misc.o(.bss.sys_tick_env)
    usartdata_process.state                  0x0202f748   Data           1  customboot.o(.bss.usartdata_process.state)
    [Anonymous Symbol]                       0x0202f748   Section        0  customboot.o(.bss.usartdata_process.state)
    zhongjian_shuju                          0x0202f74c   Data         128  customboot.o(.bss.zhongjian_shuju)
    [Anonymous Symbol]                       0x0202f74c   Section        0  customboot.o(.bss.zhongjian_shuju)
 
    Global Symbols
 
    Symbol Name                              Value     Ov Type        Size  Object(Section)
 
    BuildAttributes$$THM_ISAv3M$S$PE$A:L22$X:L11$S22$IEEE1$IW$USESV6$~STKCKD$USESV7$WCHAR32$ENUMINT$~SHL$OTIME$ROPI$IEEEJ$MICROLIB$REQ8$PRES8$EABIv2 0x00000000   Number         0  anon$$obj.o ABSOLUTE
    __cpp_initialize__aeabi_                  - Undefined Weak Reference
    __cxa_finalize                            - Undefined Weak Reference
    _clock_init                               - Undefined Weak Reference
    _microlib_exit                            - Undefined Weak Reference
    __Vectors                                0x0202a000   Data         192  startup_mk800x.o(RESET)
    __main                                   0x0202a0c1   Thumb Code     0  entry.o(.ARM.Collect$$$$00000000)
    _main_stk                                0x0202a0c1   Thumb Code     0  entry4.o(.ARM.Collect$$$$00000003)
    _main_scatterload                        0x0202a0c5   Thumb Code     0  entry5.o(.ARM.Collect$$$$00000004)
    __main_after_scatterload                 0x0202a0c9   Thumb Code     0  entry5.o(.ARM.Collect$$$$00000004)
    _main_clock                              0x0202a0c9   Thumb Code     0  entry7b.o(.ARM.Collect$$$$00000008)
    _main_cpp_init                           0x0202a0c9   Thumb Code     0  entry8b.o(.ARM.Collect$$$$0000000A)
    _main_init                               0x0202a0c9   Thumb Code     0  entry9a.o(.ARM.Collect$$$$0000000B)
    __rt_final_cpp                           0x0202a0d1   Thumb Code     0  entry10a.o(.ARM.Collect$$$$0000000D)
    __rt_final_exit                          0x0202a0d1   Thumb Code     0  entry11a.o(.ARM.Collect$$$$0000000F)
    __aeabi_uidiv                            0x0202a0d5   Thumb Code     0  uidiv.o(.text)
    __aeabi_uidivmod                         0x0202a0d5   Thumb Code    44  uidiv.o(.text)
    __aeabi_idiv                             0x0202a101   Thumb Code     0  idiv.o(.text)
    __aeabi_idivmod                          0x0202a101   Thumb Code    40  idiv.o(.text)
    __aeabi_memcpy                           0x0202a129   Thumb Code    36  memcpya.o(.text)
    __aeabi_memcpy4                          0x0202a129   Thumb Code     0  memcpya.o(.text)
    __aeabi_memcpy8                          0x0202a129   Thumb Code     0  memcpya.o(.text)
    __aeabi_memset                           0x0202a14d   Thumb Code    14  memseta.o(.text)
    __aeabi_memset4                          0x0202a14d   Thumb Code     0  memseta.o(.text)
    __aeabi_memset8                          0x0202a14d   Thumb Code     0  memseta.o(.text)
    __aeabi_memclr                           0x0202a15b   Thumb Code     4  memseta.o(.text)
    __aeabi_memclr4                          0x0202a15b   Thumb Code     0  memseta.o(.text)
    __aeabi_memclr8                          0x0202a15b   Thumb Code     0  memseta.o(.text)
    _memset$wrapper                          0x0202a15f   Thumb Code    18  memseta.o(.text)
    __scatterload                            0x0202a171   Thumb Code    28  init.o(.text)
    __scatterload_rt2                        0x0202a171   Thumb Code     0  init.o(.text)
    __decompress                             0x0202a195   Thumb Code     0  __dczerorl.o(.text)
    __decompress0                            0x0202a195   Thumb Code    58  __dczerorl.o(.text)
    BOD_IRQHandler                           0x0202a1cf   Thumb Code     2  mk_misc.o(.text.BOD_IRQHandler)
    CALIB_IRQHandler                         0x0202a1d1   Thumb Code     2  mk_calib.o(.text.CALIB_IRQHandler)
    Cal_CRC16                                0x0202a1d3   Thumb Code    42  ymodem.o(.text.Cal_CRC16)
    CalcCols                                 0x0202a1fd   Thumb Code    32  aes.o(.text.CalcCols)
    CalcPowLog                               0x0202a21d   Thumb Code    44  aes.o(.text.CalcPowLog)
    CalcSBox                                 0x0202a249   Thumb Code    68  aes.o(.text.CalcSBox)
    CalcSBoxInv                              0x0202a28d   Thumb Code    40  aes.o(.text.CalcSBoxInv)
    CopyBytes                                0x0202a2b5   Thumb Code    16  aes.o(.text.CopyBytes)
    DMA_IRQHandler                           0x0202a2c5   Thumb Code   104  mk_dma.o(.text.DMA_IRQHandler)
    ACMP0_IRQHandler                         0x0202a32d   Thumb Code     2  startup_mk800x.o(.text.Default_Handler)
    ACMP1_IRQHandler                         0x0202a32d   Thumb Code     2  startup_mk800x.o(.text.Default_Handler)
    ADC_IRQHandler                           0x0202a32d   Thumb Code     2  startup_mk800x.o(.text.Default_Handler)
    AES_IRQHandler                           0x0202a32d   Thumb Code     2  startup_mk800x.o(.text.Default_Handler)
    Default_Handler                          0x0202a32d   Thumb Code     2  startup_mk800x.o(.text.Default_Handler)
    HardFault_Handler                        0x0202a32d   Thumb Code     2  startup_mk800x.o(.text.Default_Handler)
    I2C0_IRQHandler                          0x0202a32d   Thumb Code     2  startup_mk800x.o(.text.Default_Handler)
    LSP_IRQHandler                           0x0202a32d   Thumb Code     2  startup_mk800x.o(.text.Default_Handler)
    MAC_IRQHandler                           0x0202a32d   Thumb Code     2  startup_mk800x.o(.text.Default_Handler)
    NMI_Handler                              0x0202a32d   Thumb Code     2  startup_mk800x.o(.text.Default_Handler)
    PHY_IRQHandler                           0x0202a32d   Thumb Code     2  startup_mk800x.o(.text.Default_Handler)
    PHY_TIMER_IRQHandler                     0x0202a32d   Thumb Code     2  startup_mk800x.o(.text.Default_Handler)
    PWM_IRQHandler                           0x0202a32d   Thumb Code     2  startup_mk800x.o(.text.Default_Handler)
    PendSV_Handler                           0x0202a32d   Thumb Code     2  startup_mk800x.o(.text.Default_Handler)
    RCO32K_CAL_IRQHandler                    0x0202a32d   Thumb Code     2  startup_mk800x.o(.text.Default_Handler)
    RTC_ALARM_IRQHandler                     0x0202a32d   Thumb Code     2  startup_mk800x.o(.text.Default_Handler)
    RTC_TICK_IRQHandler                      0x0202a32d   Thumb Code     2  startup_mk800x.o(.text.Default_Handler)
    SPI0_IRQHandler                          0x0202a32d   Thumb Code     2  startup_mk800x.o(.text.Default_Handler)
    SPI1_IRQHandler                          0x0202a32d   Thumb Code     2  startup_mk800x.o(.text.Default_Handler)
    SVC_Handler                              0x0202a32d   Thumb Code     2  startup_mk800x.o(.text.Default_Handler)
    TIMER0_IRQHandler                        0x0202a32d   Thumb Code     2  startup_mk800x.o(.text.Default_Handler)
    TIMER1_IRQHandler                        0x0202a32d   Thumb Code     2  startup_mk800x.o(.text.Default_Handler)
    TRNG_IRQHandler                          0x0202a32d   Thumb Code     2  startup_mk800x.o(.text.Default_Handler)
    WAKEUP_IRQHandler                        0x0202a32d   Thumb Code     2  startup_mk800x.o(.text.Default_Handler)
    FLASH_CTRL_IRQHandler                    0x0202a331   Thumb Code    44  mk_flash.o(.text.FLASH_CTRL_IRQHandler)
    GPIO_IRQHandler                          0x0202a35d   Thumb Code    56  mk_gpio.o(.text.GPIO_IRQHandler)
    Int2Str                                  0x0202a395   Thumb Code    96  menu.o(.text.Int2Str)
    InvCipher                                0x0202a3f5   Thumb Code    88  aes.o(.text.InvCipher)
    InvMixColumn                             0x0202a44d   Thumb Code   176  aes.o(.text.InvMixColumn)
    InvShiftRows                             0x0202a4fd   Thumb Code    50  aes.o(.text.InvShiftRows)
    InvSubBytesAndXOR                        0x0202a531   Thumb Code    32  aes.o(.text.InvSubBytesAndXOR)
    KeyExpansion                             0x0202a551   Thumb Code   208  aes.o(.text.KeyExpansion)
    Main_Menu                                0x0202a621   Thumb Code    76  menu.o(.text.Main_Menu)
    Receive_Byte                             0x0202a66d   Thumb Code    30  ymodem.o(.text.Receive_Byte)
    Reset_Handler                            0x0202a68d   Thumb Code    32  startup_mk800x.o(.text.Reset_Handler)
    SLEEP_TIMER_IRQHandler                   0x0202a6ad   Thumb Code    60  mk_sleep_timer.o(.text.SLEEP_TIMER_IRQHandler)
    Send_Byte                                0x0202a6e9   Thumb Code    10  ymodem.o(.text.Send_Byte)
    SerialDownload                           0x0202a6f5   Thumb Code   152  menu.o(.text.SerialDownload)
    SerialKeyPressed                         0x0202a78d   Thumb Code    24  mk_uart.o(.text.SerialKeyPressed)
    SerialPutChar                            0x0202a7a5   Thumb Code    36  mk_uart.o(.text.SerialPutChar)
    Serial_PutString                         0x0202a7c9   Thumb Code    20  mk_uart.o(.text.Serial_PutString)
    Str2Int                                  0x0202a7dd   Thumb Code   172  ymodem.o(.text.Str2Int)
    SubBytes                                 0x0202a889   Thumb Code    28  aes.o(.text.SubBytes)
    SysTick_Handler                          0x0202a8a5   Thumb Code    24  mk_misc.o(.text.SysTick_Handler)
    SystemInit                               0x0202a8bd   Thumb Code    16  system_mk800x.o(.text.SystemInit)
    TIMER2_IRQHandler                        0x0202a8cd   Thumb Code    28  mk_dual_timer.o(.text.TIMER2_IRQHandler)
    TIMER3_IRQHandler                        0x0202a8e9   Thumb Code    32  mk_dual_timer.o(.text.TIMER3_IRQHandler)
    UART0_IRQHandler                         0x0202a909   Thumb Code    10  mk_uart.o(.text.UART0_IRQHandler)
    UART1_IRQHandler                         0x0202a913   Thumb Code    10  mk_uart.o(.text.UART1_IRQHandler)
    UpdateCRC16                              0x0202a91d   Thumb Code    44  ymodem.o(.text.UpdateCRC16)
    WDT_IRQHandler                           0x0202a949   Thumb Code    28  mk_wdt.o(.text.WDT_IRQHandler)
    XORBytes                                 0x0202a965   Thumb Code    22  aes.o(.text.XORBytes)
    Ymodem_Receive                           0x0202a97d   Thumb Code   756  ymodem.o(.text.Ymodem_Receive)
    aesDecInit                               0x0202aca1   Thumb Code    56  aes.o(.text.aesDecInit)
    aesDecrypt                               0x0202acd9   Thumb Code    64  aes.o(.text.aesDecrypt)
    board_clock_run                          0x0202ad1d   Thumb Code   104  board.o(.text.board_clock_run)
    board_configure                          0x0202ad85   Thumb Code     2  board.o(.text.board_configure)
    board_pins_config                        0x0202ad89   Thumb Code   244  pin_config.o(.text.board_pins_config)
    calib_check                              0x0202ae7d   Thumb Code    16  mk_calib.o(.text.calib_check)
    calib_chip                               0x0202ae8d   Thumb Code   296  mk_calib.o(.text.calib_chip)
    calib_close                              0x0202afb5   Thumb Code    12  mk_calib.o(.text.calib_close)
    calib_open                               0x0202afc1   Thumb Code    20  mk_calib.o(.text.calib_open)
    calib_start                              0x0202afd5   Thumb Code    16  mk_calib.o(.text.calib_start)
    clock_attach                             0x0202afe5   Thumb Code   188  mk_clock.o(.text.clock_attach)
    clock_disable                            0x0202b0a1   Thumb Code    16  mk_clock.o(.text.clock_disable)
    clock_enable                             0x0202b0b1   Thumb Code    20  mk_clock.o(.text.clock_enable)
    clock_get_frequency                      0x0202b0ed   Thumb Code    82  mk_clock.o(.text.clock_get_frequency)
    clock_set_divider                        0x0202b165   Thumb Code    96  mk_clock.o(.text.clock_set_divider)
    clock_xtal38m4_injection_set             0x0202b1c5   Thumb Code    60  mk_clock.o(.text.clock_xtal38m4_injection_set)
    delay_ms                                 0x0202b201   Thumb Code    14  menu.o(.text.delay_ms)
    delay_us                                 0x0202b20f   Thumb Code    28  mk_misc.o(.text.delay_us)
    dma_open                                 0x0202b22d   Thumb Code   220  mk_dma.o(.text.dma_open)
    dma_transfer                             0x0202b309   Thumb Code    76  mk_dma.o(.text.dma_transfer)
    dual_timer_get                           0x0202b355   Thumb Code    12  mk_dual_timer.o(.text.dual_timer_get)
    dual_timer_open                          0x0202b361   Thumb Code   204  mk_dual_timer.o(.text.dual_timer_open)
    dual_timer_start                         0x0202b42d   Thumb Code    24  mk_dual_timer.o(.text.dual_timer_start)
    flash_block_erase                        0x0202b445   Thumb Code   140  mk_flash.o(.text.flash_block_erase)
    flash_check_busy                         0x0202b4d1   Thumb Code   120  mk_flash.o(.text.flash_check_busy)
    flash_close                              0x0202b549   Thumb Code    56  mk_flash.o(.text.flash_close)
    flash_erase                              0x0202b725   Thumb Code   312  mk_flash.o(.text.flash_erase)
    flash_open                               0x0202b85d   Thumb Code   384  mk_flash.o(.text.flash_open)
    flash_read                               0x0202ba35   Thumb Code   384  mk_flash.o(.text.flash_read)
    flash_sector_erase                       0x0202bbf1   Thumb Code   144  mk_flash.o(.text.flash_sector_erase)
    flash_write_nbytes                       0x0202be21   Thumb Code   552  mk_flash.o(.text.flash_write_nbytes)
    gpio_close                               0x0202c12d   Thumb Code    12  mk_gpio.o(.text.gpio_close)
    gpio_open                                0x0202c139   Thumb Code    20  mk_gpio.o(.text.gpio_open)
    gpio_pin_get_val                         0x0202c14d   Thumb Code    16  mk_gpio.o(.text.gpio_pin_get_val)
    gpio_pin_set_dir                         0x0202c15d   Thumb Code    76  mk_gpio.o(.text.gpio_pin_set_dir)
    io_pin_mux_set                           0x0202c1a9   Thumb Code    80  mk_io.o(.text.io_pin_mux_set)
    io_pull_set                              0x0202c1f9   Thumb Code    76  mk_io.o(.text.io_pull_set)
    main                                     0x0202c245   Thumb Code   800  customboot.o(.text.main)
    mk_chip_id                               0x0202c565   Thumb Code    12  mk_misc.o(.text.mk_chip_id)
    power_wakeup_enable                      0x0202c571   Thumb Code    56  mk_power.o(.text.power_wakeup_enable)
    reset_module                             0x0202c5a9   Thumb Code    28  mk_reset.o(.text.reset_module)
    sleep_timer_close                        0x0202c5e9   Thumb Code    36  mk_sleep_timer.o(.text.sleep_timer_close)
    sleep_timer_open                         0x0202c60d   Thumb Code    88  mk_sleep_timer.o(.text.sleep_timer_open)
    sleep_timer_start                        0x0202c665   Thumb Code    56  mk_sleep_timer.o(.text.sleep_timer_start)
    start_main_asm                           0x0202c69d   Thumb Code     4  startup_mk800x.o(.text.start_main_asm)
    sys_tick_start                           0x0202c6a5   Thumb Code    44  mk_misc.o(.text.sys_tick_start)
    sys_timer_get                            0x0202c6d1   Thumb Code    12  mk_misc.o(.text.sys_timer_get)
    sys_timer_open                           0x0202c6dd   Thumb Code    76  mk_misc.o(.text.sys_timer_open)
    uart1_xuanze                             0x0202c729   Thumb Code   108  pin_config.o(.text.uart1_xuanze)
    uart_baud_set                            0x0202c795   Thumb Code    72  mk_uart.o(.text.uart_baud_set)
    uart_close                               0x0202c7dd   Thumb Code   128  mk_uart.o(.text.uart_close)
    uart_irq_handler                         0x0202c925   Thumb Code   376  mk_uart.o(.text.uart_irq_handler)
    uart_open                                0x0202ca9d   Thumb Code   336  mk_uart.o(.text.uart_open)
    uart_send                                0x0202cbed   Thumb Code   340  mk_uart.o(.text.uart_send)
    usartdata_process                        0x0202cdd5   Thumb Code   168  customboot.o(.text.usartdata_process)
    wdt_close                                0x0202ce7d   Thumb Code    68  mk_wdt.o(.text.wdt_close)
    wdt_open                                 0x0202cec1   Thumb Code   156  mk_wdt.o(.text.wdt_open)
    wdt_ping                                 0x0202cf5d   Thumb Code    44  mk_wdt.o(.text.wdt_ping)
    __scatterload_copy                       0x0202cf89   Thumb Code    14  handlers.o(i.__scatterload_copy)
    __scatterload_null                       0x0202cf97   Thumb Code     2  handlers.o(i.__scatterload_null)
    __scatterload_zeroinit                   0x0202cf99   Thumb Code    14  handlers.o(i.__scatterload_zeroinit)
    kTable                                   0x0202d128   Data          32  aes.o(.rodata.kTable)
    Region$$Table$$Base                      0x0202d1ac   Number         0  anon$$obj.o(Region$$Table)
    Region$$Table$$Limit                     0x0202d1cc   Number         0  anon$$obj.o(Region$$Table)
    mk_boot_desc                             0x0202d3e0   Data          72  startup_mk800x.o(.ZBOOT_SECTION)
    mk_build_inf                             0x0202d428   Data          80  startup_mk800x.o(.ZBUILD_SECTION)
    SystemCoreClock                          0x0202e80c   Data           4  system_mk800x.o(.data.SystemCoreClock)
    app_wdt_cfg                              0x0202e810   Data          12  customboot.o(.data.app_wdt_cfg)
    flash_handle                             0x0202e884   Data         124  mk_flash.o(.data.flash_handle)
    test_uart_cfg                            0x0202e954   Data          32  pin_config.o(.data.test_uart_cfg)
    powTbl                                   0x0202ea14   Data           4  aes.o(.bss..L_MergedGlobals)
    logTbl                                   0x0202ea18   Data           4  aes.o(.bss..L_MergedGlobals)
    sBox                                     0x0202ea1c   Data           4  aes.o(.bss..L_MergedGlobals)
    expandedKey                              0x0202ea20   Data           4  aes.o(.bss..L_MergedGlobals)
    sBoxInv                                  0x0202ea24   Data           4  aes.o(.bss..L_MergedGlobals)
    c                                        0x0202ea28   Data           1  ymodem.o(.bss..L_MergedGlobals)
    current_seqno                            0x0202ea2a   Data           2  ymodem.o(.bss..L_MergedGlobals)
    flash_seqno                              0x0202ea2c   Data           2  ymodem.o(.bss..L_MergedGlobals)
    i2                                       0x0202ea2e   Data           2  ymodem.o(.bss..L_MergedGlobals)
    size                                     0x0202ea30   Data           4  ymodem.o(.bss..L_MergedGlobals)
    flashdestination                         0x0202ea34   Data           4  ymodem.o(.bss..L_MergedGlobals)
    session_done                             0x0202ea38   Data           4  ymodem.o(.bss..L_MergedGlobals)
    errors                                   0x0202ea3c   Data           4  ymodem.o(.bss..L_MergedGlobals)
    session_begin                            0x0202ea40   Data           4  ymodem.o(.bss..L_MergedGlobals)
    packets_received                         0x0202ea44   Data           4  ymodem.o(.bss..L_MergedGlobals)
    file_done                                0x0202ea48   Data           4  ymodem.o(.bss..L_MergedGlobals)
    buf_ptr                                  0x0202ea4c   Data           4  ymodem.o(.bss..L_MergedGlobals)
    packet_length                            0x0202ea50   Data           4  ymodem.o(.bss..L_MergedGlobals)
    i                                        0x0202ea54   Data           4  ymodem.o(.bss..L_MergedGlobals)
    file_ptr                                 0x0202ea58   Data           4  ymodem.o(.bss..L_MergedGlobals)
    BufferIn                                 0x0202ea5c   Data           4  ymodem.o(.bss..L_MergedGlobals)
    j                                        0x0202ea60   Data           4  ymodem.o(.bss..L_MergedGlobals)
    ramsource                                0x0202ea64   Data           4  ymodem.o(.bss..L_MergedGlobals)
    tempaddress                              0x0202ea68   Data           4  ymodem.o(.bss..L_MergedGlobals)
    bufferOut                                0x0202ea6c   Data          16  ymodem.o(.bss..L_MergedGlobals)
    file_size                                0x0202ea7c   Data          16  ymodem.o(.bss..L_MergedGlobals)
    APP_byte                                 0x0202ea8c   Data           2  customboot.o(.bss..L_MergedGlobals)
    updata_byte                              0x0202ea8e   Data           2  customboot.o(.bss..L_MergedGlobals)
    finalbag                                 0x0202ea90   Data           2  customboot.o(.bss..L_MergedGlobals)
    time_100ms                               0x0202ea94   Data           4  customboot.o(.bss..L_MergedGlobals)
    start_timer                              0x0202ea98   Data           4  customboot.o(.bss..L_MergedGlobals)
    test1                                    0x0202ea9c   Data           4  customboot.o(.bss..L_MergedGlobals)
    aaa                                      0x0202eaa0   Data           4  customboot.o(.bss..L_MergedGlobals)
    shengji_time_100ms                       0x0202eaa4   Data           4  customboot.o(.bss..L_MergedGlobals)
    key                                      0x0202eaa8   Data          16  customboot.o(.bss..L_MergedGlobals)
    test11                                   0x0202eab8   Data           1  pin_config.o(.bss..L_MergedGlobals)
    test2                                    0x0202eab9   Data           1  pin_config.o(.bss..L_MergedGlobals)
    test3                                    0x0202eaba   Data           1  pin_config.o(.bss..L_MergedGlobals)
    test4                                    0x0202eabb   Data           1  pin_config.o(.bss..L_MergedGlobals)
    FileName                                 0x0202eabc   Data         256  menu.o(.bss.FileName)
    block1                                   0x0202ebbc   Data         256  aes.o(.bss.block1)
    block2                                   0x0202ecbc   Data         256  aes.o(.bss.block2)
    board_param                              0x0202edbc   Data          96  board.o(.bss.board_param)
    flagmode                                 0x0202ee1c   Data           1  customboot.o(.bss.flagmode)
    packet_data                              0x0202ee1d   Data        1029  ymodem.o(.bss.packet_data)
    sys_timer_freq                           0x0202f240   Data           4  mk_misc.o(.bss.sys_timer_freq)
    tab_1024                                 0x0202f244   Data        1024  menu.o(.bss.tab_1024)
    tempbuf                                  0x0202f644   Data         256  aes.o(.bss.tempbuf)
    time32_reset                             0x0202f744   Data           4  customboot.o(.bss.time32_reset)
    Image$$ARM_LIB_STACK$$ZI$$Limit          0x0202fc00   Number         0  anon$$obj.o ABSOLUTE
 
 
 
==============================================================================
 
Memory Map of the image
 
  Image Entry point : 0x0202a0c1
 
  Load Region LR_ROM (Base: 0x0202a000, Size: 0x000033e0, Max: 0x00004760, ABSOLUTE, COMPRESSED[0x00003230])
 
    Execution Region ER_ROM (Exec base: 0x0202a000, Load base: 0x0202a000, Size: 0x000031cc, Max: 0x00004760, ABSOLUTE)
 
    Exec Addr    Load Addr    Size         Type   Attr      Idx    E Section Name        Object
 
    0x0202a000   0x0202a000   0x000000c0   Data   RO           11    RESET               startup_mk800x.o
    0x0202a0c0   0x0202a0c0   0x00000000   Code   RO          721  * .ARM.Collect$$$$00000000  mc_p.l(entry.o)
    0x0202a0c0   0x0202a0c0   0x00000004   Code   RO          748    .ARM.Collect$$$$00000003  mc_p.l(entry4.o)
    0x0202a0c4   0x0202a0c4   0x00000004   Code   RO          751    .ARM.Collect$$$$00000004  mc_p.l(entry5.o)
    0x0202a0c8   0x0202a0c8   0x00000000   Code   RO          753    .ARM.Collect$$$$00000008  mc_p.l(entry7b.o)
    0x0202a0c8   0x0202a0c8   0x00000000   Code   RO          755    .ARM.Collect$$$$0000000A  mc_p.l(entry8b.o)
    0x0202a0c8   0x0202a0c8   0x00000008   Code   RO          756    .ARM.Collect$$$$0000000B  mc_p.l(entry9a.o)
    0x0202a0d0   0x0202a0d0   0x00000000   Code   RO          758    .ARM.Collect$$$$0000000D  mc_p.l(entry10a.o)
    0x0202a0d0   0x0202a0d0   0x00000000   Code   RO          760    .ARM.Collect$$$$0000000F  mc_p.l(entry11a.o)
    0x0202a0d0   0x0202a0d0   0x00000004   Code   RO          749    .ARM.Collect$$$$00002714  mc_p.l(entry4.o)
    0x0202a0d4   0x0202a0d4   0x0000002c   Code   RO          724    .text               mc_p.l(uidiv.o)
    0x0202a100   0x0202a100   0x00000028   Code   RO          726    .text               mc_p.l(idiv.o)
    0x0202a128   0x0202a128   0x00000024   Code   RO          730    .text               mc_p.l(memcpya.o)
    0x0202a14c   0x0202a14c   0x00000024   Code   RO          732    .text               mc_p.l(memseta.o)
    0x0202a170   0x0202a170   0x00000024   Code   RO          774    .text               mc_p.l(init.o)
    0x0202a194   0x0202a194   0x0000003a   Code   RO          788    .text               mc_p.l(__dczerorl.o)
    0x0202a1ce   0x0202a1ce   0x00000002   Code   RO          387    .text.BOD_IRQHandler  mk_misc.o
    0x0202a1d0   0x0202a1d0   0x00000002   Code   RO          332    .text.CALIB_IRQHandler  mk_calib.o
    0x0202a1d2   0x0202a1d2   0x0000002a   Code   RO          606    .text.Cal_CRC16     ymodem.o
    0x0202a1fc   0x0202a1fc   0x00000020   Code   RO          230    .text.CalcCols      aes.o
    0x0202a21c   0x0202a21c   0x0000002c   Code   RO          222    .text.CalcPowLog    aes.o
    0x0202a248   0x0202a248   0x00000044   Code   RO          224    .text.CalcSBox      aes.o
    0x0202a28c   0x0202a28c   0x00000028   Code   RO          226    .text.CalcSBoxInv   aes.o
    0x0202a2b4   0x0202a2b4   0x00000010   Code   RO          242    .text.CopyBytes     aes.o
    0x0202a2c4   0x0202a2c4   0x00000068   Code   RO           73    .text.DMA_IRQHandler  mk_dma.o
    0x0202a32c   0x0202a32c   0x00000002   Code   RO            3    .text.Default_Handler  startup_mk800x.o
    0x0202a32e   0x0202a32e   0x00000002   PAD
    0x0202a330   0x0202a330   0x0000002c   Code   RO          130    .text.FLASH_CTRL_IRQHandler  mk_flash.o
    0x0202a35c   0x0202a35c   0x00000038   Code   RO          301    .text.GPIO_IRQHandler  mk_gpio.o
    0x0202a394   0x0202a394   0x00000060   Code   RO          566    .text.Int2Str       menu.o
    0x0202a3f4   0x0202a3f4   0x00000058   Code   RO          246    .text.InvCipher     aes.o
    0x0202a44c   0x0202a44c   0x000000b0   Code   RO          232    .text.InvMixColumn  aes.o
    0x0202a4fc   0x0202a4fc   0x00000032   Code   RO          238    .text.InvShiftRows  aes.o
    0x0202a52e   0x0202a52e   0x00000002   PAD
    0x0202a530   0x0202a530   0x00000020   Code   RO          236    .text.InvSubBytesAndXOR  aes.o
    0x0202a550   0x0202a550   0x000000d0   Code   RO          244    .text.KeyExpansion  aes.o
    0x0202a620   0x0202a620   0x0000004c   Code   RO          578    .text.Main_Menu     menu.o
    0x0202a66c   0x0202a66c   0x0000001e   Code   RO          600    .text.Receive_Byte  ymodem.o
    0x0202a68a   0x0202a68a   0x00000002   PAD
    0x0202a68c   0x0202a68c   0x00000020   Code   RO            5    .text.Reset_Handler  startup_mk800x.o
    0x0202a6ac   0x0202a6ac   0x0000003c   Code   RO          553    .text.SLEEP_TIMER_IRQHandler  mk_sleep_timer.o
    0x0202a6e8   0x0202a6e8   0x0000000a   Code   RO          602    .text.Send_Byte     ymodem.o
    0x0202a6f2   0x0202a6f2   0x00000002   PAD
    0x0202a6f4   0x0202a6f4   0x00000098   Code   RO          570    .text.SerialDownload  menu.o
    0x0202a78c   0x0202a78c   0x00000018   Code   RO          161    .text.SerialKeyPressed  mk_uart.o
    0x0202a7a4   0x0202a7a4   0x00000024   Code   RO          163    .text.SerialPutChar  mk_uart.o
    0x0202a7c8   0x0202a7c8   0x00000014   Code   RO          167    .text.Serial_PutString  mk_uart.o
    0x0202a7dc   0x0202a7dc   0x000000ac   Code   RO          598    .text.Str2Int       ymodem.o
    0x0202a888   0x0202a888   0x0000001c   Code   RO          234    .text.SubBytes      aes.o
    0x0202a8a4   0x0202a8a4   0x00000018   Code   RO          427    .text.SysTick_Handler  mk_misc.o
    0x0202a8bc   0x0202a8bc   0x00000010   Code   RO           21    .text.SystemInit    system_mk800x.o
    0x0202a8cc   0x0202a8cc   0x0000001c   Code   RO          526    .text.TIMER2_IRQHandler  mk_dual_timer.o
    0x0202a8e8   0x0202a8e8   0x00000020   Code   RO          528    .text.TIMER3_IRQHandler  mk_dual_timer.o
    0x0202a908   0x0202a908   0x0000000a   Code   RO          203    .text.UART0_IRQHandler  mk_uart.o
    0x0202a912   0x0202a912   0x0000000a   Code   RO          205    .text.UART1_IRQHandler  mk_uart.o
    0x0202a91c   0x0202a91c   0x0000002c   Code   RO          604    .text.UpdateCRC16   ymodem.o
    0x0202a948   0x0202a948   0x0000001c   Code   RO          352    .text.WDT_IRQHandler  mk_wdt.o
    0x0202a964   0x0202a964   0x00000016   Code   RO          240    .text.XORBytes      aes.o
    0x0202a97a   0x0202a97a   0x00000002   PAD
    0x0202a97c   0x0202a97c   0x000002f4   Code   RO          610    .text.Ymodem_Receive  ymodem.o
    0x0202ac70   0x0202ac70   0x00000014   Code   RO          580    .text.__NVIC_SystemReset  menu.o
    0x0202ac84   0x0202ac84   0x0000001c   Code   RO          640    .text.__NVIC_SystemReset  customboot.o
    0x0202aca0   0x0202aca0   0x00000038   Code   RO          248    .text.aesDecInit    aes.o
    0x0202acd8   0x0202acd8   0x00000040   Code   RO          250    .text.aesDecrypt    aes.o
    0x0202ad18   0x0202ad18   0x00000002   Code   RO          634    .text.app_wdt_callback  customboot.o
    0x0202ad1a   0x0202ad1a   0x00000002   PAD
    0x0202ad1c   0x0202ad1c   0x00000068   Code   RO          662    .text.board_clock_run  board.o
    0x0202ad84   0x0202ad84   0x00000002   Code   RO          686    .text.board_configure  board.o
    0x0202ad86   0x0202ad86   0x00000002   PAD
    0x0202ad88   0x0202ad88   0x000000f4   Code   RO          708    .text.board_pins_config  pin_config.o
    0x0202ae7c   0x0202ae7c   0x00000010   Code   RO          318    .text.calib_check   mk_calib.o
    0x0202ae8c   0x0202ae8c   0x00000128   Code   RO          320    .text.calib_chip    mk_calib.o
    0x0202afb4   0x0202afb4   0x0000000c   Code   RO          314    .text.calib_close   mk_calib.o
    0x0202afc0   0x0202afc0   0x00000014   Code   RO          312    .text.calib_open    mk_calib.o
    0x0202afd4   0x0202afd4   0x00000010   Code   RO          316    .text.calib_start   mk_calib.o
    0x0202afe4   0x0202afe4   0x000000bc   Code   RO           35    .text.clock_attach  mk_clock.o
    0x0202b0a0   0x0202b0a0   0x00000010   Code   RO           33    .text.clock_disable  mk_clock.o
    0x0202b0b0   0x0202b0b0   0x00000014   Code   RO           31    .text.clock_enable  mk_clock.o
    0x0202b0c4   0x0202b0c4   0x00000014   Code   RO           43    .text.clock_get_ahb_clk_freq  mk_clock.o
    0x0202b0d8   0x0202b0d8   0x00000014   Code   RO           45    .text.clock_get_apb_clk_freq  mk_clock.o
    0x0202b0ec   0x0202b0ec   0x00000052   Code   RO           39    .text.clock_get_frequency  mk_clock.o
    0x0202b13e   0x0202b13e   0x00000002   PAD
    0x0202b140   0x0202b140   0x00000024   Code   RO           41    .text.clock_get_sys_clk_freq  mk_clock.o
    0x0202b164   0x0202b164   0x00000060   Code   RO           37    .text.clock_set_divider  mk_clock.o
    0x0202b1c4   0x0202b1c4   0x0000003c   Code   RO           47    .text.clock_xtal38m4_injection_set  mk_clock.o
    0x0202b200   0x0202b200   0x0000000e   Code   RO          576    .text.delay_ms      menu.o
    0x0202b20e   0x0202b20e   0x0000001c   Code   RO          431    .text.delay_us      mk_misc.o
    0x0202b22a   0x0202b22a   0x00000002   PAD
    0x0202b22c   0x0202b22c   0x000000dc   Code   RO           59    .text.dma_open      mk_dma.o
    0x0202b308   0x0202b308   0x0000004c   Code   RO           67    .text.dma_transfer  mk_dma.o
    0x0202b354   0x0202b354   0x0000000c   Code   RO          522    .text.dual_timer_get  mk_dual_timer.o
    0x0202b360   0x0202b360   0x000000cc   Code   RO          510    .text.dual_timer_open  mk_dual_timer.o
    0x0202b42c   0x0202b42c   0x00000018   Code   RO          514    .text.dual_timer_start  mk_dual_timer.o
    0x0202b444   0x0202b444   0x0000008c   Code   RO          110    .text.flash_block_erase  mk_flash.o
    0x0202b4d0   0x0202b4d0   0x00000078   Code   RO          114    .text.flash_check_busy  mk_flash.o
    0x0202b548   0x0202b548   0x00000038   Code   RO           96    .text.flash_close   mk_flash.o
    0x0202b580   0x0202b580   0x000000dc   Code   RO          126    .text.flash_dma_callback  mk_flash.o
    0x0202b65c   0x0202b65c   0x000000c8   Code   RO          120    .text.flash_dma_write_nbytes_callback  mk_flash.o
    0x0202b724   0x0202b724   0x00000138   Code   RO          112    .text.flash_erase   mk_flash.o
    0x0202b85c   0x0202b85c   0x00000180   Code   RO           84    .text.flash_open    mk_flash.o
    0x0202b9dc   0x0202b9dc   0x00000058   Code   RO          122    .text.flash_page_write_nbytes  mk_flash.o
    0x0202ba34   0x0202ba34   0x00000180   Code   RO          128    .text.flash_read    mk_flash.o
    0x0202bbb4   0x0202bbb4   0x00000020   Code   RO          132    .text.flash_read_status  mk_flash.o
    0x0202bbd4   0x0202bbd4   0x0000001c   Code   RO           86    .text.flash_reset_cmd  mk_flash.o
    0x0202bbf0   0x0202bbf0   0x00000090   Code   RO          104    .text.flash_sector_erase  mk_flash.o
    0x0202bc80   0x0202bc80   0x00000048   Code   RO          106    .text.flash_state_update  mk_flash.o
    0x0202bcc8   0x0202bcc8   0x00000028   Code   RO          108    .text.flash_wait_done  mk_flash.o
    0x0202bcf0   0x0202bcf0   0x00000038   Code   RO           90    .text.flash_wait_status  mk_flash.o
    0x0202bd28   0x0202bd28   0x000000cc   Code   RO           88    .text.flash_write_cmd  mk_flash.o
    0x0202bdf4   0x0202bdf4   0x0000002c   Code   RO           94    .text.flash_write_mem_cmd  mk_flash.o
    0x0202be20   0x0202be20   0x00000228   Code   RO          116    .text.flash_write_nbytes  mk_flash.o
    0x0202c048   0x0202c048   0x00000078   Code   RO           92    .text.flash_write_quad_mode  mk_flash.o
    0x0202c0c0   0x0202c0c0   0x0000006c   Code   RO          118    .text.flash_write_variable_len_cmd  mk_flash.o
    0x0202c12c   0x0202c12c   0x0000000c   Code   RO          281    .text.gpio_close    mk_gpio.o
    0x0202c138   0x0202c138   0x00000014   Code   RO          279    .text.gpio_open     mk_gpio.o
    0x0202c14c   0x0202c14c   0x00000010   Code   RO          293    .text.gpio_pin_get_val  mk_gpio.o
    0x0202c15c   0x0202c15c   0x0000004c   Code   RO          295    .text.gpio_pin_set_dir  mk_gpio.o
    0x0202c1a8   0x0202c1a8   0x00000050   Code   RO          363    .text.io_pin_mux_set  mk_io.o
    0x0202c1f8   0x0202c1f8   0x0000004c   Code   RO          369    .text.io_pull_set   mk_io.o
    0x0202c244   0x0202c244   0x00000320   Code   RO          636    .text.main          customboot.o
    0x0202c564   0x0202c564   0x0000000c   Code   RO          379    .text.mk_chip_id    mk_misc.o
    0x0202c570   0x0202c570   0x00000038   Code   RO          493    .text.power_wakeup_enable  mk_power.o
    0x0202c5a8   0x0202c5a8   0x0000001c   Code   RO          149    .text.reset_module  mk_reset.o
    0x0202c5c4   0x0202c5c4   0x00000024   Code   RO          638    .text.sleep_timer_callback  customboot.o
    0x0202c5e8   0x0202c5e8   0x00000024   Code   RO          541    .text.sleep_timer_close  mk_sleep_timer.o
    0x0202c60c   0x0202c60c   0x00000058   Code   RO          539    .text.sleep_timer_open  mk_sleep_timer.o
    0x0202c664   0x0202c664   0x00000038   Code   RO          543    .text.sleep_timer_start  mk_sleep_timer.o
    0x0202c69c   0x0202c69c   0x00000008   Code   RO            7    .text.start_main_asm  startup_mk800x.o
    0x0202c6a4   0x0202c6a4   0x0000002c   Code   RO          411    .text.sys_tick_start  mk_misc.o
    0x0202c6d0   0x0202c6d0   0x0000000c   Code   RO          397    .text.sys_timer_get  mk_misc.o
    0x0202c6dc   0x0202c6dc   0x0000004c   Code   RO          393    .text.sys_timer_open  mk_misc.o
    0x0202c728   0x0202c728   0x0000006c   Code   RO          706    .text.uart1_xuanze  pin_config.o
    0x0202c794   0x0202c794   0x00000048   Code   RO          181    .text.uart_baud_set  mk_uart.o
    0x0202c7dc   0x0202c7dc   0x00000080   Code   RO          185    .text.uart_close    mk_uart.o
    0x0202c85c   0x0202c85c   0x000000c8   Code   RO          189    .text.uart_dma_callback  mk_uart.o
    0x0202c924   0x0202c924   0x00000178   Code   RO          201    .text.uart_irq_handler  mk_uart.o
    0x0202ca9c   0x0202ca9c   0x00000150   Code   RO          183    .text.uart_open     mk_uart.o
    0x0202cbec   0x0202cbec   0x00000154   Code   RO          165    .text.uart_send     mk_uart.o
    0x0202cd40   0x0202cd40   0x00000034   Code   RO          191    .text.uart_state_clear  mk_uart.o
    0x0202cd74   0x0202cd74   0x00000060   Code   RO          187    .text.uart_state_set  mk_uart.o
    0x0202cdd4   0x0202cdd4   0x000000a8   Code   RO          632    .text.usartdata_process  customboot.o
    0x0202ce7c   0x0202ce7c   0x00000044   Code   RO          344    .text.wdt_close     mk_wdt.o
    0x0202cec0   0x0202cec0   0x0000009c   Code   RO          342    .text.wdt_open      mk_wdt.o
    0x0202cf5c   0x0202cf5c   0x0000002c   Code   RO          348    .text.wdt_ping      mk_wdt.o
    0x0202cf88   0x0202cf88   0x0000000e   Code   RO          782    i.__scatterload_copy  mc_p.l(handlers.o)
    0x0202cf96   0x0202cf96   0x00000002   Code   RO          783    i.__scatterload_null  mc_p.l(handlers.o)
    0x0202cf98   0x0202cf98   0x0000000e   Code   RO          784    i.__scatterload_zeroinit  mc_p.l(handlers.o)
    0x0202cfa6   0x0202cfa6   0x00000002   PAD
    0x0202cfa8   0x0202cfa8   0x00000018   Data   RO          451    .rodata..L__const.sys_timer_open.sys_timer_cfg  mk_misc.o
    0x0202cfc0   0x0202cfc0   0x0000002a   Data   RO          212    .rodata.baud_table  mk_uart.o
    0x0202cfea   0x0202cfea   0x00000002   PAD
    0x0202cfec   0x0202cfec   0x00000060   Data   RO          135    .rodata.cst32       mk_flash.o
    0x0202d04c   0x0202d04c   0x000000dc   Data   RO          136    .rodata.flash_cmd   mk_flash.o
    0x0202d128   0x0202d128   0x00000020   Data   RO          266    .rodata.kTable      aes.o
    0x0202d148   0x0202d148   0x00000053   Data   RO          584    .rodata.str1.1      menu.o
    0x0202d19b   0x0202d19b   0x0000000e   Data   RO          647    .rodata.str1.1      customboot.o
    0x0202d1a9   0x0202d1a9   0x00000003   PAD
    0x0202d1ac   0x0202d1ac   0x00000020   Data   RO          781    Region$$Table       anon$$obj.o
 
 
    Execution Region RW_RAM1 (Exec base: 0x0202e800, Load base: 0x0202d1cc, Size: 0x00000fcc, Max: 0x00001200, ABSOLUTE, COMPRESSED[0x00000064])
 
    Exec Addr    Load Addr    Size         Type   Attr      Idx    E Section Name        Object
 
    0x0202e800   COMPRESSED   0x0000000c   Data   RW          557    .data..L_MergedGlobals  mk_sleep_timer.o
    0x0202e80c   COMPRESSED   0x00000004   Data   RW           23    .data.SystemCoreClock  system_mk800x.o
    0x0202e810   COMPRESSED   0x0000000c   Data   RW          645    .data.app_wdt_cfg   customboot.o
    0x0202e81c   COMPRESSED   0x00000048   Data   RW           75    .data.dma_handle    mk_dma.o
    0x0202e864   COMPRESSED   0x00000020   Data   RW          530    .data.dual_timer_handle  mk_dual_timer.o
    0x0202e884   COMPRESSED   0x0000007c   Data   RW          134    .data.flash_handle  mk_flash.o
    0x0202e900   COMPRESSED   0x00000054   Data   RW          303    .data.gpio_handle   mk_gpio.o
    0x0202e954   COMPRESSED   0x00000020   Data   RW          710    .data.test_uart_cfg  pin_config.o
    0x0202e974   COMPRESSED   0x00000090   Data   RW          211    .data.uart_handle   mk_uart.o
    0x0202ea04   COMPRESSED   0x00000010   Data   RW          354    .data.wdt_handle    mk_wdt.o
    0x0202ea14        -       0x00000014   Zero   RW          270    .bss..L_MergedGlobals  aes.o
    0x0202ea28        -       0x00000064   Zero   RW          623    .bss..L_MergedGlobals  ymodem.o
    0x0202ea8c        -       0x0000002c   Zero   RW          653    .bss..L_MergedGlobals  customboot.o
    0x0202eab8        -       0x00000004   Zero   RW          711    .bss..L_MergedGlobals  pin_config.o
    0x0202eabc        -       0x00000100   Zero   RW          585    .bss.FileName       menu.o
    0x0202ebbc        -       0x00000100   Zero   RW          268    .bss.block1         aes.o
    0x0202ecbc        -       0x00000100   Zero   RW          267    .bss.block2         aes.o
    0x0202edbc        -       0x00000060   Zero   RW          692    .bss.board_param    board.o
    0x0202ee1c        -       0x00000001   Zero   RW          651    .bss.flagmode       customboot.o
    0x0202ee1d        -       0x00000405   Zero   RW          622    .bss.packet_data    ymodem.o
    0x0202f222   COMPRESSED   0x00000002   PAD
    0x0202f224        -       0x00000004   Zero   RW          555    .bss.sleep_timer_handle.3  mk_sleep_timer.o
    0x0202f228        -       0x00000004   Zero   RW          556    .bss.sleep_timer_handle.4  mk_sleep_timer.o
    0x0202f22c        -       0x00000014   Zero   RW          453    .bss.sys_tick_env   mk_misc.o
    0x0202f240        -       0x00000004   Zero   RW          450    .bss.sys_timer_freq  mk_misc.o
    0x0202f244        -       0x00000400   Zero   RW          583    .bss.tab_1024       menu.o
    0x0202f644        -       0x00000100   Zero   RW          269    .bss.tempbuf        aes.o
    0x0202f744        -       0x00000004   Zero   RW          642    .bss.time32_reset   customboot.o
    0x0202f748        -       0x00000001   Zero   RW          643    .bss.usartdata_process.state  customboot.o
    0x0202f749   COMPRESSED   0x00000003   PAD
    0x0202f74c        -       0x00000080   Zero   RW          646    .bss.zhongjian_shuju  customboot.o
 
 
    Execution Region ARM_LIB_STACK (Exec base: 0x0202fa00, Load base: 0x0202d230, Size: 0x00000200, Max: 0x00000200, ABSOLUTE)
 
    Exec Addr    Load Addr    Size         Type   Attr      Idx    E Section Name        Object
 
    0x0202fa00        -       0x00000200   Zero   RW            1    ARM_LIB_STACK.bss   anon$$obj.o
 
 
 
  Load Region LR_ROM1 (Base: 0x0202d3e0, Size: 0x00000098, Max: 0x000000a0, ABSOLUTE)
 
    Execution Region USR (Exec base: 0x0202d3e0, Load base: 0x0202d3e0, Size: 0x00000098, Max: 0x000000a0, ABSOLUTE)
 
    Exec Addr    Load Addr    Size         Type   Attr      Idx    E Section Name        Object
 
    0x0202d3e0   0x0202d3e0   0x00000048   Data   RO            9    .ZBOOT_SECTION      startup_mk800x.o
    0x0202d428   0x0202d428   0x00000050   Data   RO           10    .ZBUILD_SECTION     startup_mk800x.o
 
 
==============================================================================
 
Image component sizes
 
 
      Code (inc. data)   RO Data    RW Data    ZI Data      Debug   Object Name
 
       924         36         32          0        788       7339   aes.o
       106         12          0          0         96       6447   board.o
      1034        242         14         12        178       4399   customboot.o
       358         76         83          0       1280       3610   menu.o
       362         60          0          0          0       6289   mk_calib.o
       538         52          0          0          0       6806   mk_clock.o
       400          8          0         72          0       8880   mk_dma.o
       300         24          0         32          0       7024   mk_dual_timer.o
      3348        108        316        124          0      22721   mk_flash.o
       180         12          0         84          0       8904   mk_gpio.o
       156          8          0          0          0       4096   mk_io.o
       198         24         24          0         24      14597   mk_misc.o
        56          4          0          0          0      11820   mk_power.o
        28          4          0          0          0       3693   mk_reset.o
       240         44          0         12          8       5762   mk_sleep_timer.o
      1700         62         42        144          0      18106   mk_uart.o
       296         28          0         16          0       5931   mk_wdt.o
       352         32          0         32          4       3570   pin_config.o
        42          8        344          0          0       3035   startup_mk800x.o
        16          8          0          4          0        707   system_mk800x.o
      1054         32          0          0       1129      11511   ymodem.o
 
    ----------------------------------------------------------------------
     11706        884        892        532       4024     165247   Object Totals
         0          0         32          0        512          0   (incl. Generated)
        18          0          5          0          5          0   (incl. Padding)
 
    ----------------------------------------------------------------------
 
      Code (inc. data)   RO Data    RW Data    ZI Data      Debug   Library Member Name
 
        58          0          0          0          0          0   __dczerorl.o
         0          0          0          0          0          0   entry.o
         0          0          0          0          0          0   entry10a.o
         0          0          0          0          0          0   entry11a.o
         8          4          0          0          0          0   entry4.o
         4          0          0          0          0          0   entry5.o
         0          0          0          0          0          0   entry7b.o
         0          0          0          0          0          0   entry8b.o
         8          4          0          0          0          0   entry9a.o
        30          0          0          0          0          0   handlers.o
        40          0          0          0          0         72   idiv.o
        36          8          0          0          0         68   init.o
        36          0          0          0          0         60   memcpya.o
        36          0          0          0          0        100   memseta.o
        44          0          0          0          0         72   uidiv.o
 
    ----------------------------------------------------------------------
       302         16          0          0          0        372   Library Totals
         2          0          0          0          0          0   (incl. Padding)
 
    ----------------------------------------------------------------------
 
      Code (inc. data)   RO Data    RW Data    ZI Data      Debug   Library Name
 
       300         16          0          0          0        372   mc_p.l
 
    ----------------------------------------------------------------------
       302         16          0          0          0        372   Library Totals
 
    ----------------------------------------------------------------------
 
==============================================================================
 
 
      Code (inc. data)   RO Data    RW Data    ZI Data      Debug   
 
     12008        900        892        532       4024     165487   Grand Totals
     12008        900        892        100       4024     165487   ELF Image Totals (compressed)
     12008        900        892        100          0          0   ROM Totals
 
==============================================================================
 
    Total RO  Size (Code + RO Data)                12900 (  12.60kB)
    Total RW  Size (RW Data + ZI Data)              4556 (   4.45kB)
    Total ROM Size (Code + RO Data + RW Data)      13000 (  12.70kB)
 
==============================================================================