forked from SZV10X_Software/SZV103_FM33A0xxEV_SiZhu

jinlicong
2024-04-24 f0de07104a329cc2eb6d2e77a23214313e675034
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
Component: ARM Compiler 5.06 update 7 for Certification (build 960) Tool: armlink [4d3601]
 
==============================================================================
 
Section Cross References
 
    aes128.o(i.AES128_ECB_decrypt) refers to aes128.o(i.BlockCopy) for BlockCopy
    aes128.o(i.AES128_ECB_decrypt) refers to aes128.o(i.KeyExpansion) for KeyExpansion
    aes128.o(i.AES128_ECB_decrypt) refers to aes128.o(i.InvCipher) for InvCipher
    aes128.o(i.AES128_ECB_decrypt) refers to aes128.o(.data) for state
    aes128.o(i.AES128_ECB_encrypt) refers to aes128.o(i.BlockCopy) for BlockCopy
    aes128.o(i.AES128_ECB_encrypt) refers to aes128.o(i.KeyExpansion) for KeyExpansion
    aes128.o(i.AES128_ECB_encrypt) refers to aes128.o(i.Cipher) for Cipher
    aes128.o(i.AES128_ECB_encrypt) refers to aes128.o(.data) for state
    aes128.o(i.AddRoundKey) refers to aes128.o(.bss) for RoundKey
    aes128.o(i.AddRoundKey) refers to aes128.o(.data) for state
    aes128.o(i.Cipher) refers to aes128.o(i.AddRoundKey) for AddRoundKey
    aes128.o(i.Cipher) refers to aes128.o(i.SubBytes) for SubBytes
    aes128.o(i.Cipher) refers to aes128.o(i.ShiftRows) for ShiftRows
    aes128.o(i.Cipher) refers to aes128.o(i.MixColumns) for MixColumns
    aes128.o(i.InvCipher) refers to aes128.o(i.AddRoundKey) for AddRoundKey
    aes128.o(i.InvCipher) refers to aes128.o(i.InvShiftRows) for InvShiftRows
    aes128.o(i.InvCipher) refers to aes128.o(i.InvSubBytes) for InvSubBytes
    aes128.o(i.InvCipher) refers to aes128.o(i.InvMixColumns) for InvMixColumns
    aes128.o(i.InvMixColumns) refers to aes128.o(i.xtime) for xtime
    aes128.o(i.InvMixColumns) refers to aes128.o(.data) for state
    aes128.o(i.InvShiftRows) refers to aes128.o(.data) for state
    aes128.o(i.InvSubBytes) refers to aes128.o(i.getSBoxInvert) for getSBoxInvert
    aes128.o(i.InvSubBytes) refers to aes128.o(.data) for state
    aes128.o(i.KeyExpansion) refers to aes128.o(i.getSBoxValue) for getSBoxValue
    aes128.o(i.KeyExpansion) refers to aes128.o(.data) for Key
    aes128.o(i.KeyExpansion) refers to aes128.o(.bss) for RoundKey
    aes128.o(i.KeyExpansion) refers to aes128.o(.constdata) for Rcon
    aes128.o(i.MixColumns) refers to aes128.o(i.xtime) for xtime
    aes128.o(i.MixColumns) refers to aes128.o(.data) for state
    aes128.o(i.ShiftRows) refers to aes128.o(.data) for state
    aes128.o(i.SubBytes) refers to aes128.o(i.getSBoxValue) for getSBoxValue
    aes128.o(i.SubBytes) refers to aes128.o(.data) for state
    aes128.o(i.getSBoxInvert) refers to aes128.o(.constdata) for rsbox
    aes128.o(i.getSBoxValue) refers to aes128.o(.constdata) for sbox
    mbcrc.o(i.usMBCRC16) refers to mbcrc.o(.constdata) for aucCRCHi
    system_run_fun.o(i.allExtiIRQ) refers to fm33a0xxev_cmu.o(i.CMU_OPCCR1_EXTICKSEL_Set) for CMU_OPCCR1_EXTICKSEL_Set
    system_run_fun.o(i.allExtiIRQ) refers to fm33a0xxev_cmu.o(i.CMU_OPCCR1_EXTICKE_Setable) for CMU_OPCCR1_EXTICKE_Setable
    system_run_fun.o(i.allExtiIRQ) refers to fm33a0xxev_gpio.o(i.GPIO_EXTI_Init) for GPIO_EXTI_Init
    system_run_fun.o(i.allExtiIRQ) refers to system_run_fun.o(i.NVIC_SetPriority) for NVIC_SetPriority
    system_run_fun.o(i.allGpioInit) refers to extern_rtc.o(i.RTC_GPIO_Init) for RTC_GPIO_Init
    system_run_fun.o(i.allGpioInit) refers to key.o(i.Key_GPIO_Init) for Key_GPIO_Init
    system_run_fun.o(i.allGpioInit) refers to lcd_io_api.o(i.Lcd_GPIO_Init) for Lcd_GPIO_Init
    system_run_fun.o(i.hardwareDriversInit) refers to system_run_fun.o(i.allGpioInit) for allGpioInit
    system_run_fun.o(i.hardwareDriversInit) refers to spi.o(i.SPI3_Init) for SPI3_Init
    system_run_fun.o(i.sysRunFunParaInit) refers to extern_rtc.o(i.Set_Rtc_UpdataInterrupt) for Set_Rtc_UpdataInterrupt
    system_run_fun.o(i.sysRunFunParaInit) refers to extern_rtc.o(i.Get_Extern_Rtc_Time) for Get_Extern_Rtc_Time
    system_run_fun.o(i.sysRunFunParaInit) refers to extern_rtc.o(i.Set_Extern_Rtc_Time) for Set_Extern_Rtc_Time
    system_run_fun.o(i.sysRunFunParaInit) refers to extern_rtc.o(.data) for sys_clockBCD_g
    system_run_fun.o(i.sysRunFunParaInit) refers to system_mem_para.o(.bss) for save_realtime_data_g
    system_run_fun.o(i.sysStoredParaInit) refers to memseta.o(.text) for __aeabi_memclr4
    system_run_fun.o(i.sysStoredParaInit) refers to eeprom.o(i.EEPROM_MultipleRead) for EEPROM_MultipleRead
    system_run_fun.o(i.sysStoredParaInit) refers to uread4.o(.text) for __aeabi_uread4
    system_run_fun.o(i.sysStoredParaInit) refers to system_mem_para.o(i.allParaDefaultInit) for allParaDefaultInit
    system_run_fun.o(i.sysStoredParaInit) refers to system_mem_para.o(i.allParaReadFromEep) for allParaReadFromEep
    system_run_fun.o(i.sysStoredParaInit) refers to system_mem_para.o(i.allParaPatchPro) for allParaPatchPro
    main.o(i.main) refers to rcc_config.o(i.System_power_on_init) for System_power_on_init
    main.o(i.main) refers to system_run_fun.o(i.hardwareDriversInit) for hardwareDriversInit
    main.o(i.main) refers to system_run_fun.o(i.sysStoredParaInit) for sysStoredParaInit
    main.o(i.main) refers to system_run_fun.o(i.sysRunFunParaInit) for sysRunFunParaInit
    main.o(i.main) refers to system_run_fun.o(i.allExtiIRQ) for allExtiIRQ
    main.o(i.main) refers to user_init.o(i.IWDT_Clr) for IWDT_Clr
    main.o(i.main) refers to extern_rtc.o(i.Get_Extern_Rtc_Time) for Get_Extern_Rtc_Time
    main.o(i.main) refers to key.o(i.keyPro) for keyPro
    main.o(i.main) refers to lcd.o(i.lcdDisplayPro) for lcdDisplayPro
    main.o(i.main) refers to upper_com.o(i.upperComPro) for upperComPro
    main.o(i.main) refers to rs485_read_data.o(i.rs485ReadDataPro) for rs485ReadDataPro
    main.o(i.main) refers to system_general_para.o(.data) for sys_run_period
    main.o(i.main) refers to extern_rtc.o(.data) for sys_clockBCD_g
    user_init.o(i.IWDT_Init) refers to fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx) for CMU_PERCLK_SetableEx
    user_init.o(i.IWDT_Init) refers to user_init.o(i.IWDT_Clr) for IWDT_Clr
    user_init.o(i.Init_RCHF) refers to fm33a0xxev_cmu.o(i.CMU_RCHF_Init) for CMU_RCHF_Init
    user_init.o(i.Init_RCHF) refers to fm33a0xxev_cmu.o(i.CMU_Init_RCHF_Trim) for CMU_Init_RCHF_Trim
    user_init.o(i.Init_SysClk) refers to fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx) for CMU_PERCLK_SetableEx
    user_init.o(i.Init_SysClk) refers to gpio.o(i.AnalogIO) for AnalogIO
    user_init.o(i.Init_SysClk) refers to fm33a0xxev_cmu.o(i.CMU_XTHFCR_XTHFEN_Setable) for CMU_XTHFCR_XTHFEN_Setable
    user_init.o(i.Init_SysClk) refers to fm33a0xxev_cmu.o(i.CMU_XTHFCR_XTHF_CFG_Set) for CMU_XTHFCR_XTHF_CFG_Set
    user_init.o(i.Init_SysClk) refers to delay.o(i.delay_ms) for delay_ms
    user_init.o(i.Init_SysClk) refers to fm33a0xxev_cmu.o(i.CMU_IER_HFDET_IE_Setable) for CMU_IER_HFDET_IE_Setable
    user_init.o(i.Init_SysClk) refers to fm33a0xxev_cmu.o(i.CMU_ISR_HFDETO_Chk) for CMU_ISR_HFDETO_Chk
    user_init.o(i.Init_SysClk) refers to fm33a0xxev_cmu.o(i.CMU_SysClk_Init) for CMU_SysClk_Init
    user_init.o(i.Init_SysClk) refers to delay.o(i.delay_init) for delay_init
    user_init.o(i.Init_SysClk_Gen) refers to fm33a0xxev_flash.o(i.FLS_RDCR_WAIT_Set) for FLS_RDCR_WAIT_Set
    user_init.o(i.Init_SysClk_Gen) refers to user_init.o(i.Init_RCHF) for Init_RCHF
    user_init.o(i.Init_SysClk_Gen) refers to user_init.o(i.Init_RCLP) for Init_RCLP
    user_init.o(i.Init_SysClk_Gen) refers to user_init.o(i.Init_SysClk) for Init_SysClk
    user_init.o(i.SysWakeUp_ClockCfg) refers to fm33a0xxev_cmu.o(i.CMU_XTHFCR_XTHFEN_Setable) for CMU_XTHFCR_XTHFEN_Setable
    user_init.o(i.SysWakeUp_ClockCfg) refers to fm33a0xxev_cmu.o(i.CMU_XTHFCR_XTHF_CFG_Set) for CMU_XTHFCR_XTHF_CFG_Set
    user_init.o(i.SysWakeUp_ClockCfg) refers to delay.o(i.delay_ms) for delay_ms
    user_init.o(i.SysWakeUp_ClockCfg) refers to fm33a0xxev_cmu.o(i.CMU_IER_HFDET_IE_Setable) for CMU_IER_HFDET_IE_Setable
    user_init.o(i.SysWakeUp_ClockCfg) refers to fm33a0xxev_cmu.o(i.CMU_ISR_HFDETO_Chk) for CMU_ISR_HFDETO_Chk
    user_init.o(i.SysWakeUp_ClockCfg) refers to fm33a0xxev_cmu.o(i.CMU_SysClk_Init) for CMU_SysClk_Init
    user_init.o(i.SysWakeUp_ClockCfg) refers to delay.o(i.delay_init) for delay_init
    delay.o(i.delay_init) refers to uidiv.o(.text) for __aeabi_uidivmod
    delay.o(i.delay_init) refers to delay.o(.data) for fac_us
    delay.o(i.delay_ms) refers to delay.o(.data) for fac_ms
    delay.o(i.delay_us) refers to delay.o(.data) for fac_us
    rcc_config.o(i.System_power_on_init) refers to user_init.o(i.IWDT_Init) for IWDT_Init
    rcc_config.o(i.System_power_on_init) refers to delay.o(i.delay_init) for delay_init
    rcc_config.o(i.System_power_on_init) refers to delay.o(i.delay_ms) for delay_ms
    rcc_config.o(i.System_power_on_init) refers to user_init.o(i.Init_SysClk_Gen) for Init_SysClk_Gen
    rcc_config.o(i.System_power_on_init) refers to fm33a0xxev_rmu.o(i.RMU_PDRCR_PDREN_Setable) for RMU_PDRCR_PDREN_Setable
    rcc_config.o(i.System_power_on_init) refers to fm33a0xxev_rmu.o(i.RMU_BORCR_BOR_PDRCFG_Set) for RMU_BORCR_BOR_PDRCFG_Set
    rcc_config.o(i.System_power_on_init) refers to fm33a0xxev_rmu.o(i.RMU_BORCR_OFF_BOR_Setable) for RMU_BORCR_OFF_BOR_Setable
    rcc_config.o(i.System_power_on_init) refers to rcc_config.o(i.DEBUG_Init) for DEBUG_Init
    rcc_config.o(i.System_power_on_init) refers to fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx) for CMU_PERCLK_SetableEx
    rcc_config.o(i.System_power_on_init) refers to user_init.o(i.IWDT_Clr) for IWDT_Clr
    rcc_config.o(i.rcc_configration) refers to fm33a0xxev_cmu.o(i.CMU_XTHFCR_XTHFEN_Setable) for CMU_XTHFCR_XTHFEN_Setable
    rcc_config.o(i.rcc_configration) refers to fm33a0xxev_cmu.o(i.CMU_XTHFCR_XTHF_CFG_Set) for CMU_XTHFCR_XTHF_CFG_Set
    rcc_config.o(i.rcc_configration) refers to delay.o(i.delay_ms) for delay_ms
    rcc_config.o(i.rcc_configration) refers to fm33a0xxev_flash.o(i.FLS_RDCR_WAIT_Set) for FLS_RDCR_WAIT_Set
    rcc_config.o(i.rcc_configration) refers to user_init.o(i.IWDT_Clr) for IWDT_Clr
    rcc_config.o(i.rcc_configration) refers to fm33a0xxev_cmu.o(i.CMU_ISR_HFDETO_Chk) for CMU_ISR_HFDETO_Chk
    rcc_config.o(i.rcc_configration) refers to fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_SYSCLKSEL_Set) for CMU_SYSCLKCR_SYSCLKSEL_Set
    rcc_config.o(i.rcc_configration) refers to fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_AHBPRES_Set) for CMU_SYSCLKCR_AHBPRES_Set
    rcc_config.o(i.rcc_configration) refers to fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_APBPRES_Set) for CMU_SYSCLKCR_APBPRES_Set
    rcc_config.o(i.rcc_configration) refers to fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_SLP_ENEXTI_Setable) for CMU_SYSCLKCR_SLP_ENEXTI_Setable
    rcc_config.o(i.rcc_configration) refers to delay.o(i.delay_init) for delay_init
    gpio.o(i.AltFunIO) refers to fm33a0xxev_gpio.o(i.GPIO_Get_InitPara) for GPIO_Get_InitPara
    gpio.o(i.AltFunIO) refers to fm33a0xxev_gpio.o(i.GPIO_Init) for GPIO_Init
    gpio.o(i.AltFunIO_H) refers to fm33a0xxev_cdif.o(i.CDIF_CR_INTF_EN_Getable) for CDIF_CR_INTF_EN_Getable
    gpio.o(i.AltFunIO_H) refers to fm33a0xxev_cdif.o(i.CDIF_CR_INTF_EN_Setable) for CDIF_CR_INTF_EN_Setable
    gpio.o(i.AnalogIO) refers to fm33a0xxev_gpio.o(i.GPIO_Get_InitPara) for GPIO_Get_InitPara
    gpio.o(i.AnalogIO) refers to fm33a0xxev_gpio.o(i.GPIO_Init) for GPIO_Init
    gpio.o(i.AnalogIO_H) refers to fm33a0xxev_cdif.o(i.CDIF_CR_INTF_EN_Getable) for CDIF_CR_INTF_EN_Getable
    gpio.o(i.AnalogIO_H) refers to fm33a0xxev_cdif.o(i.CDIF_CR_INTF_EN_Setable) for CDIF_CR_INTF_EN_Setable
    gpio.o(i.CloseH_IO) refers to fm33a0xxev_cdif.o(i.CDIF_CR_INTF_EN_Getable) for CDIF_CR_INTF_EN_Getable
    gpio.o(i.CloseH_IO) refers to fm33a0xxev_cdif.o(i.CDIF_CR_INTF_EN_Setable) for CDIF_CR_INTF_EN_Setable
    gpio.o(i.InputtIO) refers to fm33a0xxev_gpio.o(i.GPIO_Get_InitPara) for GPIO_Get_InitPara
    gpio.o(i.InputtIO) refers to fm33a0xxev_gpio.o(i.GPIO_Init) for GPIO_Init
    gpio.o(i.InputtIO_H) refers to fm33a0xxev_cdif.o(i.CDIF_CR_INTF_EN_Getable) for CDIF_CR_INTF_EN_Getable
    gpio.o(i.InputtIO_H) refers to fm33a0xxev_cdif.o(i.CDIF_CR_INTF_EN_Setable) for CDIF_CR_INTF_EN_Setable
    gpio.o(i.OutputIO) refers to fm33a0xxev_gpio.o(i.GPIO_Get_InitPara) for GPIO_Get_InitPara
    gpio.o(i.OutputIO) refers to fm33a0xxev_gpio.o(i.GPIO_Init) for GPIO_Init
    gpio.o(i.OutputIO_H) refers to fm33a0xxev_cdif.o(i.CDIF_CR_INTF_EN_Getable) for CDIF_CR_INTF_EN_Getable
    gpio.o(i.OutputIO_H) refers to fm33a0xxev_cdif.o(i.CDIF_CR_INTF_EN_Setable) for CDIF_CR_INTF_EN_Setable
    exti.o(i.GPIO_IRQHandler) refers to user_init.o(i.SysWakeUp_ClockCfg) for SysWakeUp_ClockCfg
    exti.o(i.GPIO_IRQHandler) refers to fm33a0xxev_gpio.o(i.GPIO_EXTI_EXTIISR_ChkEx) for GPIO_EXTI_EXTIISR_ChkEx
    exti.o(i.GPIO_IRQHandler) refers to fm33a0xxev_gpio.o(i.GPIO_EXTI_EXTIISR_ClrEx) for GPIO_EXTI_EXTIISR_ClrEx
    exti.o(i.GPIO_IRQHandler) refers to fm33a0xxev_gpio.o(i.GPIO_ReadInputDataBit) for GPIO_ReadInputDataBit
    exti.o(i.GPIO_IRQHandler) refers to system_general_para.o(.data) for sys_run_period
    uart.o(i.DMA_IRQHandler) refers to fm33a0xxev_dma.o(i.DMA_CHxCR_CHxFTIE_Getable) for DMA_CHxCR_CHxFTIE_Getable
    uart.o(i.DMA_IRQHandler) refers to fm33a0xxev_dma.o(i.DMA_ISR_DMACHFT_Chk) for DMA_ISR_DMACHFT_Chk
    uart.o(i.DMA_IRQHandler) refers to fm33a0xxev_dma.o(i.DMA_ISR_DMACHFT_Clr) for DMA_ISR_DMACHFT_Clr
    uart.o(i.UARTx_SendData_Normal) refers to fm33a0xxev_uart.o(i.UARTx_TXBUF_Write) for UARTx_TXBUF_Write
    uart.o(i.UARTx_SendData_Normal) refers to fm33a0xxev_uart.o(i.UARTx_ISR_TXSE_Chk) for UARTx_ISR_TXSE_Chk
    uart.o(i.Uart0_Init) refers to fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx) for CMU_PERCLK_SetableEx
    uart.o(i.Uart0_Init) refers to gpio.o(i.AltFunIO) for AltFunIO
    uart.o(i.Uart0_Init) refers to fm33a0xxev_cmu.o(i.CMU_GetClocksFreq) for CMU_GetClocksFreq
    uart.o(i.Uart0_Init) refers to fm33a0xxev_uart.o(i.UART_SInit) for UART_SInit
    uart.o(i.Uart0_Init) refers to uart.o(i.NVIC_DisableIRQ) for NVIC_DisableIRQ
    uart.o(i.Uart0_Init) refers to fm33a0xxev_uart.o(i.UARTx_CSR_RXEN_Setable) for UARTx_CSR_RXEN_Setable
    uart.o(i.Uart0_Init) refers to fm33a0xxev_uart.o(i.UARTx_CSR_TXEN_Setable) for UARTx_CSR_TXEN_Setable
    uart.o(i.Uart0_Init) refers to fm33a0xxev_uart.o(i.UARTx_ISR_RXBF_Clr) for UARTx_ISR_RXBF_Clr
    uart.o(i.Uart3_Init) refers to fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx) for CMU_PERCLK_SetableEx
    uart.o(i.Uart3_Init) refers to gpio.o(i.AltFunIO) for AltFunIO
    uart.o(i.Uart3_Init) refers to fm33a0xxev_cmu.o(i.CMU_GetClocksFreq) for CMU_GetClocksFreq
    uart.o(i.Uart3_Init) refers to fm33a0xxev_uart.o(i.UART_SInit) for UART_SInit
    uart.o(i.Uart3_Init) refers to uart.o(i.NVIC_DisableIRQ) for NVIC_DisableIRQ
    uart.o(i.Uart3_Init) refers to fm33a0xxev_uart.o(i.UARTx_CSR_RXEN_Setable) for UARTx_CSR_RXEN_Setable
    uart.o(i.Uart3_Init) refers to fm33a0xxev_uart.o(i.UARTx_CSR_TXEN_Setable) for UARTx_CSR_TXEN_Setable
    uart.o(i.Uart3_Init) refers to fm33a0xxev_uart.o(i.UARTx_ISR_RXBF_Clr) for UARTx_ISR_RXBF_Clr
    uart.o(i.Uart5_Init) refers to fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx) for CMU_PERCLK_SetableEx
    uart.o(i.Uart5_Init) refers to gpio.o(i.AltFunIO) for AltFunIO
    uart.o(i.Uart5_Init) refers to fm33a0xxev_cmu.o(i.CMU_GetClocksFreq) for CMU_GetClocksFreq
    uart.o(i.Uart5_Init) refers to fm33a0xxev_uart.o(i.UART_SInit) for UART_SInit
    uart.o(i.Uart5_Init) refers to uart.o(i.NVIC_DisableIRQ) for NVIC_DisableIRQ
    uart.o(i.Uart5_Init) refers to fm33a0xxev_uart.o(i.UARTx_CSR_RXEN_Setable) for UARTx_CSR_RXEN_Setable
    uart.o(i.Uart5_Init) refers to fm33a0xxev_uart.o(i.UARTx_CSR_TXEN_Setable) for UARTx_CSR_TXEN_Setable
    uart.o(i.Uart5_Init) refers to fm33a0xxev_uart.o(i.UARTx_ISR_RXBF_Clr) for UARTx_ISR_RXBF_Clr
    uart.o(i.fputc) refers to fm33a0xxev_uart.o(i.UARTx_TXBUF_Write) for UARTx_TXBUF_Write
    uart.o(i.fputc) refers to fm33a0xxev_uart.o(i.UARTx_ISR_TXSE_Chk) for UARTx_ISR_TXSE_Chk
    tim.o(i.BasicTimer16_Init) refers to fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx) for CMU_PERCLK_SetableEx
    tim.o(i.BasicTimer16_Init) refers to fm33a0xxev_bt.o(i.BTx_CR1_MODE_Set) for BTx_CR1_MODE_Set
    tim.o(i.BasicTimer16_Init) refers to fm33a0xxev_bt.o(i.BTx_CR1_EDGESEL_Set) for BTx_CR1_EDGESEL_Set
    tim.o(i.BasicTimer16_Init) refers to fm33a0xxev_bt.o(i.BTx_CR2_SIG2SEL_Set) for BTx_CR2_SIG2SEL_Set
    tim.o(i.BasicTimer16_Init) refers to fm33a0xxev_bt.o(i.BTx_CFGR1_GRP1SEL_Set) for BTx_CFGR1_GRP1SEL_Set
    tim.o(i.BasicTimer16_Init) refers to fm33a0xxev_bt.o(i.BTx_PRES_Write) for BTx_PRES_Write
    tim.o(i.BasicTimer16_Init) refers to fm33a0xxev_bt.o(i.BTx_LOADL_Write) for BTx_LOADL_Write
    tim.o(i.BasicTimer16_Init) refers to fm33a0xxev_bt.o(i.BTx_LOADH_Write) for BTx_LOADH_Write
    tim.o(i.BasicTimer16_Init) refers to fm33a0xxev_bt.o(i.BTx_CR2_CNTHSEL_Set) for BTx_CR2_CNTHSEL_Set
    tim.o(i.BasicTimer16_Init) refers to fm33a0xxev_bt.o(i.BTx_CR2_STDIR_Setable) for BTx_CR2_STDIR_Setable
    tim.o(i.BasicTimer16_Init) refers to fm33a0xxev_bt.o(i.BTx_ISR_CMPHIF_Clr) for BTx_ISR_CMPHIF_Clr
    tim.o(i.BasicTimer16_Init) refers to fm33a0xxev_bt.o(i.BTx_LOADCR_LLEN_Setable) for BTx_LOADCR_LLEN_Setable
    tim.o(i.BasicTimer16_Init) refers to fm33a0xxev_bt.o(i.BTx_LOADCR_LHEN_Setable) for BTx_LOADCR_LHEN_Setable
    tim.o(i.BasicTimer16_Init) refers to tim.o(i.NVIC_DisableIRQ) for NVIC_DisableIRQ
    tim.o(i.BasicTimer16_Init) refers to tim.o(i.NVIC_SetPriority) for NVIC_SetPriority
    tim.o(i.BasicTimer16_Init) refers to tim.o(i.NVIC_EnableIRQ) for NVIC_EnableIRQ
    tim.o(i.BasicTimer16_Init) refers to fm33a0xxev_bt.o(i.BTx_IER_CMPHIE_Setable) for BTx_IER_CMPHIE_Setable
    tim.o(i.BasicTimer16_Init) refers to fm33a0xxev_bt.o(i.BTx_IER_OVHIE_Setable) for BTx_IER_OVHIE_Setable
    tim.o(i.BsTimer_Init) refers to fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx) for CMU_PERCLK_SetableEx
    tim.o(i.BsTimer_Init) refers to fm33a0xxev_cmu.o(i.CMU_OPCCR2_BSTCKS_Set) for CMU_OPCCR2_BSTCKS_Set
    tim.o(i.BsTimer_Init) refers to fm33a0xxev_cmu.o(i.CMU_OPCCR2_BSTCKE_Setable) for CMU_OPCCR2_BSTCKE_Setable
    tim.o(i.BsTimer_Init) refers to fm33a0xxev_bstim.o(i.BSTIM_CR1_ARPE_Setable) for BSTIM_CR1_ARPE_Setable
    tim.o(i.BsTimer_Init) refers to fm33a0xxev_bstim.o(i.BSTIM_CR1_OPM_Set) for BSTIM_CR1_OPM_Set
    tim.o(i.BsTimer_Init) refers to fm33a0xxev_bstim.o(i.BSTIM_PSCR_Write) for BSTIM_PSCR_Write
    tim.o(i.BsTimer_Init) refers to fm33a0xxev_bstim.o(i.BSTIM_ARR_Write) for BSTIM_ARR_Write
    tim.o(i.BsTimer_Init) refers to tim.o(i.NVIC_DisableIRQ) for NVIC_DisableIRQ
    tim.o(i.BsTimer_Init) refers to tim.o(i.NVIC_SetPriority) for NVIC_SetPriority
    tim.o(i.BsTimer_Init) refers to tim.o(i.NVIC_EnableIRQ) for NVIC_EnableIRQ
    tim.o(i.BsTimer_Init) refers to fm33a0xxev_bstim.o(i.BSTIM_CR1_CEN_Setable) for BSTIM_CR1_CEN_Setable
    tim.o(i.BsTimer_Init) refers to fm33a0xxev_bstim.o(i.BSTIM_ISR_UIF_Clr) for BSTIM_ISR_UIF_Clr
    tim.o(i.BsTimer_Init) refers to fm33a0xxev_bstim.o(i.BSTIM_IER_UIE_Setable) for BSTIM_IER_UIE_Setable
    tim.o(i.LPTIM_IRQHandler) refers to fm33a0xxev_lptim.o(i.LPTIM_ISR_OVIF_Chk) for LPTIM_ISR_OVIF_Chk
    tim.o(i.LPTIM_IRQHandler) refers to fm33a0xxev_lptim.o(i.LPTIM_CR_EN_Getable) for LPTIM_CR_EN_Getable
    tim.o(i.LPTIM_IRQHandler) refers to fm33a0xxev_lptim.o(i.LPTIM_ISR_OVIF_Clr) for LPTIM_ISR_OVIF_Clr
    tim.o(i.LowPowerTimer_Init) refers to fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx) for CMU_PERCLK_SetableEx
    tim.o(i.LowPowerTimer_Init) refers to fm33a0xxev_cmu.o(i.CMU_OPCCR2_LPTCKS_Set) for CMU_OPCCR2_LPTCKS_Set
    tim.o(i.LowPowerTimer_Init) refers to fm33a0xxev_cmu.o(i.CMU_OPCCR2_LPTCKE_Setable) for CMU_OPCCR2_LPTCKE_Setable
    tim.o(i.LowPowerTimer_Init) refers to fm33a0xxev_lptim.o(i.LPTIM_CFGR_ETR_AFEN_Setable) for LPTIM_CFGR_ETR_AFEN_Setable
    tim.o(i.LowPowerTimer_Init) refers to fm33a0xxev_lptim.o(i.LPTIM_CFGR_PSCSEL_Set) for LPTIM_CFGR_PSCSEL_Set
    tim.o(i.LowPowerTimer_Init) refers to fm33a0xxev_lptim.o(i.LPTIM_CFGR_DIVSEL_Set) for LPTIM_CFGR_DIVSEL_Set
    tim.o(i.LowPowerTimer_Init) refers to fm33a0xxev_lptim.o(i.LPTIM_CFGR_ONST_Set) for LPTIM_CFGR_ONST_Set
    tim.o(i.LowPowerTimer_Init) refers to fm33a0xxev_lptim.o(i.LPTIM_CFGR_TMODE_Set) for LPTIM_CFGR_TMODE_Set
    tim.o(i.LowPowerTimer_Init) refers to fm33a0xxev_lptim.o(i.LPTIM_ARR_Write) for LPTIM_ARR_Write
    tim.o(i.LowPowerTimer_Init) refers to fm33a0xxev_lptim.o(i.LPTIM_ISR_OVIF_Clr) for LPTIM_ISR_OVIF_Clr
    tim.o(i.LowPowerTimer_Init) refers to fm33a0xxev_lptim.o(i.LPTIM_IER_OVIE_Setable) for LPTIM_IER_OVIE_Setable
    tim.o(i.LowPowerTimer_Init) refers to tim.o(i.NVIC_DisableIRQ) for NVIC_DisableIRQ
    tim.o(i.LowPowerTimer_Init) refers to tim.o(i.NVIC_SetPriority) for NVIC_SetPriority
    tim.o(i.LowPowerTimer_Init) refers to tim.o(i.NVIC_EnableIRQ) for NVIC_EnableIRQ
    tim.o(i.LowPowerTimer_Init) refers to fm33a0xxev_lptim.o(i.LPTIM_CR_EN_Setable) for LPTIM_CR_EN_Setable
    tim.o(i.TxtendTimer16_Init) refers to fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx) for CMU_PERCLK_SetableEx
    tim.o(i.TxtendTimer16_Init) refers to fm33a0xxev_et.o(i.ETx_CR_MOD_Set) for ETx_CR_MOD_Set
    tim.o(i.TxtendTimer16_Init) refers to fm33a0xxev_et.o(i.ETx_CR_CASEN_Set) for ETx_CR_CASEN_Set
    tim.o(i.TxtendTimer16_Init) refers to fm33a0xxev_et.o(i.ETx_CR_EDGESEL_Set) for ETx_CR_EDGESEL_Set
    tim.o(i.TxtendTimer16_Init) refers to fm33a0xxev_et.o(i.ETx_INSR_SIG1SEL_Set) for ETx_INSR_SIG1SEL_Set
    tim.o(i.TxtendTimer16_Init) refers to fm33a0xxev_et.o(i.ETx_INSR_GRP1SEL_Set) for ETx_INSR_GRP1SEL_Set
    tim.o(i.TxtendTimer16_Init) refers to fm33a0xxev_et.o(i.ETx_PSCR1_Write) for ETx_PSCR1_Write
    tim.o(i.TxtendTimer16_Init) refers to fm33a0xxev_et.o(i.ETx_IVR_Write) for ETx_IVR_Write
    tim.o(i.TxtendTimer16_Init) refers to fm33a0xxev_et.o(i.ETx_ISR_OVIF_Clr) for ETx_ISR_OVIF_Clr
    rtc.o(i.Get_Sys_Rtc_Time) refers to fm33a0xxev_rtc.o(i.RTC_TimeDate_GetEx) for RTC_TimeDate_GetEx
    rtc.o(i.Get_Sys_Rtc_Time) refers to memcpya.o(.text) for __aeabi_memcpy
    rtc.o(i.RTC_Init) refers to fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx) for CMU_PERCLK_SetableEx
    rtc.o(i.RTC_Init) refers to fm33a0xxev_rtc.o(i.RTC_ISR_SEC_IF_Clr) for RTC_ISR_SEC_IF_Clr
    rtc.o(i.RTC_Init) refers to fm33a0xxev_rtc.o(i.RTC_IER_SEC_IE_Setable) for RTC_IER_SEC_IE_Setable
    rtc.o(i.RTC_Init) refers to rtc.o(i.NVIC_SetPriority) for NVIC_SetPriority
    rtc.o(i.RTC_Init) refers to fm33a0xxev_rtc.o(i.RTC_CR_RTC_EN_Setable) for RTC_CR_RTC_EN_Setable
    rtc.o(i.Set_Sys_Rtc_Time) refers to fm33a0xxev_rtc.o(i.RTC_WER_Write) for RTC_WER_Write
    rtc.o(i.Set_Sys_Rtc_Time) refers to fm33a0xxev_rtc.o(i.RTC_TimeDate_SetEx) for RTC_TimeDate_SetEx
    rtc.o(i.Set_Sys_Rtc_Time) refers to rtc.o(i.Get_Sys_Rtc_Time) for Get_Sys_Rtc_Time
    rtc.o(i.rtc_setalarm) refers to fm33a0xxev_rtc.o(i.RTC_AlarmTime_SetEx) for RTC_AlarmTime_SetEx
    rtc.o(i.rtc_setalarm) refers to fm33a0xxev_rtc.o(i.RTC_ISR_ALARM_IF_Clr) for RTC_ISR_ALARM_IF_Clr
    rtc.o(i.rtc_setalarm) refers to fm33a0xxev_rtc.o(i.RTC_IER_ALARM_IE_Setable) for RTC_IER_ALARM_IE_Setable
    rtc.o(i.rtc_setalarm) refers to fm33a0xxev_rtc.o(i.RTC_ALARM_ALMEN_Setable) for RTC_ALARM_ALMEN_Setable
    adc.o(i.ADC_AlkaIO_Init) refers to fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx) for CMU_PERCLK_SetableEx
    adc.o(i.ADC_AlkaIO_Init) refers to gpio.o(i.AnalogIO) for AnalogIO
    adc.o(i.ADC_AlkaIO_Init) refers to fm33a0xxev_gpio.o(i.GPIOx_ANEN_Setable) for GPIOx_ANEN_Setable
    adc.o(i.ADC_IN4_Init) refers to fm33a0xxev_cdif.o(i.CDIF_CR_INTF_EN_Setable) for CDIF_CR_INTF_EN_Setable
    adc.o(i.ADC_IN4_Init) refers to fm33a0xxev_vrtc.o(i.VRTC_Init_RCMF_Trim) for VRTC_Init_RCMF_Trim
    adc.o(i.ADC_IN4_Init) refers to fm33a0xxev_vrtc.o(i.VRTC_RCMFCR_EN_Setable) for VRTC_RCMFCR_EN_Setable
    adc.o(i.ADC_IN4_Init) refers to fm33a0xxev_vrtc.o(i.VRTC_ADCCR_CKS_Set) for VRTC_ADCCR_CKS_Set
    adc.o(i.ADC_IN4_Init) refers to fm33a0xxev_vrtc.o(i.VRTC_ADCCR_CKE_Setable) for VRTC_ADCCR_CKE_Setable
    adc.o(i.ADC_IN4_Init) refers to fm33a0xxev_adc.o(i.ADC_CFGR_BUFSEL_Set) for ADC_CFGR_BUFSEL_Set
    adc.o(i.ADC_IN4_Init) refers to fm33a0xxev_adc.o(i.ADC_CFGR_BUFEN_Setable) for ADC_CFGR_BUFEN_Setable
    adc.o(i.ADC_IN4_Init) refers to fm33a0xxev_adc.o(i.ADC_CR_MODE_Set) for ADC_CR_MODE_Set
    adc.o(i.ADC_IN4_Init) refers to fm33a0xxev_adc.o(i.ADC_CR_RSTCTRL_EN_Setable) for ADC_CR_RSTCTRL_EN_Setable
    adc.o(i.ADC_IN4_Init) refers to fm33a0xxev_adc.o(i.ADC_CFGR_ACC_PERIOD_Set) for ADC_CFGR_ACC_PERIOD_Set
    adc.o(i.ADC_IN4_Init) refers to fm33a0xxev_adc.o(i.ADC_CR_HPEN_Set) for ADC_CR_HPEN_Set
    adc.o(i.ADC_IN4_Init) refers to fm33a0xxev_adc.o(i.ADC_TRIM_Write) for ADC_TRIM_Write
    adc.o(i.ADC_IN4_Init) refers to fm33a0xxev_adc.o(i.ADC_CR_ACC_IE_Setable) for ADC_CR_ACC_IE_Setable
    adc.o(i.ADC_IN4_Init) refers to fm33a0xxev_adc.o(i.ADC_CR_EN_Setable) for ADC_CR_EN_Setable
    adc.o(i.ADC_IN5_Init) refers to fm33a0xxev_cdif.o(i.CDIF_CR_INTF_EN_Setable) for CDIF_CR_INTF_EN_Setable
    adc.o(i.ADC_IN5_Init) refers to fm33a0xxev_vrtc.o(i.VRTC_Init_RCMF_Trim) for VRTC_Init_RCMF_Trim
    adc.o(i.ADC_IN5_Init) refers to fm33a0xxev_vrtc.o(i.VRTC_RCMFCR_EN_Setable) for VRTC_RCMFCR_EN_Setable
    adc.o(i.ADC_IN5_Init) refers to fm33a0xxev_vrtc.o(i.VRTC_ADCCR_CKS_Set) for VRTC_ADCCR_CKS_Set
    adc.o(i.ADC_IN5_Init) refers to fm33a0xxev_vrtc.o(i.VRTC_ADCCR_CKE_Setable) for VRTC_ADCCR_CKE_Setable
    adc.o(i.ADC_IN5_Init) refers to fm33a0xxev_adc.o(i.ADC_CFGR_BUFSEL_Set) for ADC_CFGR_BUFSEL_Set
    adc.o(i.ADC_IN5_Init) refers to fm33a0xxev_adc.o(i.ADC_CFGR_BUFEN_Setable) for ADC_CFGR_BUFEN_Setable
    adc.o(i.ADC_IN5_Init) refers to fm33a0xxev_adc.o(i.ADC_CR_MODE_Set) for ADC_CR_MODE_Set
    adc.o(i.ADC_IN5_Init) refers to fm33a0xxev_adc.o(i.ADC_CR_RSTCTRL_EN_Setable) for ADC_CR_RSTCTRL_EN_Setable
    adc.o(i.ADC_IN5_Init) refers to fm33a0xxev_adc.o(i.ADC_CFGR_ACC_PERIOD_Set) for ADC_CFGR_ACC_PERIOD_Set
    adc.o(i.ADC_IN5_Init) refers to fm33a0xxev_adc.o(i.ADC_CR_HPEN_Set) for ADC_CR_HPEN_Set
    adc.o(i.ADC_IN5_Init) refers to fm33a0xxev_adc.o(i.ADC_TRIM_Write) for ADC_TRIM_Write
    adc.o(i.ADC_IN5_Init) refers to fm33a0xxev_adc.o(i.ADC_CR_ACC_IE_Setable) for ADC_CR_ACC_IE_Setable
    adc.o(i.ADC_IN5_Init) refers to fm33a0xxev_adc.o(i.ADC_CR_EN_Setable) for ADC_CR_EN_Setable
    adc.o(i.ADC_IN8_Init) refers to fm33a0xxev_cdif.o(i.CDIF_CR_INTF_EN_Setable) for CDIF_CR_INTF_EN_Setable
    adc.o(i.ADC_IN8_Init) refers to fm33a0xxev_vrtc.o(i.VRTC_Init_RCMF_Trim) for VRTC_Init_RCMF_Trim
    adc.o(i.ADC_IN8_Init) refers to fm33a0xxev_vrtc.o(i.VRTC_RCMFCR_EN_Setable) for VRTC_RCMFCR_EN_Setable
    adc.o(i.ADC_IN8_Init) refers to fm33a0xxev_vrtc.o(i.VRTC_ADCCR_CKS_Set) for VRTC_ADCCR_CKS_Set
    adc.o(i.ADC_IN8_Init) refers to fm33a0xxev_vrtc.o(i.VRTC_ADCCR_CKE_Setable) for VRTC_ADCCR_CKE_Setable
    adc.o(i.ADC_IN8_Init) refers to fm33a0xxev_adc.o(i.ADC_CFGR_BUFSEL_Set) for ADC_CFGR_BUFSEL_Set
    adc.o(i.ADC_IN8_Init) refers to fm33a0xxev_adc.o(i.ADC_CFGR_BUFEN_Setable) for ADC_CFGR_BUFEN_Setable
    adc.o(i.ADC_IN8_Init) refers to fm33a0xxev_adc.o(i.ADC_CR_MODE_Set) for ADC_CR_MODE_Set
    adc.o(i.ADC_IN8_Init) refers to fm33a0xxev_adc.o(i.ADC_CR_RSTCTRL_EN_Setable) for ADC_CR_RSTCTRL_EN_Setable
    adc.o(i.ADC_IN8_Init) refers to fm33a0xxev_adc.o(i.ADC_CFGR_ACC_PERIOD_Set) for ADC_CFGR_ACC_PERIOD_Set
    adc.o(i.ADC_IN8_Init) refers to fm33a0xxev_adc.o(i.ADC_CR_HPEN_Set) for ADC_CR_HPEN_Set
    adc.o(i.ADC_IN8_Init) refers to fm33a0xxev_adc.o(i.ADC_TRIM_Write) for ADC_TRIM_Write
    adc.o(i.ADC_IN8_Init) refers to fm33a0xxev_adc.o(i.ADC_CR_ACC_IE_Setable) for ADC_CR_ACC_IE_Setable
    adc.o(i.ADC_IN8_Init) refers to fm33a0xxev_adc.o(i.ADC_CR_EN_Setable) for ADC_CR_EN_Setable
    adc.o(i.ADC_LithIO_Init) refers to fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx) for CMU_PERCLK_SetableEx
    adc.o(i.ADC_LithIO_Init) refers to gpio.o(i.AnalogIO) for AnalogIO
    adc.o(i.ADC_LithIO_Init) refers to fm33a0xxev_gpio.o(i.GPIOx_ANEN_Setable) for GPIOx_ANEN_Setable
    adc.o(i.ADC_Temp_Init) refers to fm33a0xxev_cdif.o(i.CDIF_CR_INTF_EN_Setable) for CDIF_CR_INTF_EN_Setable
    adc.o(i.ADC_Temp_Init) refers to fm33a0xxev_vrtc.o(i.VRTC_Init_RCMF_Trim) for VRTC_Init_RCMF_Trim
    adc.o(i.ADC_Temp_Init) refers to fm33a0xxev_vrtc.o(i.VRTC_RCMFCR_EN_Setable) for VRTC_RCMFCR_EN_Setable
    adc.o(i.ADC_Temp_Init) refers to fm33a0xxev_vrtc.o(i.VRTC_ADCCR_CKS_Set) for VRTC_ADCCR_CKS_Set
    adc.o(i.ADC_Temp_Init) refers to fm33a0xxev_vrtc.o(i.VRTC_ADCCR_CKE_Setable) for VRTC_ADCCR_CKE_Setable
    adc.o(i.ADC_Temp_Init) refers to fm33a0xxev_adc.o(i.ADC_CFGR_BUFSEL_Set) for ADC_CFGR_BUFSEL_Set
    adc.o(i.ADC_Temp_Init) refers to fm33a0xxev_adc.o(i.ADC_CFGR_BUFEN_Setable) for ADC_CFGR_BUFEN_Setable
    adc.o(i.ADC_Temp_Init) refers to fm33a0xxev_adc.o(i.ADC_CR_MODE_Set) for ADC_CR_MODE_Set
    adc.o(i.ADC_Temp_Init) refers to fm33a0xxev_adc.o(i.ADC_CR_RSTCTRL_EN_Setable) for ADC_CR_RSTCTRL_EN_Setable
    adc.o(i.ADC_Temp_Init) refers to fm33a0xxev_adc.o(i.ADC_TRIM_Write) for ADC_TRIM_Write
    adc.o(i.ADC_Temp_Init) refers to fm33a0xxev_adc.o(i.ADC_CFGR_ACC_PERIOD_Set) for ADC_CFGR_ACC_PERIOD_Set
    adc.o(i.ADC_Temp_Init) refers to fm33a0xxev_adc.o(i.ADC_CR_ACC_IE_Setable) for ADC_CR_ACC_IE_Setable
    adc.o(i.ADC_Temp_Init) refers to fm33a0xxev_adc.o(i.ADC_CR_EN_Setable) for ADC_CR_EN_Setable
    adc.o(i.Get_AdcTempValue) refers to fm33a0xxev_adc.o(i.ADC_CR_EN_Setable) for ADC_CR_EN_Setable
    adc.o(i.Get_AdcTempValue) refers to fm33a0xxev_adc.o(i.ADC_ISR_ACC_IF_Clr) for ADC_ISR_ACC_IF_Clr
    adc.o(i.Get_AdcTempValue) refers to adc.o(i.adc_wait_finish) for adc_wait_finish
    adc.o(i.Get_AdcTempValue) refers to fm33a0xxev_adc.o(i.ADC_DR_Read) for ADC_DR_Read
    adc.o(i.Get_AdcTempValue) refers to adc.o(i.adc_tem_cal) for adc_tem_cal
    adc.o(i.Get_AdcValue) refers to fm33a0xxev_adc.o(i.ADC_CR_EN_Setable) for ADC_CR_EN_Setable
    adc.o(i.Get_AdcValue) refers to fm33a0xxev_adc.o(i.ADC_ISR_ACC_IF_Clr) for ADC_ISR_ACC_IF_Clr
    adc.o(i.Get_AdcValue) refers to adc.o(i.adc_wait_finish) for adc_wait_finish
    adc.o(i.Get_AdcValue) refers to fm33a0xxev_adc.o(i.ADC_DR_Read) for ADC_DR_Read
    adc.o(i.Get_AdcValue) refers to adc.o(i.adc_vol_cal) for adc_vol_cal
    adc.o(i.adc_tem_cal) refers to ffltui.o(.text) for __aeabi_ui2f
    adc.o(i.adc_tem_cal) refers to fdiv.o(.text) for __aeabi_fdiv
    adc.o(i.adc_tem_cal) refers to fadd.o(.text) for __aeabi_fadd
    adc.o(i.adc_tem_cal) refers to f2d.o(.text) for __aeabi_f2d
    adc.o(i.adc_tem_cal) refers to dadd.o(.text) for __aeabi_dsub
    adc.o(i.adc_tem_cal) refers to d2f.o(.text) for __aeabi_d2f
    adc.o(i.adc_tem_cal) refers to adc.o(.data) for const_TmpeK_14BIT
    adc.o(i.adc_vol_cal) refers to dflti.o(.text) for __aeabi_i2d
    adc.o(i.adc_vol_cal) refers to ddiv.o(.text) for __aeabi_ddiv
    adc.o(i.adc_vol_cal) refers to dfltui.o(.text) for __aeabi_ui2d
    adc.o(i.adc_vol_cal) refers to dadd.o(.text) for __aeabi_dadd
    adc.o(i.adc_vol_cal) refers to dfixi.o(.text) for __aeabi_d2iz
    adc.o(i.adc_wait_finish) refers to fm33a0xxev_adc.o(i.ADC_ISR_ACC_IF_Chk) for ADC_ISR_ACC_IF_Chk
    i2c.o(i.I2c_Ack) refers to i2c.o(i.Sda_Out) for Sda_Out
    i2c.o(i.I2c_Ack) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    i2c.o(i.I2c_Ack) refers to delay.o(i.delay_us) for delay_us
    i2c.o(i.I2c_Ack) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    i2c.o(i.I2c_No_Ack) refers to i2c.o(i.Sda_Out) for Sda_Out
    i2c.o(i.I2c_No_Ack) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    i2c.o(i.I2c_No_Ack) refers to delay.o(i.delay_us) for delay_us
    i2c.o(i.I2c_No_Ack) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    i2c.o(i.I2c_Read) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    i2c.o(i.I2c_Read) refers to i2c.o(i.Sda_In) for Sda_In
    i2c.o(i.I2c_Read) refers to delay.o(i.delay_us) for delay_us
    i2c.o(i.I2c_Read) refers to fm33a0xxev_gpio.o(i.GPIO_ReadInputDataBit) for GPIO_ReadInputDataBit
    i2c.o(i.I2c_Read) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    i2c.o(i.I2c_Scl_Gpio_Init) refers to fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx) for CMU_PERCLK_SetableEx
    i2c.o(i.I2c_Scl_Gpio_Init) refers to gpio.o(i.OutputIO) for OutputIO
    i2c.o(i.I2c_Scl_Gpio_Init) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    i2c.o(i.I2c_Send) refers to i2c.o(i.Sda_Out) for Sda_Out
    i2c.o(i.I2c_Send) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    i2c.o(i.I2c_Send) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    i2c.o(i.I2c_Send) refers to delay.o(i.delay_us) for delay_us
    i2c.o(i.I2c_Start) refers to i2c.o(i.I2c_Scl_Gpio_Init) for I2c_Scl_Gpio_Init
    i2c.o(i.I2c_Start) refers to i2c.o(i.Sda_Out) for Sda_Out
    i2c.o(i.I2c_Start) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    i2c.o(i.I2c_Start) refers to delay.o(i.delay_us) for delay_us
    i2c.o(i.I2c_Start) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    i2c.o(i.I2c_Stop) refers to i2c.o(i.Sda_Out) for Sda_Out
    i2c.o(i.I2c_Stop) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    i2c.o(i.I2c_Stop) refers to delay.o(i.delay_us) for delay_us
    i2c.o(i.I2c_Stop) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    i2c.o(i.I2c_Wait_Ack) refers to i2c.o(i.Sda_In) for Sda_In
    i2c.o(i.I2c_Wait_Ack) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    i2c.o(i.I2c_Wait_Ack) refers to delay.o(i.delay_us) for delay_us
    i2c.o(i.I2c_Wait_Ack) refers to i2c.o(i.I2c_Stop) for I2c_Stop
    i2c.o(i.I2c_Wait_Ack) refers to fm33a0xxev_gpio.o(i.GPIO_ReadInputDataBit) for GPIO_ReadInputDataBit
    i2c.o(i.I2c_Wait_Ack) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    i2c.o(i.Sda_In) refers to fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx) for CMU_PERCLK_SetableEx
    i2c.o(i.Sda_In) refers to gpio.o(i.InputtIO) for InputtIO
    i2c.o(i.Sda_Out) refers to fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx) for CMU_PERCLK_SetableEx
    i2c.o(i.Sda_Out) refers to gpio.o(i.OutputIO) for OutputIO
    spi.o(i.SPI3_Init) refers to fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx) for CMU_PERCLK_SetableEx
    spi.o(i.SPI3_Init) refers to gpio.o(i.AltFunIO) for AltFunIO
    spi.o(i.SPI3_Init) refers to fm33a0xxev_spi.o(i.SPIx_CR1_IOSWAP_Set) for SPIx_CR1_IOSWAP_Set
    spi.o(i.SPI3_Init) refers to fm33a0xxev_spi.o(i.SPIx_CR1_MM_Set) for SPIx_CR1_MM_Set
    spi.o(i.SPI3_Init) refers to fm33a0xxev_spi.o(i.SPIx_CR1_WAIT_Set) for SPIx_CR1_WAIT_Set
    spi.o(i.SPI3_Init) refers to fm33a0xxev_spi.o(i.SPIx_CR1_BAUD_Set) for SPIx_CR1_BAUD_Set
    spi.o(i.SPI3_Init) refers to fm33a0xxev_spi.o(i.SPIx_CR1_LSBF_Set) for SPIx_CR1_LSBF_Set
    spi.o(i.SPI3_Init) refers to fm33a0xxev_spi.o(i.SPIx_CR1_CPHOL_Set) for SPIx_CR1_CPHOL_Set
    spi.o(i.SPI3_Init) refers to fm33a0xxev_spi.o(i.SPIx_CR1_CPHA_Set) for SPIx_CR1_CPHA_Set
    spi.o(i.SPI3_Init) refers to fm33a0xxev_spi.o(i.SPIx_CR2_SSNSEN_Setable) for SPIx_CR2_SSNSEN_Setable
    spi.o(i.SPI3_Init) refers to fm33a0xxev_spi.o(i.SPIx_CR2_RXO_Setable) for SPIx_CR2_RXO_Setable
    spi.o(i.SPI3_Init) refers to fm33a0xxev_spi.o(i.SPIx_CR2_DLEN_Set) for SPIx_CR2_DLEN_Set
    spi.o(i.SPI3_Init) refers to fm33a0xxev_spi.o(i.SPIx_CR2_HALFDUPLEX_Set) for SPIx_CR2_HALFDUPLEX_Set
    spi.o(i.SPI3_Init) refers to fm33a0xxev_spi.o(i.SPIx_CR2_SSNM_Set) for SPIx_CR2_SSNM_Set
    spi.o(i.SPI3_Init) refers to fm33a0xxev_spi.o(i.SPIx_CR2_TXO_AC_Setable) for SPIx_CR2_TXO_AC_Setable
    spi.o(i.SPI3_Init) refers to fm33a0xxev_spi.o(i.SPIx_CR2_TXO_Setable) for SPIx_CR2_TXO_Setable
    spi.o(i.SPI3_Init) refers to fm33a0xxev_spi.o(i.SPIx_CR3_SERRC_Clr) for SPIx_CR3_SERRC_Clr
    spi.o(i.SPI3_Init) refers to fm33a0xxev_spi.o(i.SPIx_CR3_MERRC_Clr) for SPIx_CR3_MERRC_Clr
    spi.o(i.SPI3_Init) refers to fm33a0xxev_spi.o(i.SPIx_CR3_RXBFC_Clr) for SPIx_CR3_RXBFC_Clr
    spi.o(i.SPI3_Init) refers to fm33a0xxev_spi.o(i.SPIx_CR3_TXBFC_Clr) for SPIx_CR3_TXBFC_Clr
    spi.o(i.SPI3_Init) refers to fm33a0xxev_spi.o(i.SPIx_CR2_SPIEN_Setable) for SPIx_CR2_SPIEN_Setable
    spi.o(i.SpiRead) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    spi.o(i.SpiWrite) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    spi.o(i.SpiWriteAndRead) refers to fm33a0xxev_spi.o(i.SPIx_TXBUF_Write) for SPIx_TXBUF_Write
    spi.o(i.SpiWriteAndRead) refers to fm33a0xxev_spi.o(i.SPIx_ISR_TXBE_Chk) for SPIx_ISR_TXBE_Chk
    spi.o(i.SpiWriteAndRead) refers to fm33a0xxev_spi.o(i.SPIx_ISR_RXBF_Chk) for SPIx_ISR_RXBF_Chk
    spi.o(i.SpiWriteAndRead) refers to fm33a0xxev_spi.o(i.SPIx_RXBUF_Read) for SPIx_RXBUF_Read
    flash.o(i.FlashInit) refers to fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx) for CMU_PERCLK_SetableEx
    flash.o(i.FlashPageErase) refers to fm33a0xxev_cmu.o(i.CMU_OPCCR2_NVMCKE_Setable) for CMU_OPCCR2_NVMCKE_Setable
    flash.o(i.FlashPageErase) refers to fm33a0xxev_flash.o(i.FLS_EPCR_ERTYPE_Set) for FLS_EPCR_ERTYPE_Set
    flash.o(i.FlashPageErase) refers to fm33a0xxev_flash.o(i.FLS_EPCR_EREQ_Set) for FLS_EPCR_EREQ_Set
    flash.o(i.FlashPageErase) refers to fm33a0xxev_flash.o(i.FLS_KEY_Write) for FLS_KEY_Write
    flash.o(i.FlashPageErase) refers to fm33a0xxev_flash.o(i.FLS_ISR_ERD_Chk) for FLS_ISR_ERD_Chk
    flash.o(i.FlashPageErase) refers to fm33a0xxev_flash.o(i.FLS_ISR_ERD_Clr) for FLS_ISR_ERD_Clr
    flash.o(i.Flash_AppPageErase) refers to flash.o(i.FlashPageErase) for FlashPageErase
    flash.o(i.Flash_App_Write_String) refers to flash.o(i.LL_FLASH_Program_Word) for LL_FLASH_Program_Word
    flash.o(i.LL_FLASH_Program_Word) refers to fm33a0xxev_cmu.o(i.CMU_OPCCR2_NVMCKE_Setable) for CMU_OPCCR2_NVMCKE_Setable
    flash.o(i.LL_FLASH_Program_Word) refers to fm33a0xxev_flash.o(i.FLS_EPCR_PREQ_Set) for FLS_EPCR_PREQ_Set
    flash.o(i.LL_FLASH_Program_Word) refers to fm33a0xxev_flash.o(i.FLS_KEY_Write) for FLS_KEY_Write
    flash.o(i.LL_FLASH_Program_Word) refers to fm33a0xxev_flash.o(i.FLS_ISR_PRD_Chk) for FLS_ISR_PRD_Chk
    flash.o(i.LL_FLASH_Program_Word) refers to fm33a0xxev_flash.o(i.FLS_ISR_PRD_Clr) for FLS_ISR_PRD_Clr
    extern_rtc.o(i.Get_Extern_Rtc_Time) refers to extern_rtc.o(i.R8025T_Read) for R8025T_Read
    extern_rtc.o(i.Get_Extern_Rtc_Time) refers to extern_rtc.o(i.TimeEffectJudgm) for TimeEffectJudgm
    extern_rtc.o(i.R8025T_Read) refers to i2c.o(i.I2c_Start) for I2c_Start
    extern_rtc.o(i.R8025T_Read) refers to i2c.o(i.I2c_Send) for I2c_Send
    extern_rtc.o(i.R8025T_Read) refers to i2c.o(i.I2c_Read) for I2c_Read
    extern_rtc.o(i.R8025T_Read) refers to i2c.o(i.I2c_Ack) for I2c_Ack
    extern_rtc.o(i.R8025T_Read) refers to i2c.o(i.I2c_No_Ack) for I2c_No_Ack
    extern_rtc.o(i.R8025T_Read) refers to i2c.o(i.I2c_Stop) for I2c_Stop
    extern_rtc.o(i.R8025T_Write) refers to i2c.o(i.I2c_Start) for I2c_Start
    extern_rtc.o(i.R8025T_Write) refers to i2c.o(i.I2c_Send) for I2c_Send
    extern_rtc.o(i.R8025T_Write) refers to i2c.o(i.I2c_Stop) for I2c_Stop
    extern_rtc.o(i.RTC_GPIO_Init) refers to i2c.o(i.I2c_Scl_Gpio_Init) for I2c_Scl_Gpio_Init
    extern_rtc.o(i.RTC_GPIO_Init) refers to gpio.o(i.InputtIO) for InputtIO
    extern_rtc.o(i.Set_Extern_Rtc_Time) refers to extern_rtc.o(i.TimeEffectJudgm) for TimeEffectJudgm
    extern_rtc.o(i.Set_Extern_Rtc_Time) refers to extern_rtc.o(i.R8025T_Write) for R8025T_Write
    extern_rtc.o(i.Set_Rtc_UpdataInterrupt) refers to extern_rtc.o(i.R8025T_Write) for R8025T_Write
    extern_rtc.o(i.TimeEffectJudgm) refers to extern_rtc.o(i.__ARM_common_switch8) for __ARM_common_switch8
    key.o(i.Key_GPIO_Init) refers to gpio.o(i.InputtIO) for InputtIO
    key.o(i.keyPro) refers to fm33a0xxev_gpio.o(i.GPIO_ReadInputDataBit) for GPIO_ReadInputDataBit
    key.o(i.keyPro) refers to key.o(.data) for P_Key1Cnt
    off_chip_flash.o(i.FLASH_Write_Disable) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    off_chip_flash.o(i.FLASH_Write_Disable) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    off_chip_flash.o(i.FLASH_Write_Disable) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    off_chip_flash.o(i.FLASH_Write_Enable) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    off_chip_flash.o(i.FLASH_Write_Enable) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    off_chip_flash.o(i.FLASH_Write_Enable) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    off_chip_flash.o(i.FLASH_Write_SR) refers to off_chip_flash.o(i.FLASH_Write_Enable) for FLASH_Write_Enable
    off_chip_flash.o(i.FLASH_Write_SR) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    off_chip_flash.o(i.FLASH_Write_SR) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    off_chip_flash.o(i.FLASH_Write_SR) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    off_chip_flash.o(i.Flash_Erase_Chip) refers to off_chip_flash.o(i.FLASH_Write_Enable) for FLASH_Write_Enable
    off_chip_flash.o(i.Flash_Erase_Chip) refers to off_chip_flash.o(i.Flash_Wait_Busy) for Flash_Wait_Busy
    off_chip_flash.o(i.Flash_Erase_Chip) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    off_chip_flash.o(i.Flash_Erase_Chip) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    off_chip_flash.o(i.Flash_Erase_Chip) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    off_chip_flash.o(i.Flash_OUT_Erase_Sector) refers to off_chip_flash.o(i.FLASH_Write_Enable) for FLASH_Write_Enable
    off_chip_flash.o(i.Flash_OUT_Erase_Sector) refers to off_chip_flash.o(i.Flash_Wait_Busy) for Flash_Wait_Busy
    off_chip_flash.o(i.Flash_OUT_Erase_Sector) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    off_chip_flash.o(i.Flash_OUT_Erase_Sector) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    off_chip_flash.o(i.Flash_OUT_Erase_Sector) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    off_chip_flash.o(i.Flash_PowerDown) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    off_chip_flash.o(i.Flash_PowerDown) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    off_chip_flash.o(i.Flash_PowerDown) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    off_chip_flash.o(i.Flash_PowerDown) refers to delay.o(i.delay_us) for delay_us
    off_chip_flash.o(i.Flash_ReadID) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    off_chip_flash.o(i.Flash_ReadID) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    off_chip_flash.o(i.Flash_ReadID) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    off_chip_flash.o(i.Flash_ReadSR) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    off_chip_flash.o(i.Flash_ReadSR) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    off_chip_flash.o(i.Flash_ReadSR) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    off_chip_flash.o(i.Flash_WAKEUP) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    off_chip_flash.o(i.Flash_WAKEUP) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    off_chip_flash.o(i.Flash_WAKEUP) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    off_chip_flash.o(i.Flash_WAKEUP) refers to delay.o(i.delay_us) for delay_us
    off_chip_flash.o(i.Flash_Wait_Busy) refers to off_chip_flash.o(i.Flash_ReadSR) for Flash_ReadSR
    off_chip_flash.o(i.Flash_Write_NoCheck) refers to off_chip_flash.o(i.Flash_Write_Page) for Flash_Write_Page
    off_chip_flash.o(i.Flash_Write_Page) refers to off_chip_flash.o(i.FLASH_Write_Enable) for FLASH_Write_Enable
    off_chip_flash.o(i.Flash_Write_Page) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    off_chip_flash.o(i.Flash_Write_Page) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    off_chip_flash.o(i.Flash_Write_Page) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    off_chip_flash.o(i.Flash_Write_Page) refers to off_chip_flash.o(i.Flash_Wait_Busy) for Flash_Wait_Busy
    off_chip_flash.o(i.Flash_data_read) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    off_chip_flash.o(i.Flash_data_read) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    off_chip_flash.o(i.Flash_data_read) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    off_chip_flash.o(i.OUT_FLASH_test) refers to off_chip_flash.o(i.Out_Flash_MultipleWrite) for Out_Flash_MultipleWrite
    off_chip_flash.o(i.OUT_FLASH_test) refers to off_chip_flash.o(i.Out_Flash_MultipleRead) for Out_Flash_MultipleRead
    off_chip_flash.o(i.Out_Flash_MultipleRead) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    off_chip_flash.o(i.Out_Flash_MultipleRead) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    off_chip_flash.o(i.Out_Flash_MultipleRead) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    off_chip_flash.o(i.Out_Flash_MultipleWrite) refers to memseta.o(.text) for __aeabi_memclr4
    off_chip_flash.o(i.Out_Flash_MultipleWrite) refers to off_chip_flash.o(i.Out_Flash_MultipleRead) for Out_Flash_MultipleRead
    off_chip_flash.o(i.Out_Flash_MultipleWrite) refers to off_chip_flash.o(i.Flash_OUT_Erase_Sector) for Flash_OUT_Erase_Sector
    off_chip_flash.o(i.Out_Flash_MultipleWrite) refers to off_chip_flash.o(i.Flash_Write_NoCheck) for Flash_Write_NoCheck
    off_chip_flash.o(i.Out_Flash_MultipleWrite) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    bootloader_iap.o(i.BootLoader_IapConfigCheckHandler) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    bootloader_iap.o(i.BootLoader_IapConfigCheckHandler) refers to off_chip_flash.o(i.Out_Flash_MultipleRead) for Out_Flash_MultipleRead
    bootloader_iap.o(i.BootLoader_IapConfigCheckHandler) refers to mbcrc.o(i.usMBCRC16) for usMBCRC16
    bootloader_iap.o(i.BootLoader_IapConfigCheckHandler) refers to user_init.o(i.IWDT_Clr) for IWDT_Clr
    bootloader_iap.o(i.BootLoader_IapConfigCheckHandler) refers to bootloader_iap.o(i.IapBootload_WriteCfgFlash_Handler) for IapBootload_WriteCfgFlash_Handler
    bootloader_iap.o(i.BootLoader_IapConfigCheckHandler) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    bootloader_iap.o(i.BootLoader_IapConfigCheckHandler) refers to bootloader_iap.o(.bss) for bootload_para_g
    bootloader_iap.o(i.BootLoader_IapConfigSetHander) refers to memcpya.o(.text) for __aeabi_memcpy
    bootloader_iap.o(i.BootLoader_IapConfigSetHander) refers to mbcrc.o(i.usMBCRC16) for usMBCRC16
    bootloader_iap.o(i.BootLoader_IapConfigSetHander) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    bootloader_iap.o(i.BootLoader_IapConfigSetHander) refers to off_chip_flash.o(i.Flash_OUT_Erase_Sector) for Flash_OUT_Erase_Sector
    bootloader_iap.o(i.BootLoader_IapConfigSetHander) refers to user_init.o(i.IWDT_Clr) for IWDT_Clr
    bootloader_iap.o(i.BootLoader_IapConfigSetHander) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    bootloader_iap.o(i.BootLoader_IapConfigSetHander) refers to flash.o(i.Flash_AppPageErase) for Flash_AppPageErase
    bootloader_iap.o(i.BootLoader_IapConfigSetHander) refers to bootloader_iap.o(.bss) for bootload_para_g
    bootloader_iap.o(i.BootLoader_IapDiffDataHandler) refers to memcpya.o(.text) for __aeabi_memcpy
    bootloader_iap.o(i.BootLoader_IapDiffDataHandler) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    bootloader_iap.o(i.BootLoader_IapDiffDataHandler) refers to off_chip_flash.o(i.Out_Flash_MultipleWrite) for Out_Flash_MultipleWrite
    bootloader_iap.o(i.BootLoader_IapDiffDataHandler) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    bootloader_iap.o(i.BootLoader_IapDiffDataHandler) refers to bootloader_iap.o(.bss) for bootload_para_g
    bootloader_iap.o(i.BootLoader_IapDiffMapSetHandler) refers to memcpya.o(.text) for __aeabi_memcpy
    bootloader_iap.o(i.BootLoader_IapDiffMapSetHandler) refers to flash.o(i.Flash_App_Write_String) for Flash_App_Write_String
    bootloader_iap.o(i.BootLoader_IapDiffMapSetHandler) refers to bootloader_iap.o(.bss) for FlashWrBuf
    bootloader_iap.o(i.IapBootload_WriteCfgFlash_Handler) refers to flash.o(i.Flash_AppPageErase) for Flash_AppPageErase
    bootloader_iap.o(i.IapBootload_WriteCfgFlash_Handler) refers to flash.o(i.Flash_App_Write_String) for Flash_App_Write_String
    bootloader_iap.o(i.IapBootload_WriteCfgFlash_Handler) refers to bootloader_iap.o(.bss) for bootload_para_g
    bootloader_iap.o(i.OTA_UpdataResetHandler) refers to memseta.o(.text) for __aeabi_memclr4
    bootloader_iap.o(i.OTA_UpdataResetHandler) refers to memcpya.o(.text) for __aeabi_memcpy4
    bootloader_iap.o(i.OTA_UpdataResetHandler) refers to delay.o(i.delay_ms) for delay_ms
    eeprom.o(i.EEPROM_ID_read) refers to delay.o(i.delay_us) for delay_us
    eeprom.o(i.EEPROM_ID_read) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    eeprom.o(i.EEPROM_ID_read) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    eeprom.o(i.EEPROM_ID_read) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    eeprom.o(i.EEPROM_MultipleRead) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    eeprom.o(i.EEPROM_MultipleRead) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    eeprom.o(i.EEPROM_MultipleRead) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    eeprom.o(i.EEPROM_MultipleRead) refers to eeprom.o(i.EEPROM_Wait_Busy) for EEPROM_Wait_Busy
    eeprom.o(i.EEPROM_MultipleRead_CS_2) refers to eeprom.o(i.EEPROM_MultipleRead) for EEPROM_MultipleRead
    eeprom.o(i.EEPROM_MultipleRead_CS_2) refers to eeprom.o(.data) for Fram_cs_flag
    eeprom.o(i.EEPROM_MultipleWrite) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    eeprom.o(i.EEPROM_MultipleWrite) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    eeprom.o(i.EEPROM_MultipleWrite) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    eeprom.o(i.EEPROM_MultipleWrite) refers to eeprom.o(i.EEPROM_Wait_Busy) for EEPROM_Wait_Busy
    eeprom.o(i.EEPROM_MultipleWrite_CS_2) refers to eeprom.o(i.EEPROM_MultipleWrite) for EEPROM_MultipleWrite
    eeprom.o(i.EEPROM_MultipleWrite_CS_2) refers to eeprom.o(.data) for Fram_cs_flag
    eeprom.o(i.EEPROM_Wait_Busy) refers to eeprom.o(i.EEPROM_stat_read) for EEPROM_stat_read
    eeprom.o(i.EEPROM_data_read) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    eeprom.o(i.EEPROM_data_read) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    eeprom.o(i.EEPROM_data_read) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    eeprom.o(i.EEPROM_data_read_double) refers to eeprom.o(i.EEPROM_data_read) for EEPROM_data_read
    eeprom.o(i.EEPROM_data_read_float) refers to eeprom.o(i.EEPROM_data_read) for EEPROM_data_read
    eeprom.o(i.EEPROM_data_read_uint16) refers to eeprom.o(i.EEPROM_data_read) for EEPROM_data_read
    eeprom.o(i.EEPROM_data_read_uint32) refers to eeprom.o(i.EEPROM_data_read) for EEPROM_data_read
    eeprom.o(i.EEPROM_data_write) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    eeprom.o(i.EEPROM_data_write) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    eeprom.o(i.EEPROM_data_write) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    eeprom.o(i.EEPROM_data_write) refers to eeprom.o(i.EEPROM_Wait_Busy) for EEPROM_Wait_Busy
    eeprom.o(i.EEPROM_data_write_double) refers to eeprom.o(i.EEPROM_MultipleWrite) for EEPROM_MultipleWrite
    eeprom.o(i.EEPROM_data_write_float) refers to eeprom.o(i.EEPROM_MultipleWrite) for EEPROM_MultipleWrite
    eeprom.o(i.EEPROM_data_write_uint16) refers to eeprom.o(i.EEPROM_MultipleWrite) for EEPROM_MultipleWrite
    eeprom.o(i.EEPROM_data_write_uint32) refers to eeprom.o(i.EEPROM_MultipleWrite) for EEPROM_MultipleWrite
    eeprom.o(i.EEPROM_sleep) refers to delay.o(i.delay_us) for delay_us
    eeprom.o(i.EEPROM_sleep) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    eeprom.o(i.EEPROM_sleep) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    eeprom.o(i.EEPROM_sleep) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    eeprom.o(i.EEPROM_stat_read) refers to delay.o(i.delay_us) for delay_us
    eeprom.o(i.EEPROM_stat_read) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    eeprom.o(i.EEPROM_stat_read) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    eeprom.o(i.EEPROM_stat_read) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    eeprom.o(i.EEPROM_stat_write) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    eeprom.o(i.EEPROM_stat_write) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    eeprom.o(i.EEPROM_stat_write) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    sizhu_event_record.o(i.sizhu_event_log_eeprom_default_init) refers to sizhu_event_record.o(i.sizhu_valve_action_log_eeprom_default_init) for sizhu_valve_action_log_eeprom_default_init
    sizhu_event_record.o(i.sizhu_event_log_eeprom_default_init) refers to sizhu_event_record.o(i.sizhu_factory_reset_log_eeprom_default_init) for sizhu_factory_reset_log_eeprom_default_init
    sizhu_event_record.o(i.sizhu_event_log_eeprom_default_init) refers to sizhu_event_record.o(i.sizhu_calibration_time_log_eeprom_default_init) for sizhu_calibration_time_log_eeprom_default_init
    sizhu_event_record.o(i.sizhu_event_log_eeprom_only_read_init) refers to sizhu_event_record.o(i.sizhu_valve_action_log_only_read_init) for sizhu_valve_action_log_only_read_init
    sizhu_event_record.o(i.sizhu_event_log_eeprom_only_read_init) refers to sizhu_event_record.o(i.sizhu_factory_reset_log_only_read_init) for sizhu_factory_reset_log_only_read_init
    sizhu_event_record.o(i.sizhu_event_log_eeprom_only_read_init) refers to sizhu_event_record.o(i.sizhu_calibration_time_log_only_read_init) for sizhu_calibration_time_log_only_read_init
    system_mem_para.o(i.allParaDefaultInit) refers to system_mem_para.o(i.systemEepIdDefaultInit) for systemEepIdDefaultInit
    system_mem_para.o(i.allParaPatchPro) refers to uread4.o(.text) for __aeabi_uread4
    system_mem_para.o(i.allParaPatchPro) refers to system_mem_para.o(i.eepParaPatchPro_1) for eepParaPatchPro_1
    system_mem_para.o(i.allParaPatchPro) refers to uwrite4.o(.text) for __aeabi_uwrite4
    system_mem_para.o(i.allParaPatchPro) refers to system_mem_para.o(i.paraCalcCrcAndWriteEepAB) for paraCalcCrcAndWriteEepAB
    system_mem_para.o(i.allParaPatchPro) refers to system_mem_para.o(.bss) for system_eep_id_g
    system_mem_para.o(i.allParaReadFromEep) refers to system_mem_para.o(i.systemEepIdReadFromEep) for systemEepIdReadFromEep
    system_mem_para.o(i.eepABReadCheck) refers to memseta.o(.text) for __aeabi_memclr4
    system_mem_para.o(i.eepABReadCheck) refers to eeprom.o(i.EEPROM_MultipleRead) for EEPROM_MultipleRead
    system_mem_para.o(i.eepABReadCheck) refers to mbcrc.o(i.usMBCRC16) for usMBCRC16
    system_mem_para.o(i.eepABReadCheck) refers to system_general_para.o(i.arrayA_2_arrayB) for arrayA_2_arrayB
    system_mem_para.o(i.eepABReadCheck) refers to eeprom.o(i.EEPROM_MultipleWrite) for EEPROM_MultipleWrite
    system_mem_para.o(i.eepABWriteAndReadCheck) refers to system_mem_para.o(i.eepWriteAndReadCheck) for eepWriteAndReadCheck
    system_mem_para.o(i.eepWriteAndReadCheck) refers to eeprom.o(i.EEPROM_MultipleWrite) for EEPROM_MultipleWrite
    system_mem_para.o(i.eepWriteAndReadCheck) refers to eeprom.o(i.EEPROM_MultipleRead) for EEPROM_MultipleRead
    system_mem_para.o(i.eepWriteAndReadCheck) refers to system_general_para.o(i.ucharcmp) for ucharcmp
    system_mem_para.o(i.paraCalcCrcAndWriteEepAB) refers to mbcrc.o(i.usMBCRC16) for usMBCRC16
    system_mem_para.o(i.paraCalcCrcAndWriteEepAB) refers to system_mem_para.o(i.eepABWriteAndReadCheck) for eepABWriteAndReadCheck
    system_mem_para.o(i.systemEepIdDefaultInit) refers to uwrite4.o(.text) for __aeabi_uwrite4
    system_mem_para.o(i.systemEepIdDefaultInit) refers to memseta.o(.text) for __aeabi_memclr
    system_mem_para.o(i.systemEepIdDefaultInit) refers to system_mem_para.o(i.paraCalcCrcAndWriteEepAB) for paraCalcCrcAndWriteEepAB
    system_mem_para.o(i.systemEepIdDefaultInit) refers to system_mem_para.o(.bss) for system_eep_id_g
    system_mem_para.o(i.systemEepIdReadFromEep) refers to system_mem_para.o(i.eepABReadCheck) for eepABReadCheck
    system_mem_para.o(i.systemEepIdReadFromEep) refers to system_mem_para.o(i.systemEepIdDefaultInit) for systemEepIdDefaultInit
    system_mem_para.o(i.systemEepIdReadFromEep) refers to system_mem_para.o(.bss) for system_eep_id_g
    upper_com.o(i.Upper_ComputerLoginRecvHandler) refers to rand.o(.text) for rand
    upper_com.o(i.Upper_ComputerLoginRecvHandler) refers to idiv.o(.text) for __aeabi_idivmod
    upper_com.o(i.Upper_ComputerLoginRecvHandler) refers to system_mem_para.o(.bss) for equipment_basic_inf_g
    upper_com.o(i.Upper_ComputerLoginRecvHandler) refers to system_general_para.o(.data) for sys_delay_sec_para_g
    upper_com.o(i.Upper_ComputerLoginRecvHandler) refers to upper_com.o(.data) for local_random_code_g
    upper_com.o(i.Upper_ComputerLoginRespond) refers to upper_com.o(i.Upper_ComputerRespond) for Upper_ComputerRespond
    upper_com.o(i.Upper_ComputerReadWriteHandler) refers to upper_com_data_pro.o(i.COM_equipment_basic_inf_handle) for COM_equipment_basic_inf_handle
    upper_com.o(i.Upper_ComputerReadWriteHandler) refers to upper_com.o(.data) for uc_login_state_g
    upper_com.o(i.Upper_ComputerRespond) refers to mbcrc.o(i.usMBCRC16) for usMBCRC16
    upper_com.o(i.Upper_ComputerRespond) refers to uart.o(i.UARTx_SendData_Normal) for UARTx_SendData_Normal
    upper_com.o(i.upperComPro) refers to mbcrc.o(i.usMBCRC16) for usMBCRC16
    upper_com.o(i.upperComPro) refers to system_general_para.o(i.arrayA_2_arrayB) for arrayA_2_arrayB
    upper_com.o(i.upperComPro) refers to upper_com.o(i.Upper_ComputerLoginRecvHandler) for Upper_ComputerLoginRecvHandler
    upper_com.o(i.upperComPro) refers to upper_com.o(i.Upper_ComputerLoginRespond) for Upper_ComputerLoginRespond
    upper_com.o(i.upperComPro) refers to upper_com.o(i.Upper_ComputerReadWriteHandler) for Upper_ComputerReadWriteHandler
    upper_com.o(i.upperComPro) refers to memseta.o(.text) for __aeabi_memclr4
    upper_com.o(i.upperComPro) refers to upper_com.o(.bss) for uc_recv_para_g
    upper_com.o(i.upperComPro) refers to upper_com.o(.data) for uc_login_state_g
    upper_com.o(i.upperComPro) refers to system_general_para.o(.data) for sys_delay_sec_para_g
    upper_com_data_pro.o(i.COM_equipment_basic_inf_handle) refers to system_general_para.o(i.arrayA_2_arrayB) for arrayA_2_arrayB
    upper_com_data_pro.o(i.COM_equipment_basic_inf_handle) refers to system_mem_para.o(.bss) for equipment_basic_inf_g
    lcd.o(i.Lcd_Clear_AllTest) refers to memseta.o(.text) for __aeabi_memclr
    lcd.o(i.Lcd_Clear_AllTest) refers to lcd_io_api.o(i.Lcd_Write_Reg) for Lcd_Write_Reg
    lcd.o(i.Lcd_Clear_AllTest) refers to lcd_io_api.o(.bss) for LCD_Buffer
    lcd.o(i.Lcd_DeInit) refers to lcd_io_api.o(i.Lcd_Write) for Lcd_Write
    lcd.o(i.Lcd_DeInit) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    lcd.o(i.Lcd_DeInit) refers to lcd.o(.data) for LCD_SYSTEM_MODE_OFF_OFF
    lcd.o(i.Lcd_Display_AllTest) refers to lcd_io_api.o(i.Lcd_DisplayDigit_23A) for Lcd_DisplayDigit_23A
    lcd.o(i.Lcd_Display_AllTest) refers to lcd_io_api.o(.bss) for LCD_Buffer
    lcd.o(i.Lcd_Display_AllTest) refers to lcd_io_api.o(i.Lcd_Write_Reg) for Lcd_Write_Reg
    lcd.o(i.Lcd_Init) refers to lcd_io_api.o(i.Lcd_Write) for Lcd_Write
    lcd.o(i.Lcd_Init) refers to lcd.o(.data) for LCD_SYSTEM_MODE_ON_ON
    lcd.o(i.Lcd_Show_Loop) refers to lcd_io_api.o(i.Lcd_DisplayDigit_23A) for Lcd_DisplayDigit_23A
    lcd.o(i.Lcd_Show_Loop) refers to lcd_io_api.o(.bss) for LCD_Buffer
    lcd.o(i.Lcd_Show_Loop) refers to lcd_io_api.o(i.Lcd_Write_Reg) for Lcd_Write_Reg
    lcd.o(i.Lcd_Show_Loop) refers to delay.o(i.delay_ms) for delay_ms
    lcd.o(i.Lcd_Show_MenuProcess) refers to lcd_io_api.o(i.Lcd_Write_Reg) for Lcd_Write_Reg
    lcd.o(i.Lcd_Show_MenuProcess) refers to memseta.o(.text) for __aeabi_memclr
    lcd.o(i.Lcd_Show_MenuProcess) refers to lcd.o(.data) for lcd_wake_up_flag_g
    lcd.o(i.Lcd_Show_MenuProcess) refers to lcd_io_api.o(.bss) for LCD_Buffer
    lcd.o(i.Lcd_Sys_Init) refers to lcd_io_api.o(i.Lcd_GPIO_Init) for Lcd_GPIO_Init
    lcd.o(i.Lcd_Sys_Init) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    lcd.o(i.Lcd_Sys_Init) refers to delay.o(i.delay_ms) for delay_ms
    lcd.o(i.Lcd_Sys_Init) refers to lcd.o(i.Lcd_Init) for Lcd_Init
    lcd.o(i.Lcd_Sys_Init) refers to lcd.o(.data) for lcd_wake_up_flag_g
    lcd.o(i.lcdDisplayPro) refers to fm33a0xxev_gpio.o(i.GPIO_ReadInputDataBit) for GPIO_ReadInputDataBit
    lcd.o(i.lcdDisplayPro) refers to lcd.o(i.Lcd_Sys_Init) for Lcd_Sys_Init
    lcd.o(i.lcdDisplayPro) refers to lcd.o(i.Lcd_Show_MenuProcess) for Lcd_Show_MenuProcess
    lcd.o(i.lcdDisplayPro) refers to lcd.o(i.Lcd_DeInit) for Lcd_DeInit
    lcd.o(i.lcdDisplayPro) refers to system_general_para.o(.data) for sys_delay_sec_para_g
    lcd_cfg_api.o(i.Lcd_CalibPage) refers to lcd_io_api.o(i.Lcd_DisplayFirstLine_23A) for Lcd_DisplayFirstLine_23A
    lcd_cfg_api.o(i.Lcd_CalibPage) refers to fmul.o(.text) for __aeabi_fmul
    lcd_cfg_api.o(i.Lcd_CalibPage) refers to f2d.o(.text) for __aeabi_f2d
    lcd_cfg_api.o(i.Lcd_CalibPage) refers to lcd_io_api.o(i.Lcd_DisplaySecondLine_23A) for Lcd_DisplaySecondLine_23A
    lcd_cfg_api.o(i.Lcd_CalibPage) refers to lcd_io_api.o(.bss) for LCD_Buffer
    lcd_cfg_api.o(i.Lcd_NormalPage_1) refers to lcd_io_api.o(i.Lcd_DisplayFirstLine_23A) for Lcd_DisplayFirstLine_23A
    lcd_cfg_api.o(i.Lcd_NormalPage_1) refers to f2d.o(.text) for __aeabi_f2d
    lcd_cfg_api.o(i.Lcd_NormalPage_1) refers to lcd_io_api.o(i.Lcd_DisplaySecondLine_23A) for Lcd_DisplaySecondLine_23A
    lcd_cfg_api.o(i.Lcd_NormalPage_1) refers to lcd_io_api.o(.bss) for LCD_Buffer
    lcd_cfg_api.o(i.Lcd_NormalPage_3) refers to lcd_io_api.o(i.Lcd_DisplayFirstLine_23A) for Lcd_DisplayFirstLine_23A
    lcd_cfg_api.o(i.Lcd_NormalPage_3) refers to f2d.o(.text) for __aeabi_f2d
    lcd_cfg_api.o(i.Lcd_NormalPage_3) refers to lcd_io_api.o(i.Lcd_DisplaySecondLine_23A) for Lcd_DisplaySecondLine_23A
    lcd_cfg_api.o(i.Lcd_NormalPage_3) refers to lcd_io_api.o(.bss) for LCD_Buffer
    lcd_cfg_api.o(i.Lcd_NormalPage_4) refers to lcd_io_api.o(i.Lcd_DisplayFirstLine_23A) for Lcd_DisplayFirstLine_23A
    lcd_cfg_api.o(i.Lcd_NormalPage_4) refers to f2d.o(.text) for __aeabi_f2d
    lcd_cfg_api.o(i.Lcd_NormalPage_4) refers to lcd_io_api.o(i.Lcd_DisplaySecondLine_23A) for Lcd_DisplaySecondLine_23A
    lcd_cfg_api.o(i.Lcd_NormalPage_4) refers to lcd_io_api.o(.bss) for LCD_Buffer
    lcd_cfg_api.o(i.Lcd_NormalPage_5) refers to lcd_io_api.o(i.Lcd_DisplayFirstLine_23A) for Lcd_DisplayFirstLine_23A
    lcd_cfg_api.o(i.Lcd_NormalPage_5) refers to f2d.o(.text) for __aeabi_f2d
    lcd_cfg_api.o(i.Lcd_NormalPage_5) refers to lcd_io_api.o(i.Lcd_DisplaySecondLine_23A) for Lcd_DisplaySecondLine_23A
    lcd_cfg_api.o(i.Lcd_NormalPage_5) refers to lcd_io_api.o(.bss) for LCD_Buffer
    lcd_cfg_api.o(i.Lcd_ParaPage_HardVer) refers to lcd_io_api.o(i.Lcd_DisplayLetter) for Lcd_DisplayLetter
    lcd_cfg_api.o(i.Lcd_ParaPage_HardVer) refers to idiv.o(.text) for __aeabi_idivmod
    lcd_cfg_api.o(i.Lcd_ParaPage_HardVer) refers to lcd_io_api.o(i.Lcd_DisplayDigit_23A) for Lcd_DisplayDigit_23A
    lcd_cfg_api.o(i.Lcd_ParaPage_HardVer) refers to lcd_io_api.o(.bss) for LCD_Buffer
    lcd_cfg_api.o(i.Lcd_ParaPage_IpPort) refers to lcd_io_api.o(i.Lcd_DisplayLetter) for Lcd_DisplayLetter
    lcd_cfg_api.o(i.Lcd_ParaPage_IpPort) refers to idiv.o(.text) for __aeabi_idivmod
    lcd_cfg_api.o(i.Lcd_ParaPage_IpPort) refers to lcd_io_api.o(i.Lcd_DisplayDigit_23A) for Lcd_DisplayDigit_23A
    lcd_cfg_api.o(i.Lcd_ParaPage_IpPort) refers to lcd_io_api.o(.bss) for LCD_Buffer
    lcd_cfg_api.o(i.Lcd_ParaPage_IpPort) refers to extern_rtc.o(.data) for sys_clockBCD_g
    lcd_cfg_api.o(i.Lcd_ParaPage_MeterNum) refers to idiv.o(.text) for __aeabi_idivmod
    lcd_cfg_api.o(i.Lcd_ParaPage_MeterNum) refers to lcd_io_api.o(i.Lcd_DisplayDigit_23A) for Lcd_DisplayDigit_23A
    lcd_cfg_api.o(i.Lcd_ParaPage_SoftVer) refers to lcd_io_api.o(i.Lcd_DisplayLetter) for Lcd_DisplayLetter
    lcd_cfg_api.o(i.Lcd_ParaPage_SoftVer) refers to idiv.o(.text) for __aeabi_idivmod
    lcd_cfg_api.o(i.Lcd_ParaPage_SoftVer) refers to lcd_io_api.o(i.Lcd_DisplayDigit_23A) for Lcd_DisplayDigit_23A
    lcd_cfg_api.o(i.Lcd_ParaPage_SoftVer) refers to lcd_io_api.o(.bss) for LCD_Buffer
    lcd_cfg_api.o(i.Lcd_ParaPage_SoundVel) refers to lcd_io_api.o(i.Lcd_DisplayLetter) for Lcd_DisplayLetter
    lcd_cfg_api.o(i.Lcd_ParaPage_SoundVel) refers to f2d.o(.text) for __aeabi_f2d
    lcd_cfg_api.o(i.Lcd_ParaPage_SoundVel) refers to lcd_io_api.o(i.Lcd_DisplaySecondLine_23A) for Lcd_DisplaySecondLine_23A
    lcd_cfg_api.o(i.Lcd_ParaPage_SoundVel) refers to lcd_io_api.o(.bss) for LCD_Buffer
    lcd_cfg_api.o(i.Lcd_ParaPage_ThirdParty_IpPort) refers to lcd_io_api.o(i.Lcd_DisplayLetter) for Lcd_DisplayLetter
    lcd_cfg_api.o(i.Lcd_ParaPage_ThirdParty_IpPort) refers to idiv.o(.text) for __aeabi_idivmod
    lcd_cfg_api.o(i.Lcd_ParaPage_ThirdParty_IpPort) refers to lcd_io_api.o(i.Lcd_DisplayDigit_23A) for Lcd_DisplayDigit_23A
    lcd_cfg_api.o(i.Lcd_ParaPage_ThirdParty_IpPort) refers to lcd_io_api.o(.bss) for LCD_Buffer
    lcd_cfg_api.o(i.Lcd_ParaPage_ThirdParty_IpPort) refers to extern_rtc.o(.data) for sys_clockBCD_g
    lcd_cfg_api.o(i.Lcd_ParaPage_ThirdParty_MeterNum) refers to lcd_io_api.o(i.Lcd_DisplayLetter) for Lcd_DisplayLetter
    lcd_cfg_api.o(i.Lcd_Show_time) refers to idiv.o(.text) for __aeabi_idivmod
    lcd_cfg_api.o(i.Lcd_Show_time) refers to lcd_io_api.o(i.Lcd_DisplayDigit_23A) for Lcd_DisplayDigit_23A
    lcd_cfg_api.o(i.Lcd_Show_time) refers to lcd_io_api.o(.bss) for LCD_Buffer
    lcd_cfg_api.o(i.Lcd_SuccErrPage) refers to lcd_io_api.o(i.Lcd_DisplayLetter) for Lcd_DisplayLetter
    lcd_io_api.o(i.Lcd_ClearDigit_23A) refers to extern_rtc.o(i.__ARM_common_switch8) for __ARM_common_switch8
    lcd_io_api.o(i.Lcd_ClearDigit_23A) refers to lcd_io_api.o(.bss) for LCD_Buffer
    lcd_io_api.o(i.Lcd_DisplayDigit_23A) refers to extern_rtc.o(i.__ARM_common_switch8) for __ARM_common_switch8
    lcd_io_api.o(i.Lcd_DisplayDigit_23A) refers to lcd_io_api.o(.bss) for LCD_Buffer
    lcd_io_api.o(i.Lcd_DisplayFirstLine_23A) refers to cdcmple.o(.text) for __aeabi_cdcmple
    lcd_io_api.o(i.Lcd_DisplayFirstLine_23A) refers to dmul.o(.text) for __aeabi_dmul
    lcd_io_api.o(i.Lcd_DisplayFirstLine_23A) refers to dfixul.o(.text) for __aeabi_d2ulz
    lcd_io_api.o(i.Lcd_DisplayFirstLine_23A) refers to uldiv.o(.text) for __aeabi_uldivmod
    lcd_io_api.o(i.Lcd_DisplayFirstLine_23A) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
    lcd_io_api.o(i.Lcd_DisplayFirstLine_23A) refers to lcd_io_api.o(i.Lcd_ClearDigit_23A) for Lcd_ClearDigit_23A
    lcd_io_api.o(i.Lcd_DisplayFirstLine_23A) refers to lcd_io_api.o(i.Lcd_DisplayDigit_23A) for Lcd_DisplayDigit_23A
    lcd_io_api.o(i.Lcd_DisplayFirstLine_23A) refers to lcd_io_api.o(.bss) for LCD_Buffer
    lcd_io_api.o(i.Lcd_DisplayLetter) refers to extern_rtc.o(i.__ARM_common_switch8) for __ARM_common_switch8
    lcd_io_api.o(i.Lcd_DisplayLetter) refers to lcd_io_api.o(.bss) for LCD_Buffer
    lcd_io_api.o(i.Lcd_DisplaySecondLine_23A) refers to cdcmple.o(.text) for __aeabi_cdcmple
    lcd_io_api.o(i.Lcd_DisplaySecondLine_23A) refers to dmul.o(.text) for __aeabi_dmul
    lcd_io_api.o(i.Lcd_DisplaySecondLine_23A) refers to dfixui.o(.text) for __aeabi_d2uiz
    lcd_io_api.o(i.Lcd_DisplaySecondLine_23A) refers to uidiv.o(.text) for __aeabi_uidivmod
    lcd_io_api.o(i.Lcd_DisplaySecondLine_23A) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
    lcd_io_api.o(i.Lcd_DisplaySecondLine_23A) refers to lcd_io_api.o(i.Lcd_ClearDigit_23A) for Lcd_ClearDigit_23A
    lcd_io_api.o(i.Lcd_DisplaySecondLine_23A) refers to lcd_io_api.o(i.Lcd_DisplayDigit_23A) for Lcd_DisplayDigit_23A
    lcd_io_api.o(i.Lcd_DisplaySecondLine_23A) refers to lcd_io_api.o(.bss) for LCD_Buffer
    lcd_io_api.o(i.Lcd_GPIO_Init) refers to fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx) for CMU_PERCLK_SetableEx
    lcd_io_api.o(i.Lcd_GPIO_Init) refers to gpio.o(i.OutputIO) for OutputIO
    lcd_io_api.o(i.Lcd_GPIO_Init) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    lcd_io_api.o(i.Lcd_Write) refers to i2c.o(i.I2c_Start) for I2c_Start
    lcd_io_api.o(i.Lcd_Write) refers to i2c.o(i.I2c_Send) for I2c_Send
    lcd_io_api.o(i.Lcd_Write) refers to i2c.o(i.I2c_Stop) for I2c_Stop
    lcd_io_api.o(i.Lcd_Write_Reg) refers to i2c.o(i.I2c_Start) for I2c_Start
    lcd_io_api.o(i.Lcd_Write_Reg) refers to i2c.o(i.I2c_Send) for I2c_Send
    lcd_io_api.o(i.Lcd_Write_Reg) refers to i2c.o(i.I2c_Stop) for I2c_Stop
    cm_backtrace.o(i.cm_backtrace_assert) refers to printf8.o(i.__0printf$8) for __2printf
    cm_backtrace.o(i.cm_backtrace_assert) refers to cm_backtrace.o(i.cm_backtrace_firmware_info) for cm_backtrace_firmware_info
    cm_backtrace.o(i.cm_backtrace_assert) refers to cm_backtrace.o(i.dump_stack) for dump_stack
    cm_backtrace.o(i.cm_backtrace_assert) refers to cm_backtrace.o(i.print_call_stack) for print_call_stack
    cm_backtrace.o(i.cm_backtrace_assert) refers to cm_backtrace.o(.data) for init_ok
    cm_backtrace.o(i.cm_backtrace_assert) refers to cm_backtrace.o(.constdata) for __FUNCTION__
    cm_backtrace.o(i.cm_backtrace_call_stack) refers to cm_backtrace.o(i.disassembly_ins_is_bl_blx) for disassembly_ins_is_bl_blx
    cm_backtrace.o(i.cm_backtrace_call_stack) refers to cm_backtrace.o(.data) for main_stack_start_addr
    cm_backtrace.o(i.cm_backtrace_call_stack) refers to cm_backtrace.o(.bss) for regs
    cm_backtrace.o(i.cm_backtrace_fault) refers to memcpya.o(.text) for __aeabi_memcpy4
    cm_backtrace.o(i.cm_backtrace_fault) refers to printf8.o(i.__0printf$8) for __2printf
    cm_backtrace.o(i.cm_backtrace_fault) refers to cm_backtrace.o(i.cm_backtrace_firmware_info) for cm_backtrace_firmware_info
    cm_backtrace.o(i.cm_backtrace_fault) refers to cm_backtrace.o(i.dump_stack) for dump_stack
    cm_backtrace.o(i.cm_backtrace_fault) refers to cm_backtrace.o(i.print_call_stack) for print_call_stack
    cm_backtrace.o(i.cm_backtrace_fault) refers to cm_backtrace.o(.constdata) for .constdata
    cm_backtrace.o(i.cm_backtrace_fault) refers to cm_backtrace.o(.data) for main_stack_start_addr
    cm_backtrace.o(i.cm_backtrace_fault) refers to cm_backtrace.o(.bss) for regs
    cm_backtrace.o(i.cm_backtrace_firmware_info) refers to printf8.o(i.__0printf$8) for __2printf
    cm_backtrace.o(i.cm_backtrace_firmware_info) refers to cm_backtrace.o(.constdata) for print_info
    cm_backtrace.o(i.cm_backtrace_firmware_info) refers to cm_backtrace.o(.bss) for sw_ver
    cm_backtrace.o(i.cm_backtrace_init) refers to strncpy.o(.text) for strncpy
    cm_backtrace.o(i.cm_backtrace_init) refers to printf8.o(i.__0printf$8) for __2printf
    cm_backtrace.o(i.cm_backtrace_init) refers to cm_backtrace.o(.bss) for fw_name
    cm_backtrace.o(i.cm_backtrace_init) refers to cm_backtrace.o(.data) for main_stack_start_addr
    cm_backtrace.o(i.cm_backtrace_init) refers to cm_backtrace.o(.constdata) for print_info
    cm_backtrace.o(i.dump_stack) refers to printf8.o(i.__0printf$8) for __2printf
    cm_backtrace.o(i.dump_stack) refers to cm_backtrace.o(.data) for stack_is_overflow
    cm_backtrace.o(i.dump_stack) refers to cm_backtrace.o(.constdata) for print_info
    cm_backtrace.o(i.print_call_stack) refers to memseta.o(.text) for __aeabi_memclr4
    cm_backtrace.o(i.print_call_stack) refers to cm_backtrace.o(i.cm_backtrace_call_stack) for cm_backtrace_call_stack
    cm_backtrace.o(i.print_call_stack) refers to printf8.o(i.__0sprintf$8) for __2sprintf
    cm_backtrace.o(i.print_call_stack) refers to printf8.o(i.__0printf$8) for __2printf
    cm_backtrace.o(i.print_call_stack) refers to cm_backtrace.o(.bss) for call_stack_info
    cm_backtrace.o(i.print_call_stack) refers to cm_backtrace.o(.constdata) for print_info
    cm_backtrace.o(.constdata) refers to cm_backtrace.o(.conststring) for .conststring
    cmb_fault.o(.text) refers to cm_backtrace.o(i.cm_backtrace_fault) for cm_backtrace_fault
    fault_test.o(i.fault_test_by_div0) refers to idiv.o(.text) for __aeabi_idivmod
    fault_test.o(i.fault_test_by_div0) refers to printf8.o(i.__0printf$8) for __2printf
    fault_test.o(i.fault_test_by_unalign) refers to printf8.o(i.__0printf$8) for __2printf
    fm33a0xxev_aes.o(i.AES_GroupWriteAndRead_128BIT) refers to fm33a0xxev_aes.o(i.AES_DIN_GroupWrite_128BIT) for AES_DIN_GroupWrite_128BIT
    fm33a0xxev_aes.o(i.AES_GroupWriteAndRead_128BIT) refers to fm33a0xxev_aes.o(i.AES_ISR_CCF_Chk) for AES_ISR_CCF_Chk
    fm33a0xxev_aes.o(i.AES_GroupWriteAndRead_128BIT) refers to fm33a0xxev_aes.o(i.AES_ISR_CCF_Clr) for AES_ISR_CCF_Clr
    fm33a0xxev_aes.o(i.AES_GroupWriteAndRead_128BIT) refers to fm33a0xxev_aes.o(i.AES_DOUT_GroupRead_128BIT) for AES_DOUT_GroupRead_128BIT
    fm33a0xxev_aes.o(i.AES_GroupWriteAndRead_128BIT_IVR) refers to fm33a0xxev_aes.o(i.AES_DIN_GroupWrite_128BIT) for AES_DIN_GroupWrite_128BIT
    fm33a0xxev_aes.o(i.AES_GroupWriteAndRead_128BIT_IVR) refers to fm33a0xxev_aes.o(i.AES_ISR_CCF_Chk) for AES_ISR_CCF_Chk
    fm33a0xxev_aes.o(i.AES_GroupWriteAndRead_128BIT_IVR) refers to fm33a0xxev_aes.o(i.AES_ISR_CCF_Clr) for AES_ISR_CCF_Clr
    fm33a0xxev_aes.o(i.AES_GroupWriteAndRead_128BIT_IVR) refers to fm33a0xxev_aes.o(i.AES_IVR_ReadEx) for AES_IVR_ReadEx
    fm33a0xxev_aes.o(i.AES_Init) refers to fm33a0xxev_aes.o(i.AES_CR_KEYLEN_Set) for AES_CR_KEYLEN_Set
    fm33a0xxev_aes.o(i.AES_Init) refers to fm33a0xxev_aes.o(i.AES_CR_CHMOD_Set) for AES_CR_CHMOD_Set
    fm33a0xxev_aes.o(i.AES_Init) refers to fm33a0xxev_aes.o(i.AES_CR_MODE_Set) for AES_CR_MODE_Set
    fm33a0xxev_aes.o(i.AES_Init) refers to fm33a0xxev_aes.o(i.AES_CR_DATATYP_Set) for AES_CR_DATATYP_Set
    fm33a0xxev_aes.o(i.AES_Init) refers to fm33a0xxev_aes.o(i.AES_CR_DMAOEN_Setable) for AES_CR_DMAOEN_Setable
    fm33a0xxev_aes.o(i.AES_Init) refers to fm33a0xxev_aes.o(i.AES_CR_DMAIEN_Setable) for AES_CR_DMAIEN_Setable
    fm33a0xxev_aes.o(i.AES_Init) refers to fm33a0xxev_aes.o(i.AES_IER_WRERR_IE_Setable) for AES_IER_WRERR_IE_Setable
    fm33a0xxev_aes.o(i.AES_Init) refers to fm33a0xxev_aes.o(i.AES_IER_RDERR_IE_Setable) for AES_IER_RDERR_IE_Setable
    fm33a0xxev_aes.o(i.AES_Init) refers to fm33a0xxev_aes.o(i.AES_IER_CCF_IE_Setable) for AES_IER_CCF_IE_Setable
    fm33a0xxev_aes.o(i.AES_Init) refers to fm33a0xxev_aes.o(i.AES_CR_EN_Setable) for AES_CR_EN_Setable
    fm33a0xxev_cmu.o(i.CMU_GetClocksFreq) refers to fm33a0xxev_cmu.o(i.CMU_RCHFCR_RCHFEN_Getable) for CMU_RCHFCR_RCHFEN_Getable
    fm33a0xxev_cmu.o(i.CMU_GetClocksFreq) refers to fm33a0xxev_cmu.o(i.CMU_RCHFCR_FSEL_Get) for CMU_RCHFCR_FSEL_Get
    fm33a0xxev_cmu.o(i.CMU_GetClocksFreq) refers to fm33a0xxev_cmu.o(i.CMU_PLLHCR_EN_Getable) for CMU_PLLHCR_EN_Getable
    fm33a0xxev_cmu.o(i.CMU_GetClocksFreq) refers to fm33a0xxev_cmu.o(i.CMU_PLLHCR_PLLHDB_Get) for CMU_PLLHCR_PLLHDB_Get
    fm33a0xxev_cmu.o(i.CMU_GetClocksFreq) refers to fm33a0xxev_cmu.o(i.CMU_PLLHCR_OSEL_Get) for CMU_PLLHCR_OSEL_Get
    fm33a0xxev_cmu.o(i.CMU_GetClocksFreq) refers to fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_SYSCLKSEL_Get) for CMU_SYSCLKCR_SYSCLKSEL_Get
    fm33a0xxev_cmu.o(i.CMU_GetClocksFreq) refers to fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_AHBPRES_Get) for CMU_SYSCLKCR_AHBPRES_Get
    fm33a0xxev_cmu.o(i.CMU_GetClocksFreq) refers to fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_APBPRES_Get) for CMU_SYSCLKCR_APBPRES_Get
    fm33a0xxev_cmu.o(i.CMU_Init_RCHF_Trim) refers to fm33a0xxev_cmu.o(i.CMU_RCHFTR_RCHFTRIM_Set) for CMU_RCHFTR_RCHFTRIM_Set
    fm33a0xxev_cmu.o(i.CMU_PLL_H_Init) refers to fm33a0xxev_cmu.o(i.CMU_PLLHCR_PLLHDB_Set) for CMU_PLLHCR_PLLHDB_Set
    fm33a0xxev_cmu.o(i.CMU_PLL_H_Init) refers to fm33a0xxev_cmu.o(i.CMU_PLLHCR_REFPRSC_Set) for CMU_PLLHCR_REFPRSC_Set
    fm33a0xxev_cmu.o(i.CMU_PLL_H_Init) refers to fm33a0xxev_cmu.o(i.CMU_PLLHCR_OSEL_Set) for CMU_PLLHCR_OSEL_Set
    fm33a0xxev_cmu.o(i.CMU_PLL_H_Init) refers to fm33a0xxev_cmu.o(i.CMU_PLLHCR_INSEL_Set) for CMU_PLLHCR_INSEL_Set
    fm33a0xxev_cmu.o(i.CMU_PLL_H_Init) refers to fm33a0xxev_cmu.o(i.CMU_PLLHCR_EN_Setable) for CMU_PLLHCR_EN_Setable
    fm33a0xxev_cmu.o(i.CMU_RCHF_Init) refers to fm33a0xxev_cmu.o(i.CMU_RCHFCR_FSEL_Set) for CMU_RCHFCR_FSEL_Set
    fm33a0xxev_cmu.o(i.CMU_RCHF_Init) refers to fm33a0xxev_cmu.o(i.CMU_RCHFCR_RCHFEN_Setable) for CMU_RCHFCR_RCHFEN_Setable
    fm33a0xxev_cmu.o(i.CMU_SysClk_Init) refers to fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_SYSCLKSEL_Set) for CMU_SYSCLKCR_SYSCLKSEL_Set
    fm33a0xxev_cmu.o(i.CMU_SysClk_Init) refers to fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_AHBPRES_Set) for CMU_SYSCLKCR_AHBPRES_Set
    fm33a0xxev_cmu.o(i.CMU_SysClk_Init) refers to fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_APBPRES_Set) for CMU_SYSCLKCR_APBPRES_Set
    fm33a0xxev_cmu.o(i.CMU_SysClk_Init) refers to fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_SLP_ENEXTI_Setable) for CMU_SYSCLKCR_SLP_ENEXTI_Setable
    fm33a0xxev_crc.o(i.CRC_Init) refers to fm33a0xxev_crc.o(i.CRC_LFSR_Write) for CRC_LFSR_Write
    fm33a0xxev_crc.o(i.CRC_Init) refers to fm33a0xxev_crc.o(i.CRC_CR_SEL_Set) for CRC_CR_SEL_Set
    fm33a0xxev_crc.o(i.CRC_Init) refers to fm33a0xxev_crc.o(i.CRC_CR_OPWD_Set) for CRC_CR_OPWD_Set
    fm33a0xxev_crc.o(i.CRC_Init) refers to fm33a0xxev_crc.o(i.CRC_CR_PARA_Set) for CRC_CR_PARA_Set
    fm33a0xxev_crc.o(i.CRC_Init) refers to fm33a0xxev_crc.o(i.CRC_CR_RFLTIN_Set) for CRC_CR_RFLTIN_Set
    fm33a0xxev_crc.o(i.CRC_Init) refers to fm33a0xxev_crc.o(i.CRC_CR_RFLTO_Set) for CRC_CR_RFLTO_Set
    fm33a0xxev_crc.o(i.CRC_Init) refers to fm33a0xxev_crc.o(i.CRC_CR_XOR_Setable) for CRC_CR_XOR_Setable
    fm33a0xxev_crc.o(i.CRC_Init) refers to fm33a0xxev_crc.o(i.CRC_XOR_Write) for CRC_XOR_Write
    fm33a0xxev_crc.o(i.CRC_Init) refers to fm33a0xxev_crc.o(i.CRC_POLY_Write) for CRC_POLY_Write
    fm33a0xxev_dma.o(i.DMA_DeInit) refers to fm33a0xxev_rmu.o(i.RMU_PRSTEN_Write) for RMU_PRSTEN_Write
    fm33a0xxev_dma.o(i.DMA_DeInit) refers to fm33a0xxev_rmu.o(i.RMU_AHBRST_DMARST_Setable) for RMU_AHBRST_DMARST_Setable
    fm33a0xxev_dma.o(i.DMA_Init) refers to fm33a0xxev_dma.o(i.DMA_CHxCR_ChxEN_Setable) for DMA_CHxCR_ChxEN_Setable
    fm33a0xxev_dma.o(i.DMA_Init) refers to fm33a0xxev_dma.o(i.DMA_CH11CR_CH11TSIZE_Set) for DMA_CH11CR_CH11TSIZE_Set
    fm33a0xxev_dma.o(i.DMA_Init) refers to fm33a0xxev_dma.o(i.DMA_CH11CR_CH11PRI_Set) for DMA_CH11CR_CH11PRI_Set
    fm33a0xxev_dma.o(i.DMA_Init) refers to fm33a0xxev_dma.o(i.DMA_CH11CR_CH11DIR_Set) for DMA_CH11CR_CH11DIR_Set
    fm33a0xxev_dma.o(i.DMA_Init) refers to fm33a0xxev_dma.o(i.DMA_CH11CR_CH11RI_Set) for DMA_CH11CR_CH11RI_Set
    fm33a0xxev_dma.o(i.DMA_Init) refers to fm33a0xxev_dma.o(i.DMA_CH11CR_CH11FI_Set) for DMA_CH11CR_CH11FI_Set
    fm33a0xxev_dma.o(i.DMA_Init) refers to fm33a0xxev_dma.o(i.DMA_CH11CR_CH11FTIE_Setable) for DMA_CH11CR_CH11FTIE_Setable
    fm33a0xxev_dma.o(i.DMA_Init) refers to fm33a0xxev_dma.o(i.DMA_CH11CR_CH11HTIE_Setable) for DMA_CH11CR_CH11HTIE_Setable
    fm33a0xxev_dma.o(i.DMA_Init) refers to fm33a0xxev_dma.o(i.DMA_CHxMAR_Write) for DMA_CHxMAR_Write
    fm33a0xxev_dma.o(i.DMA_Init) refers to fm33a0xxev_dma.o(i.DMA_CH11FAR_Write) for DMA_CH11FAR_Write
    fm33a0xxev_dma.o(i.DMA_Init) refers to fm33a0xxev_dma.o(i.DMA_CH11CR_CH11EN_Setable) for DMA_CH11CR_CH11EN_Setable
    fm33a0xxev_dma.o(i.DMA_Init) refers to fm33a0xxev_dma.o(i.DMA_CHxCR_CHxTSIZE_Set) for DMA_CHxCR_CHxTSIZE_Set
    fm33a0xxev_dma.o(i.DMA_Init) refers to fm33a0xxev_dma.o(i.DMA_CHxCR_CHxPRI_Set) for DMA_CHxCR_CHxPRI_Set
    fm33a0xxev_dma.o(i.DMA_Init) refers to fm33a0xxev_dma.o(i.DMA_CHxCR_CHxINC_Set) for DMA_CHxCR_CHxINC_Set
    fm33a0xxev_dma.o(i.DMA_Init) refers to fm33a0xxev_dma.o(i.DMA_CHxCR_CHxSSEL_Set) for DMA_CHxCR_CHxSSEL_Set
    fm33a0xxev_dma.o(i.DMA_Init) refers to fm33a0xxev_dma.o(i.DMA_CHxCR_DIR_Set) for DMA_CHxCR_DIR_Set
    fm33a0xxev_dma.o(i.DMA_Init) refers to fm33a0xxev_dma.o(i.DMA_CHxCR_BDW_Set) for DMA_CHxCR_BDW_Set
    fm33a0xxev_dma.o(i.DMA_Init) refers to fm33a0xxev_dma.o(i.DMA_CHxCR_CIRC_Setable) for DMA_CHxCR_CIRC_Setable
    fm33a0xxev_dma.o(i.DMA_Init) refers to fm33a0xxev_dma.o(i.DMA_CHxCR_CHxFTIE_Setable) for DMA_CHxCR_CHxFTIE_Setable
    fm33a0xxev_dma.o(i.DMA_Init) refers to fm33a0xxev_dma.o(i.DMA_CHxCR_CHxHTIE_Setable) for DMA_CHxCR_CHxHTIE_Setable
    fm33a0xxev_gpio.o(i.GPIO_EXTI_Close) refers to fm33a0xxev_gpio.o(i.GPIO_EXTI_Select_Edge) for GPIO_EXTI_Select_Edge
    fm33a0xxev_gpio.o(i.GPIO_EXTI_Init) refers to fm33a0xxev_gpio.o(i.GPIO_EXTI_Select_Edge) for GPIO_EXTI_Select_Edge
    fm33a0xxev_gpio.o(i.GPIO_EXTI_Init) refers to fm33a0xxev_gpio.o(i.GPIO_EXTI_Select_Pin) for GPIO_EXTI_Select_Pin
    fm33a0xxev_gpio.o(i.GPIO_EXTI_Init) refers to fm33a0xxev_gpio.o(i.GPIO_EXTI_EXTIDF_Setable) for GPIO_EXTI_EXTIDF_Setable
    fm33a0xxev_gpio.o(i.GPIO_EXTI_Init) refers to delay.o(i.delay_us) for delay_us
    fm33a0xxev_gpio.o(i.GPIO_EXTI_Init) refers to fm33a0xxev_gpio.o(i.GPIO_EXTI_EXTIISR_ClrEx) for GPIO_EXTI_EXTIISR_ClrEx
    fm33a0xxev_i2c.o(i.I2C_BaudREG_Calc) refers to uidiv.o(.text) for __aeabi_uidivmod
    fm33a0xxev_i2c.o(i.I2Cx_Deinit) refers to fm33a0xxev_rmu.o(i.RMU_PRSTEN_Write) for RMU_PRSTEN_Write
    fm33a0xxev_i2c.o(i.I2Cx_Deinit) refers to fm33a0xxev_rmu.o(i.RMU_APBRST2_I2C0RST_Setable) for RMU_APBRST2_I2C0RST_Setable
    fm33a0xxev_i2c.o(i.I2Cx_Deinit) refers to fm33a0xxev_rmu.o(i.RMU_APBRST1_I2C1RST_Setable) for RMU_APBRST1_I2C1RST_Setable
    fm33a0xxev_pmu.o(i.PMU_SleepCfg_Init) refers to fm33a0xxev_pmu.o(i.PMU_CR_SLPDP_Set) for PMU_CR_SLPDP_Set
    fm33a0xxev_pmu.o(i.PMU_SleepCfg_Init) refers to fm33a0xxev_pmu.o(i.PMU_CR_CVS_Set) for PMU_CR_CVS_Set
    fm33a0xxev_pmu.o(i.PMU_SleepCfg_Init) refers to fm33a0xxev_pmu.o(i.PMU_WKTR_T1A_Set) for PMU_WKTR_T1A_Set
    fm33a0xxev_pmu.o(i.PMU_SleepCfg_Init) refers to fm33a0xxev_pmu.o(i.PMU_CR_PMOD_Set) for PMU_CR_PMOD_Set
    fm33a0xxev_rtc.o(i.RTC_AlarmTime_SetEx) refers to fm33a0xxev_rtc.o(i.RTC_ALARM_ALARMSEC_Set) for RTC_ALARM_ALARMSEC_Set
    fm33a0xxev_rtc.o(i.RTC_AlarmTime_SetEx) refers to fm33a0xxev_rtc.o(i.RTC_ALARM_ALARMMIN_Set) for RTC_ALARM_ALARMMIN_Set
    fm33a0xxev_rtc.o(i.RTC_AlarmTime_SetEx) refers to fm33a0xxev_rtc.o(i.RTC_ALARM_ALARMHOUR_Set) for RTC_ALARM_ALARMHOUR_Set
    fm33a0xxev_rtc.o(i.RTC_TimeDate_GetEx) refers to fm33a0xxev_rtc.o(i.RTC_BCDSEC_Read) for RTC_BCDSEC_Read
    fm33a0xxev_rtc.o(i.RTC_TimeDate_GetEx) refers to fm33a0xxev_rtc.o(i.RTC_BCDMIN_Read) for RTC_BCDMIN_Read
    fm33a0xxev_rtc.o(i.RTC_TimeDate_GetEx) refers to fm33a0xxev_rtc.o(i.RTC_BCDHOUR_Read) for RTC_BCDHOUR_Read
    fm33a0xxev_rtc.o(i.RTC_TimeDate_GetEx) refers to fm33a0xxev_rtc.o(i.RTC_BCDDATE_Read) for RTC_BCDDATE_Read
    fm33a0xxev_rtc.o(i.RTC_TimeDate_GetEx) refers to fm33a0xxev_rtc.o(i.RTC_BCDMONTH_Read) for RTC_BCDMONTH_Read
    fm33a0xxev_rtc.o(i.RTC_TimeDate_GetEx) refers to fm33a0xxev_rtc.o(i.RTC_BCDYEAR_Read) for RTC_BCDYEAR_Read
    fm33a0xxev_rtc.o(i.RTC_TimeDate_GetEx) refers to fm33a0xxev_rtc.o(i.RTC_BCDWEEK_Read) for RTC_BCDWEEK_Read
    fm33a0xxev_rtc.o(i.RTC_TimeDate_SetEx) refers to fm33a0xxev_rtc.o(i.RTC_BCDSEC_Write) for RTC_BCDSEC_Write
    fm33a0xxev_rtc.o(i.RTC_TimeDate_SetEx) refers to fm33a0xxev_rtc.o(i.RTC_BCDMIN_Write) for RTC_BCDMIN_Write
    fm33a0xxev_rtc.o(i.RTC_TimeDate_SetEx) refers to fm33a0xxev_rtc.o(i.RTC_BCDHOUR_Write) for RTC_BCDHOUR_Write
    fm33a0xxev_rtc.o(i.RTC_TimeDate_SetEx) refers to fm33a0xxev_rtc.o(i.RTC_BCDDATE_Write) for RTC_BCDDATE_Write
    fm33a0xxev_rtc.o(i.RTC_TimeDate_SetEx) refers to fm33a0xxev_rtc.o(i.RTC_BCDMONTH_Write) for RTC_BCDMONTH_Write
    fm33a0xxev_rtc.o(i.RTC_TimeDate_SetEx) refers to fm33a0xxev_rtc.o(i.RTC_BCDYEAR_Write) for RTC_BCDYEAR_Write
    fm33a0xxev_rtc.o(i.RTC_TimeDate_SetEx) refers to fm33a0xxev_rtc.o(i.RTC_BCDWEEK_Write) for RTC_BCDWEEK_Write
    fm33a0xxev_spi.o(i.SPI_RW_Byte) refers to fm33a0xxev_spi.o(i.SPIx_CR1_BAUD_Get) for SPIx_CR1_BAUD_Get
    fm33a0xxev_spi.o(i.SPI_RW_Byte) refers to fm33a0xxev_spi.o(i.SPIx_ISR_TXBE_Chk) for SPIx_ISR_TXBE_Chk
    fm33a0xxev_spi.o(i.SPI_RW_Byte) refers to fm33a0xxev_spi.o(i.SPIx_TXBUF_Write) for SPIx_TXBUF_Write
    fm33a0xxev_spi.o(i.SPI_RW_Byte) refers to fm33a0xxev_spi.o(i.SPIx_ISR_RXBF_Chk) for SPIx_ISR_RXBF_Chk
    fm33a0xxev_spi.o(i.SPI_RW_Byte) refers to fm33a0xxev_spi.o(i.SPIx_RXBUF_Read) for SPIx_RXBUF_Read
    fm33a0xxev_spi.o(i.SPI_SSN_Set_High) refers to fm33a0xxev_spi.o(i.SPIx_CR2_SSN_Set) for SPIx_CR2_SSN_Set
    fm33a0xxev_spi.o(i.SPI_SSN_Set_Low) refers to fm33a0xxev_spi.o(i.SPIx_CR2_SSN_Set) for SPIx_CR2_SSN_Set
    fm33a0xxev_spi.o(i.SPIx_Deinit) refers to fm33a0xxev_rmu.o(i.RMU_PRSTEN_Write) for RMU_PRSTEN_Write
    fm33a0xxev_spi.o(i.SPIx_Deinit) refers to fm33a0xxev_rmu.o(i.RMU_APBRST2_SPI0RST_Setable) for RMU_APBRST2_SPI0RST_Setable
    fm33a0xxev_spi.o(i.SPIx_Deinit) refers to fm33a0xxev_rmu.o(i.RMU_APBRST2_SPI1RST_Setable) for RMU_APBRST2_SPI1RST_Setable
    fm33a0xxev_spi.o(i.SPIx_Deinit) refers to fm33a0xxev_rmu.o(i.RMU_APBRST1_SPI2RST_Setable) for RMU_APBRST1_SPI2RST_Setable
    fm33a0xxev_spi.o(i.SPIx_Deinit) refers to fm33a0xxev_rmu.o(i.RMU_APBRST1_SPI3RST_Setable) for RMU_APBRST1_SPI3RST_Setable
    fm33a0xxev_spi.o(i.SPIx_Deinit) refers to fm33a0xxev_rmu.o(i.RMU_APBRST1_SPI4RST_Setable) for RMU_APBRST1_SPI4RST_Setable
    fm33a0xxev_svd.o(i.SVD_Init) refers to fm33a0xxev_svd.o(i.SVD_CFGR_MOD_Set) for SVD_CFGR_MOD_Set
    fm33a0xxev_svd.o(i.SVD_Init) refers to fm33a0xxev_svd.o(i.SVD_CFGR_ITVL_Set) for SVD_CFGR_ITVL_Set
    fm33a0xxev_svd.o(i.SVD_Init) refers to fm33a0xxev_svd.o(i.SVD_CFGR_LVL_Set) for SVD_CFGR_LVL_Set
    fm33a0xxev_svd.o(i.SVD_Init) refers to fm33a0xxev_svd.o(i.SVD_CFGR_DFEN_Setable) for SVD_CFGR_DFEN_Setable
    fm33a0xxev_svd.o(i.SVD_Init) refers to fm33a0xxev_svd.o(i.SVD_IER_PFIE_Setable) for SVD_IER_PFIE_Setable
    fm33a0xxev_svd.o(i.SVD_Init) refers to fm33a0xxev_svd.o(i.SVD_IER_PRIE_Setable) for SVD_IER_PRIE_Setable
    fm33a0xxev_svd.o(i.SVD_Init) refers to fm33a0xxev_svd.o(i.SVD_CR_TE_Setable) for SVD_CR_TE_Setable
    fm33a0xxev_u7816.o(i.U7816_Init) refers to fm33a0xxev_u7816.o(i.U7816_CR_TXEN_Setable) for U7816_CR_TXEN_Setable
    fm33a0xxev_u7816.o(i.U7816_Init) refers to fm33a0xxev_u7816.o(i.U7816_CR_RXEN_Setable) for U7816_CR_RXEN_Setable
    fm33a0xxev_u7816.o(i.U7816_Init) refers to fm33a0xxev_u7816.o(i.U7816_CR_CKOEN_Setable) for U7816_CR_CKOEN_Setable
    fm33a0xxev_u7816.o(i.U7816_Init) refers to fm33a0xxev_u7816.o(i.U7816_CR_HPUAT_Setable) for U7816_CR_HPUAT_Setable
    fm33a0xxev_u7816.o(i.U7816_Init) refers to fm33a0xxev_u7816.o(i.U7816_CR_HPUEN_Setable) for U7816_CR_HPUEN_Setable
    fm33a0xxev_u7816.o(i.U7816_Init) refers to fm33a0xxev_u7816.o(i.U7816_FFR_ERSW_Set) for U7816_FFR_ERSW_Set
    fm33a0xxev_u7816.o(i.U7816_Init) refers to fm33a0xxev_u7816.o(i.U7816_FFR_ERSGD_Set) for U7816_FFR_ERSGD_Set
    fm33a0xxev_u7816.o(i.U7816_Init) refers to fm33a0xxev_u7816.o(i.U7816_FFR_BGTEN_Setable) for U7816_FFR_BGTEN_Setable
    fm33a0xxev_u7816.o(i.U7816_Init) refers to fm33a0xxev_u7816.o(i.U7816_FFR_REP_T_Set) for U7816_FFR_REP_T_Set
    fm33a0xxev_u7816.o(i.U7816_Init) refers to fm33a0xxev_u7816.o(i.U7816_FFR_PAR_Set) for U7816_FFR_PAR_Set
    fm33a0xxev_u7816.o(i.U7816_Init) refers to fm33a0xxev_u7816.o(i.U7816_FFR_SFREN_Set) for U7816_FFR_SFREN_Set
    fm33a0xxev_u7816.o(i.U7816_Init) refers to fm33a0xxev_u7816.o(i.U7816_FFR_RFREN_Set) for U7816_FFR_RFREN_Set
    fm33a0xxev_u7816.o(i.U7816_Init) refers to fm33a0xxev_u7816.o(i.U7816_FFR_TREPEN_Setable) for U7816_FFR_TREPEN_Setable
    fm33a0xxev_u7816.o(i.U7816_Init) refers to fm33a0xxev_u7816.o(i.U7816_FFR_RREPEN_Setable) for U7816_FFR_RREPEN_Setable
    fm33a0xxev_u7816.o(i.U7816_Init) refers to fm33a0xxev_u7816.o(i.U7816_FFR_DICONV_Set) for U7816_FFR_DICONV_Set
    fm33a0xxev_u7816.o(i.U7816_Init) refers to fm33a0xxev_u7816.o(i.U7816_EGTR_Write) for U7816_EGTR_Write
    fm33a0xxev_u7816.o(i.U7816_Init) refers to fm33a0xxev_u7816.o(i.U7816_PSC_Write) for U7816_PSC_Write
    fm33a0xxev_u7816.o(i.U7816_Init) refers to fm33a0xxev_u7816.o(i.U7816_BGR_Write) for U7816_BGR_Write
    fm33a0xxev_u7816.o(i.U7816_Init) refers to fm33a0xxev_u7816.o(i.U7816_IER_RXIE_Setable) for U7816_IER_RXIE_Setable
    fm33a0xxev_u7816.o(i.U7816_Init) refers to fm33a0xxev_u7816.o(i.U7816_IER_TXIE_Setable) for U7816_IER_TXIE_Setable
    fm33a0xxev_u7816.o(i.U7816_Init) refers to fm33a0xxev_u7816.o(i.U7816_IER_LSIE_Setable) for U7816_IER_LSIE_Setable
    fm33a0xxev_uart.o(i.UART_BaudREGCalc) refers to ffltui.o(.text) for __aeabi_ui2f
    fm33a0xxev_uart.o(i.UART_BaudREGCalc) refers to fdiv.o(.text) for __aeabi_fdiv
    fm33a0xxev_uart.o(i.UART_BaudREGCalc) refers to cfrcmple.o(.text) for __aeabi_cfrcmple
    fm33a0xxev_uart.o(i.UART_BaudREGCalc) refers to f2d.o(.text) for __aeabi_f2d
    fm33a0xxev_uart.o(i.UART_BaudREGCalc) refers to dadd.o(.text) for __aeabi_dsub
    fm33a0xxev_uart.o(i.UART_BaudREGCalc) refers to dfixui.o(.text) for __aeabi_d2uiz
    fm33a0xxev_uart.o(i.UART_IRModulation_Init) refers to ffltui.o(.text) for __aeabi_ui2f
    fm33a0xxev_uart.o(i.UART_IRModulation_Init) refers to fdiv.o(.text) for __aeabi_fdiv
    fm33a0xxev_uart.o(i.UART_IRModulation_Init) refers to f2d.o(.text) for __aeabi_f2d
    fm33a0xxev_uart.o(i.UART_IRModulation_Init) refers to dadd.o(.text) for __aeabi_dadd
    fm33a0xxev_uart.o(i.UART_IRModulation_Init) refers to dfixui.o(.text) for __aeabi_d2uiz
    fm33a0xxev_uart.o(i.UART_IRModulation_Init) refers to fm33a0xxev_uart.o(i.UARTIR_CR_TZBRG_Set) for UARTIR_CR_TZBRG_Set
    fm33a0xxev_uart.o(i.UART_IRModulation_Init) refers to ddiv.o(.text) for __aeabi_ddiv
    fm33a0xxev_uart.o(i.UART_IRModulation_Init) refers to dmul.o(.text) for __aeabi_dmul
    fm33a0xxev_uart.o(i.UART_IRModulation_Init) refers to fm33a0xxev_uart.o(i.UARTIR_CR_TH_Set) for UARTIR_CR_TH_Set
    fm33a0xxev_uart.o(i.UART_Init) refers to fm33a0xxev_uart.o(i.UARTx_BGR_Write) for UARTx_BGR_Write
    fm33a0xxev_uart.o(i.UART_Init) refers to fm33a0xxev_uart.o(i.UARTx_CSR_PDSEL_Set) for UARTx_CSR_PDSEL_Set
    fm33a0xxev_uart.o(i.UART_Init) refers to fm33a0xxev_uart.o(i.UARTx_CSR_PARITY_Set) for UARTx_CSR_PARITY_Set
    fm33a0xxev_uart.o(i.UART_Init) refers to fm33a0xxev_uart.o(i.UARTx_CSR_STOPCFG_Set) for UARTx_CSR_STOPCFG_Set
    fm33a0xxev_uart.o(i.UART_Init) refers to fm33a0xxev_uart.o(i.UARTx_IER_RXERR_IE_Setable) for UARTx_IER_RXERR_IE_Setable
    fm33a0xxev_uart.o(i.UART_Init) refers to fm33a0xxev_uart.o(i.UARTx_IER_RXTO_IE_Setable) for UARTx_IER_RXTO_IE_Setable
    fm33a0xxev_uart.o(i.UART_Init) refers to fm33a0xxev_uart.o(i.UARTx_IER_RXBF_IE_Setable) for UARTx_IER_RXBF_IE_Setable
    fm33a0xxev_uart.o(i.UART_Init) refers to fm33a0xxev_uart.o(i.UARTx_IER_TXBE_IE_Setable) for UARTx_IER_TXBE_IE_Setable
    fm33a0xxev_uart.o(i.UART_Init) refers to fm33a0xxev_uart.o(i.UARTx_IER_TXSE_IE_Setable) for UARTx_IER_TXSE_IE_Setable
    fm33a0xxev_uart.o(i.UART_Init) refers to fm33a0xxev_uart.o(i.UARTx_CSR_RXPOL_Setable) for UARTx_CSR_RXPOL_Setable
    fm33a0xxev_uart.o(i.UART_Init) refers to fm33a0xxev_uart.o(i.UARTx_CSR_TXPOL_Setable) for UARTx_CSR_TXPOL_Setable
    fm33a0xxev_uart.o(i.UART_Init) refers to fm33a0xxev_uart.o(i.UARTx_CSR_RXEN_Setable) for UARTx_CSR_RXEN_Setable
    fm33a0xxev_uart.o(i.UART_Init) refers to fm33a0xxev_uart.o(i.UARTx_CSR_TXEN_Setable) for UARTx_CSR_TXEN_Setable
    fm33a0xxev_uart.o(i.UART_Init) refers to fm33a0xxev_uart.o(i.UARTx_CSR_TXIREN_Setable) for UARTx_CSR_TXIREN_Setable
    fm33a0xxev_uart.o(i.UART_SInit) refers to fm33a0xxev_cmu.o(i.CMU_OPCCR1_UART0CKS_Set) for CMU_OPCCR1_UART0CKS_Set
    fm33a0xxev_uart.o(i.UART_SInit) refers to fm33a0xxev_cmu.o(i.CMU_OPCCR1_UART0CKE_Setable) for CMU_OPCCR1_UART0CKE_Setable
    fm33a0xxev_uart.o(i.UART_SInit) refers to fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx) for CMU_PERCLK_SetableEx
    fm33a0xxev_uart.o(i.UART_SInit) refers to fm33a0xxev_uart.o(i.UART_BaudREGCalc) for UART_BaudREGCalc
    fm33a0xxev_uart.o(i.UART_SInit) refers to fm33a0xxev_cmu.o(i.CMU_RCHFCR_RCHFEN_Setable) for CMU_RCHFCR_RCHFEN_Setable
    fm33a0xxev_uart.o(i.UART_SInit) refers to fm33a0xxev_cmu.o(i.CMU_OPCCR1_UART1CKS_Set) for CMU_OPCCR1_UART1CKS_Set
    fm33a0xxev_uart.o(i.UART_SInit) refers to fm33a0xxev_cmu.o(i.CMU_OPCCR1_UART1CKE_Setable) for CMU_OPCCR1_UART1CKE_Setable
    fm33a0xxev_uart.o(i.UART_SInit) refers to fm33a0xxev_uart.o(i.UART_Init) for UART_Init
    fm33a0xxev_vrtc.o(i.VRTC_Init_RCLP_Trim) refers to fm33a0xxev_vrtc.o(i.VRTC_RCLPTR_Write) for VRTC_RCLPTR_Write
    fm33a0xxev_vrtc.o(i.VRTC_Init_RCMF_Trim) refers to fm33a0xxev_vrtc.o(i.VRTC_RCMFCR_TRIM_Set) for VRTC_RCMFCR_TRIM_Set
    rs485_read_data.o(i.rs485ComPwrOnHandle) refers to rs485_read_data.o(i.rs485GetDelayTime) for rs485GetDelayTime
    rs485_read_data.o(i.rs485ReadDataPro) refers to extern_rtc.o(i.__ARM_common_switch8) for __ARM_common_switch8
    rs485_read_data.o(i.rs485ReadDataPro) refers to rs485_read_data.o(.data) for rs485_com_status_g
    startup_fm33a0xxev.o(RESET) refers to startup_fm33a0xxev.o(STACK) for __initial_sp
    startup_fm33a0xxev.o(RESET) refers to startup_fm33a0xxev.o(.text) for Reset_Handler
    startup_fm33a0xxev.o(RESET) refers to exti.o(i.NMI_Handler) for NMI_Handler
    startup_fm33a0xxev.o(RESET) refers to cmb_fault.o(.text) for HardFault_Handler
    startup_fm33a0xxev.o(RESET) refers to rtc.o(i.RTC_IRQHandler) for RTC_IRQHandler
    startup_fm33a0xxev.o(RESET) refers to user_init.o(i.CMU_IRQHandler) for CMU_IRQHandler
    startup_fm33a0xxev.o(RESET) refers to tim.o(i.LPTIM_IRQHandler) for LPTIM_IRQHandler
    startup_fm33a0xxev.o(RESET) refers to uart.o(i.DMA_IRQHandler) for DMA_IRQHandler
    startup_fm33a0xxev.o(RESET) refers to tim.o(i.BTx_IRQHandler) for BTx_IRQHandler
    startup_fm33a0xxev.o(RESET) refers to tim.o(i.BSTIM_IRQHandler) for BSTIM_IRQHandler
    startup_fm33a0xxev.o(RESET) refers to exti.o(i.GPIO_IRQHandler) for GPIO_IRQHandler
    startup_fm33a0xxev.o(.text) refers to system_fm33a0xxev.o(i.SystemInit) for SystemInit
    startup_fm33a0xxev.o(.text) refers to entry.o(.ARM.Collect$$$$00000000) for __main
    system_fm33a0xxev.o(i.SystemCoreClockUpdate) refers to system_fm33a0xxev.o(.data) for SystemCoreClock
    system_fm33a0xxev.o(i.SystemInit) refers to system_fm33a0xxev.o(.data) for SystemCoreClock
    entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry10a.o(.ARM.Collect$$$$0000000F) for __rt_final_cpp
    entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry11a.o(.ARM.Collect$$$$00000011) for __rt_final_exit
    entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry12b.o(.ARM.Collect$$$$0000000E) for __rt_lib_shutdown_fini
    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 entry2.o(.ARM.Collect$$$$00000001) for _main_stk
    idiv.o(.text) refers to uidiv.o(.text) for __aeabi_uidivmod
    uldiv.o(.text) refers to llushr.o(.text) for __aeabi_llsr
    uldiv.o(.text) refers to llshl.o(.text) for __aeabi_llsl
    rand.o(.text) refers to rand.o(.data) for .data
    printfb.o(i.__0fprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
    printfb.o(i.__0fprintf$bare) refers to uart.o(i.fputc) for fputc
    printfb.o(i.__0printf$bare) refers to printfb.o(i._printf_core) for _printf_core
    printfb.o(i.__0printf$bare) refers to uart.o(i.fputc) for fputc
    printfb.o(i.__0printf$bare) refers to stdout.o(.data) for __stdout
    printfb.o(i.__0snprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
    printfb.o(i.__0snprintf$bare) refers to printfb.o(i._snputc) for _snputc
    printfb.o(i.__0sprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
    printfb.o(i.__0sprintf$bare) refers to printfb.o(i._sputc) for _sputc
    printfb.o(i.__0vfprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
    printfb.o(i.__0vfprintf$bare) refers to uart.o(i.fputc) for fputc
    printfb.o(i.__0vprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
    printfb.o(i.__0vprintf$bare) refers to uart.o(i.fputc) for fputc
    printfb.o(i.__0vprintf$bare) refers to stdout.o(.data) for __stdout
    printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
    printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._snputc) for _snputc
    printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
    printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._sputc) for _sputc
    printf0.o(i.__0fprintf$0) refers to printf0.o(i._printf_core) for _printf_core
    printf0.o(i.__0fprintf$0) refers to uart.o(i.fputc) for fputc
    printf0.o(i.__0printf$0) refers to printf0.o(i._printf_core) for _printf_core
    printf0.o(i.__0printf$0) refers to uart.o(i.fputc) for fputc
    printf0.o(i.__0printf$0) refers to stdout.o(.data) for __stdout
    printf0.o(i.__0snprintf$0) refers to printf0.o(i._printf_core) for _printf_core
    printf0.o(i.__0snprintf$0) refers to printf0.o(i._snputc) for _snputc
    printf0.o(i.__0sprintf$0) refers to printf0.o(i._printf_core) for _printf_core
    printf0.o(i.__0sprintf$0) refers to printf0.o(i._sputc) for _sputc
    printf0.o(i.__0vfprintf$0) refers to printf0.o(i._printf_core) for _printf_core
    printf0.o(i.__0vfprintf$0) refers to uart.o(i.fputc) for fputc
    printf0.o(i.__0vprintf$0) refers to printf0.o(i._printf_core) for _printf_core
    printf0.o(i.__0vprintf$0) refers to uart.o(i.fputc) for fputc
    printf0.o(i.__0vprintf$0) refers to stdout.o(.data) for __stdout
    printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._printf_core) for _printf_core
    printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._snputc) for _snputc
    printf0.o(i.__0vsprintf$0) refers to printf0.o(i._printf_core) for _printf_core
    printf0.o(i.__0vsprintf$0) refers to printf0.o(i._sputc) for _sputc
    printf1.o(i.__0fprintf$1) refers to printf1.o(i._printf_core) for _printf_core
    printf1.o(i.__0fprintf$1) refers to uart.o(i.fputc) for fputc
    printf1.o(i.__0printf$1) refers to printf1.o(i._printf_core) for _printf_core
    printf1.o(i.__0printf$1) refers to uart.o(i.fputc) for fputc
    printf1.o(i.__0printf$1) refers to stdout.o(.data) for __stdout
    printf1.o(i.__0snprintf$1) refers to printf1.o(i._printf_core) for _printf_core
    printf1.o(i.__0snprintf$1) refers to printf1.o(i._snputc) for _snputc
    printf1.o(i.__0sprintf$1) refers to printf1.o(i._printf_core) for _printf_core
    printf1.o(i.__0sprintf$1) refers to printf1.o(i._sputc) for _sputc
    printf1.o(i.__0vfprintf$1) refers to printf1.o(i._printf_core) for _printf_core
    printf1.o(i.__0vfprintf$1) refers to uart.o(i.fputc) for fputc
    printf1.o(i.__0vprintf$1) refers to printf1.o(i._printf_core) for _printf_core
    printf1.o(i.__0vprintf$1) refers to uart.o(i.fputc) for fputc
    printf1.o(i.__0vprintf$1) refers to stdout.o(.data) for __stdout
    printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._printf_core) for _printf_core
    printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._snputc) for _snputc
    printf1.o(i.__0vsprintf$1) refers to printf1.o(i._printf_core) for _printf_core
    printf1.o(i.__0vsprintf$1) refers to printf1.o(i._sputc) for _sputc
    printf1.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod
    printf2.o(i.__0fprintf$2) refers to printf2.o(i._printf_core) for _printf_core
    printf2.o(i.__0fprintf$2) refers to uart.o(i.fputc) for fputc
    printf2.o(i.__0printf$2) refers to printf2.o(i._printf_core) for _printf_core
    printf2.o(i.__0printf$2) refers to uart.o(i.fputc) for fputc
    printf2.o(i.__0printf$2) refers to stdout.o(.data) for __stdout
    printf2.o(i.__0snprintf$2) refers to printf2.o(i._printf_core) for _printf_core
    printf2.o(i.__0snprintf$2) refers to printf2.o(i._snputc) for _snputc
    printf2.o(i.__0sprintf$2) refers to printf2.o(i._printf_core) for _printf_core
    printf2.o(i.__0sprintf$2) refers to printf2.o(i._sputc) for _sputc
    printf2.o(i.__0vfprintf$2) refers to printf2.o(i._printf_core) for _printf_core
    printf2.o(i.__0vfprintf$2) refers to uart.o(i.fputc) for fputc
    printf2.o(i.__0vprintf$2) refers to printf2.o(i._printf_core) for _printf_core
    printf2.o(i.__0vprintf$2) refers to uart.o(i.fputc) for fputc
    printf2.o(i.__0vprintf$2) refers to stdout.o(.data) for __stdout
    printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._printf_core) for _printf_core
    printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._snputc) for _snputc
    printf2.o(i.__0vsprintf$2) refers to printf2.o(i._printf_core) for _printf_core
    printf2.o(i.__0vsprintf$2) refers to printf2.o(i._sputc) for _sputc
    printf3.o(i.__0fprintf$3) refers to printf3.o(i._printf_core) for _printf_core
    printf3.o(i.__0fprintf$3) refers to uart.o(i.fputc) for fputc
    printf3.o(i.__0printf$3) refers to printf3.o(i._printf_core) for _printf_core
    printf3.o(i.__0printf$3) refers to uart.o(i.fputc) for fputc
    printf3.o(i.__0printf$3) refers to stdout.o(.data) for __stdout
    printf3.o(i.__0snprintf$3) refers to printf3.o(i._printf_core) for _printf_core
    printf3.o(i.__0snprintf$3) refers to printf3.o(i._snputc) for _snputc
    printf3.o(i.__0sprintf$3) refers to printf3.o(i._printf_core) for _printf_core
    printf3.o(i.__0sprintf$3) refers to printf3.o(i._sputc) for _sputc
    printf3.o(i.__0vfprintf$3) refers to printf3.o(i._printf_core) for _printf_core
    printf3.o(i.__0vfprintf$3) refers to uart.o(i.fputc) for fputc
    printf3.o(i.__0vprintf$3) refers to printf3.o(i._printf_core) for _printf_core
    printf3.o(i.__0vprintf$3) refers to uart.o(i.fputc) for fputc
    printf3.o(i.__0vprintf$3) refers to stdout.o(.data) for __stdout
    printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._printf_core) for _printf_core
    printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._snputc) for _snputc
    printf3.o(i.__0vsprintf$3) refers to printf3.o(i._printf_core) for _printf_core
    printf3.o(i.__0vsprintf$3) refers to printf3.o(i._sputc) for _sputc
    printf3.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod
    printf4.o(i.__0fprintf$4) refers to printf4.o(i._printf_core) for _printf_core
    printf4.o(i.__0fprintf$4) refers to uart.o(i.fputc) for fputc
    printf4.o(i.__0printf$4) refers to printf4.o(i._printf_core) for _printf_core
    printf4.o(i.__0printf$4) refers to uart.o(i.fputc) for fputc
    printf4.o(i.__0printf$4) refers to stdout.o(.data) for __stdout
    printf4.o(i.__0snprintf$4) refers to printf4.o(i._printf_core) for _printf_core
    printf4.o(i.__0snprintf$4) refers to printf4.o(i._snputc) for _snputc
    printf4.o(i.__0sprintf$4) refers to printf4.o(i._printf_core) for _printf_core
    printf4.o(i.__0sprintf$4) refers to printf4.o(i._sputc) for _sputc
    printf4.o(i.__0vfprintf$4) refers to printf4.o(i._printf_core) for _printf_core
    printf4.o(i.__0vfprintf$4) refers to uart.o(i.fputc) for fputc
    printf4.o(i.__0vprintf$4) refers to printf4.o(i._printf_core) for _printf_core
    printf4.o(i.__0vprintf$4) refers to uart.o(i.fputc) for fputc
    printf4.o(i.__0vprintf$4) refers to stdout.o(.data) for __stdout
    printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._printf_core) for _printf_core
    printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._snputc) for _snputc
    printf4.o(i.__0vsprintf$4) refers to printf4.o(i._printf_core) for _printf_core
    printf4.o(i.__0vsprintf$4) refers to printf4.o(i._sputc) for _sputc
    printf4.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
    printf5.o(i.__0fprintf$5) refers to printf5.o(i._printf_core) for _printf_core
    printf5.o(i.__0fprintf$5) refers to uart.o(i.fputc) for fputc
    printf5.o(i.__0printf$5) refers to printf5.o(i._printf_core) for _printf_core
    printf5.o(i.__0printf$5) refers to uart.o(i.fputc) for fputc
    printf5.o(i.__0printf$5) refers to stdout.o(.data) for __stdout
    printf5.o(i.__0snprintf$5) refers to printf5.o(i._printf_core) for _printf_core
    printf5.o(i.__0snprintf$5) refers to printf5.o(i._snputc) for _snputc
    printf5.o(i.__0sprintf$5) refers to printf5.o(i._printf_core) for _printf_core
    printf5.o(i.__0sprintf$5) refers to printf5.o(i._sputc) for _sputc
    printf5.o(i.__0vfprintf$5) refers to printf5.o(i._printf_core) for _printf_core
    printf5.o(i.__0vfprintf$5) refers to uart.o(i.fputc) for fputc
    printf5.o(i.__0vprintf$5) refers to printf5.o(i._printf_core) for _printf_core
    printf5.o(i.__0vprintf$5) refers to uart.o(i.fputc) for fputc
    printf5.o(i.__0vprintf$5) refers to stdout.o(.data) for __stdout
    printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._printf_core) for _printf_core
    printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._snputc) for _snputc
    printf5.o(i.__0vsprintf$5) refers to printf5.o(i._printf_core) for _printf_core
    printf5.o(i.__0vsprintf$5) refers to printf5.o(i._sputc) for _sputc
    printf5.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
    printf6.o(i.__0fprintf$6) refers to printf6.o(i._printf_core) for _printf_core
    printf6.o(i.__0fprintf$6) refers to uart.o(i.fputc) for fputc
    printf6.o(i.__0printf$6) refers to printf6.o(i._printf_core) for _printf_core
    printf6.o(i.__0printf$6) refers to uart.o(i.fputc) for fputc
    printf6.o(i.__0printf$6) refers to stdout.o(.data) for __stdout
    printf6.o(i.__0snprintf$6) refers to printf6.o(i._printf_core) for _printf_core
    printf6.o(i.__0snprintf$6) refers to printf6.o(i._snputc) for _snputc
    printf6.o(i.__0sprintf$6) refers to printf6.o(i._printf_core) for _printf_core
    printf6.o(i.__0sprintf$6) refers to printf6.o(i._sputc) for _sputc
    printf6.o(i.__0vfprintf$6) refers to printf6.o(i._printf_core) for _printf_core
    printf6.o(i.__0vfprintf$6) refers to uart.o(i.fputc) for fputc
    printf6.o(i.__0vprintf$6) refers to printf6.o(i._printf_core) for _printf_core
    printf6.o(i.__0vprintf$6) refers to uart.o(i.fputc) for fputc
    printf6.o(i.__0vprintf$6) refers to stdout.o(.data) for __stdout
    printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._printf_core) for _printf_core
    printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._snputc) for _snputc
    printf6.o(i.__0vsprintf$6) refers to printf6.o(i._printf_core) for _printf_core
    printf6.o(i.__0vsprintf$6) refers to printf6.o(i._sputc) for _sputc
    printf6.o(i._printf_core) refers to printf6.o(i._printf_pre_padding) for _printf_pre_padding
    printf6.o(i._printf_core) refers to printf6.o(i._printf_post_padding) for _printf_post_padding
    printf6.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod
    printf7.o(i.__0fprintf$7) refers to printf7.o(i._printf_core) for _printf_core
    printf7.o(i.__0fprintf$7) refers to uart.o(i.fputc) for fputc
    printf7.o(i.__0printf$7) refers to printf7.o(i._printf_core) for _printf_core
    printf7.o(i.__0printf$7) refers to uart.o(i.fputc) for fputc
    printf7.o(i.__0printf$7) refers to stdout.o(.data) for __stdout
    printf7.o(i.__0snprintf$7) refers to printf7.o(i._printf_core) for _printf_core
    printf7.o(i.__0snprintf$7) refers to printf7.o(i._snputc) for _snputc
    printf7.o(i.__0sprintf$7) refers to printf7.o(i._printf_core) for _printf_core
    printf7.o(i.__0sprintf$7) refers to printf7.o(i._sputc) for _sputc
    printf7.o(i.__0vfprintf$7) refers to printf7.o(i._printf_core) for _printf_core
    printf7.o(i.__0vfprintf$7) refers to uart.o(i.fputc) for fputc
    printf7.o(i.__0vprintf$7) refers to printf7.o(i._printf_core) for _printf_core
    printf7.o(i.__0vprintf$7) refers to uart.o(i.fputc) for fputc
    printf7.o(i.__0vprintf$7) refers to stdout.o(.data) for __stdout
    printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._printf_core) for _printf_core
    printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._snputc) for _snputc
    printf7.o(i.__0vsprintf$7) refers to printf7.o(i._printf_core) for _printf_core
    printf7.o(i.__0vsprintf$7) refers to printf7.o(i._sputc) for _sputc
    printf7.o(i._printf_core) refers to printf7.o(i._printf_pre_padding) for _printf_pre_padding
    printf7.o(i._printf_core) refers to printf7.o(i._printf_post_padding) for _printf_post_padding
    printf7.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
    printf8.o(i.__0fprintf$8) refers to printf8.o(i._printf_core) for _printf_core
    printf8.o(i.__0fprintf$8) refers to uart.o(i.fputc) for fputc
    printf8.o(i.__0printf$8) refers to printf8.o(i._printf_core) for _printf_core
    printf8.o(i.__0printf$8) refers to uart.o(i.fputc) for fputc
    printf8.o(i.__0printf$8) refers to stdout.o(.data) for __stdout
    printf8.o(i.__0snprintf$8) refers to printf8.o(i._printf_core) for _printf_core
    printf8.o(i.__0snprintf$8) refers to printf8.o(i._snputc) for _snputc
    printf8.o(i.__0sprintf$8) refers to printf8.o(i._printf_core) for _printf_core
    printf8.o(i.__0sprintf$8) refers to printf8.o(i._sputc) for _sputc
    printf8.o(i.__0vfprintf$8) refers to printf8.o(i._printf_core) for _printf_core
    printf8.o(i.__0vfprintf$8) refers to uart.o(i.fputc) for fputc
    printf8.o(i.__0vprintf$8) refers to printf8.o(i._printf_core) for _printf_core
    printf8.o(i.__0vprintf$8) refers to uart.o(i.fputc) for fputc
    printf8.o(i.__0vprintf$8) refers to stdout.o(.data) for __stdout
    printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._printf_core) for _printf_core
    printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._snputc) for _snputc
    printf8.o(i.__0vsprintf$8) refers to printf8.o(i._printf_core) for _printf_core
    printf8.o(i.__0vsprintf$8) refers to printf8.o(i._sputc) for _sputc
    printf8.o(i._printf_core) refers to printf8.o(i._printf_pre_padding) for _printf_pre_padding
    printf8.o(i._printf_core) refers to printf8.o(i._printf_post_padding) for _printf_post_padding
    printf8.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
    printfa.o(i.__0fprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
    printfa.o(i.__0fprintf) refers to printfa.o(i._printf_core) for _printf_core
    printfa.o(i.__0fprintf) refers to uart.o(i.fputc) for fputc
    printfa.o(i.__0printf) refers (Special) to iusefp.o(.text) for __I$use$fp
    printfa.o(i.__0printf) refers to printfa.o(i._printf_core) for _printf_core
    printfa.o(i.__0printf) refers to uart.o(i.fputc) for fputc
    printfa.o(i.__0printf) refers to stdout.o(.data) for __stdout
    printfa.o(i.__0snprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
    printfa.o(i.__0snprintf) refers to printfa.o(i._printf_core) for _printf_core
    printfa.o(i.__0snprintf) refers to printfa.o(i._snputc) for _snputc
    printfa.o(i.__0sprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
    printfa.o(i.__0sprintf) refers to printfa.o(i._printf_core) for _printf_core
    printfa.o(i.__0sprintf) refers to printfa.o(i._sputc) for _sputc
    printfa.o(i.__0vfprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
    printfa.o(i.__0vfprintf) refers to printfa.o(i._printf_core) for _printf_core
    printfa.o(i.__0vfprintf) refers to uart.o(i.fputc) for fputc
    printfa.o(i.__0vprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
    printfa.o(i.__0vprintf) refers to printfa.o(i._printf_core) for _printf_core
    printfa.o(i.__0vprintf) refers to uart.o(i.fputc) for fputc
    printfa.o(i.__0vprintf) refers to stdout.o(.data) for __stdout
    printfa.o(i.__0vsnprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
    printfa.o(i.__0vsnprintf) refers to printfa.o(i._printf_core) for _printf_core
    printfa.o(i.__0vsnprintf) refers to printfa.o(i._snputc) for _snputc
    printfa.o(i.__0vsprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
    printfa.o(i.__0vsprintf) refers to printfa.o(i._printf_core) for _printf_core
    printfa.o(i.__0vsprintf) refers to printfa.o(i._sputc) for _sputc
    printfa.o(i._fp_digits) refers (Special) to iusefp.o(.text) for __I$use$fp
    printfa.o(i._fp_digits) refers to dmul.o(.text) for __aeabi_dmul
    printfa.o(i._fp_digits) refers to ddiv.o(.text) for __aeabi_ddiv
    printfa.o(i._fp_digits) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
    printfa.o(i._fp_digits) refers to dadd.o(.text) for __aeabi_dadd
    printfa.o(i._fp_digits) refers to dfixul.o(.text) for __aeabi_d2ulz
    printfa.o(i._fp_digits) refers to uldiv.o(.text) for __aeabi_uldivmod
    printfa.o(i._printf_core) refers (Special) to iusefp.o(.text) for __I$use$fp
    printfa.o(i._printf_core) refers to printfa.o(i._printf_pre_padding) for _printf_pre_padding
    printfa.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
    printfa.o(i._printf_core) refers to printfa.o(i._printf_post_padding) for _printf_post_padding
    printfa.o(i._printf_core) refers to printfa.o(i._fp_digits) for _fp_digits
    printfa.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod
    printfa.o(i._printf_post_padding) refers (Special) to iusefp.o(.text) for __I$use$fp
    printfa.o(i._printf_pre_padding) refers (Special) to iusefp.o(.text) for __I$use$fp
    printfa.o(i._snputc) refers (Special) to iusefp.o(.text) for __I$use$fp
    printfa.o(i._sputc) refers (Special) to iusefp.o(.text) for __I$use$fp
    fadd.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    fadd.o(.text) refers to fepilogue.o(.text) for _float_epilogue
    fmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    fdiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    fdiv.o(.text) refers to fepilogue.o(.text) for _float_round
    dadd.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    dadd.o(.text) refers to llshl.o(.text) for __aeabi_llsl
    dadd.o(.text) refers to llsshr.o(.text) for __aeabi_lasr
    dadd.o(.text) refers to depilogue.o(.text) for _double_epilogue
    dmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    dmul.o(.text) refers to depilogue.o(.text) for _double_epilogue
    ddiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    ddiv.o(.text) refers to depilogue.o(.text) for _double_round
    ffltui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    ffltui.o(.text) refers to fepilogue.o(.text) for _float_epilogue
    dflti.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    dflti.o(.text) refers to depilogue.o(.text) for _double_epilogue
    dfltui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    dfltui.o(.text) refers to depilogue.o(.text) for _double_epilogue
    dfixi.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    dfixi.o(.text) refers to llushr.o(.text) for __aeabi_llsr
    dfixui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    dfixui.o(.text) refers to llushr.o(.text) for __aeabi_llsr
    dfixul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    dfixul.o(.text) refers to llushr.o(.text) for __aeabi_llsr
    dfixul.o(.text) refers to llshl.o(.text) for __aeabi_llsl
    f2d.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    cdcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    cdrcmple.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
    cfrcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    entry2.o(.ARM.Collect$$$$00000001) refers to entry2.o(.ARM.Collect$$$$00002712) for __lit__00000000
    entry2.o(.ARM.Collect$$$$00002712) refers to startup_fm33a0xxev.o(STACK) for __initial_sp
    entry2.o(__vectab_stack_and_reset_area) refers to startup_fm33a0xxev.o(STACK) for __initial_sp
    entry2.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 main.o(i.main) for main
    entry9b.o(.ARM.Collect$$$$0000000C) refers to main.o(i.main) for main
    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
    init.o(.text) refers to entry5.o(.ARM.Collect$$$$00000004) for __main_after_scatterload
 
 
==============================================================================
 
Removing Unused input sections from the image.
 
    Removing aes128.o(i.AES128_ECB_decrypt), (44 bytes).
    Removing aes128.o(i.AES128_ECB_encrypt), (44 bytes).
    Removing aes128.o(i.AddRoundKey), (72 bytes).
    Removing aes128.o(i.BlockCopy), (20 bytes).
    Removing aes128.o(i.Cipher), (56 bytes).
    Removing aes128.o(i.InvCipher), (56 bytes).
    Removing aes128.o(i.InvMixColumns), (1212 bytes).
    Removing aes128.o(i.InvShiftRows), (152 bytes).
    Removing aes128.o(i.InvSubBytes), (56 bytes).
    Removing aes128.o(i.KeyExpansion), (292 bytes).
    Removing aes128.o(i.MixColumns), (292 bytes).
    Removing aes128.o(i.ShiftRows), (152 bytes).
    Removing aes128.o(i.SubBytes), (56 bytes).
    Removing aes128.o(i.getSBoxInvert), (12 bytes).
    Removing aes128.o(i.getSBoxValue), (12 bytes).
    Removing aes128.o(i.xtime), (18 bytes).
    Removing aes128.o(.bss), (320 bytes).
    Removing aes128.o(.constdata), (767 bytes).
    Removing aes128.o(.data), (8 bytes).
    Removing mbcrc.o(.rev16_text), (4 bytes).
    Removing mbcrc.o(.revsh_text), (4 bytes).
    Removing sizhu_ctrl_word.o(.rev16_text), (4 bytes).
    Removing sizhu_ctrl_word.o(.revsh_text), (4 bytes).
    Removing sizhu_ctrl_word.o(.bss), (64 bytes).
    Removing sizhu_ctrl_word.o(.data), (22 bytes).
    Removing system_general_para.o(.rev16_text), (4 bytes).
    Removing system_general_para.o(.revsh_text), (4 bytes).
    Removing system_run_fun.o(.rev16_text), (4 bytes).
    Removing system_run_fun.o(.revsh_text), (4 bytes).
    Removing system_run_fun.o(i.allPeripheralDriver), (2 bytes).
    Removing main.o(.rev16_text), (4 bytes).
    Removing main.o(.revsh_text), (4 bytes).
    Removing main.o(.data), (1 bytes).
    Removing user_init.o(.rev16_text), (4 bytes).
    Removing user_init.o(.revsh_text), (4 bytes).
    Removing user_init.o(i.CheckNvicIrqEn), (32 bytes).
    Removing user_init.o(i.CheckSysReg), (18 bytes).
    Removing delay.o(.rev16_text), (4 bytes).
    Removing delay.o(.revsh_text), (4 bytes).
    Removing rcc_config.o(.rev16_text), (4 bytes).
    Removing rcc_config.o(.revsh_text), (4 bytes).
    Removing rcc_config.o(i.rcc_configration), (128 bytes).
    Removing gpio.o(.rev16_text), (4 bytes).
    Removing gpio.o(.revsh_text), (4 bytes).
    Removing gpio.o(i.AltFunIO_H), (148 bytes).
    Removing gpio.o(i.AnalogIO_H), (96 bytes).
    Removing gpio.o(i.CloseH_IO), (86 bytes).
    Removing gpio.o(i.CloseIO), (56 bytes).
    Removing gpio.o(i.InputtIO_H), (132 bytes).
    Removing gpio.o(i.OutputIO_H), (128 bytes).
    Removing exti.o(.rev16_text), (4 bytes).
    Removing exti.o(.revsh_text), (4 bytes).
    Removing exti.o(i.All_Exti_Init), (2 bytes).
    Removing uart.o(.rev16_text), (4 bytes).
    Removing uart.o(.revsh_text), (4 bytes).
    Removing uart.o(i.NVIC_DisableIRQ), (24 bytes).
    Removing uart.o(i.UARTx_SendData_DMA), (2 bytes).
    Removing uart.o(i.UARTx_SendData_IT), (2 bytes).
    Removing uart.o(i.Uart0_Init), (116 bytes).
    Removing uart.o(i.Uart0_RX_DMA_CH7_Init), (2 bytes).
    Removing uart.o(i.Uart3_Init), (116 bytes).
    Removing uart.o(i.Uart3_RX_DMA_CH1_Init), (2 bytes).
    Removing uart.o(i.Uart5_Init), (116 bytes).
    Removing uart.o(i.Uart5_RX_DMA_CH5_Init), (2 bytes).
    Removing uart.o(.bss), (400 bytes).
    Removing uart.o(.data), (2 bytes).
    Removing tim.o(.rev16_text), (4 bytes).
    Removing tim.o(.revsh_text), (4 bytes).
    Removing tim.o(i.BasicTimer16_Init), (200 bytes).
    Removing tim.o(i.BsTimer_Init), (88 bytes).
    Removing tim.o(i.LowPowerTimer_Init), (100 bytes).
    Removing tim.o(i.NVIC_DisableIRQ), (24 bytes).
    Removing tim.o(i.NVIC_EnableIRQ), (24 bytes).
    Removing tim.o(i.NVIC_SetPriority), (120 bytes).
    Removing tim.o(i.TxtendTimer16_Init), (240 bytes).
    Removing tim.o(.data), (1 bytes).
    Removing rtc.o(.rev16_text), (4 bytes).
    Removing rtc.o(.revsh_text), (4 bytes).
    Removing rtc.o(i.Get_Sys_Rtc_Time), (86 bytes).
    Removing rtc.o(i.NVIC_SetPriority), (120 bytes).
    Removing rtc.o(i.RTC_Init), (88 bytes).
    Removing rtc.o(i.Set_Sys_Rtc_Time), (148 bytes).
    Removing rtc.o(i.rtc_setalarm), (28 bytes).
    Removing rtc.o(.data), (7 bytes).
    Removing adc.o(.rev16_text), (4 bytes).
    Removing adc.o(.revsh_text), (4 bytes).
    Removing adc.o(i.ADC_AlkaIO_Init), (40 bytes).
    Removing adc.o(i.ADC_IN4_Init), (92 bytes).
    Removing adc.o(i.ADC_IN5_Init), (92 bytes).
    Removing adc.o(i.ADC_IN8_Init), (92 bytes).
    Removing adc.o(i.ADC_LithIO_Init), (40 bytes).
    Removing adc.o(i.ADC_Temp_Init), (88 bytes).
    Removing adc.o(i.Get_AdcTempValue), (48 bytes).
    Removing adc.o(i.Get_AdcValue), (50 bytes).
    Removing adc.o(i.adc_tem_cal), (164 bytes).
    Removing adc.o(i.adc_vol_cal), (100 bytes).
    Removing adc.o(i.adc_wait_finish), (32 bytes).
    Removing adc.o(.data), (8 bytes).
    Removing i2c.o(.rev16_text), (4 bytes).
    Removing i2c.o(.revsh_text), (4 bytes).
    Removing i2c.o(i.I2c_Wait_Ack), (92 bytes).
    Removing spi.o(.rev16_text), (4 bytes).
    Removing spi.o(.revsh_text), (4 bytes).
    Removing spi.o(i.SpiRead), (28 bytes).
    Removing spi.o(i.SpiWrite), (26 bytes).
    Removing dma.o(.rev16_text), (4 bytes).
    Removing dma.o(.revsh_text), (4 bytes).
    Removing flash.o(.rev16_text), (4 bytes).
    Removing flash.o(.revsh_text), (4 bytes).
    Removing flash.o(i.FlashInit), (16 bytes).
    Removing flash.o(i.FlashPageErase), (108 bytes).
    Removing flash.o(i.Flash_AppPageErase), (56 bytes).
    Removing flash.o(i.Flash_App_Write_String), (92 bytes).
    Removing flash.o(i.LL_FLASH_Program_Word), (72 bytes).
    Removing extern_rtc.o(.rev16_text), (4 bytes).
    Removing extern_rtc.o(.revsh_text), (4 bytes).
    Removing key.o(.rev16_text), (4 bytes).
    Removing key.o(.revsh_text), (4 bytes).
    Removing off_chip_flash.o(.rev16_text), (4 bytes).
    Removing off_chip_flash.o(.revsh_text), (4 bytes).
    Removing off_chip_flash.o(i.FLASH_Write_Disable), (60 bytes).
    Removing off_chip_flash.o(i.FLASH_Write_Enable), (60 bytes).
    Removing off_chip_flash.o(i.FLASH_Write_SR), (72 bytes).
    Removing off_chip_flash.o(i.Flash_Erase_Chip), (72 bytes).
    Removing off_chip_flash.o(i.Flash_OUT_Erase_Sector), (96 bytes).
    Removing off_chip_flash.o(i.Flash_PowerDown), (64 bytes).
    Removing off_chip_flash.o(i.Flash_ReadID), (100 bytes).
    Removing off_chip_flash.o(i.Flash_ReadSR), (72 bytes).
    Removing off_chip_flash.o(i.Flash_WAKEUP), (64 bytes).
    Removing off_chip_flash.o(i.Flash_Wait_Busy), (18 bytes).
    Removing off_chip_flash.o(i.Flash_Write_NoCheck), (68 bytes).
    Removing off_chip_flash.o(i.Flash_Write_Page), (112 bytes).
    Removing off_chip_flash.o(i.Flash_data_read), (92 bytes).
    Removing off_chip_flash.o(i.OUT_FLASH_test), (80 bytes).
    Removing off_chip_flash.o(i.Out_Flash_MultipleRead), (108 bytes).
    Removing off_chip_flash.o(i.Out_Flash_MultipleWrite), (288 bytes).
    Removing bootloader_iap.o(.rev16_text), (4 bytes).
    Removing bootloader_iap.o(.revsh_text), (4 bytes).
    Removing bootloader_iap.o(i.BootLoader_IapConfigCheckHandler), (348 bytes).
    Removing bootloader_iap.o(i.BootLoader_IapConfigSetHander), (268 bytes).
    Removing bootloader_iap.o(i.BootLoader_IapDiffDataHandler), (108 bytes).
    Removing bootloader_iap.o(i.BootLoader_IapDiffMapSetHandler), (76 bytes).
    Removing bootloader_iap.o(i.IapBootload_WriteCfgFlash_Handler), (56 bytes).
    Removing bootloader_iap.o(i.OTA_UpdataResetHandler), (64 bytes).
    Removing bootloader_iap.o(.bss), (556 bytes).
    Removing eeprom.o(.rev16_text), (4 bytes).
    Removing eeprom.o(.revsh_text), (4 bytes).
    Removing eeprom.o(i.EEPROM_CS_2_test), (32 bytes).
    Removing eeprom.o(i.EEPROM_ID_read), (88 bytes).
    Removing eeprom.o(i.EEPROM_MultipleRead_CS_2), (36 bytes).
    Removing eeprom.o(i.EEPROM_MultipleWrite_CS_2), (36 bytes).
    Removing eeprom.o(i.EEPROM_data_read), (96 bytes).
    Removing eeprom.o(i.EEPROM_data_read_double), (172 bytes).
    Removing eeprom.o(i.EEPROM_data_read_float), (52 bytes).
    Removing eeprom.o(i.EEPROM_data_read_uint16), (30 bytes).
    Removing eeprom.o(i.EEPROM_data_read_uint32), (52 bytes).
    Removing eeprom.o(i.EEPROM_data_write), (148 bytes).
    Removing eeprom.o(i.EEPROM_data_write_double), (24 bytes).
    Removing eeprom.o(i.EEPROM_data_write_float), (20 bytes).
    Removing eeprom.o(i.EEPROM_data_write_uint16), (20 bytes).
    Removing eeprom.o(i.EEPROM_data_write_uint32), (20 bytes).
    Removing eeprom.o(i.EEPROM_sleep), (64 bytes).
    Removing eeprom.o(i.EEPROM_stat_write), (116 bytes).
    Removing eeprom.o(.data), (1 bytes).
    Removing sizhu_alarm_record.o(.rev16_text), (4 bytes).
    Removing sizhu_alarm_record.o(.revsh_text), (4 bytes).
    Removing sizhu_alarm_record.o(i.system_alarm_log_data_handle), (2 bytes).
    Removing sizhu_alarm_record.o(i.system_alarm_log_eeprom_default_init), (4 bytes).
    Removing sizhu_alarm_record.o(i.system_alarm_log_record_only_read_init), (4 bytes).
    Removing sizhu_alarm_record.o(i.system_alarm_log_record_read), (6 bytes).
    Removing sizhu_alarm_record.o(i.system_alarm_log_record_save), (6 bytes).
    Removing sizhu_alarm_record.o(.bss), (12 bytes).
    Removing sizhu_event_record.o(.rev16_text), (4 bytes).
    Removing sizhu_event_record.o(.revsh_text), (4 bytes).
    Removing sizhu_event_record.o(i.sizhu_calibration_time_log_data_handle), (2 bytes).
    Removing sizhu_event_record.o(i.sizhu_calibration_time_log_eeprom_default_init), (2 bytes).
    Removing sizhu_event_record.o(i.sizhu_calibration_time_log_only_read_init), (2 bytes).
    Removing sizhu_event_record.o(i.sizhu_calibration_time_log_save), (4 bytes).
    Removing sizhu_event_record.o(i.sizhu_event_log_eeprom_default_init), (16 bytes).
    Removing sizhu_event_record.o(i.sizhu_event_log_eeprom_only_read_init), (16 bytes).
    Removing sizhu_event_record.o(i.sizhu_factory_reset_log_data_handle), (2 bytes).
    Removing sizhu_event_record.o(i.sizhu_factory_reset_log_eeprom_default_init), (2 bytes).
    Removing sizhu_event_record.o(i.sizhu_factory_reset_log_only_read_init), (2 bytes).
    Removing sizhu_event_record.o(i.sizhu_factory_reset_log_save), (4 bytes).
    Removing sizhu_event_record.o(i.sizhu_valve_action_log_data_handle), (2 bytes).
    Removing sizhu_event_record.o(i.sizhu_valve_action_log_eeprom_default_init), (2 bytes).
    Removing sizhu_event_record.o(i.sizhu_valve_action_log_only_read_init), (2 bytes).
    Removing sizhu_event_record.o(i.sizhu_valve_action_log_save), (6 bytes).
    Removing sizhu_event_record.o(.bss), (36 bytes).
    Removing sizhu_history_record.o(.rev16_text), (4 bytes).
    Removing sizhu_history_record.o(.revsh_text), (4 bytes).
    Removing sizhu_history_record.o(i.file_data), (2 bytes).
    Removing sizhu_history_record.o(i.sizhu_historical_eeprom_default_init), (4 bytes).
    Removing sizhu_history_record.o(i.sizhu_historical_read_init), (6 bytes).
    Removing sizhu_history_record.o(i.sizhu_historical_record_clean), (6 bytes).
    Removing sizhu_history_record.o(i.sizhu_historical_record_only_read_init), (4 bytes).
    Removing sizhu_history_record.o(i.sizhu_historical_record_read), (4 bytes).
    Removing sizhu_history_record.o(i.sizhu_historical_record_save), (6 bytes).
    Removing sizhu_history_record.o(i.sizhu_historical_test), (2 bytes).
    Removing sizhu_history_record.o(i.sizhu_period_historical_record_save), (6 bytes).
    Removing sizhu_history_record.o(.bss), (100 bytes).
    Removing sizhu_para_modify_record.o(.rev16_text), (4 bytes).
    Removing sizhu_para_modify_record.o(.revsh_text), (4 bytes).
    Removing system_eep_mem_manage.o(.rev16_text), (4 bytes).
    Removing system_eep_mem_manage.o(.revsh_text), (4 bytes).
    Removing system_flash_mem_manage.o(.rev16_text), (4 bytes).
    Removing system_flash_mem_manage.o(.revsh_text), (4 bytes).
    Removing system_mem_para.o(.rev16_text), (4 bytes).
    Removing system_mem_para.o(.revsh_text), (4 bytes).
    Removing system_mem_para.o(i.eepParaPatchPro_2), (2 bytes).
    Removing upper_com.o(.rev16_text), (4 bytes).
    Removing upper_com.o(.revsh_text), (4 bytes).
    Removing upper_com_data_pro.o(.rev16_text), (4 bytes).
    Removing upper_com_data_pro.o(.revsh_text), (4 bytes).
    Removing lcd.o(.rev16_text), (4 bytes).
    Removing lcd.o(.revsh_text), (4 bytes).
    Removing lcd.o(i.Lcd_Clear_AllTest), (28 bytes).
    Removing lcd.o(i.Lcd_Display_AllTest), (1296 bytes).
    Removing lcd.o(i.Lcd_Show_Loop), (2168 bytes).
    Removing lcd_cfg_api.o(.rev16_text), (4 bytes).
    Removing lcd_cfg_api.o(.revsh_text), (4 bytes).
    Removing lcd_cfg_api.o(i.Lcd_Battery), (2 bytes).
    Removing lcd_cfg_api.o(i.Lcd_BillingShow), (2 bytes).
    Removing lcd_cfg_api.o(i.Lcd_CalibPage), (128 bytes).
    Removing lcd_cfg_api.o(i.Lcd_GprsShow), (2 bytes).
    Removing lcd_cfg_api.o(i.Lcd_NormalPage_1), (128 bytes).
    Removing lcd_cfg_api.o(i.Lcd_NormalPage_2), (2 bytes).
    Removing lcd_cfg_api.o(i.Lcd_NormalPage_3), (104 bytes).
    Removing lcd_cfg_api.o(i.Lcd_NormalPage_4), (104 bytes).
    Removing lcd_cfg_api.o(i.Lcd_NormalPage_5), (104 bytes).
    Removing lcd_cfg_api.o(i.Lcd_ParaPage_HardVer), (556 bytes).
    Removing lcd_cfg_api.o(i.Lcd_ParaPage_IpPort), (540 bytes).
    Removing lcd_cfg_api.o(i.Lcd_ParaPage_MeterNum), (810 bytes).
    Removing lcd_cfg_api.o(i.Lcd_ParaPage_SoftVer), (500 bytes).
    Removing lcd_cfg_api.o(i.Lcd_ParaPage_SoundVel), (84 bytes).
    Removing lcd_cfg_api.o(i.Lcd_ParaPage_ThirdParty_IpPort), (672 bytes).
    Removing lcd_cfg_api.o(i.Lcd_ParaPage_ThirdParty_MeterNum), (44 bytes).
    Removing lcd_cfg_api.o(i.Lcd_Show_time), (348 bytes).
    Removing lcd_cfg_api.o(i.Lcd_SuccErrPage), (96 bytes).
    Removing lcd_cfg_api.o(i.Lcd_WaringShow_New), (2 bytes).
    Removing lcd_io_api.o(.rev16_text), (4 bytes).
    Removing lcd_io_api.o(.revsh_text), (4 bytes).
    Removing lcd_io_api.o(i.Lcd_ClearDigit_23A), (1792 bytes).
    Removing lcd_io_api.o(i.Lcd_DisplayDigit_23A), (18260 bytes).
    Removing lcd_io_api.o(i.Lcd_DisplayFirstLine_23A), (940 bytes).
    Removing lcd_io_api.o(i.Lcd_DisplayLetter), (47144 bytes).
    Removing lcd_io_api.o(i.Lcd_DisplaySecondLine_23A), (736 bytes).
    Removing cm_backtrace.o(.emb_text), (16 bytes).
    Removing cm_backtrace.o(i.cm_backtrace_assert), (136 bytes).
    Removing cm_backtrace.o(i.cm_backtrace_init), (160 bytes).
    Removing fault_test.o(i.fault_test_by_div0), (48 bytes).
    Removing fault_test.o(i.fault_test_by_unalign), (96 bytes).
    Removing fm33a0xxev_adc.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_adc.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_CFGR_ACC_PERIOD_Get), (16 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_CFGR_ACC_PERIOD_Set), (32 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_CFGR_BUFEN_Getable), (24 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_CFGR_BUFEN_Setable), (36 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_CFGR_BUFSEL_Get), (16 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_CFGR_BUFSEL_Set), (28 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_CFGR_RST_CTRL_DELAY_Get), (16 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_CFGR_RST_CTRL_DELAY_Set), (32 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_CR_ACC_IE_Getable), (24 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_CR_ACC_IE_Setable), (36 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_CR_ADC_IE_Getable), (24 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_CR_ADC_IE_Setable), (36 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_CR_EN_Getable), (24 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_CR_EN_Setable), (36 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_CR_HPEN_Get), (16 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_CR_HPEN_Set), (32 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_CR_MODE_Get), (16 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_CR_MODE_Set), (32 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_CR_RSTCTRL_EN_Getable), (24 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_CR_RSTCTRL_EN_Setable), (36 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_DR_Read), (12 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_Deinit), (2 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_ISR_ACC_IF_Chk), (28 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_ISR_ACC_IF_Clr), (16 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_ISR_ADC_DONE_Chk), (24 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_ISR_ADC_IF_Chk), (24 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_ISR_ADC_IF_Clr), (12 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_ISR_INIT_RDY_Chk), (28 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_TRIM_Read), (16 bytes).
    Removing fm33a0xxev_adc.o(i.ADC_TRIM_Write), (16 bytes).
    Removing fm33a0xxev_adc.o(i.CIC_CR_CIC_EN_Getable), (24 bytes).
    Removing fm33a0xxev_adc.o(i.CIC_CR_CIC_EN_Setable), (36 bytes).
    Removing fm33a0xxev_adc.o(i.CIC_CR_CIC_IE_Getable), (24 bytes).
    Removing fm33a0xxev_adc.o(i.CIC_CR_CIC_IE_Setable), (36 bytes).
    Removing fm33a0xxev_adc.o(i.CIC_CR_NS_DISC_Get), (16 bytes).
    Removing fm33a0xxev_adc.o(i.CIC_CR_NS_DISC_Set), (32 bytes).
    Removing fm33a0xxev_adc.o(i.CIC_CR_OSR_Get), (16 bytes).
    Removing fm33a0xxev_adc.o(i.CIC_CR_OSR_Set), (28 bytes).
    Removing fm33a0xxev_adc.o(i.CIC_CR_OVR_IE_Getable), (24 bytes).
    Removing fm33a0xxev_adc.o(i.CIC_CR_OVR_IE_Setable), (36 bytes).
    Removing fm33a0xxev_adc.o(i.CIC_CR_TRUNC_Get), (16 bytes).
    Removing fm33a0xxev_adc.o(i.CIC_CR_TRUNC_Set), (32 bytes).
    Removing fm33a0xxev_adc.o(i.CIC_DR_Read), (16 bytes).
    Removing fm33a0xxev_adc.o(i.CIC_ISR_CIC_IF_Chk), (24 bytes).
    Removing fm33a0xxev_adc.o(i.CIC_ISR_CIC_IF_Clr), (12 bytes).
    Removing fm33a0xxev_adc.o(i.CIC_ISR_CIC_OVR_Chk), (24 bytes).
    Removing fm33a0xxev_adc.o(i.CIC_ISR_CIC_OVR_Clr), (12 bytes).
    Removing fm33a0xxev_adc.o(i.CIC_OS_Read), (16 bytes).
    Removing fm33a0xxev_adc.o(i.CIC_OS_Write), (16 bytes).
    Removing fm33a0xxev_adc.o(i.CIC_USDR_Read), (16 bytes).
    Removing fm33a0xxev_aes.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_aes.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_aes.o(i.AES_CR_CHMOD_Get), (16 bytes).
    Removing fm33a0xxev_aes.o(i.AES_CR_CHMOD_Set), (32 bytes).
    Removing fm33a0xxev_aes.o(i.AES_CR_DATATYP_Get), (16 bytes).
    Removing fm33a0xxev_aes.o(i.AES_CR_DATATYP_Set), (32 bytes).
    Removing fm33a0xxev_aes.o(i.AES_CR_DMAIEN_Getable), (28 bytes).
    Removing fm33a0xxev_aes.o(i.AES_CR_DMAIEN_Setable), (40 bytes).
    Removing fm33a0xxev_aes.o(i.AES_CR_DMAOEN_Getable), (28 bytes).
    Removing fm33a0xxev_aes.o(i.AES_CR_DMAOEN_Setable), (40 bytes).
    Removing fm33a0xxev_aes.o(i.AES_CR_EN_Getable), (24 bytes).
    Removing fm33a0xxev_aes.o(i.AES_CR_EN_Setable), (36 bytes).
    Removing fm33a0xxev_aes.o(i.AES_CR_KEYLEN_Get), (16 bytes).
    Removing fm33a0xxev_aes.o(i.AES_CR_KEYLEN_Set), (32 bytes).
    Removing fm33a0xxev_aes.o(i.AES_CR_MODE_Get), (16 bytes).
    Removing fm33a0xxev_aes.o(i.AES_CR_MODE_Set), (32 bytes).
    Removing fm33a0xxev_aes.o(i.AES_DIN_GroupWrite_128BIT), (64 bytes).
    Removing fm33a0xxev_aes.o(i.AES_DIR_Read), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_DIR_Write), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_DOR_Read), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_DOUT_GroupRead_128BIT), (72 bytes).
    Removing fm33a0xxev_aes.o(i.AES_Deinit), (2 bytes).
    Removing fm33a0xxev_aes.o(i.AES_GroupWriteAndRead_128BIT), (78 bytes).
    Removing fm33a0xxev_aes.o(i.AES_GroupWriteAndRead_128BIT_IVR), (78 bytes).
    Removing fm33a0xxev_aes.o(i.AES_H0_Read), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_H0_Write), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_H1_Read), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_H1_Write), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_H2_Read), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_H2_Write), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_H3_Read), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_H3_Write), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_Hx_ReadEx), (92 bytes).
    Removing fm33a0xxev_aes.o(i.AES_Hx_WriteEx), (84 bytes).
    Removing fm33a0xxev_aes.o(i.AES_IER_CCF_IE_Getable), (24 bytes).
    Removing fm33a0xxev_aes.o(i.AES_IER_CCF_IE_Setable), (36 bytes).
    Removing fm33a0xxev_aes.o(i.AES_IER_RDERR_IE_Getable), (24 bytes).
    Removing fm33a0xxev_aes.o(i.AES_IER_RDERR_IE_Setable), (36 bytes).
    Removing fm33a0xxev_aes.o(i.AES_IER_WRERR_IE_Getable), (24 bytes).
    Removing fm33a0xxev_aes.o(i.AES_IER_WRERR_IE_Setable), (36 bytes).
    Removing fm33a0xxev_aes.o(i.AES_ISR_CCF_Chk), (24 bytes).
    Removing fm33a0xxev_aes.o(i.AES_ISR_CCF_Clr), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_ISR_RDERR_Chk), (24 bytes).
    Removing fm33a0xxev_aes.o(i.AES_ISR_RDERR_Clr), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_ISR_WRERR_Chk), (24 bytes).
    Removing fm33a0xxev_aes.o(i.AES_ISR_WRERR_Clr), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_IVR0_Read), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_IVR0_Write), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_IVR1_Read), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_IVR1_Write), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_IVR2_Read), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_IVR2_Write), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_IVR3_Read), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_IVR3_Write), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_IVR_ReadEx), (88 bytes).
    Removing fm33a0xxev_aes.o(i.AES_IVR_WriteEx), (80 bytes).
    Removing fm33a0xxev_aes.o(i.AES_Init), (66 bytes).
    Removing fm33a0xxev_aes.o(i.AES_KEY0_Write), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_KEY1_Write), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_KEY2_Write), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_KEY3_Write), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_KEY4_Write), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_KEY5_Write), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_KEY6_Write), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_KEY7_Write), (12 bytes).
    Removing fm33a0xxev_aes.o(i.AES_KEY_WriteEx), (92 bytes).
    Removing fm33a0xxev_bstim.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_bstim.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_bstim.o(i.BSTIM_ARR_Read), (12 bytes).
    Removing fm33a0xxev_bstim.o(i.BSTIM_ARR_Write), (12 bytes).
    Removing fm33a0xxev_bstim.o(i.BSTIM_CNTR_Read), (12 bytes).
    Removing fm33a0xxev_bstim.o(i.BSTIM_CNTR_Write), (12 bytes).
    Removing fm33a0xxev_bstim.o(i.BSTIM_CR1_ARPE_Getable), (24 bytes).
    Removing fm33a0xxev_bstim.o(i.BSTIM_CR1_ARPE_Setable), (36 bytes).
    Removing fm33a0xxev_bstim.o(i.BSTIM_CR1_CEN_Getable), (24 bytes).
    Removing fm33a0xxev_bstim.o(i.BSTIM_CR1_CEN_Setable), (36 bytes).
    Removing fm33a0xxev_bstim.o(i.BSTIM_CR1_OPM_Get), (16 bytes).
    Removing fm33a0xxev_bstim.o(i.BSTIM_CR1_OPM_Set), (32 bytes).
    Removing fm33a0xxev_bstim.o(i.BSTIM_CR1_UDIS_Getable), (24 bytes).
    Removing fm33a0xxev_bstim.o(i.BSTIM_CR1_UDIS_Setable), (36 bytes).
    Removing fm33a0xxev_bstim.o(i.BSTIM_CR1_URS_Get), (16 bytes).
    Removing fm33a0xxev_bstim.o(i.BSTIM_CR1_URS_Set), (32 bytes).
    Removing fm33a0xxev_bstim.o(i.BSTIM_CR2_Read), (16 bytes).
    Removing fm33a0xxev_bstim.o(i.BSTIM_CR2_Write), (16 bytes).
    Removing fm33a0xxev_bstim.o(i.BSTIM_Deinit), (2 bytes).
    Removing fm33a0xxev_bstim.o(i.BSTIM_EGR_UG_Setable), (36 bytes).
    Removing fm33a0xxev_bstim.o(i.BSTIM_IER_UIE_Getable), (24 bytes).
    Removing fm33a0xxev_bstim.o(i.BSTIM_IER_UIE_Setable), (36 bytes).
    Removing fm33a0xxev_bstim.o(i.BSTIM_ISR_UIF_Chk), (24 bytes).
    Removing fm33a0xxev_bstim.o(i.BSTIM_ISR_UIF_Clr), (12 bytes).
    Removing fm33a0xxev_bstim.o(i.BSTIM_PSCR_Read), (12 bytes).
    Removing fm33a0xxev_bstim.o(i.BSTIM_PSCR_Write), (12 bytes).
    Removing fm33a0xxev_bt.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_bt.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CFGR1_GRP1SEL_Get), (10 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CFGR1_GRP1SEL_Set), (18 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CFGR1_GRP2SEL_Get), (10 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CFGR1_GRP2SEL_Set), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CFGR1_RTCSEL1_Get), (10 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CFGR1_RTCSEL1_Set), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CFGR1_RTCSEL2_Get), (10 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CFGR1_RTCSEL2_Set), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CFGR2_EXSEL1_Get), (10 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CFGR2_EXSEL1_Set), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CFGR2_EXSEL2_Get), (10 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CFGR2_EXSEL2_Set), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CFGR2_INSEL1_Get), (10 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CFGR2_INSEL1_Set), (18 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CFGR2_INSEL2_Get), (10 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CFGR2_INSEL2_Set), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CMPH_Read), (8 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CMPH_Write), (6 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CMPL_Read), (8 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CMPL_Write), (6 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CNTH_Read), (8 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CNTL_Read), (8 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR1_CAPCLR_Getable), (20 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR1_CAPCLR_Setable), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR1_CAPMOD_Get), (10 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR1_CAPMOD_Set), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR1_CAPONCE_Get), (10 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR1_CAPONCE_Set), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR1_CHEN_Getable), (20 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR1_CHEN_Setable), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR1_CLEN_Getable), (20 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR1_CLEN_Setable), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR1_EDGESEL_Get), (10 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR1_EDGESEL_Set), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR1_MODE_Get), (10 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR1_MODE_Set), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR1_PWM_Getable), (20 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR1_PWM_Setable), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR2_CNTHSEL_Get), (10 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR2_CNTHSEL_Set), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR2_DIREN_Getable), (20 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR2_DIREN_Setable), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR2_DIRPO_Get), (10 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR2_DIRPO_Set), (18 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR2_SIG1SEL_Get), (10 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR2_SIG1SEL_Set), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR2_SIG2SEL_Get), (10 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR2_SIG2SEL_Set), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR2_SRCSEL_Getable), (20 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR2_SRCSEL_Setable), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR2_STDIR_Getable), (20 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_CR2_STDIR_Setable), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_Deinit), (2 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_IER_CAPIE_Getable), (20 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_IER_CAPIE_Setable), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_IER_CMPHIE_Getable), (20 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_IER_CMPHIE_Setable), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_IER_CMPLIE_Getable), (20 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_IER_CMPLIE_Setable), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_IER_OVHIE_Getable), (20 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_IER_OVHIE_Setable), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_IER_OVLIE_Getable), (20 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_IER_OVLIE_Setable), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_ISR_CAPIF_Chk), (20 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_ISR_CAPIF_Clr), (6 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_ISR_CMPHIF_Chk), (20 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_ISR_CMPHIF_Clr), (6 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_ISR_CMPLIF_Chk), (20 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_ISR_CMPLIF_Clr), (6 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_ISR_EDGESTA_Chk), (20 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_ISR_OVHIF_Chk), (20 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_ISR_OVHIF_Clr), (6 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_ISR_OVLIF_Chk), (20 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_ISR_OVLIF_Clr), (6 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_LOADCR_LHEN_Getable), (20 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_LOADCR_LHEN_Setable), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_LOADCR_LLEN_Getable), (20 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_LOADCR_LLEN_Setable), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_LOADH_Read), (8 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_LOADH_Write), (6 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_LOADL_Read), (8 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_LOADL_Write), (6 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_OCR_OUTCLR_Get), (10 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_OCR_OUTCLR_Set), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_OCR_OUTINV_Get), (10 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_OCR_OUTINV_Set), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_OCR_OUTMOD_Get), (10 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_OCR_OUTMOD_Set), (24 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_OCR_OUTSEL_Get), (10 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_OCR_OUTSEL_Set), (18 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_OUTCNT_Read), (10 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_OUTCNT_Write), (8 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_PRESET_PRESETH_Get), (12 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_PRESET_PRESETH_Set), (26 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_PRESET_PRESETL_Get), (8 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_PRESET_PRESETL_Set), (16 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_PRES_Read), (8 bytes).
    Removing fm33a0xxev_bt.o(i.BTx_PRES_Write), (6 bytes).
    Removing fm33a0xxev_cdif.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_cdif.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_cdif.o(i.CDIF_CR_INTF_EN_Getable), (24 bytes).
    Removing fm33a0xxev_cdif.o(i.CDIF_CR_INTF_EN_Setable), (24 bytes).
    Removing fm33a0xxev_cdif.o(i.CDIF_Deinit), (2 bytes).
    Removing fm33a0xxev_cdif.o(i.CDIF_PSCR_Read), (16 bytes).
    Removing fm33a0xxev_cdif.o(i.CDIF_PSCR_Write), (16 bytes).
    Removing fm33a0xxev_cmu.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_cmu.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_Deinit), (2 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_GetClocksFreq), (288 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_IER_HFDET_IE_Getable), (24 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_IER_SYSCSE_IE_Getable), (24 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_IER_SYSCSE_IE_Setable), (36 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_ISR_HFDET_IF_Chk), (24 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_ISR_HFDET_IF_Clr), (12 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_ISR_SYSCSE_IF_Chk), (24 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_ISR_SYSCSE_IF_Clr), (12 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_EXTICKE_Getable), (24 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_EXTICKSEL_Get), (16 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_I2C0CKE_Getable), (28 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_I2C0CKE_Setable), (40 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_I2C0CKS_Get), (16 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_I2C0CKS_Set), (32 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_I2C1CKE_Getable), (28 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_I2C1CKE_Setable), (40 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_I2C1CKS_Get), (16 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_I2C1CKS_Set), (32 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_LPUART0CKE_Getable), (28 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_LPUART0CKE_Setable), (40 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_LPUART0CKS_Get), (16 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_LPUART0CKS_Set), (32 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_LPUART1CKE_Getable), (28 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_LPUART1CKE_Setable), (40 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_LPUART1CKS_Get), (16 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_LPUART1CKS_Set), (32 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_UART0CKE_Getable), (28 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_UART0CKE_Setable), (40 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_UART0CKS_Get), (16 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_UART0CKS_Set), (28 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_UART1CKE_Getable), (28 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_UART1CKE_Setable), (40 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_UART1CKS_Get), (16 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_UART1CKS_Set), (32 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR2_BSTCKE_Getable), (24 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR2_BSTCKE_Setable), (36 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR2_BSTCKS_Get), (16 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR2_BSTCKS_Set), (28 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR2_LPTCKE_Getable), (28 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR2_LPTCKE_Setable), (40 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR2_LPTCKS_Get), (16 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR2_LPTCKS_Set), (32 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR2_NVMCKE_Getable), (28 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR2_NVMCKE_Setable), (40 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR2_RNGCKE_Getable), (28 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR2_RNGCKE_Setable), (40 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR2_RNGPRSC_Get), (16 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR2_RNGPRSC_Set), (32 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_PLLHCR_EN_Getable), (24 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_PLLHCR_EN_Setable), (36 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_PLLHCR_INSEL_Get), (16 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_PLLHCR_INSEL_Set), (32 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_PLLHCR_LOCKED_Chk), (24 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_PLLHCR_OSEL_Get), (16 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_PLLHCR_OSEL_Set), (32 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_PLLHCR_PLLHDB_Get), (20 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_PLLHCR_PLLHDB_Set), (32 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_PLLHCR_REFPRSC_Get), (16 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_PLLHCR_REFPRSC_Set), (32 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_PLLLCR_LOCKED_Chk), (24 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_PLLLCR_PLLDB_Get), (20 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_PLLLCR_PLLDB_Set), (32 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_PLLLCR_PLLEN_Getable), (24 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_PLLLCR_PLLEN_Setable), (36 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_PLL_H_Init), (36 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_RCHFCR_FSEL_Get), (16 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_RCHFCR_RCHFEN_Getable), (24 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_RCHFTR_RCHFTRIM_Get), (12 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_AHBPRES_Get), (16 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_APBPRES_Get), (16 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_SLP_ENEXTI_Getable), (28 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_STCLKSEL_Get), (16 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_STCLKSEL_Set), (32 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_SYSCLKSEL_Get), (16 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_XTHFCR_XTHFEN_Getable), (24 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_XTHFCR_XTHF_CFG_Get), (16 bytes).
    Removing fm33a0xxev_comp.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_comp.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR1_CMP1EN_Getable), (24 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR1_CMP1EN_Setable), (36 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR1_CMP1OF_Chk), (28 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR1_CMP1OR_Chk), (28 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR1_DFEN_Getable), (28 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR1_DFEN_Setable), (40 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR1_DFLEN_Get), (16 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR1_DFLEN_Set), (32 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR1_POLAR_Get), (16 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR1_POLAR_Set), (32 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR1_V1NSEL_Get), (16 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR1_V1NSEL_Set), (32 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR1_V1PSEL_Get), (16 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR1_V1PSEL_Set), (32 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR1_WINMODE_Getable), (28 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR1_WINMODE_Setable), (40 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR2_CMP2EN_Getable), (24 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR2_CMP2EN_Setable), (36 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR2_CMP2OF_Chk), (28 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR2_CMP2OR_Chk), (28 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR2_DFEN_Getable), (28 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR2_DFEN_Setable), (40 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR2_DFLEN_Get), (16 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR2_DFLEN_Set), (32 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR2_POLAR_Get), (16 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR2_POLAR_Set), (32 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR2_V2NSEL_Get), (16 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR2_V2NSEL_Set), (32 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR2_V2PSEL_Get), (16 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR2_V2PSEL_Set), (32 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR2_WINMODE_Getable), (28 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_CR2_WINMODE_Setable), (40 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_Deinit), (2 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_ICR_BUFBYP_Getable), (24 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_ICR_BUFBYP_Setable), (36 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_ICR_BUF_OFF_Getable), (24 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_ICR_BUF_OFF_Setable), (36 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_ICR_CMP1IE_Getable), (24 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_ICR_CMP1IE_Setable), (36 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_ICR_CMP1SEL_Get), (16 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_ICR_CMP1SEL_Set), (32 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_ICR_CMP2IE_Getable), (24 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_ICR_CMP2IE_Setable), (36 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_ICR_CMP2SEL_Get), (16 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_ICR_CMP2SEL_Set), (32 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_ICR_OOW_IE_Getable), (28 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_ICR_OOW_IE_Setable), (40 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_ICR_WIN_IE_Getable), (28 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_ICR_WIN_IE_Setable), (40 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_ISR_CMP1IF_Chk), (24 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_ISR_CMP1IF_Clr), (12 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_ISR_CMP2IF_Chk), (24 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_ISR_CMP2IF_Clr), (12 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_ISR_OOW_IF_Chk), (24 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_ISR_OOW_IF_Clr), (12 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_ISR_WIN_IF_Chk), (24 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_ISR_WIN_IF_Clr), (12 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_PCR_HSCMP1_EN_Get), (16 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_PCR_HSCMP1_EN_Set), (28 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_PCR_HSCMP2_EN_Get), (16 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_PCR_HSCMP2_EN_Set), (32 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_PCR_HSCMPBUF_EN_Get), (16 bytes).
    Removing fm33a0xxev_comp.o(i.COMP_PCR_HSCMPBUF_EN_Set), (32 bytes).
    Removing fm33a0xxev_crc.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_crc.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_crc.o(i.CRC_CR_BUSY_Chk), (24 bytes).
    Removing fm33a0xxev_crc.o(i.CRC_CR_OPWD_Get), (16 bytes).
    Removing fm33a0xxev_crc.o(i.CRC_CR_OPWD_Set), (32 bytes).
    Removing fm33a0xxev_crc.o(i.CRC_CR_PARA_Get), (16 bytes).
    Removing fm33a0xxev_crc.o(i.CRC_CR_PARA_Set), (32 bytes).
    Removing fm33a0xxev_crc.o(i.CRC_CR_RES_Chk), (24 bytes).
    Removing fm33a0xxev_crc.o(i.CRC_CR_RFLTIN_Get), (16 bytes).
    Removing fm33a0xxev_crc.o(i.CRC_CR_RFLTIN_Set), (32 bytes).
    Removing fm33a0xxev_crc.o(i.CRC_CR_RFLTO_Get), (16 bytes).
    Removing fm33a0xxev_crc.o(i.CRC_CR_RFLTO_Set), (32 bytes).
    Removing fm33a0xxev_crc.o(i.CRC_CR_SEL_Get), (16 bytes).
    Removing fm33a0xxev_crc.o(i.CRC_CR_SEL_Set), (28 bytes).
    Removing fm33a0xxev_crc.o(i.CRC_CR_XOR_Getable), (24 bytes).
    Removing fm33a0xxev_crc.o(i.CRC_CR_XOR_Setable), (36 bytes).
    Removing fm33a0xxev_crc.o(i.CRC_DR_Read), (12 bytes).
    Removing fm33a0xxev_crc.o(i.CRC_DR_Write), (12 bytes).
    Removing fm33a0xxev_crc.o(i.CRC_Deinit), (2 bytes).
    Removing fm33a0xxev_crc.o(i.CRC_Init), (60 bytes).
    Removing fm33a0xxev_crc.o(i.CRC_LFSR_Read), (12 bytes).
    Removing fm33a0xxev_crc.o(i.CRC_LFSR_Write), (12 bytes).
    Removing fm33a0xxev_crc.o(i.CRC_POLY_Read), (12 bytes).
    Removing fm33a0xxev_crc.o(i.CRC_POLY_Write), (12 bytes).
    Removing fm33a0xxev_crc.o(i.CRC_XOR_Read), (12 bytes).
    Removing fm33a0xxev_crc.o(i.CRC_XOR_Write), (12 bytes).
    Removing fm33a0xxev_dbg.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_dbg.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_CR_DBG_BST_STOP_Getable), (24 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_CR_DBG_BST_STOP_Setable), (36 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_CR_DBG_BT1_STOP_Getable), (24 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_CR_DBG_BT1_STOP_Setable), (36 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_CR_DBG_BT2_STOP_Getable), (24 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_CR_DBG_BT2_STOP_Setable), (36 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_CR_DBG_ET1_STOP_Getable), (24 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_CR_DBG_ET1_STOP_Setable), (36 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_CR_DBG_ET2_STOP_Getable), (24 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_CR_DBG_ET2_STOP_Setable), (36 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_CR_DBG_ET3_STOP_Getable), (24 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_CR_DBG_ET3_STOP_Setable), (36 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_CR_DBG_ET4_STOP_Getable), (24 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_CR_DBG_ET4_STOP_Setable), (36 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_CR_DBG_IWDT_STOP_Getable), (22 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_CR_DBG_IWDT_STOP_Setable), (36 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_CR_DBG_LPT_STOP_Getable), (24 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_CR_DBG_LPT_STOP_Setable), (36 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_CR_DBG_WWDT_STOP_Getable), (22 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_CR_DBG_WWDT_STOP_Setable), (34 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_Deinit), (2 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_HDFR_BKPT_FLAG_Chk), (22 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_HDFR_BKPT_FLAG_Clr), (8 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_HDFR_DABORT_ADDR_FLAG_Chk), (22 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_HDFR_DABORT_ADDR_FLAG_Clr), (8 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_HDFR_DABORT_RESP_FLAG_Chk), (22 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_HDFR_DABORT_RESP_FLAG_Clr), (8 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_HDFR_HDF_REQUEST_FLAG_Chk), (22 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_HDFR_HDF_REQUEST_FLAG_Clr), (8 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_HDFR_SPECIAL_OP_FLAG_Chk), (22 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_HDFR_SPECIAL_OP_FLAG_Clr), (8 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_HDFR_SVCUNDEF_FLAG_Chk), (22 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_HDFR_SVCUNDEF_FLAG_Clr), (8 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_HDFR_TBIT_FLAG_Chk), (22 bytes).
    Removing fm33a0xxev_dbg.o(i.DBG_HDFR_TBIT_FLAG_Clr), (8 bytes).
    Removing fm33a0xxev_dma.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_dma.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CH11CR_CH11DIR_Get), (16 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CH11CR_CH11DIR_Set), (32 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CH11CR_CH11EN_Getable), (24 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CH11CR_CH11EN_Setable), (36 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CH11CR_CH11FI_Get), (16 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CH11CR_CH11FI_Set), (32 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CH11CR_CH11FTIE_Getable), (24 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CH11CR_CH11FTIE_Setable), (36 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CH11CR_CH11HTIE_Getable), (24 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CH11CR_CH11HTIE_Setable), (36 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CH11CR_CH11PRI_Get), (16 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CH11CR_CH11PRI_Set), (32 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CH11CR_CH11RI_Get), (16 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CH11CR_CH11RI_Set), (32 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CH11CR_CH11TSIZE_Get), (20 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CH11CR_CH11TSIZE_Set), (32 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CH11FAR_Read), (16 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CH11FAR_Write), (16 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CH11RAR_Read), (16 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CH11RAR_Write), (16 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCR_BDW_Get), (20 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCR_BDW_Set), (36 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCR_CHxFTIE_Setable), (40 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCR_CHxHTIE_Getable), (32 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCR_CHxHTIE_Setable), (40 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCR_CHxINC_Get), (20 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCR_CHxINC_Set), (36 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCR_CHxPRI_Get), (24 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCR_CHxPRI_Set), (36 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCR_CHxSSEL_Get), (24 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCR_CHxSSEL_Set), (36 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCR_CHxTSIZE_Get), (28 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCR_CHxTSIZE_Set), (36 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCR_CIRC_Getable), (32 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCR_CIRC_Setable), (40 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCR_CIRC_UPD_Getable), (32 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCR_CIRC_UPD_Setable), (40 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCR_ChxEN_Getable), (32 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCR_ChxEN_Setable), (40 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCR_DIR_Get), (20 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCR_DIR_Set), (36 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCSR_CHxINC_SDW_Get), (20 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCSR_CHxINC_SDW_Set), (36 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCSR_CHxTSIZE_SDW_Get), (28 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxCSR_CHxTSIZE_SDW_Set), (36 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxMAR_Read), (16 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxMAR_Write), (16 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxMASR_Read), (16 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_CHxMASR_Write), (16 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_DeInit), (32 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_GCR_DMAEN_Getable), (24 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_GCR_DMAEN_Setable), (36 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_GCR_DMA_ADDRERR_EN_Getable), (24 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_GCR_DMA_ADDRERR_EN_Setable), (36 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_ISR_DMACHHT_Chk), (28 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_ISR_DMACHHT_Clr), (16 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_ISR_DMA_ADDRERR_Chk), (28 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_ISR_DMA_ADDRERR_Clr), (16 bytes).
    Removing fm33a0xxev_dma.o(i.DMA_Init), (180 bytes).
    Removing fm33a0xxev_et.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_et.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_et.o(i.ETxCNT_CNTx_Read), (92 bytes).
    Removing fm33a0xxev_et.o(i.ETx_CMPR_Read), (8 bytes).
    Removing fm33a0xxev_et.o(i.ETx_CMPR_Write), (6 bytes).
    Removing fm33a0xxev_et.o(i.ETx_CR_CAPCLR_Getable), (20 bytes).
    Removing fm33a0xxev_et.o(i.ETx_CR_CAPCLR_Setable), (24 bytes).
    Removing fm33a0xxev_et.o(i.ETx_CR_CAPEDGE_Get), (10 bytes).
    Removing fm33a0xxev_et.o(i.ETx_CR_CAPEDGE_Set), (18 bytes).
    Removing fm33a0xxev_et.o(i.ETx_CR_CAPMOD_Get), (10 bytes).
    Removing fm33a0xxev_et.o(i.ETx_CR_CAPMOD_Set), (24 bytes).
    Removing fm33a0xxev_et.o(i.ETx_CR_CAPONCE_Get), (10 bytes).
    Removing fm33a0xxev_et.o(i.ETx_CR_CAPONCE_Set), (24 bytes).
    Removing fm33a0xxev_et.o(i.ETx_CR_CASEN_Get), (10 bytes).
    Removing fm33a0xxev_et.o(i.ETx_CR_CASEN_Set), (24 bytes).
    Removing fm33a0xxev_et.o(i.ETx_CR_CEN_Getable), (20 bytes).
    Removing fm33a0xxev_et.o(i.ETx_CR_CEN_Setable), (24 bytes).
    Removing fm33a0xxev_et.o(i.ETx_CR_EDGESEL_Get), (10 bytes).
    Removing fm33a0xxev_et.o(i.ETx_CR_EDGESEL_Set), (24 bytes).
    Removing fm33a0xxev_et.o(i.ETx_CR_EXFLT_Get), (12 bytes).
    Removing fm33a0xxev_et.o(i.ETx_CR_EXFLT_Set), (26 bytes).
    Removing fm33a0xxev_et.o(i.ETx_CR_MOD_Get), (10 bytes).
    Removing fm33a0xxev_et.o(i.ETx_CR_MOD_Set), (24 bytes).
    Removing fm33a0xxev_et.o(i.ETx_CR_OPOL_Get), (12 bytes).
    Removing fm33a0xxev_et.o(i.ETx_CR_OPOL_Set), (26 bytes).
    Removing fm33a0xxev_et.o(i.ETx_CR_PWM_Getable), (22 bytes).
    Removing fm33a0xxev_et.o(i.ETx_CR_PWM_Setable), (26 bytes).
    Removing fm33a0xxev_et.o(i.ETx_Deinit), (20 bytes).
    Removing fm33a0xxev_et.o(i.ETx_IER_CAPIE_Getable), (20 bytes).
    Removing fm33a0xxev_et.o(i.ETx_IER_CAPIE_Setable), (24 bytes).
    Removing fm33a0xxev_et.o(i.ETx_IER_CMPIE_Getable), (20 bytes).
    Removing fm33a0xxev_et.o(i.ETx_IER_CMPIE_Setable), (24 bytes).
    Removing fm33a0xxev_et.o(i.ETx_IER_OVIE_Getable), (20 bytes).
    Removing fm33a0xxev_et.o(i.ETx_IER_OVIE_Setable), (24 bytes).
    Removing fm33a0xxev_et.o(i.ETx_INSR_GRP1SEL_Get), (10 bytes).
    Removing fm33a0xxev_et.o(i.ETx_INSR_GRP1SEL_Set), (18 bytes).
    Removing fm33a0xxev_et.o(i.ETx_INSR_GRP2SEL_Get), (10 bytes).
    Removing fm33a0xxev_et.o(i.ETx_INSR_GRP2SEL_Set), (24 bytes).
    Removing fm33a0xxev_et.o(i.ETx_INSR_SIG1SEL_Get), (10 bytes).
    Removing fm33a0xxev_et.o(i.ETx_INSR_SIG1SEL_Set), (24 bytes).
    Removing fm33a0xxev_et.o(i.ETx_INSR_SIG2SEL_Get), (10 bytes).
    Removing fm33a0xxev_et.o(i.ETx_INSR_SIG2SEL_Set), (24 bytes).
    Removing fm33a0xxev_et.o(i.ETx_ISR_CAPIF_Chk), (20 bytes).
    Removing fm33a0xxev_et.o(i.ETx_ISR_CAPIF_Clr), (6 bytes).
    Removing fm33a0xxev_et.o(i.ETx_ISR_CMPIF_Chk), (20 bytes).
    Removing fm33a0xxev_et.o(i.ETx_ISR_CMPIF_Clr), (6 bytes).
    Removing fm33a0xxev_et.o(i.ETx_ISR_EDGESTA_Chk), (20 bytes).
    Removing fm33a0xxev_et.o(i.ETx_ISR_OVIF_Chk), (20 bytes).
    Removing fm33a0xxev_et.o(i.ETx_ISR_OVIF_Clr), (6 bytes).
    Removing fm33a0xxev_et.o(i.ETx_IVR_Read), (8 bytes).
    Removing fm33a0xxev_et.o(i.ETx_IVR_Write), (6 bytes).
    Removing fm33a0xxev_et.o(i.ETx_PSCR1_Read), (8 bytes).
    Removing fm33a0xxev_et.o(i.ETx_PSCR1_Write), (6 bytes).
    Removing fm33a0xxev_et.o(i.ETx_PSCR2_Read), (8 bytes).
    Removing fm33a0xxev_et.o(i.ETx_PSCR2_Write), (6 bytes).
    Removing fm33a0xxev_flash.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_flash.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_Deinit), (2 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_EPCR_EREQ_Get), (16 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_EPCR_EREQ_Set), (28 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_EPCR_ERTYPE_Get), (16 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_EPCR_ERTYPE_Set), (32 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_EPCR_PREQ_Get), (16 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_EPCR_PREQ_Set), (32 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_IER_AUTHIE_Getable), (28 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_IER_AUTHIE_Setable), (40 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_IER_CKIE_Getable), (28 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_IER_CKIE_Setable), (40 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_IER_ERDIE_Getable), (24 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_IER_ERDIE_Setable), (36 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_IER_KEYIE_Getable), (28 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_IER_KEYIE_Setable), (40 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_IER_OTPIE_Getable), (28 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_IER_OTPIE_Setable), (40 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_IER_PRDIE_Getable), (24 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_IER_PRDIE_Setable), (36 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_ISR_AUTHERR_Chk), (28 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_ISR_AUTHERR_Clr), (16 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_ISR_BTSF_Get), (16 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_ISR_CKERR_Chk), (28 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_ISR_CKERR_Clr), (16 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_ISR_ERD_Chk), (24 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_ISR_ERD_Clr), (12 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_ISR_KEYERR_Chk), (28 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_ISR_KEYERR_Clr), (16 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_ISR_KEYSTA_Get), (16 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_ISR_OTPERR_Chk), (28 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_ISR_OTPERR_Clr), (16 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_ISR_PRD_Chk), (24 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_ISR_PRD_Clr), (12 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_KEY_Write), (12 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_OPTBR_ACLOCKEN_Getable), (24 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_OPTBR_BTSEN_Getable), (32 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_OPTBR_DBGCFGEN_Chk), (24 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_OPTBR_DBRDPEN_Getable), (16 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_OPTBR_DFLSEN_Getable), (28 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_OPTBR_IF1LOCK_Chk), (28 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_OPTBR_IF2LOCK_Chk), (28 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_OPTBR_Read), (12 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_PFCR_PRFTEN_Getable), (24 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_PFCR_PRFTEN_Setable), (36 bytes).
    Removing fm33a0xxev_flash.o(i.FLS_RDCR_WAIT_Get), (16 bytes).
    Removing fm33a0xxev_gpio.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_gpio.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIOH_DO_Write), (16 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIOH_Get_InitPara), (140 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIOH_Init), (112 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIOH_ReadInputData), (16 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIOH_ReadInputDataBit), (28 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIOH_ReadOutputData), (16 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIOH_ReadOutputDataBit), (28 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIOH_ResetBits), (16 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIOH_SetBits), (16 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIOH_ToggleBits), (40 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_EXTI_Close), (18 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_EXTI_EXTIDI_Getable), (248 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_FOUTSEL_FOUT0SEL_Get), (16 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_FOUTSEL_FOUT0SEL_Set), (28 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_FOUTSEL_FOUT1SEL_Get), (16 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_FOUTSEL_FOUT1SEL_Set), (32 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_IOMCR_Getable), (24 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_IOMCR_IOMUXSEL_Get), (16 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_IOMCR_IOMUXSEL_Set), (32 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_IOMCR_Setable), (36 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_PINWKEN_GetableEx), (28 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_PINWKEN_SetableEx), (40 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_PINWKEN_WKISEL_Get), (16 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_PINWKEN_WKISEL_Set), (28 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_PINWKSEL_GetEx), (36 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_PINWKSEL_SetEx), (48 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_ReadInputData), (6 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_ReadOutputData), (6 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_ReadOutputDataBit), (20 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_ToggleBits), (16 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIOx_ANEN_Getable), (18 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIOx_ANEN_Setable), (28 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIOx_DFS_Getable), (18 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIOx_DFS_Setable), (28 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIOx_DIN_Read), (8 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIOx_DO_Read), (8 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIOx_DO_Write), (6 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIOx_DRST_Write), (6 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIOx_DSET_Write), (6 bytes).
    Removing fm33a0xxev_hash.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_hash.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_hash.o(i.HASH_CSR_HASHSEL_Get), (16 bytes).
    Removing fm33a0xxev_hash.o(i.HASH_CSR_HASHSEL_Set), (32 bytes).
    Removing fm33a0xxev_hash.o(i.HASH_CSR_START_Getable), (24 bytes).
    Removing fm33a0xxev_hash.o(i.HASH_CSR_START_Setable), (36 bytes).
    Removing fm33a0xxev_hash.o(i.HASH_DTR_DATA_TYPE_Get), (16 bytes).
    Removing fm33a0xxev_hash.o(i.HASH_DTR_DATA_TYPE_Set), (28 bytes).
    Removing fm33a0xxev_hash.o(i.HASH_Deinit), (2 bytes).
    Removing fm33a0xxev_i2c.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_i2c.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_i2c.o(i.I2C_BaudREG_Calc), (26 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_BRG_MSPBRGH_Get), (16 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_BRG_MSPBRGH_Set), (24 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_BRG_MSPBRGL_Get), (10 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_BRG_MSPBRGL_Set), (18 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_BUF_Read), (8 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_BUF_Write), (6 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_CFGR_AUTOEND_Get), (12 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_CFGR_AUTOEND_Set), (26 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_CFGR_MSPEN_Getable), (20 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_CFGR_MSPEN_Setable), (24 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_CFGR_MSP_DMAEN_Getable), (22 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_CFGR_MSP_DMAEN_Setable), (26 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_CFGR_TOEN_Getable), (20 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_CFGR_TOEN_Setable), (24 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_CR_PEN_Getable), (20 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_CR_PEN_Setable), (24 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_CR_RCEN_Getable), (20 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_CR_RCEN_Setable), (24 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_CR_RSEN_Getable), (20 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_CR_RSEN_Setable), (24 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_CR_SEN_Getable), (20 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_CR_SEN_Setable), (24 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_Deinit), (68 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_IER_NACKE_Getable), (20 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_IER_NACKE_Setable), (24 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_IER_PE_Getable), (20 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_IER_PE_Setable), (24 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_IER_RXIE_Getable), (20 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_IER_RXIE_Setable), (24 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_IER_SE_Getable), (20 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_IER_SE_Setable), (24 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_IER_TOE_Getable), (20 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_IER_TOE_Setable), (24 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_IER_TXIE_Getable), (20 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_IER_TXIE_Setable), (24 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_IER_WCOLE_Getable), (20 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_IER_WCOLE_Setable), (24 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_ISR_ACKSTA_Chk), (20 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_ISR_ACKSTA_Clr), (6 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_ISR_OVT_Chk), (20 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_ISR_OVT_Clr), (6 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_ISR_P_Chk), (20 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_ISR_RXIF_Chk), (20 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_ISR_RXIF_Clr), (6 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_ISR_S_Chk), (20 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_ISR_TXIF_Chk), (20 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_ISR_TXIF_Clr), (6 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_ISR_WCOL_Chk), (20 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_ISR_WCOL_Clr), (6 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_SR_ACKMO_Get), (10 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_SR_ACKMO_Set), (18 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_SR_BF_Chk), (20 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_SR_BUSY_Chk), (20 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_SR_RW_Chk), (20 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_TIMING_Read), (10 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_TIMING_Write), (8 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_TO_Read), (10 bytes).
    Removing fm33a0xxev_i2c.o(i.I2Cx_TO_Write), (8 bytes).
    Removing fm33a0xxev_iwdt.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_iwdt.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_iwdt.o(i.IWDT_CFGR_Read), (16 bytes).
    Removing fm33a0xxev_iwdt.o(i.IWDT_CFGR_Write), (16 bytes).
    Removing fm33a0xxev_iwdt.o(i.IWDT_CNTR_IWDTCNT_Get), (16 bytes).
    Removing fm33a0xxev_iwdt.o(i.IWDT_Deinit), (2 bytes).
    Removing fm33a0xxev_iwdt.o(i.IWDT_SERV_IWDTSERV_Set), (16 bytes).
    Removing fm33a0xxev_lcd.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_lcd.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_BSTCR_BOOST_EN_Getable), (24 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_BSTCR_BOOST_EN_Setable), (36 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_BSTCR_BOOST_TEN_Getable), (24 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_BSTCR_BOOST_TEN_Setable), (36 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_BSTCR_BUFBYP_Getable), (28 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_BSTCR_BUFBYP_Setable), (40 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_BSTCR_BUF_OFF_Getable), (28 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_BSTCR_BUF_OFF_Setable), (40 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_BSTCR_OSC_CFG_Get), (16 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_BSTCR_OSC_CFG_Set), (32 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_BSTCR_VLCDCFG_Get), (16 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_BSTCR_VLCDCFG_Set), (32 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_BSTCR_VLCDPD_Getable), (24 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_BSTCR_VLCDPD_Setable), (36 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_COM_EN_Read), (16 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_COM_EN_Write), (16 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_CR_ANTIPOLAR_Get), (16 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_CR_ANTIPOLAR_Set), (32 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_CR_BIASMD_Get), (16 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_CR_BIASMD_Set), (32 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_CR_BIAS_Get), (20 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_CR_BIAS_Set), (32 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_CR_ENMODE_Get), (16 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_CR_ENMODE_Set), (32 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_CR_EN_Getable), (24 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_CR_EN_Setable), (36 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_CR_FLICK_Getable), (28 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_CR_FLICK_Setable), (40 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_CR_IC_CTRL_Get), (16 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_CR_IC_CTRL_Set), (32 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_CR_LMUX_Get), (16 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_CR_LMUX_Set), (32 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_CR_SCSEL_Get), (16 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_CR_SCSEL_Set), (32 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_CR_SC_CTRL_Get), (16 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_CR_SC_CTRL_Set), (32 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_CR_WFT_Get), (16 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_CR_WFT_Set), (32 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_DISPDATAx_Refresh), (52 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_Deinit), (2 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_FCR_Read), (12 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_FCR_Write), (12 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_FLKT_TOFF_Get), (16 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_FLKT_TOFF_Set), (32 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_FLKT_TON_Get), (12 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_FLKT_TON_Set), (24 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_IER_DOFFIE_Getable), (24 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_IER_DOFFIE_Setable), (36 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_IER_DONIE_Getable), (24 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_IER_DONIE_Setable), (36 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_ISR_DOFFIF_Chk), (24 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_ISR_DOFFIF_Clr), (12 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_ISR_DONIF_Chk), (24 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_ISR_DONIF_Clr), (12 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_SEG_EN0_Read), (12 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_SEG_EN0_Write), (12 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_SEG_EN1_Read), (16 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_SEG_EN1_Write), (16 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_TEST_LCCTRL_Get), (16 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_TEST_LCCTRL_Set), (32 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_TEST_TESTEN_Getable), (24 bytes).
    Removing fm33a0xxev_lcd.o(i.LCD_TEST_TESTEN_Setable), (36 bytes).
    Removing fm33a0xxev_lptim.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_lptim.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_ARR_Read), (12 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_ARR_Write), (12 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCR1_Read), (12 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCR1_Write), (12 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCR2_Read), (12 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCR2_Write), (12 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCR3_Read), (12 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCR3_Write), (12 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCR4_Read), (12 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCR4_Write), (12 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CAP1EDGE_Get), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CAP1EDGE_Set), (32 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CAP1SSEL_Get), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CAP1SSEL_Set), (32 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CAP2EDGE_Get), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CAP2EDGE_Set), (32 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CAP3EDGE_Get), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CAP3EDGE_Set), (32 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CAP4EDGE_Get), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CAP4EDGE_Set), (32 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CAPCFG1_Get), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CAPCFG1_Set), (32 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CAPCFG2_Get), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CAPCFG2_Set), (32 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CAPCFG3_Get), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CAPCFG3_Set), (32 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CAPCFG4_Get), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CAPCFG4_Set), (32 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CC1S_Get), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CC1S_Set), (28 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CC2S_Get), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CC2S_Set), (32 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CC3S_Get), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CC3S_Set), (32 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CC4S_Get), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_CC4S_Set), (32 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_POLAR1_Get), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_POLAR1_Set), (32 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_POLAR2_Get), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_POLAR2_Set), (32 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_POLAR3_Get), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_POLAR3_Set), (32 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_POLAR4_Get), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CCSR_POLAR4_Set), (32 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CFGR_DIVSEL_Get), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CFGR_DIVSEL_Set), (32 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CFGR_EDGESEL_Get), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CFGR_EDGESEL_Set), (32 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CFGR_ETR_AFEN_Getable), (28 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CFGR_ETR_AFEN_Setable), (40 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CFGR_ONST_Get), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CFGR_ONST_Set), (32 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CFGR_PSCSEL_Get), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CFGR_PSCSEL_Set), (32 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CFGR_TMODE_Get), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CFGR_TMODE_Set), (28 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CFGR_TRIGCFG_Get), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CFGR_TRIGCFG_Set), (32 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CNTR_Read), (12 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_CR_EN_Setable), (36 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_Deinit), (2 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_IER_CC1IE_Getable), (24 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_IER_CC1IE_Setable), (36 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_IER_CC2IE_Getable), (24 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_IER_CC2IE_Setable), (36 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_IER_CC3IE_Getable), (24 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_IER_CC3IE_Setable), (36 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_IER_CC4IE_Getable), (24 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_IER_CC4IE_Setable), (36 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_IER_OVIE_Getable), (24 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_IER_OVIE_Setable), (36 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_IER_OVR1IE_Getable), (28 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_IER_OVR1IE_Setable), (40 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_IER_OVR2IE_Getable), (28 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_IER_OVR2IE_Setable), (40 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_IER_OVR3IE_Getable), (28 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_IER_OVR3IE_Setable), (40 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_IER_OVR4IE_Getable), (28 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_IER_OVR4IE_Setable), (40 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_IER_TRIGIE_Getable), (24 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_IER_TRIGIE_Setable), (36 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_ISR_CAP1OVR_Chk), (28 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_ISR_CAP1OVR_Clr), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_ISR_CAP2OVR_Chk), (28 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_ISR_CAP2OVR_Clr), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_ISR_CAP3OVR_Chk), (28 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_ISR_CAP3OVR_Clr), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_ISR_CAP4OVR_Chk), (28 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_ISR_CAP4OVR_Clr), (16 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_ISR_CC1IF_Chk), (24 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_ISR_CC1IF_Clr), (12 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_ISR_CC2IF_Chk), (24 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_ISR_CC2IF_Clr), (12 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_ISR_CC3IF_Chk), (24 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_ISR_CC3IF_Clr), (12 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_ISR_CC4IF_Chk), (24 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_ISR_CC4IF_Clr), (12 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_ISR_TRIGIF_Chk), (24 bytes).
    Removing fm33a0xxev_lptim.o(i.LPTIM_ISR_TRIGIF_Clr), (12 bytes).
    Removing fm33a0xxev_lpuart.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_lpuart.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_BMR_BAUD_Get), (10 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_BMR_BAUD_Set), (18 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_BMR_MCTL_Get), (16 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_BMR_MCTL_Set), (24 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_BITORD_Get), (12 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_BITORD_Set), (26 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_BUSY_Chk), (22 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_DMATXIFCFG_Getable), (22 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_DMATXIFCFG_Setable), (26 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_IOSWAP_Get), (12 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_IOSWAP_Set), (26 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_PARITY_Get), (10 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_PARITY_Set), (24 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_PDSEL_Get), (10 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_PDSEL_Set), (24 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_RXEN_Getable), (20 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_RXEN_Setable), (24 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_RXEV_Get), (12 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_RXEV_Set), (26 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_RXPOL_Get), (10 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_RXPOL_Set), (24 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_STOPCFG_Get), (12 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_STOPCFG_Set), (26 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_TXEN_Getable), (20 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_TXEN_Setable), (24 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_TXPOL_Get), (10 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_TXPOL_Set), (24 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_WKBYTECFG_Chk), (22 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_CSR_WKBYTECFG_Setable), (26 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_DMR_Read), (10 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_DMR_Write), (8 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_Deinit), (2 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_IER_RXBF_IE_Getable), (22 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_IER_RXBF_IE_Setable), (26 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_IER_RXERR_IE_Getable), (22 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_IER_RXERR_IE_Setable), (26 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_IER_RXEV_IE_Getable), (22 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_IER_RXEV_IE_Setable), (26 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_IER_TXBE_IE_Getable), (20 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_IER_TXBE_IE_Setable), (24 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_IER_TXSE_IE_Getable), (20 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_IER_TXSE_IE_Setable), (24 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_ISR_FERR_Chk), (22 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_ISR_FERR_Clr), (8 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_ISR_OERR_Chk), (22 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_ISR_OERR_Clr), (8 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_ISR_PERR_Chk), (22 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_ISR_PERR_Clr), (8 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_ISR_RXBF_Chk), (22 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_ISR_RXBF_Clr), (8 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_ISR_RXEVF_Chk), (22 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_ISR_RXEVF_Clr), (8 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_ISR_TXBE_Chk), (20 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_ISR_TXOV_Chk), (22 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_ISR_TXOV_Clr), (8 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_ISR_TXSE_Chk), (20 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_ISR_TXSE_Clr), (6 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_RXBUF_Read), (10 bytes).
    Removing fm33a0xxev_lpuart.o(i.LPUARTx_TXBUF_Write), (8 bytes).
    Removing fm33a0xxev_pae.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_pae.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_CSR_BUSY_Chk), (24 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_CSR_DATA_TYPE_Get), (16 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_CSR_DATA_TYPE_Set), (32 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_CSR_PAEIE_Getable), (24 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_CSR_PAEIE_Setable), (36 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_CSR_PAEIF_Chk), (24 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_CSR_PAEIF_Clr), (12 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_CSR_RUN_MODE_Get), (16 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_CSR_RUN_MODE_Set), (32 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_CSR_SOFT_RST_Setable), (36 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_CSR_START_Setable), (36 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_Deinit), (2 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_M0CFG_BLKCFG_Get), (16 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_M0CFG_BLKCFG_Set), (32 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_M0CFG_INS_M0_Get), (16 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_M0CFG_INS_M0_Set), (32 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_M0CFG_OP1_BLK_Get), (16 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_M0CFG_OP1_BLK_Set), (32 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_M0CFG_OP2_BLK_Get), (16 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_M0CFG_OP2_BLK_Set), (28 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_M0CFG_RES_BLK_Get), (16 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_M0CFG_RES_BLK_Set), (32 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_M1CFG_AEN3_M1_Get), (16 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_M1CFG_AEN3_M1_Set), (32 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_M1CFG_BIT_VALUE_M1_Get), (16 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_M1CFG_BIT_VALUE_M1_Set), (28 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_M1CFG_INS_M1_Get), (16 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_M1CFG_INS_M1_Set), (32 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_M2CFG_ALWAYS_MULT_Get), (16 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_M2CFG_ALWAYS_MULT_Set), (32 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_M2CFG_FBO_M2_Get), (16 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_M2CFG_FBO_M2_Set), (28 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_M3CFG_AEN3_M3_Get), (16 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_M3CFG_AEN3_M3_Set), (32 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_M3CFG_FBO_M3_Get), (16 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_M3CFG_FBO_M3_Set), (28 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_MLR_Read), (16 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_MLR_Write), (16 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_MPR_Write), (12 bytes).
    Removing fm33a0xxev_pae.o(i.PAE_WORD_Write), (12 bytes).
    Removing fm33a0xxev_pmu.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_pmu.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_CR_CVS_Get), (16 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_CR_CVS_Set), (32 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_CR_LDO15EN_B_Chk), (28 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_CR_LDO15EN_Chk), (28 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_CR_PMOD_Get), (16 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_CR_PMOD_Set), (28 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_CR_SLPDP_Get), (16 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_CR_SLPDP_Set), (32 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_CR_WKFSEL_Get), (16 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_CR_WKFSEL_Set), (32 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_Deinit), (2 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_IER_RTCEIE_Getable), (24 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_IER_RTCEIE_Setable), (36 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_IER_SLPEIE_Getable), (24 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_IER_SLPEIE_Setable), (36 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_ISR_RTCEIF_Chk), (24 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_ISR_RTCEIF_Clr), (12 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_ISR_SLPEIF_Chk), (24 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_ISR_SLPEIF_Clr), (12 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_SleepCfg_Init), (52 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_WKFR_ADCWKF_Chk), (24 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_WKFR_BSTWKF_Chk), (28 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_WKFR_COMP1WKF_Chk), (28 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_WKFR_COMP2WKF_Chk), (28 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_WKFR_COMP_OOWF_Chk), (28 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_WKFR_COMP_WINF_Chk), (28 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_WKFR_DBGWKF_Chk), (28 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_WKFR_DBGWKF_Clr), (16 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_WKFR_IOWKF_Chk), (28 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_WKFR_LFDETWKF_Chk), (28 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_WKFR_LPTWKF_Chk), (28 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_WKFR_LPU0WKF_Chk), (28 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_WKFR_LPU1WKF_Chk), (28 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_WKFR_RTCWKF_Chk), (28 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_WKFR_SVDWKF_Chk), (28 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_WKFR_WKPxF_Chk), (24 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_WKFR_WKPxF_Clr), (12 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_WKTR_STPCLR_Get), (16 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_WKTR_STPCLR_Set), (32 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_WKTR_T1A_Get), (16 bytes).
    Removing fm33a0xxev_pmu.o(i.PMU_WKTR_T1A_Set), (28 bytes).
    Removing fm33a0xxev_qspi.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_qspi.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_ABR_Read), (12 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_ABR_Write), (12 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_ADDR_Read), (12 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_ADDR_Write), (12 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CCR_Read), (12 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CCR_Write), (12 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CFG_CKMODE_Get), (16 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CFG_CKMODE_Set), (28 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CFG_CSHT_Get), (16 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CFG_CSHT_Set), (32 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_ABORT_Getable), (24 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_ABORT_Setable), (36 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_DMAEN_Getable), (24 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_DMAEN_Setable), (36 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_EN_Getable), (24 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_EN_Setable), (36 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_FIFOTHR_Get), (16 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_FIFOTHR_Set), (32 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_FTIE_Getable), (28 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_FTIE_Setable), (40 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_PMM_Get), (16 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_PMM_Set), (32 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_PRESCALER_Get), (16 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_PRESCALER_Set), (28 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_SMIE_Getable), (28 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_SMIE_Setable), (40 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_SSHFT_Getable), (24 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_SSHFT_Setable), (36 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_TCEN_Getable), (24 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_TCEN_Setable), (36 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_TCIE_Getable), (28 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_TCIE_Setable), (40 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_TEIE_Getable), (28 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_TEIE_Setable), (40 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_TOIE_Getable), (28 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_CR_TOIE_Setable), (40 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_DATALEN_Read), (12 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_DATALEN_Write), (12 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_DR_ReadByte), (12 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_DR_ReadHalfword), (12 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_DR_ReadWord), (12 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_DR_WriteByte), (12 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_DR_WriteHalfword), (12 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_DR_WriteWord), (12 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_Deinit), (2 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_Init), (2 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_PITV_Read), (12 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_PITV_Write), (12 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_SMAT_Read), (12 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_SMAT_Write), (12 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_SMSK_Read), (12 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_SMSK_Write), (12 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_SR_BUSY_Chk), (24 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_SR_FIFOLVL_Get), (20 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_SR_FTF_Chk), (24 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_SR_SMF_Chk), (24 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_SR_SMF_Clr), (12 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_SR_TCF_Chk), (24 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_SR_TCF_Clr), (12 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_SR_TOF_Chk), (24 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_SR_TOF_Clr), (12 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_TO_Read), (12 bytes).
    Removing fm33a0xxev_qspi.o(i.QSPI_TO_Write), (12 bytes).
    Removing fm33a0xxev_rmu.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_rmu.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_AHBRST_DMARST_Getable), (24 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_AHBRST_DMARST_Setable), (36 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_AHBRST_HASHRST_Getable), (24 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_AHBRST_HASHRST_Setable), (36 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_AHBRST_PAERST_Getable), (24 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_AHBRST_PAERST_Setable), (36 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_I2C1RST_Getable), (24 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_I2C1RST_Setable), (36 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_LCDRST_Getable), (28 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_LCDRST_Setable), (40 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_LPTRST_Getable), (24 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_LPTRST_Setable), (36 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_LPUART0RST_Getable), (24 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_LPUART0RST_Setable), (36 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_SPI2RST_Getable), (28 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_SPI2RST_Setable), (40 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_SPI3RST_Getable), (28 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_SPI3RST_Setable), (40 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_SPI4RST_Getable), (28 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_SPI4RST_Setable), (40 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_TIMARST_Getable), (28 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_TIMARST_Setable), (40 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_U7816RST_Getable), (28 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_U7816RST_Setable), (40 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_UART2RST_Getable), (28 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_UART2RST_Setable), (40 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_UART3RST_Getable), (28 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_UART3RST_Setable), (40 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_UART4RST_Getable), (28 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_UART4RST_Setable), (40 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_UART5RST_Getable), (24 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST1_UART5RST_Setable), (36 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_ADCRST_Getable), (28 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_ADCRST_Setable), (40 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_AESRST_Getable), (28 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_AESRST_Setable), (40 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_BSTRST_Getable), (28 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_BSTRST_Setable), (40 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_CICRST_Getable), (28 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_CICRST_Setable), (40 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_COMPRST_Getable), (24 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_COMPRST_Setable), (36 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_CRCRST_Getable), (28 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_CRCRST_Setable), (40 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_I2C0RST_Getable), (24 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_I2C0RST_Setable), (36 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_LPUART1RST_Getable), (24 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_LPUART1RST_Setable), (36 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_RNGRST_Getable), (28 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_RNGRST_Setable), (40 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_SPI0RST_Getable), (28 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_SPI0RST_Setable), (40 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_SPI1RST_Getable), (28 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_SPI1RST_Setable), (40 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_SVDRST_Getable), (24 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_SVDRST_Setable), (36 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_UART0RST_Getable), (28 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_UART0RST_Setable), (40 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_UART1RST_Getable), (24 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_UART1RST_Setable), (36 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_UARTIRRST_Getable), (28 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_APBRST2_UARTIRRST_Setable), (40 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_BORCR_BOR_PDRCFG_Get), (16 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_BORCR_OFF_BOR_Getable), (24 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_Deinit), (2 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_PDRCR_PDRCFG_Get), (16 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_PDRCR_PDRCFG_Set), (32 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_PDRCR_PDREN_Getable), (24 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_PRSTEN_Write), (12 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_RSR_IWDTN_FLAG_Chk), (24 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_RSR_IWDTN_FLAG_Clr), (12 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_RSR_LKUPN_FLAG_Chk), (24 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_RSR_LKUPN_FLAG_Clr), (12 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_RSR_NRSTN_FLAG_Chk), (28 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_RSR_NRSTN_FLAG_Clr), (16 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_RSR_NVICN_FLAG_Chk), (24 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_RSR_NVICN_FLAG_Clr), (12 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_RSR_PDRN_FLAG_Chk), (28 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_RSR_PDRN_FLAG_Clr), (16 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_RSR_PORN_FLAG_Chk), (28 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_RSR_PORN_FLAG_Clr), (16 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_RSR_SOFTN_FLAG_Chk), (24 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_RSR_SOFTN_FLAG_Clr), (12 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_RSR_TESTN_FLAG_Chk), (28 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_RSR_TESTN_FLAG_Clr), (16 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_RSR_WWDTN_FLAG_Chk), (24 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_RSR_WWDTN_FLAG_Clr), (12 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_RSTCFGR_LKUPRST_EN_Getable), (24 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_RSTCFGR_LKUPRST_EN_Setable), (36 bytes).
    Removing fm33a0xxev_rmu.o(i.RMU_SOFTRST_Write), (12 bytes).
    Removing fm33a0xxev_rng.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_rng.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_rng.o(i.RNG_CRC_CR_CRCEN_Getable), (24 bytes).
    Removing fm33a0xxev_rng.o(i.RNG_CRC_CR_CRCEN_Setable), (36 bytes).
    Removing fm33a0xxev_rng.o(i.RNG_CRC_DIR_Read), (12 bytes).
    Removing fm33a0xxev_rng.o(i.RNG_CRC_DIR_Write), (12 bytes).
    Removing fm33a0xxev_rng.o(i.RNG_CRC_SR_CRCDONE_Chk), (24 bytes).
    Removing fm33a0xxev_rng.o(i.RNG_CRC_SR_CRCDONE_Clr), (20 bytes).
    Removing fm33a0xxev_rng.o(i.RNG_CR_EN_Getable), (24 bytes).
    Removing fm33a0xxev_rng.o(i.RNG_CR_EN_Setable), (36 bytes).
    Removing fm33a0xxev_rng.o(i.RNG_DOR_Read), (12 bytes).
    Removing fm33a0xxev_rng.o(i.RNG_Deinit), (2 bytes).
    Removing fm33a0xxev_rng.o(i.RNG_SR_LFSREN_Chk), (24 bytes).
    Removing fm33a0xxev_rng.o(i.RNG_SR_RNF_Chk), (24 bytes).
    Removing fm33a0xxev_rng.o(i.RNG_SR_RNF_Clr), (12 bytes).
    Removing fm33a0xxev_rtc.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_rtc.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ADCNT_Read), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ADJUST_Read), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ADJUST_Write), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ADSIGN_ADSIGN_Get), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ADSIGN_ADSIGN_Set), (28 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ALARM_ALARMHOUR_Get), (20 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ALARM_ALARMHOUR_Set), (32 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ALARM_ALARMMIN_Get), (20 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ALARM_ALARMMIN_Set), (32 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ALARM_ALARMSEC_Get), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ALARM_ALARMSEC_Set), (28 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ALARM_ALMEN_Getable), (24 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ALARM_ALMEN_Setable), (36 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_AlarmTime_SetEx), (28 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_BCDDATE_Read), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_BCDDATE_Write), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_BCDHOUR_Read), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_BCDHOUR_Write), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_BCDMIN_Read), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_BCDMIN_Write), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_BCDMONTH_Read), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_BCDMONTH_Write), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_BCDSEC_Read), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_BCDSEC_Write), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_BCDWEEK_Read), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_BCDWEEK_Write), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_BCDYEAR_Read), (12 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_BCDYEAR_Write), (12 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_CALSTEP_CALSTEP_Get), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_CALSTEP_CALSTEP_Set), (28 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_CR_RTC_EN_Getable), (24 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_CR_RTC_EN_Setable), (36 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_DTR_Read), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_DTR_Write), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_Deinit), (2 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_16HZ_IE_Getable), (24 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_16HZ_IE_Setable), (36 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_1KHZ_IE_Getable), (28 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_1KHZ_IE_Setable), (40 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_256HZ_IE_Getable), (28 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_256HZ_IE_Setable), (40 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_2HZ_IE_Getable), (24 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_2HZ_IE_Setable), (36 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_4HZ_IE_Getable), (24 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_4HZ_IE_Setable), (36 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_64HZ_IE_Getable), (28 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_64HZ_IE_Setable), (40 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_8HZ_IE_Getable), (24 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_8HZ_IE_Setable), (36 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_ADJ_IE_Getable), (28 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_ADJ_IE_Setable), (40 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_ALARM_IE_Getable), (28 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_ALARM_IE_Setable), (40 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_DATE_IE_Getable), (24 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_DATE_IE_Setable), (36 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_HOUR_IE_Getable), (24 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_HOUR_IE_Setable), (36 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_MIN_IE_Getable), (24 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_MIN_IE_Setable), (36 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_SEC_IE_Getable), (24 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_IER_SEC_IE_Setable), (36 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_16HZ_IF_Chk), (24 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_16HZ_IF_Clr), (12 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_1KHZ_IF_Chk), (28 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_1KHZ_IF_Clr), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_256HZ_IF_Chk), (28 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_256HZ_IF_Clr), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_2HZ_IF_Chk), (24 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_2HZ_IF_Clr), (12 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_4HZ_IF_Chk), (24 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_4HZ_IF_Clr), (12 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_64HZ_IF_Chk), (28 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_64HZ_IF_Clr), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_8HZ_IF_Chk), (24 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_8HZ_IF_Clr), (12 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_ADJ_IF_Chk), (28 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_ADJ_IF_Clr), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_ALARM_IF_Chk), (28 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_ALARM_IF_Clr), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_DATE_IF_Chk), (24 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_DATE_IF_Clr), (12 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_HOUR_IF_Chk), (24 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_HOUR_IF_Clr), (12 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_MIN_IF_Chk), (24 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_MIN_IF_Clr), (12 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_SEC_IF_Chk), (24 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_ISR_SEC_IF_Clr), (12 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_MSCNT_Read), (12 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_MSCNT_Write), (12 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_SSA_SSAEN_Getable), (24 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_SSA_SSAEN_Setable), (36 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_SSA_SS_ALARM_Get), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_SSA_SS_ALARM_Set), (28 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_SSR_Read), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_TMSEL_Read), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_TMSEL_Write), (16 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_TimeDate_GetEx), (48 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_TimeDate_SetEx), (48 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_VCAL_PR1SEN_Getable), (24 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_VCAL_PR1SEN_Setable), (36 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_WER_RTCWE_Getable), (24 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_WER_RTCWE_Setable), (32 bytes).
    Removing fm33a0xxev_rtc.o(i.RTC_WER_Write), (12 bytes).
    Removing fm33a0xxev_spi.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_spi.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_spi.o(i.SPI_RW_Byte), (94 bytes).
    Removing fm33a0xxev_spi.o(i.SPI_SSN_Set_High), (14 bytes).
    Removing fm33a0xxev_spi.o(i.SPI_SSN_Set_Low), (14 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR1_BAUD_Get), (10 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR1_CPHA_Get), (10 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR1_CPHOL_Get), (10 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR1_IOSWAP_Get), (12 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR1_LSBF_Get), (10 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR1_MM_Get), (12 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR1_MSPA_Get), (12 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR1_MSPA_Set), (26 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR1_SSPA_Get), (12 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR1_SSPA_Set), (26 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR1_WAIT_Get), (10 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR2_CMD8b_Get), (10 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR2_CMD8b_Set), (24 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR2_DLEN_Get), (12 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR2_DUMMY_EN_Getable), (22 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR2_DUMMY_EN_Setable), (26 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR2_HALFDUPLEX_Get), (12 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR2_HD_RW_Get), (10 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR2_HD_RW_Set), (24 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR2_RXO_Getable), (22 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR2_SPIEN_Getable), (20 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR2_SSNM_Get), (10 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR2_SSNSEN_Getable), (20 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR2_SSN_Get), (10 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR2_SSN_Set), (24 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR2_TXO_AC_Getable), (20 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR2_TXO_Getable), (20 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_Deinit), (140 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_IER_ERRIE_Getable), (20 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_IER_ERRIE_Setable), (24 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_IER_RXIE_Getable), (20 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_IER_RXIE_Setable), (24 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_IER_TXIE_Getable), (20 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_IER_TXIE_Setable), (24 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_ISR_BUSY_Chk), (22 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_ISR_DCN_TX_Get), (12 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_ISR_DCN_TX_Set), (26 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_ISR_MERR_Chk), (20 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_ISR_RXCOL_Chk), (22 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_ISR_RXCOL_Clr), (8 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_ISR_SERR_Chk), (20 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_ISR_TXCOL_Chk), (22 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_ISR_TXCOL_Clr), (8 bytes).
    Removing fm33a0xxev_svd.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_svd.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_CFGR_DFEN_Getable), (24 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_CFGR_DFEN_Setable), (36 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_CFGR_ITVL_Get), (16 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_CFGR_ITVL_Set), (28 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_CFGR_LVL_Get), (16 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_CFGR_LVL_Set), (32 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_CFGR_MOD_Get), (16 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_CFGR_MOD_Set), (32 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_CR_SVDEN_Getable), (24 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_CR_SVDEN_Setable), (36 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_CR_SVSEN_Getable), (24 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_CR_SVSEN_Setable), (36 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_CR_TE_Getable), (28 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_CR_TE_Setable), (40 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_Deinit), (2 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_IER_PFIE_Getable), (24 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_IER_PFIE_Setable), (36 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_IER_PRIE_Getable), (24 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_IER_PRIE_Setable), (36 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_ISR_PFF_Chk), (24 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_ISR_PFF_Clr), (12 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_ISR_PRF_Chk), (24 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_ISR_PRF_Clr), (12 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_ISR_SVDO_Chk), (28 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_ISR_SVDR_Chk), (24 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_Init), (48 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_VSR_V0P95EN_Getable), (24 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_VSR_V0P95EN_Setable), (36 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_VSR_V0P9EN_Getable), (24 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_VSR_V0P9EN_Setable), (36 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_VSR_V1P0EN_Getable), (24 bytes).
    Removing fm33a0xxev_svd.o(i.SVD_VSR_V1P0EN_Setable), (36 bytes).
    Removing fm33a0xxev_u7816.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_u7816.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_BGR_Read), (16 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_BGR_Write), (16 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_CR_CKOEN_Getable), (24 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_CR_CKOEN_Setable), (36 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_CR_HPUAT_Getable), (24 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_CR_HPUAT_Setable), (36 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_CR_HPUEN_Getable), (24 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_CR_HPUEN_Setable), (36 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_CR_RXEN_Getable), (24 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_CR_RXEN_Setable), (36 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_CR_TXEN_Getable), (24 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_CR_TXEN_Setable), (36 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_Deinit), (16 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_EGTR_Read), (12 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_EGTR_Write), (12 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_FFR_BGTEN_Getable), (24 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_FFR_BGTEN_Setable), (36 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_FFR_DICONV_Get), (16 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_FFR_DICONV_Set), (28 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_FFR_ERSGD_Get), (16 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_FFR_ERSGD_Set), (32 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_FFR_ERSW_Get), (16 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_FFR_ERSW_Set), (32 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_FFR_PAR_Get), (16 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_FFR_PAR_Set), (32 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_FFR_REP_T_Get), (16 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_FFR_REP_T_Set), (32 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_FFR_RFREN_Get), (16 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_FFR_RFREN_Set), (32 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_FFR_RREPEN_Getable), (24 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_FFR_RREPEN_Setable), (36 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_FFR_SFREN_Get), (16 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_FFR_SFREN_Set), (32 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_FFR_TREPEN_Getable), (24 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_FFR_TREPEN_Setable), (36 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_IER_LSIE_Getable), (24 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_IER_LSIE_Setable), (36 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_IER_RXIE_Getable), (24 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_IER_RXIE_Setable), (36 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_IER_TXIE_Getable), (24 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_IER_TXIE_Setable), (36 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_ISR_ERRIF_Chk), (24 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_ISR_FRERR_Chk), (28 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_ISR_FRERR_Clr), (16 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_ISR_OVERR_Chk), (28 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_ISR_OVERR_Clr), (16 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_ISR_RPARERR_Chk), (28 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_ISR_RPARERR_Clr), (16 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_ISR_RXBUSY_Chk), (28 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_ISR_RXIF_Chk), (24 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_ISR_TPARERR_Chk), (28 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_ISR_TPARERR_Clr), (16 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_ISR_TXBUSY_Chk), (28 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_ISR_TXIF_Chk), (24 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_ISR_WAIT_RPT_Chk), (28 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_Init), (144 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_PSC_Read), (16 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_PSC_Write), (16 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_RXBUF_Read), (12 bytes).
    Removing fm33a0xxev_u7816.o(i.U7816_TXBUF_Write), (12 bytes).
    Removing fm33a0xxev_uart.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_uart.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_uart.o(i.UARTIR_CR_IRFLAG_Get), (16 bytes).
    Removing fm33a0xxev_uart.o(i.UARTIR_CR_IRFLAG_Set), (32 bytes).
    Removing fm33a0xxev_uart.o(i.UARTIR_CR_TH_Get), (16 bytes).
    Removing fm33a0xxev_uart.o(i.UARTIR_CR_TH_Set), (32 bytes).
    Removing fm33a0xxev_uart.o(i.UARTIR_CR_TZBRG_Get), (16 bytes).
    Removing fm33a0xxev_uart.o(i.UARTIR_CR_TZBRG_Set), (28 bytes).
    Removing fm33a0xxev_uart.o(i.UART_BaudREGCalc), (100 bytes).
    Removing fm33a0xxev_uart.o(i.UART_Deinit), (2 bytes).
    Removing fm33a0xxev_uart.o(i.UART_IRModulation_Init), (284 bytes).
    Removing fm33a0xxev_uart.o(i.UART_Init), (120 bytes).
    Removing fm33a0xxev_uart.o(i.UART_SInit), (528 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_BGR_Read), (8 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_BGR_Write), (6 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_BITORD_Get), (12 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_BITORD_Set), (26 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_BUSY_Chk), (22 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_DMATXIFCFG_Getable), (22 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_DMATXIFCFG_Setable), (26 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_IOSWAP_Get), (12 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_IOSWAP_Set), (26 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_PARITY_Get), (10 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_PARITY_Set), (24 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_PDSEL_Get), (10 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_PDSEL_Set), (24 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_RXEN_Getable), (20 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_RXEN_Setable), (24 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_RXPOL_Getable), (20 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_RXPOL_Setable), (24 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_RXTOEN_Getable), (22 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_RXTOEN_Setable), (26 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_STOPCFG_Get), (12 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_STOPCFG_Set), (26 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_TXEN_Getable), (20 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_TXEN_Setable), (24 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_TXIREN_Getable), (22 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_TXIREN_Setable), (26 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_TXPOL_Getable), (20 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_CSR_TXPOL_Setable), (24 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_Deinit), (2 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_IER_RXBF_IE_Getable), (22 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_IER_RXBF_IE_Setable), (26 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_IER_RXERR_IE_Getable), (22 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_IER_RXERR_IE_Setable), (26 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_IER_RXTO_IE_Getable), (22 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_IER_RXTO_IE_Setable), (26 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_IER_TXBE_IE_Getable), (20 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_IER_TXBE_IE_Setable), (24 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_IER_TXSE_IE_Getable), (20 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_IER_TXSE_IE_Setable), (24 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_ISR_FERR_Chk), (22 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_ISR_FERR_Clr), (8 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_ISR_OERR_Chk), (22 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_ISR_OERR_Clr), (8 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_ISR_PERR_Chk), (22 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_ISR_PERR_Clr), (8 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_ISR_RXBF_Chk), (22 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_ISR_RXBF_Clr), (8 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_ISR_RXTO_Chk), (22 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_ISR_RXTO_Clr), (8 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_ISR_TXBE_Chk), (20 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_ISR_TXSE_Clr), (6 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_RXBUF_Read), (10 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_TODR_RXTO_LEN_Get), (8 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_TODR_RXTO_LEN_Set), (16 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_TODR_TXDLY_LEN_Get), (12 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_TODR_TXDLY_LEN_Set), (26 bytes).
    Removing fm33a0xxev_uart.o(i.UARTx_TXBUF_Read), (10 bytes).
    Removing fm33a0xxev_vrtc.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_vrtc.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_vrtc.o(i.VRTC_ADCCR_CKE_Getable), (24 bytes).
    Removing fm33a0xxev_vrtc.o(i.VRTC_ADCCR_CKE_Setable), (36 bytes).
    Removing fm33a0xxev_vrtc.o(i.VRTC_ADCCR_CKS_Get), (16 bytes).
    Removing fm33a0xxev_vrtc.o(i.VRTC_ADCCR_CKS_Set), (32 bytes).
    Removing fm33a0xxev_vrtc.o(i.VRTC_Deinit), (2 bytes).
    Removing fm33a0xxev_vrtc.o(i.VRTC_Init_RCLP_Trim), (64 bytes).
    Removing fm33a0xxev_vrtc.o(i.VRTC_Init_RCMF_Trim), (36 bytes).
    Removing fm33a0xxev_vrtc.o(i.VRTC_LFDIER_LFDET_IE_Getable), (24 bytes).
    Removing fm33a0xxev_vrtc.o(i.VRTC_LFDIER_LFDET_IE_Setable), (36 bytes).
    Removing fm33a0xxev_vrtc.o(i.VRTC_LFDISR_LFDETO_Chk), (24 bytes).
    Removing fm33a0xxev_vrtc.o(i.VRTC_LFDISR_LFDET_IF_Chk), (24 bytes).
    Removing fm33a0xxev_vrtc.o(i.VRTC_LFDISR_LFDET_IF_Clr), (12 bytes).
    Removing fm33a0xxev_vrtc.o(i.VRTC_RCLPCR_CHOPEN_Getable), (24 bytes).
    Removing fm33a0xxev_vrtc.o(i.VRTC_RCLPCR_CHOPEN_Setable), (36 bytes).
    Removing fm33a0xxev_vrtc.o(i.VRTC_RCLPCR_RCLP_OFF_Getable), (24 bytes).
    Removing fm33a0xxev_vrtc.o(i.VRTC_RCLPCR_RCLP_OFF_Setable), (36 bytes).
    Removing fm33a0xxev_vrtc.o(i.VRTC_RCLPTR_Read), (12 bytes).
    Removing fm33a0xxev_vrtc.o(i.VRTC_RCLPTR_Write), (12 bytes).
    Removing fm33a0xxev_vrtc.o(i.VRTC_RCMFCR_EN_Getable), (24 bytes).
    Removing fm33a0xxev_vrtc.o(i.VRTC_RCMFCR_EN_Setable), (36 bytes).
    Removing fm33a0xxev_vrtc.o(i.VRTC_RCMFCR_TRIM_Get), (16 bytes).
    Removing fm33a0xxev_vrtc.o(i.VRTC_RCMFCR_TRIM_Set), (28 bytes).
    Removing fm33a0xxev_vrtc.o(i.VRTC_XTLFCR_XTLFIPW_Get), (16 bytes).
    Removing fm33a0xxev_vrtc.o(i.VRTC_XTLFCR_XTLFIPW_Set), (28 bytes).
    Removing fm33a0xxev_wwdt.o(.rev16_text), (4 bytes).
    Removing fm33a0xxev_wwdt.o(.revsh_text), (4 bytes).
    Removing fm33a0xxev_wwdt.o(i.WWDT_CFGR_Read), (16 bytes).
    Removing fm33a0xxev_wwdt.o(i.WWDT_CFGR_Write), (16 bytes).
    Removing fm33a0xxev_wwdt.o(i.WWDT_CNTR_Read), (16 bytes).
    Removing fm33a0xxev_wwdt.o(i.WWDT_CR_Write), (12 bytes).
    Removing fm33a0xxev_wwdt.o(i.WWDT_Deinit), (2 bytes).
    Removing fm33a0xxev_wwdt.o(i.WWDT_IER_IE_Getable), (24 bytes).
    Removing fm33a0xxev_wwdt.o(i.WWDT_IER_IE_Setable), (36 bytes).
    Removing fm33a0xxev_wwdt.o(i.WWDT_ISR_NOVF_Chk), (24 bytes).
    Removing fm33a0xxev_wwdt.o(i.WWDT_ISR_NOVF_Clr), (12 bytes).
    Removing fm33a0xxev_wwdt.o(i.WWDT_PSCR_Read), (16 bytes).
    Removing rs485_read_data.o(.rev16_text), (4 bytes).
    Removing rs485_read_data.o(.revsh_text), (4 bytes).
    Removing rs485_read_data.o(i.rs485ComPwrOnHandle), (14 bytes).
    Removing rs485_read_data.o(i.rs485GetDelayTime), (82 bytes).
    Removing rs485_data_analysis_pro.o(.rev16_text), (4 bytes).
    Removing rs485_data_analysis_pro.o(.revsh_text), (4 bytes).
    Removing startup_fm33a0xxev.o(HEAP), (4096 bytes).
    Removing system_fm33a0xxev.o(.rev16_text), (4 bytes).
    Removing system_fm33a0xxev.o(.revsh_text), (4 bytes).
    Removing system_fm33a0xxev.o(i.SystemCoreClockUpdate), (16 bytes).
    Removing fadd.o(.text), (178 bytes).
    Removing fmul.o(.text), (122 bytes).
    Removing fdiv.o(.text), (124 bytes).
    Removing dadd.o(.text), (360 bytes).
    Removing dmul.o(.text), (208 bytes).
    Removing ddiv.o(.text), (240 bytes).
    Removing ffltui.o(.text), (14 bytes).
    Removing dflti.o(.text), (40 bytes).
    Removing dfltui.o(.text), (28 bytes).
    Removing dfixi.o(.text), (72 bytes).
    Removing dfixui.o(.text), (60 bytes).
    Removing dfixul.o(.text), (64 bytes).
    Removing f2d.o(.text), (40 bytes).
    Removing cdcmple.o(.text), (40 bytes).
    Removing cdrcmple.o(.text), (40 bytes).
    Removing d2f.o(.text), (56 bytes).
    Removing cfrcmple.o(.text), (20 bytes).
    Removing fepilogue.o(.text), (130 bytes).
    Removing depilogue.o(.text), (190 bytes).
    Removing depilogue.o(i.__ARM_clz), (46 bytes).
 
1860 unused section(s) (total 132623 bytes) removed from the image.
 
==============================================================================
 
Image Symbol Table
 
    Local Symbols
 
    Symbol Name                              Value     Ov Type        Size  Object(Section)
 
    RESET                                    0x00000000   Section      192  startup_fm33a0xxev.o(RESET)
    ../clib/microlib/division.c              0x00000000   Number         0  idiv.o ABSOLUTE
    ../clib/microlib/division.c              0x00000000   Number         0  uldiv.o ABSOLUTE
    ../clib/microlib/division.c              0x00000000   Number         0  uidiv.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry11a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry12b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry9a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry10b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry10a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry8b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry9b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry12a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry2.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry8a.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  entry11b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry.o ABSOLUTE
    ../clib/microlib/longlong.c              0x00000000   Number         0  llshl.o ABSOLUTE
    ../clib/microlib/longlong.c              0x00000000   Number         0  llushr.o ABSOLUTE
    ../clib/microlib/longlong.c              0x00000000   Number         0  llsshr.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf3.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf2.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf1.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf0.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printfb.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf4.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf6.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf5.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printfa.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf8.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf7.o ABSOLUTE
    ../clib/microlib/printf/stubs.s          0x00000000   Number         0  stubs.o ABSOLUTE
    ../clib/microlib/stdio/streams.c         0x00000000   Number         0  stdout.o ABSOLUTE
    ../clib/microlib/stdlib/rand.c           0x00000000   Number         0  rand.o ABSOLUTE
    ../clib/microlib/string/memcpy.c         0x00000000   Number         0  memcpyb.o ABSOLUTE
    ../clib/microlib/string/memcpy.c         0x00000000   Number         0  memcpya.o ABSOLUTE
    ../clib/microlib/string/memset.c         0x00000000   Number         0  memseta.o ABSOLUTE
    ../clib/microlib/string/strncpy.c        0x00000000   Number         0  strncpy.o ABSOLUTE
    ../clib/microlib/stubs.s                 0x00000000   Number         0  iusefp.o ABSOLUTE
    ../clib/microlib/unhosted.c              0x00000000   Number         0  uwrite4.o ABSOLUTE
    ../clib/microlib/unhosted.c              0x00000000   Number         0  uread4.o ABSOLUTE
    ../fplib/microlib/d2f.c                  0x00000000   Number         0  d2f.o ABSOLUTE
    ../fplib/microlib/f2d.c                  0x00000000   Number         0  f2d.o ABSOLUTE
    ../fplib/microlib/fpadd.c                0x00000000   Number         0  fadd.o ABSOLUTE
    ../fplib/microlib/fpadd.c                0x00000000   Number         0  dadd.o ABSOLUTE
    ../fplib/microlib/fpdiv.c                0x00000000   Number         0  ddiv.o ABSOLUTE
    ../fplib/microlib/fpdiv.c                0x00000000   Number         0  fdiv.o ABSOLUTE
    ../fplib/microlib/fpepilogue.c           0x00000000   Number         0  depilogue.o ABSOLUTE
    ../fplib/microlib/fpepilogue.c           0x00000000   Number         0  fepilogue.o ABSOLUTE
    ../fplib/microlib/fpfix.c                0x00000000   Number         0  dfixul.o ABSOLUTE
    ../fplib/microlib/fpfix.c                0x00000000   Number         0  dfixi.o ABSOLUTE
    ../fplib/microlib/fpfix.c                0x00000000   Number         0  dfixui.o ABSOLUTE
    ../fplib/microlib/fpflt.c                0x00000000   Number         0  dflti.o ABSOLUTE
    ../fplib/microlib/fpflt.c                0x00000000   Number         0  ffltui.o ABSOLUTE
    ../fplib/microlib/fpflt.c                0x00000000   Number         0  dfltui.o ABSOLUTE
    ../fplib/microlib/fpmul.c                0x00000000   Number         0  fmul.o ABSOLUTE
    ../fplib/microlib/fpmul.c                0x00000000   Number         0  dmul.o ABSOLUTE
    ..\CmBackTrace\cm_backtrace.c            0x00000000   Number         0  cm_backtrace.o ABSOLUTE
    ..\CmBackTrace\cmb_fault.S               0x00000000   Number         0  cmb_fault.o ABSOLUTE
    ..\CmBackTrace\fault_test.c              0x00000000   Number         0  fault_test.o ABSOLUTE
    ..\Core\main.c                           0x00000000   Number         0  main.o ABSOLUTE
    ..\Drivers\fm33a0xxev_adc.c              0x00000000   Number         0  fm33a0xxev_adc.o ABSOLUTE
    ..\Drivers\fm33a0xxev_aes.c              0x00000000   Number         0  fm33a0xxev_aes.o ABSOLUTE
    ..\Drivers\fm33a0xxev_bstim.c            0x00000000   Number         0  fm33a0xxev_bstim.o ABSOLUTE
    ..\Drivers\fm33a0xxev_bt.c               0x00000000   Number         0  fm33a0xxev_bt.o ABSOLUTE
    ..\Drivers\fm33a0xxev_cdif.c             0x00000000   Number         0  fm33a0xxev_cdif.o ABSOLUTE
    ..\Drivers\fm33a0xxev_cmu.c              0x00000000   Number         0  fm33a0xxev_cmu.o ABSOLUTE
    ..\Drivers\fm33a0xxev_comp.c             0x00000000   Number         0  fm33a0xxev_comp.o ABSOLUTE
    ..\Drivers\fm33a0xxev_crc.c              0x00000000   Number         0  fm33a0xxev_crc.o ABSOLUTE
    ..\Drivers\fm33a0xxev_dbg.c              0x00000000   Number         0  fm33a0xxev_dbg.o ABSOLUTE
    ..\Drivers\fm33a0xxev_dma.c              0x00000000   Number         0  fm33a0xxev_dma.o ABSOLUTE
    ..\Drivers\fm33a0xxev_et.c               0x00000000   Number         0  fm33a0xxev_et.o ABSOLUTE
    ..\Drivers\fm33a0xxev_flash.c            0x00000000   Number         0  fm33a0xxev_flash.o ABSOLUTE
    ..\Drivers\fm33a0xxev_gpio.c             0x00000000   Number         0  fm33a0xxev_gpio.o ABSOLUTE
    ..\Drivers\fm33a0xxev_hash.c             0x00000000   Number         0  fm33a0xxev_hash.o ABSOLUTE
    ..\Drivers\fm33a0xxev_i2c.c              0x00000000   Number         0  fm33a0xxev_i2c.o ABSOLUTE
    ..\Drivers\fm33a0xxev_iwdt.c             0x00000000   Number         0  fm33a0xxev_iwdt.o ABSOLUTE
    ..\Drivers\fm33a0xxev_lcd.c              0x00000000   Number         0  fm33a0xxev_lcd.o ABSOLUTE
    ..\Drivers\fm33a0xxev_lptim.c            0x00000000   Number         0  fm33a0xxev_lptim.o ABSOLUTE
    ..\Drivers\fm33a0xxev_lpuart.c           0x00000000   Number         0  fm33a0xxev_lpuart.o ABSOLUTE
    ..\Drivers\fm33a0xxev_pae.c              0x00000000   Number         0  fm33a0xxev_pae.o ABSOLUTE
    ..\Drivers\fm33a0xxev_pmu.c              0x00000000   Number         0  fm33a0xxev_pmu.o ABSOLUTE
    ..\Drivers\fm33a0xxev_qspi.c             0x00000000   Number         0  fm33a0xxev_qspi.o ABSOLUTE
    ..\Drivers\fm33a0xxev_rmu.c              0x00000000   Number         0  fm33a0xxev_rmu.o ABSOLUTE
    ..\Drivers\fm33a0xxev_rng.c              0x00000000   Number         0  fm33a0xxev_rng.o ABSOLUTE
    ..\Drivers\fm33a0xxev_rtc.c              0x00000000   Number         0  fm33a0xxev_rtc.o ABSOLUTE
    ..\Drivers\fm33a0xxev_spi.c              0x00000000   Number         0  fm33a0xxev_spi.o ABSOLUTE
    ..\Drivers\fm33a0xxev_svd.c              0x00000000   Number         0  fm33a0xxev_svd.o ABSOLUTE
    ..\Drivers\fm33a0xxev_u7816.c            0x00000000   Number         0  fm33a0xxev_u7816.o ABSOLUTE
    ..\Drivers\fm33a0xxev_uart.c             0x00000000   Number         0  fm33a0xxev_uart.o ABSOLUTE
    ..\Drivers\fm33a0xxev_vrtc.c             0x00000000   Number         0  fm33a0xxev_vrtc.o ABSOLUTE
    ..\Drivers\fm33a0xxev_wwdt.c             0x00000000   Number         0  fm33a0xxev_wwdt.o ABSOLUTE
    ..\Function\BOOTLOADER_IAP\bootloader_iap.c 0x00000000   Number         0  bootloader_iap.o ABSOLUTE
    ..\Function\E2P\EEPROM.c                 0x00000000   Number         0  eeprom.o ABSOLUTE
    ..\Function\EXTERN_RTC\extern_rtc.c      0x00000000   Number         0  extern_rtc.o ABSOLUTE
    ..\Function\FLOW_METER_DATA_COLLECT\rs485_data_analysis_pro.c 0x00000000   Number         0  rs485_data_analysis_pro.o ABSOLUTE
    ..\Function\FLOW_METER_DATA_COLLECT\rs485_read_data.c 0x00000000   Number         0  rs485_read_data.o ABSOLUTE
    ..\Function\KEY\key.c                    0x00000000   Number         0  key.o ABSOLUTE
    ..\Function\LCD\lcd.c                    0x00000000   Number         0  lcd.o ABSOLUTE
    ..\Function\LCD\lcd_cfg_api.c            0x00000000   Number         0  lcd_cfg_api.o ABSOLUTE
    ..\Function\LCD\lcd_io_api.c             0x00000000   Number         0  lcd_io_api.o ABSOLUTE
    ..\Function\OFF_CHIP_FLASH\off_chip_flash.c 0x00000000   Number         0  off_chip_flash.o ABSOLUTE
    ..\Function\STORAGE\sizhu_alarm_record.c 0x00000000   Number         0  sizhu_alarm_record.o ABSOLUTE
    ..\Function\STORAGE\sizhu_event_record.c 0x00000000   Number         0  sizhu_event_record.o ABSOLUTE
    ..\Function\STORAGE\sizhu_history_record.c 0x00000000   Number         0  sizhu_history_record.o ABSOLUTE
    ..\Function\STORAGE\sizhu_para_modify_record.c 0x00000000   Number         0  sizhu_para_modify_record.o ABSOLUTE
    ..\Function\STORAGE\system_eep_mem_manage.c 0x00000000   Number         0  system_eep_mem_manage.o ABSOLUTE
    ..\Function\STORAGE\system_flash_mem_manage.c 0x00000000   Number         0  system_flash_mem_manage.o ABSOLUTE
    ..\Function\STORAGE\system_mem_para.c    0x00000000   Number         0  system_mem_para.o ABSOLUTE
    ..\Function\UPPER_COMPUTER\upper_com.c   0x00000000   Number         0  upper_com.o ABSOLUTE
    ..\Function\UPPER_COMPUTER\upper_com_data_pro.c 0x00000000   Number         0  upper_com_data_pro.o ABSOLUTE
    ..\Hardware\ADC\adc.c                    0x00000000   Number         0  adc.o ABSOLUTE
    ..\Hardware\CLOCK\rcc_config.c           0x00000000   Number         0  rcc_config.o ABSOLUTE
    ..\Hardware\CLOCK\user_init.c            0x00000000   Number         0  user_init.o ABSOLUTE
    ..\Hardware\DELAY\delay.c                0x00000000   Number         0  delay.o ABSOLUTE
    ..\Hardware\DMA\dma.c                    0x00000000   Number         0  dma.o ABSOLUTE
    ..\Hardware\EXTI\exti.c                  0x00000000   Number         0  exti.o ABSOLUTE
    ..\Hardware\GPIO\gpio.c                  0x00000000   Number         0  gpio.o ABSOLUTE
    ..\Hardware\I2C\i2c.c                    0x00000000   Number         0  i2c.o ABSOLUTE
    ..\Hardware\ON_CHIP_FLASH\flash.c        0x00000000   Number         0  flash.o ABSOLUTE
    ..\Hardware\RTC\rtc.c                    0x00000000   Number         0  rtc.o ABSOLUTE
    ..\Hardware\SPI\spi.c                    0x00000000   Number         0  spi.o ABSOLUTE
    ..\Hardware\TIM\tim.c                    0x00000000   Number         0  tim.o ABSOLUTE
    ..\Hardware\UART\uart.c                  0x00000000   Number         0  uart.o ABSOLUTE
    ..\Soft\AES128.c                         0x00000000   Number         0  aes128.o ABSOLUTE
    ..\Soft\mbcrc.c                          0x00000000   Number         0  mbcrc.o ABSOLUTE
    ..\Soft\sizhu_ctrl_word.c                0x00000000   Number         0  sizhu_ctrl_word.o ABSOLUTE
    ..\Soft\system_general_para.c            0x00000000   Number         0  system_general_para.o ABSOLUTE
    ..\Soft\system_run_fun.c                 0x00000000   Number         0  system_run_fun.o ABSOLUTE
    ..\\CmBackTrace\\cm_backtrace.c          0x00000000   Number         0  cm_backtrace.o ABSOLUTE
    ..\\Core\\main.c                         0x00000000   Number         0  main.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_adc.c            0x00000000   Number         0  fm33a0xxev_adc.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_aes.c            0x00000000   Number         0  fm33a0xxev_aes.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_bstim.c          0x00000000   Number         0  fm33a0xxev_bstim.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_bt.c             0x00000000   Number         0  fm33a0xxev_bt.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_cdif.c           0x00000000   Number         0  fm33a0xxev_cdif.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_cmu.c            0x00000000   Number         0  fm33a0xxev_cmu.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_comp.c           0x00000000   Number         0  fm33a0xxev_comp.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_crc.c            0x00000000   Number         0  fm33a0xxev_crc.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_dbg.c            0x00000000   Number         0  fm33a0xxev_dbg.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_dma.c            0x00000000   Number         0  fm33a0xxev_dma.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_et.c             0x00000000   Number         0  fm33a0xxev_et.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_flash.c          0x00000000   Number         0  fm33a0xxev_flash.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_gpio.c           0x00000000   Number         0  fm33a0xxev_gpio.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_hash.c           0x00000000   Number         0  fm33a0xxev_hash.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_i2c.c            0x00000000   Number         0  fm33a0xxev_i2c.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_iwdt.c           0x00000000   Number         0  fm33a0xxev_iwdt.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_lcd.c            0x00000000   Number         0  fm33a0xxev_lcd.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_lptim.c          0x00000000   Number         0  fm33a0xxev_lptim.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_lpuart.c         0x00000000   Number         0  fm33a0xxev_lpuart.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_pae.c            0x00000000   Number         0  fm33a0xxev_pae.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_pmu.c            0x00000000   Number         0  fm33a0xxev_pmu.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_qspi.c           0x00000000   Number         0  fm33a0xxev_qspi.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_rmu.c            0x00000000   Number         0  fm33a0xxev_rmu.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_rng.c            0x00000000   Number         0  fm33a0xxev_rng.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_rtc.c            0x00000000   Number         0  fm33a0xxev_rtc.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_spi.c            0x00000000   Number         0  fm33a0xxev_spi.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_svd.c            0x00000000   Number         0  fm33a0xxev_svd.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_u7816.c          0x00000000   Number         0  fm33a0xxev_u7816.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_uart.c           0x00000000   Number         0  fm33a0xxev_uart.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_vrtc.c           0x00000000   Number         0  fm33a0xxev_vrtc.o ABSOLUTE
    ..\\Drivers\\fm33a0xxev_wwdt.c           0x00000000   Number         0  fm33a0xxev_wwdt.o ABSOLUTE
    ..\\Function\\BOOTLOADER_IAP\\bootloader_iap.c 0x00000000   Number         0  bootloader_iap.o ABSOLUTE
    ..\\Function\\E2P\\EEPROM.c              0x00000000   Number         0  eeprom.o ABSOLUTE
    ..\\Function\\EXTERN_RTC\\extern_rtc.c   0x00000000   Number         0  extern_rtc.o ABSOLUTE
    ..\\Function\\FLOW_METER_DATA_COLLECT\\rs485_data_analysis_pro.c 0x00000000   Number         0  rs485_data_analysis_pro.o ABSOLUTE
    ..\\Function\\FLOW_METER_DATA_COLLECT\\rs485_read_data.c 0x00000000   Number         0  rs485_read_data.o ABSOLUTE
    ..\\Function\\KEY\\key.c                 0x00000000   Number         0  key.o ABSOLUTE
    ..\\Function\\LCD\\lcd.c                 0x00000000   Number         0  lcd.o ABSOLUTE
    ..\\Function\\LCD\\lcd_cfg_api.c         0x00000000   Number         0  lcd_cfg_api.o ABSOLUTE
    ..\\Function\\LCD\\lcd_io_api.c          0x00000000   Number         0  lcd_io_api.o ABSOLUTE
    ..\\Function\\OFF_CHIP_FLASH\\off_chip_flash.c 0x00000000   Number         0  off_chip_flash.o ABSOLUTE
    ..\\Function\\STORAGE\\sizhu_alarm_record.c 0x00000000   Number         0  sizhu_alarm_record.o ABSOLUTE
    ..\\Function\\STORAGE\\sizhu_event_record.c 0x00000000   Number         0  sizhu_event_record.o ABSOLUTE
    ..\\Function\\STORAGE\\sizhu_history_record.c 0x00000000   Number         0  sizhu_history_record.o ABSOLUTE
    ..\\Function\\STORAGE\\sizhu_para_modify_record.c 0x00000000   Number         0  sizhu_para_modify_record.o ABSOLUTE
    ..\\Function\\STORAGE\\system_eep_mem_manage.c 0x00000000   Number         0  system_eep_mem_manage.o ABSOLUTE
    ..\\Function\\STORAGE\\system_flash_mem_manage.c 0x00000000   Number         0  system_flash_mem_manage.o ABSOLUTE
    ..\\Function\\STORAGE\\system_mem_para.c 0x00000000   Number         0  system_mem_para.o ABSOLUTE
    ..\\Function\\UPPER_COMPUTER\\upper_com.c 0x00000000   Number         0  upper_com.o ABSOLUTE
    ..\\Function\\UPPER_COMPUTER\\upper_com_data_pro.c 0x00000000   Number         0  upper_com_data_pro.o ABSOLUTE
    ..\\Hardware\\ADC\\adc.c                 0x00000000   Number         0  adc.o ABSOLUTE
    ..\\Hardware\\CLOCK\\rcc_config.c        0x00000000   Number         0  rcc_config.o ABSOLUTE
    ..\\Hardware\\CLOCK\\user_init.c         0x00000000   Number         0  user_init.o ABSOLUTE
    ..\\Hardware\\DELAY\\delay.c             0x00000000   Number         0  delay.o ABSOLUTE
    ..\\Hardware\\DMA\\dma.c                 0x00000000   Number         0  dma.o ABSOLUTE
    ..\\Hardware\\EXTI\\exti.c               0x00000000   Number         0  exti.o ABSOLUTE
    ..\\Hardware\\GPIO\\gpio.c               0x00000000   Number         0  gpio.o ABSOLUTE
    ..\\Hardware\\I2C\\i2c.c                 0x00000000   Number         0  i2c.o ABSOLUTE
    ..\\Hardware\\ON_CHIP_FLASH\\flash.c     0x00000000   Number         0  flash.o ABSOLUTE
    ..\\Hardware\\RTC\\rtc.c                 0x00000000   Number         0  rtc.o ABSOLUTE
    ..\\Hardware\\SPI\\spi.c                 0x00000000   Number         0  spi.o ABSOLUTE
    ..\\Hardware\\TIM\\tim.c                 0x00000000   Number         0  tim.o ABSOLUTE
    ..\\Hardware\\UART\\uart.c               0x00000000   Number         0  uart.o ABSOLUTE
    ..\\Soft\\mbcrc.c                        0x00000000   Number         0  mbcrc.o ABSOLUTE
    ..\\Soft\\sizhu_ctrl_word.c              0x00000000   Number         0  sizhu_ctrl_word.o ABSOLUTE
    ..\\Soft\\system_general_para.c          0x00000000   Number         0  system_general_para.o ABSOLUTE
    ..\\Soft\\system_run_fun.c               0x00000000   Number         0  system_run_fun.o ABSOLUTE
    RTE/Device/FM33A06XEV/startup_FM33A0XXEV.s 0x00000000   Number         0  startup_fm33a0xxev.o ABSOLUTE
    RTE/Device/FM33A06XEV/system_FM33A0XXEV.c 0x00000000   Number         0  system_fm33a0xxev.o ABSOLUTE
    RTE\Device\FM33A06XEV\system_FM33A0XXEV.c 0x00000000   Number         0  system_fm33a0xxev.o ABSOLUTE
    cdcmple.s                                0x00000000   Number         0  cdcmple.o ABSOLUTE
    cdrcmple.s                               0x00000000   Number         0  cdrcmple.o ABSOLUTE
    cfrcmple.s                               0x00000000   Number         0  cfrcmple.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
    .ARM.Collect$$$$00000000                 0x000000c0   Section        0  entry.o(.ARM.Collect$$$$00000000)
    .ARM.Collect$$$$00000001                 0x000000c0   Section        4  entry2.o(.ARM.Collect$$$$00000001)
    .ARM.Collect$$$$00000004                 0x000000c4   Section        4  entry5.o(.ARM.Collect$$$$00000004)
    .ARM.Collect$$$$00000008                 0x000000c8   Section        0  entry7b.o(.ARM.Collect$$$$00000008)
    .ARM.Collect$$$$0000000A                 0x000000c8   Section        0  entry8b.o(.ARM.Collect$$$$0000000A)
    .ARM.Collect$$$$0000000B                 0x000000c8   Section        8  entry9a.o(.ARM.Collect$$$$0000000B)
    .ARM.Collect$$$$0000000E                 0x000000d0   Section        4  entry12b.o(.ARM.Collect$$$$0000000E)
    .ARM.Collect$$$$0000000F                 0x000000d4   Section        0  entry10a.o(.ARM.Collect$$$$0000000F)
    .ARM.Collect$$$$00000011                 0x000000d4   Section        0  entry11a.o(.ARM.Collect$$$$00000011)
    .ARM.Collect$$$$00002712                 0x000000d4   Section        4  entry2.o(.ARM.Collect$$$$00002712)
    __lit__00000000                          0x000000d4   Data           4  entry2.o(.ARM.Collect$$$$00002712)
    .text                                    0x000000d8   Section       12  cmb_fault.o(.text)
    .text                                    0x000000e4   Section       28  startup_fm33a0xxev.o(.text)
    .text                                    0x00000100   Section        0  uidiv.o(.text)
    .text                                    0x0000012c   Section        0  idiv.o(.text)
    .text                                    0x00000154   Section        0  uldiv.o(.text)
    .text                                    0x000001b4   Section        0  rand.o(.text)
    .text                                    0x000001d8   Section        0  memcpya.o(.text)
    .text                                    0x000001fc   Section        0  memseta.o(.text)
    .text                                    0x00000220   Section        0  uread4.o(.text)
    .text                                    0x00000234   Section        0  uwrite4.o(.text)
    .text                                    0x00000246   Section        0  llshl.o(.text)
    .text                                    0x00000266   Section        0  llushr.o(.text)
    .text                                    0x00000288   Section       36  init.o(.text)
    i.AltFunIO                               0x000002ac   Section        0  gpio.o(i.AltFunIO)
    i.AnalogIO                               0x00000352   Section        0  gpio.o(i.AnalogIO)
    i.BSTIM_IRQHandler                       0x000003a2   Section        0  tim.o(i.BSTIM_IRQHandler)
    i.BTx_IRQHandler                         0x000003a4   Section        0  tim.o(i.BTx_IRQHandler)
    i.CMU_IER_HFDET_IE_Setable               0x000003a8   Section        0  fm33a0xxev_cmu.o(i.CMU_IER_HFDET_IE_Setable)
    i.CMU_IRQHandler                         0x000003cc   Section        0  user_init.o(i.CMU_IRQHandler)
    i.CMU_ISR_HFDETO_Chk                     0x000003d0   Section        0  fm33a0xxev_cmu.o(i.CMU_ISR_HFDETO_Chk)
    i.CMU_Init_RCHF_Trim                     0x000003ec   Section        0  fm33a0xxev_cmu.o(i.CMU_Init_RCHF_Trim)
    i.CMU_OPCCR1_EXTICKE_Setable             0x00000440   Section        0  fm33a0xxev_cmu.o(i.CMU_OPCCR1_EXTICKE_Setable)
    i.CMU_OPCCR1_EXTICKSEL_Set               0x00000464   Section        0  fm33a0xxev_cmu.o(i.CMU_OPCCR1_EXTICKSEL_Set)
    i.CMU_PERCLK_SetableEx                   0x00000484   Section        0  fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx)
    i.CMU_RCHFCR_FSEL_Set                    0x000004ec   Section        0  fm33a0xxev_cmu.o(i.CMU_RCHFCR_FSEL_Set)
    i.CMU_RCHFCR_RCHFEN_Setable              0x0000050c   Section        0  fm33a0xxev_cmu.o(i.CMU_RCHFCR_RCHFEN_Setable)
    i.CMU_RCHFTR_RCHFTRIM_Set                0x00000530   Section        0  fm33a0xxev_cmu.o(i.CMU_RCHFTR_RCHFTRIM_Set)
    i.CMU_RCHF_Init                          0x00000548   Section        0  fm33a0xxev_cmu.o(i.CMU_RCHF_Init)
    i.CMU_SYSCLKCR_AHBPRES_Set               0x0000055c   Section        0  fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_AHBPRES_Set)
    i.CMU_SYSCLKCR_APBPRES_Set               0x0000057c   Section        0  fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_APBPRES_Set)
    i.CMU_SYSCLKCR_SLP_ENEXTI_Setable        0x0000059c   Section        0  fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_SLP_ENEXTI_Setable)
    i.CMU_SYSCLKCR_SYSCLKSEL_Set             0x000005c4   Section        0  fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_SYSCLKSEL_Set)
    i.CMU_SysClk_Init                        0x000005e0   Section        0  fm33a0xxev_cmu.o(i.CMU_SysClk_Init)
    i.CMU_XTHFCR_XTHFEN_Setable              0x00000600   Section        0  fm33a0xxev_cmu.o(i.CMU_XTHFCR_XTHFEN_Setable)
    i.CMU_XTHFCR_XTHF_CFG_Set                0x00000624   Section        0  fm33a0xxev_cmu.o(i.CMU_XTHFCR_XTHF_CFG_Set)
    i.COM_equipment_basic_inf_handle         0x00000644   Section        0  upper_com_data_pro.o(i.COM_equipment_basic_inf_handle)
    i.DEBUG_Init                             0x00000678   Section        0  rcc_config.o(i.DEBUG_Init)
    i.DMA_CHxCR_CHxFTIE_Getable              0x00000684   Section        0  fm33a0xxev_dma.o(i.DMA_CHxCR_CHxFTIE_Getable)
    i.DMA_IRQHandler                         0x000006a4   Section        0  uart.o(i.DMA_IRQHandler)
    i.DMA_ISR_DMACHFT_Chk                    0x000006c4   Section        0  fm33a0xxev_dma.o(i.DMA_ISR_DMACHFT_Chk)
    i.DMA_ISR_DMACHFT_Clr                    0x000006e4   Section        0  fm33a0xxev_dma.o(i.DMA_ISR_DMACHFT_Clr)
    i.EEPROM_MultipleRead                    0x000006f4   Section        0  eeprom.o(i.EEPROM_MultipleRead)
    i.EEPROM_MultipleWrite                   0x00000764   Section        0  eeprom.o(i.EEPROM_MultipleWrite)
    i.EEPROM_Wait_Busy                       0x0000087c   Section        0  eeprom.o(i.EEPROM_Wait_Busy)
    i.EEPROM_stat_read                       0x00000890   Section        0  eeprom.o(i.EEPROM_stat_read)
    i.FLS_RDCR_WAIT_Set                      0x000008dc   Section        0  fm33a0xxev_flash.o(i.FLS_RDCR_WAIT_Set)
    i.GPIO_EXTI_EXTIDF_Setable               0x000008f8   Section        0  fm33a0xxev_gpio.o(i.GPIO_EXTI_EXTIDF_Setable)
    i.GPIO_EXTI_EXTIISR_ChkEx                0x000009f4   Section        0  fm33a0xxev_gpio.o(i.GPIO_EXTI_EXTIISR_ChkEx)
    i.GPIO_EXTI_EXTIISR_ClrEx                0x00000ae8   Section        0  fm33a0xxev_gpio.o(i.GPIO_EXTI_EXTIISR_ClrEx)
    i.GPIO_EXTI_Init                         0x00000bd4   Section        0  fm33a0xxev_gpio.o(i.GPIO_EXTI_Init)
    i.GPIO_EXTI_Select_Edge                  0x00000c2c   Section        0  fm33a0xxev_gpio.o(i.GPIO_EXTI_Select_Edge)
    i.GPIO_EXTI_Select_Pin                   0x00000d38   Section        0  fm33a0xxev_gpio.o(i.GPIO_EXTI_Select_Pin)
    i.GPIO_Get_InitPara                      0x00000e6c   Section        0  fm33a0xxev_gpio.o(i.GPIO_Get_InitPara)
    i.GPIO_IRQHandler                        0x00000f00   Section        0  exti.o(i.GPIO_IRQHandler)
    i.GPIO_Init                              0x00001018   Section        0  fm33a0xxev_gpio.o(i.GPIO_Init)
    i.GPIO_ReadInputDataBit                  0x0000108a   Section        0  fm33a0xxev_gpio.o(i.GPIO_ReadInputDataBit)
    i.GPIO_ResetBits                         0x0000109e   Section        0  fm33a0xxev_gpio.o(i.GPIO_ResetBits)
    i.GPIO_SetBits                           0x000010a2   Section        0  fm33a0xxev_gpio.o(i.GPIO_SetBits)
    i.Get_Extern_Rtc_Time                    0x000010a6   Section        0  extern_rtc.o(i.Get_Extern_Rtc_Time)
    i.I2c_Ack                                0x00001160   Section        0  i2c.o(i.I2c_Ack)
    i.I2c_No_Ack                             0x000011a0   Section        0  i2c.o(i.I2c_No_Ack)
    i.I2c_Read                               0x000011d8   Section        0  i2c.o(i.I2c_Read)
    i.I2c_Scl_Gpio_Init                      0x00001230   Section        0  i2c.o(i.I2c_Scl_Gpio_Init)
    i.I2c_Send                               0x00001258   Section        0  i2c.o(i.I2c_Send)
    i.I2c_Start                              0x000012c4   Section        0  i2c.o(i.I2c_Start)
    i.I2c_Stop                               0x00001300   Section        0  i2c.o(i.I2c_Stop)
    i.IWDT_Clr                               0x00001340   Section        0  user_init.o(i.IWDT_Clr)
    i.IWDT_Init                              0x00001350   Section        0  user_init.o(i.IWDT_Init)
    i.Init_RCHF                              0x00001370   Section        0  user_init.o(i.Init_RCHF)
    i.Init_RCLP                              0x0000138c   Section        0  user_init.o(i.Init_RCLP)
    i.Init_SysClk                            0x000013b0   Section        0  user_init.o(i.Init_SysClk)
    i.Init_SysClk_Gen                        0x00001428   Section        0  user_init.o(i.Init_SysClk_Gen)
    i.InputtIO                               0x0000143e   Section        0  gpio.o(i.InputtIO)
    i.Key_GPIO_Init                          0x000014b4   Section        0  key.o(i.Key_GPIO_Init)
    i.LPTIM_CR_EN_Getable                    0x000014e8   Section        0  fm33a0xxev_lptim.o(i.LPTIM_CR_EN_Getable)
    i.LPTIM_IRQHandler                       0x00001500   Section        0  tim.o(i.LPTIM_IRQHandler)
    i.LPTIM_ISR_OVIF_Chk                     0x00001518   Section        0  fm33a0xxev_lptim.o(i.LPTIM_ISR_OVIF_Chk)
    i.LPTIM_ISR_OVIF_Clr                     0x00001530   Section        0  fm33a0xxev_lptim.o(i.LPTIM_ISR_OVIF_Clr)
    i.Lcd_DeInit                             0x0000153c   Section        0  lcd.o(i.Lcd_DeInit)
    i.Lcd_GPIO_Init                          0x00001564   Section        0  lcd_io_api.o(i.Lcd_GPIO_Init)
    i.Lcd_Init                               0x000015a0   Section        0  lcd.o(i.Lcd_Init)
    i.Lcd_Show_MenuProcess                   0x000015b4   Section        0  lcd.o(i.Lcd_Show_MenuProcess)
    i.Lcd_Sys_Init                           0x000015d8   Section        0  lcd.o(i.Lcd_Sys_Init)
    i.Lcd_Write                              0x00001600   Section        0  lcd_io_api.o(i.Lcd_Write)
    i.Lcd_Write_Reg                          0x00001632   Section        0  lcd_io_api.o(i.Lcd_Write_Reg)
    i.NMI_Handler                            0x0000166a   Section        0  exti.o(i.NMI_Handler)
    i.NVIC_SetPriority                       0x0000166c   Section        0  system_run_fun.o(i.NVIC_SetPriority)
    NVIC_SetPriority                         0x0000166d   Thumb Code   110  system_run_fun.o(i.NVIC_SetPriority)
    i.OutputIO                               0x000016e4   Section        0  gpio.o(i.OutputIO)
    i.R8025T_Read                            0x00001756   Section        0  extern_rtc.o(i.R8025T_Read)
    i.R8025T_Write                           0x000017a2   Section        0  extern_rtc.o(i.R8025T_Write)
    i.RMU_BORCR_BOR_PDRCFG_Set               0x000017d4   Section        0  fm33a0xxev_rmu.o(i.RMU_BORCR_BOR_PDRCFG_Set)
    i.RMU_BORCR_OFF_BOR_Setable              0x000017f4   Section        0  fm33a0xxev_rmu.o(i.RMU_BORCR_OFF_BOR_Setable)
    i.RMU_PDRCR_PDREN_Setable                0x00001818   Section        0  fm33a0xxev_rmu.o(i.RMU_PDRCR_PDREN_Setable)
    i.RTC_GPIO_Init                          0x0000183c   Section        0  extern_rtc.o(i.RTC_GPIO_Init)
    i.RTC_IRQHandler                         0x00001854   Section        0  rtc.o(i.RTC_IRQHandler)
    i.SPI3_Init                              0x00001858   Section        0  spi.o(i.SPI3_Init)
    i.SPIx_CR1_BAUD_Set                      0x00001930   Section        0  fm33a0xxev_spi.o(i.SPIx_CR1_BAUD_Set)
    i.SPIx_CR1_CPHA_Set                      0x00001948   Section        0  fm33a0xxev_spi.o(i.SPIx_CR1_CPHA_Set)
    i.SPIx_CR1_CPHOL_Set                     0x0000195a   Section        0  fm33a0xxev_spi.o(i.SPIx_CR1_CPHOL_Set)
    i.SPIx_CR1_IOSWAP_Set                    0x00001972   Section        0  fm33a0xxev_spi.o(i.SPIx_CR1_IOSWAP_Set)
    i.SPIx_CR1_LSBF_Set                      0x0000198c   Section        0  fm33a0xxev_spi.o(i.SPIx_CR1_LSBF_Set)
    i.SPIx_CR1_MM_Set                        0x000019a4   Section        0  fm33a0xxev_spi.o(i.SPIx_CR1_MM_Set)
    i.SPIx_CR1_WAIT_Set                      0x000019be   Section        0  fm33a0xxev_spi.o(i.SPIx_CR1_WAIT_Set)
    i.SPIx_CR2_DLEN_Set                      0x000019d6   Section        0  fm33a0xxev_spi.o(i.SPIx_CR2_DLEN_Set)
    i.SPIx_CR2_HALFDUPLEX_Set                0x000019f0   Section        0  fm33a0xxev_spi.o(i.SPIx_CR2_HALFDUPLEX_Set)
    i.SPIx_CR2_RXO_Setable                   0x00001a0a   Section        0  fm33a0xxev_spi.o(i.SPIx_CR2_RXO_Setable)
    i.SPIx_CR2_SPIEN_Setable                 0x00001a24   Section        0  fm33a0xxev_spi.o(i.SPIx_CR2_SPIEN_Setable)
    i.SPIx_CR2_SSNM_Set                      0x00001a3c   Section        0  fm33a0xxev_spi.o(i.SPIx_CR2_SSNM_Set)
    i.SPIx_CR2_SSNSEN_Setable                0x00001a54   Section        0  fm33a0xxev_spi.o(i.SPIx_CR2_SSNSEN_Setable)
    i.SPIx_CR2_TXO_AC_Setable                0x00001a6c   Section        0  fm33a0xxev_spi.o(i.SPIx_CR2_TXO_AC_Setable)
    i.SPIx_CR2_TXO_Setable                   0x00001a84   Section        0  fm33a0xxev_spi.o(i.SPIx_CR2_TXO_Setable)
    i.SPIx_CR3_MERRC_Clr                     0x00001a9c   Section        0  fm33a0xxev_spi.o(i.SPIx_CR3_MERRC_Clr)
    i.SPIx_CR3_RXBFC_Clr                     0x00001aa2   Section        0  fm33a0xxev_spi.o(i.SPIx_CR3_RXBFC_Clr)
    i.SPIx_CR3_SERRC_Clr                     0x00001aa8   Section        0  fm33a0xxev_spi.o(i.SPIx_CR3_SERRC_Clr)
    i.SPIx_CR3_TXBFC_Clr                     0x00001aae   Section        0  fm33a0xxev_spi.o(i.SPIx_CR3_TXBFC_Clr)
    i.SPIx_ISR_RXBF_Chk                      0x00001ab4   Section        0  fm33a0xxev_spi.o(i.SPIx_ISR_RXBF_Chk)
    i.SPIx_ISR_TXBE_Chk                      0x00001ac8   Section        0  fm33a0xxev_spi.o(i.SPIx_ISR_TXBE_Chk)
    i.SPIx_RXBUF_Read                        0x00001adc   Section        0  fm33a0xxev_spi.o(i.SPIx_RXBUF_Read)
    i.SPIx_TXBUF_Write                       0x00001ae2   Section        0  fm33a0xxev_spi.o(i.SPIx_TXBUF_Write)
    i.Sda_In                                 0x00001ae8   Section        0  i2c.o(i.Sda_In)
    i.Sda_Out                                0x00001b08   Section        0  i2c.o(i.Sda_Out)
    i.Set_Extern_Rtc_Time                    0x00001b28   Section        0  extern_rtc.o(i.Set_Extern_Rtc_Time)
    i.Set_Rtc_UpdataInterrupt                0x00001b8c   Section        0  extern_rtc.o(i.Set_Rtc_UpdataInterrupt)
    i.SpiWriteAndRead                        0x00001bb0   Section        0  spi.o(i.SpiWriteAndRead)
    i.SysWakeUp_ClockCfg                     0x00001be4   Section        0  user_init.o(i.SysWakeUp_ClockCfg)
    i.SystemInit                             0x00001c3c   Section        0  system_fm33a0xxev.o(i.SystemInit)
    i.System_power_on_init                   0x00001c58   Section        0  rcc_config.o(i.System_power_on_init)
    i.TimeEffectJudgm                        0x00001ca0   Section        0  extern_rtc.o(i.TimeEffectJudgm)
    i.UARTx_ISR_TXSE_Chk                     0x00001dfa   Section        0  fm33a0xxev_uart.o(i.UARTx_ISR_TXSE_Chk)
    i.UARTx_SendData_Normal                  0x00001e0e   Section        0  uart.o(i.UARTx_SendData_Normal)
    i.UARTx_TXBUF_Write                      0x00001e38   Section        0  fm33a0xxev_uart.o(i.UARTx_TXBUF_Write)
    i.Upper_ComputerLoginRecvHandler         0x00001e40   Section        0  upper_com.o(i.Upper_ComputerLoginRecvHandler)
    i.Upper_ComputerLoginRespond             0x00001ed4   Section        0  upper_com.o(i.Upper_ComputerLoginRespond)
    i.Upper_ComputerReadWriteHandler         0x00001ee0   Section        0  upper_com.o(i.Upper_ComputerReadWriteHandler)
    i.Upper_ComputerRespond                  0x00001f40   Section        0  upper_com.o(i.Upper_ComputerRespond)
    i.__0printf$8                            0x00001fa0   Section        0  printf8.o(i.__0printf$8)
    i.__0sprintf$8                           0x00001fc0   Section        0  printf8.o(i.__0sprintf$8)
    i.__ARM_common_switch8                   0x00001fe8   Section        0  extern_rtc.o(i.__ARM_common_switch8)
    i.__scatterload_copy                     0x00002004   Section       14  handlers.o(i.__scatterload_copy)
    i.__scatterload_null                     0x00002012   Section        2  handlers.o(i.__scatterload_null)
    i.__scatterload_zeroinit                 0x00002014   Section       14  handlers.o(i.__scatterload_zeroinit)
    i._printf_core                           0x00002024   Section        0  printf8.o(i._printf_core)
    _printf_core                             0x00002025   Thumb Code  1020  printf8.o(i._printf_core)
    i._printf_post_padding                   0x0000244c   Section        0  printf8.o(i._printf_post_padding)
    _printf_post_padding                     0x0000244d   Thumb Code    32  printf8.o(i._printf_post_padding)
    i._printf_pre_padding                    0x0000246c   Section        0  printf8.o(i._printf_pre_padding)
    _printf_pre_padding                      0x0000246d   Thumb Code    44  printf8.o(i._printf_pre_padding)
    i._sputc                                 0x00002498   Section        0  printf8.o(i._sputc)
    _sputc                                   0x00002499   Thumb Code    10  printf8.o(i._sputc)
    i.allExtiIRQ                             0x000024a4   Section        0  system_run_fun.o(i.allExtiIRQ)
    i.allGpioInit                            0x00002534   Section        0  system_run_fun.o(i.allGpioInit)
    i.allParaDefaultInit                     0x00002544   Section        0  system_mem_para.o(i.allParaDefaultInit)
    i.allParaPatchPro                        0x00002554   Section        0  system_mem_para.o(i.allParaPatchPro)
    i.allParaReadFromEep                     0x00002594   Section        0  system_mem_para.o(i.allParaReadFromEep)
    i.arrayA_2_arrayB                        0x000025a4   Section        0  system_general_para.o(i.arrayA_2_arrayB)
    i.cm_backtrace_call_stack                0x000025e8   Section        0  cm_backtrace.o(i.cm_backtrace_call_stack)
    i.cm_backtrace_fault                     0x000026fc   Section        0  cm_backtrace.o(i.cm_backtrace_fault)
    i.cm_backtrace_firmware_info             0x0000290c   Section        0  cm_backtrace.o(i.cm_backtrace_firmware_info)
    i.delay_init                             0x00002938   Section        0  delay.o(i.delay_init)
    i.delay_ms                               0x00002980   Section        0  delay.o(i.delay_ms)
    i.delay_us                               0x000029d0   Section        0  delay.o(i.delay_us)
    i.disassembly_ins_is_bl_blx              0x00002a20   Section        0  cm_backtrace.o(i.disassembly_ins_is_bl_blx)
    disassembly_ins_is_bl_blx                0x00002a21   Thumb Code    58  cm_backtrace.o(i.disassembly_ins_is_bl_blx)
    i.dump_stack                             0x00002a5c   Section        0  cm_backtrace.o(i.dump_stack)
    dump_stack                               0x00002a5d   Thumb Code   128  cm_backtrace.o(i.dump_stack)
    i.eepABReadCheck                         0x00002b30   Section        0  system_mem_para.o(i.eepABReadCheck)
    i.eepABWriteAndReadCheck                 0x00002c3c   Section        0  system_mem_para.o(i.eepABWriteAndReadCheck)
    i.eepParaPatchPro_1                      0x00002c8a   Section        0  system_mem_para.o(i.eepParaPatchPro_1)
    i.eepWriteAndReadCheck                   0x00002c8c   Section        0  system_mem_para.o(i.eepWriteAndReadCheck)
    i.fputc                                  0x00002ccc   Section        0  uart.o(i.fputc)
    i.hardwareDriversInit                    0x00002cf0   Section        0  system_run_fun.o(i.hardwareDriversInit)
    i.keyPro                                 0x00002cfc   Section        0  key.o(i.keyPro)
    i.lcdDisplayPro                          0x00002d64   Section        0  lcd.o(i.lcdDisplayPro)
    i.main                                   0x00002d94   Section        0  main.o(i.main)
    i.paraCalcCrcAndWriteEepAB               0x00002de0   Section        0  system_mem_para.o(i.paraCalcCrcAndWriteEepAB)
    i.print_call_stack                       0x00002e18   Section        0  cm_backtrace.o(i.print_call_stack)
    print_call_stack                         0x00002e19   Thumb Code   120  cm_backtrace.o(i.print_call_stack)
    i.rs485ReadDataPro                       0x00002eb0   Section        0  rs485_read_data.o(i.rs485ReadDataPro)
    i.sysRunFunParaInit                      0x00002ee8   Section        0  system_run_fun.o(i.sysRunFunParaInit)
    i.sysStoredParaInit                      0x00002f20   Section        0  system_run_fun.o(i.sysStoredParaInit)
    i.systemEepIdDefaultInit                 0x00002f8c   Section        0  system_mem_para.o(i.systemEepIdDefaultInit)
    i.systemEepIdReadFromEep                 0x00002fc8   Section        0  system_mem_para.o(i.systemEepIdReadFromEep)
    i.ucharcmp                               0x00002ff0   Section        0  system_general_para.o(i.ucharcmp)
    i.upperComPro                            0x0000301c   Section        0  upper_com.o(i.upperComPro)
    i.usMBCRC16                              0x00003184   Section        0  mbcrc.o(i.usMBCRC16)
    .constdata                               0x000031b8   Section      512  mbcrc.o(.constdata)
    aucCRCHi                                 0x000031b8   Data         256  mbcrc.o(.constdata)
    aucCRCLo                                 0x000032b8   Data         256  mbcrc.o(.constdata)
    .constdata                               0x000033b8   Section      224  cm_backtrace.o(.constdata)
    print_info                               0x000033b8   Data         152  cm_backtrace.o(.constdata)
    __FUNCTION__                             0x00003450   Data          20  cm_backtrace.o(.constdata)
    __FUNCTION__                             0x00003464   Data          19  cm_backtrace.o(.constdata)
    .conststring                             0x00003498   Section     1566  cm_backtrace.o(.conststring)
    .data                                    0x20000000   Section       18  system_general_para.o(.data)
    .data                                    0x20000012   Section        4  delay.o(.data)
    fac_us                                   0x20000012   Data           1  delay.o(.data)
    fac_ms                                   0x20000014   Data           2  delay.o(.data)
    .data                                    0x20000016   Section        6  extern_rtc.o(.data)
    .data                                    0x2000001c   Section        3  key.o(.data)
    P_Key1Cnt                                0x2000001c   Data           1  key.o(.data)
    R_Key2Cnt                                0x2000001d   Data           1  key.o(.data)
    L_Key3Cnt                                0x2000001e   Data           1  key.o(.data)
    .data                                    0x20000020   Section        6  upper_com.o(.data)
    uc_login_state_g                         0x20000020   Data           1  upper_com.o(.data)
    uc_rw_result_g                           0x20000022   Data           1  upper_com.o(.data)
    local_random_code_g                      0x20000024   Data           2  upper_com.o(.data)
    .data                                    0x20000026   Section        8  lcd.o(.data)
    .data                                    0x20000030   Section       20  cm_backtrace.o(.data)
    main_stack_start_addr                    0x20000030   Data           4  cm_backtrace.o(.data)
    main_stack_size                          0x20000034   Data           4  cm_backtrace.o(.data)
    code_start_addr                          0x20000038   Data           4  cm_backtrace.o(.data)
    code_size                                0x2000003c   Data           4  cm_backtrace.o(.data)
    init_ok                                  0x20000040   Data           1  cm_backtrace.o(.data)
    on_fault                                 0x20000041   Data           1  cm_backtrace.o(.data)
    stack_is_overflow                        0x20000042   Data           1  cm_backtrace.o(.data)
    on_thread_before_fault                   0x20000043   Data           1  cm_backtrace.o(.data)
    .data                                    0x20000044   Section        1  rs485_read_data.o(.data)
    .data                                    0x20000048   Section        4  system_fm33a0xxev.o(.data)
    .data                                    0x2000004c   Section        4  rand.o(.data)
    _rand_state                              0x2000004c   Data           4  rand.o(.data)
    .data                                    0x20000050   Section        4  stdout.o(.data)
    .bss                                     0x20000054   Section      357  system_mem_para.o(.bss)
    .bss                                     0x200001bc   Section     2051  upper_com.o(.bss)
    .bss                                     0x200009bf   Section       48  lcd_io_api.o(.bss)
    .bss                                     0x200009f0   Section      308  cm_backtrace.o(.bss)
    fw_name                                  0x200009f0   Data          32  cm_backtrace.o(.bss)
    hw_ver                                   0x20000a10   Data          32  cm_backtrace.o(.bss)
    sw_ver                                   0x20000a30   Data          32  cm_backtrace.o(.bss)
    call_stack_info                          0x20000a50   Data         144  cm_backtrace.o(.bss)
    regs                                     0x20000ae0   Data          68  cm_backtrace.o(.bss)
    STACK                                    0x20000b28   Section    16384  startup_fm33a0xxev.o(STACK)
 
    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$~SHL$OTIME$ROPI$EBA8$MICROLIB$REQ8$PRES8$EABIv2 0x00000000   Number         0  anon$$obj.o ABSOLUTE
    Image$$ER_IROM1$$Base                    0x00000000   Number         0  anon$$obj.o ABSOLUTE
    __ARM_use_no_argv                        0x00000000   Number         0  main.o ABSOLUTE
    __Vectors                                0x00000000   Data           4  startup_fm33a0xxev.o(RESET)
    _printf_a                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_c                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_charcount                        0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_d                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_e                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_f                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_flags                            0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_fp_dec                           0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_fp_hex                           0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_g                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_i                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_int_dec                          0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_l                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_lc                               0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_ll                               0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_lld                              0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_lli                              0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_llo                              0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_llu                              0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_llx                              0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_longlong_dec                     0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_longlong_hex                     0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_longlong_oct                     0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_ls                               0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_mbtowc                           0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_n                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_o                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_p                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_percent                          0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_pre_padding                      0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_return_value                     0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_s                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_sizespec                         0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_str                              0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_truncate_signed                  0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_truncate_unsigned                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_u                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_wc                               0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_wctomb                           0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_widthprec                        0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_x                                0x00000000   Number         0  stubs.o ABSOLUTE
    __arm_fini_                               - Undefined Weak Reference
    __cpp_initialize__aeabi_                  - Undefined Weak Reference
    __cxa_finalize                            - Undefined Weak Reference
    __decompress                              - Undefined Weak Reference
    _clock_init                               - Undefined Weak Reference
    _microlib_exit                            - Undefined Weak Reference
    __Vectors_End                            0x000000c0   Data           0  startup_fm33a0xxev.o(RESET)
    __Vectors_Size                           0x000000c0   Number         0  startup_fm33a0xxev.o ABSOLUTE
    __main                                   0x000000c1   Thumb Code     0  entry.o(.ARM.Collect$$$$00000000)
    _main_stk                                0x000000c1   Thumb Code     0  entry2.o(.ARM.Collect$$$$00000001)
    _main_scatterload                        0x000000c5   Thumb Code     0  entry5.o(.ARM.Collect$$$$00000004)
    __main_after_scatterload                 0x000000c9   Thumb Code     0  entry5.o(.ARM.Collect$$$$00000004)
    _main_clock                              0x000000c9   Thumb Code     0  entry7b.o(.ARM.Collect$$$$00000008)
    _main_cpp_init                           0x000000c9   Thumb Code     0  entry8b.o(.ARM.Collect$$$$0000000A)
    _main_init                               0x000000c9   Thumb Code     0  entry9a.o(.ARM.Collect$$$$0000000B)
    __rt_lib_shutdown_fini                   0x000000d1   Thumb Code     0  entry12b.o(.ARM.Collect$$$$0000000E)
    __rt_final_cpp                           0x000000d5   Thumb Code     0  entry10a.o(.ARM.Collect$$$$0000000F)
    __rt_final_exit                          0x000000d5   Thumb Code     0  entry11a.o(.ARM.Collect$$$$00000011)
    HardFault_Handler                        0x000000d9   Thumb Code    12  cmb_fault.o(.text)
    Reset_Handler                            0x000000e5   Thumb Code     8  startup_fm33a0xxev.o(.text)
    SVC_Handler                              0x000000f1   Thumb Code     2  startup_fm33a0xxev.o(.text)
    PendSV_Handler                           0x000000f3   Thumb Code     2  startup_fm33a0xxev.o(.text)
    SysTick_Handler                          0x000000f5   Thumb Code     2  startup_fm33a0xxev.o(.text)
    ADC_IRQHandler                           0x000000f7   Thumb Code     0  startup_fm33a0xxev.o(.text)
    COMP_IRQHandler                          0x000000f7   Thumb Code     0  startup_fm33a0xxev.o(.text)
    CRYPTO_IRQHandler                        0x000000f7   Thumb Code     0  startup_fm33a0xxev.o(.text)
    ETx_IRQHandler                           0x000000f7   Thumb Code     0  startup_fm33a0xxev.o(.text)
    FLASH_IRQHandler                         0x000000f7   Thumb Code     0  startup_fm33a0xxev.o(.text)
    I2Cx_IRQHandler                          0x000000f7   Thumb Code     0  startup_fm33a0xxev.o(.text)
    LPUART0_IRQHandler                       0x000000f7   Thumb Code     0  startup_fm33a0xxev.o(.text)
    LPUART1_IRQHandler                       0x000000f7   Thumb Code     0  startup_fm33a0xxev.o(.text)
    QSPI_IRQHandler                          0x000000f7   Thumb Code     0  startup_fm33a0xxev.o(.text)
    SPI0_IRQHandler                          0x000000f7   Thumb Code     0  startup_fm33a0xxev.o(.text)
    SPI1_IRQHandler                          0x000000f7   Thumb Code     0  startup_fm33a0xxev.o(.text)
    SPI2_IRQHandler                          0x000000f7   Thumb Code     0  startup_fm33a0xxev.o(.text)
    SPI3_IRQHandler                          0x000000f7   Thumb Code     0  startup_fm33a0xxev.o(.text)
    SPI4_IRQHandler                          0x000000f7   Thumb Code     0  startup_fm33a0xxev.o(.text)
    SVD_IRQHandler                           0x000000f7   Thumb Code     0  startup_fm33a0xxev.o(.text)
    U7816_IRQHandler                         0x000000f7   Thumb Code     0  startup_fm33a0xxev.o(.text)
    UART0_IRQHandler                         0x000000f7   Thumb Code     0  startup_fm33a0xxev.o(.text)
    UART1_IRQHandler                         0x000000f7   Thumb Code     0  startup_fm33a0xxev.o(.text)
    UART2_IRQHandler                         0x000000f7   Thumb Code     0  startup_fm33a0xxev.o(.text)
    UART3_IRQHandler                         0x000000f7   Thumb Code     0  startup_fm33a0xxev.o(.text)
    UART4_IRQHandler                         0x000000f7   Thumb Code     0  startup_fm33a0xxev.o(.text)
    UART5_IRQHandler                         0x000000f7   Thumb Code     0  startup_fm33a0xxev.o(.text)
    WKUPx_IRQHandler                         0x000000f7   Thumb Code     0  startup_fm33a0xxev.o(.text)
    WWDT_IRQHandler                          0x000000f7   Thumb Code     0  startup_fm33a0xxev.o(.text)
    __aeabi_uidiv                            0x00000101   Thumb Code     0  uidiv.o(.text)
    __aeabi_uidivmod                         0x00000101   Thumb Code    44  uidiv.o(.text)
    __aeabi_idiv                             0x0000012d   Thumb Code     0  idiv.o(.text)
    __aeabi_idivmod                          0x0000012d   Thumb Code    40  idiv.o(.text)
    __aeabi_uldivmod                         0x00000155   Thumb Code    96  uldiv.o(.text)
    rand                                     0x000001b5   Thumb Code    18  rand.o(.text)
    srand                                    0x000001c7   Thumb Code     6  rand.o(.text)
    __aeabi_memcpy                           0x000001d9   Thumb Code    36  memcpya.o(.text)
    __aeabi_memcpy4                          0x000001d9   Thumb Code     0  memcpya.o(.text)
    __aeabi_memcpy8                          0x000001d9   Thumb Code     0  memcpya.o(.text)
    __aeabi_memset                           0x000001fd   Thumb Code    14  memseta.o(.text)
    __aeabi_memset4                          0x000001fd   Thumb Code     0  memseta.o(.text)
    __aeabi_memset8                          0x000001fd   Thumb Code     0  memseta.o(.text)
    __aeabi_memclr                           0x0000020b   Thumb Code     4  memseta.o(.text)
    __aeabi_memclr4                          0x0000020b   Thumb Code     0  memseta.o(.text)
    __aeabi_memclr8                          0x0000020b   Thumb Code     0  memseta.o(.text)
    _memset$wrapper                          0x0000020f   Thumb Code    18  memseta.o(.text)
    __aeabi_uread4                           0x00000221   Thumb Code    20  uread4.o(.text)
    __rt_uread4                              0x00000221   Thumb Code     0  uread4.o(.text)
    _uread4                                  0x00000221   Thumb Code     0  uread4.o(.text)
    __aeabi_uwrite4                          0x00000235   Thumb Code    18  uwrite4.o(.text)
    __rt_uwrite4                             0x00000235   Thumb Code     0  uwrite4.o(.text)
    _uwrite4                                 0x00000235   Thumb Code     0  uwrite4.o(.text)
    __aeabi_llsl                             0x00000247   Thumb Code    32  llshl.o(.text)
    _ll_shift_l                              0x00000247   Thumb Code     0  llshl.o(.text)
    __aeabi_llsr                             0x00000267   Thumb Code    34  llushr.o(.text)
    _ll_ushift_r                             0x00000267   Thumb Code     0  llushr.o(.text)
    __scatterload                            0x00000289   Thumb Code    28  init.o(.text)
    __scatterload_rt2                        0x00000289   Thumb Code     0  init.o(.text)
    AltFunIO                                 0x000002ad   Thumb Code   166  gpio.o(i.AltFunIO)
    AnalogIO                                 0x00000353   Thumb Code    80  gpio.o(i.AnalogIO)
    BSTIM_IRQHandler                         0x000003a3   Thumb Code     2  tim.o(i.BSTIM_IRQHandler)
    BTx_IRQHandler                           0x000003a5   Thumb Code     2  tim.o(i.BTx_IRQHandler)
    CMU_IER_HFDET_IE_Setable                 0x000003a9   Thumb Code    32  fm33a0xxev_cmu.o(i.CMU_IER_HFDET_IE_Setable)
    CMU_IRQHandler                           0x000003cd   Thumb Code     4  user_init.o(i.CMU_IRQHandler)
    CMU_ISR_HFDETO_Chk                       0x000003d1   Thumb Code    22  fm33a0xxev_cmu.o(i.CMU_ISR_HFDETO_Chk)
    CMU_Init_RCHF_Trim                       0x000003ed   Thumb Code    80  fm33a0xxev_cmu.o(i.CMU_Init_RCHF_Trim)
    CMU_OPCCR1_EXTICKE_Setable               0x00000441   Thumb Code    32  fm33a0xxev_cmu.o(i.CMU_OPCCR1_EXTICKE_Setable)
    CMU_OPCCR1_EXTICKSEL_Set                 0x00000465   Thumb Code    26  fm33a0xxev_cmu.o(i.CMU_OPCCR1_EXTICKSEL_Set)
    CMU_PERCLK_SetableEx                     0x00000485   Thumb Code   100  fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx)
    CMU_RCHFCR_FSEL_Set                      0x000004ed   Thumb Code    28  fm33a0xxev_cmu.o(i.CMU_RCHFCR_FSEL_Set)
    CMU_RCHFCR_RCHFEN_Setable                0x0000050d   Thumb Code    32  fm33a0xxev_cmu.o(i.CMU_RCHFCR_RCHFEN_Setable)
    CMU_RCHFTR_RCHFTRIM_Set                  0x00000531   Thumb Code    20  fm33a0xxev_cmu.o(i.CMU_RCHFTR_RCHFTRIM_Set)
    CMU_RCHF_Init                            0x00000549   Thumb Code    18  fm33a0xxev_cmu.o(i.CMU_RCHF_Init)
    CMU_SYSCLKCR_AHBPRES_Set                 0x0000055d   Thumb Code    28  fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_AHBPRES_Set)
    CMU_SYSCLKCR_APBPRES_Set                 0x0000057d   Thumb Code    28  fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_APBPRES_Set)
    CMU_SYSCLKCR_SLP_ENEXTI_Setable          0x0000059d   Thumb Code    34  fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_SLP_ENEXTI_Setable)
    CMU_SYSCLKCR_SYSCLKSEL_Set               0x000005c5   Thumb Code    22  fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_SYSCLKSEL_Set)
    CMU_SysClk_Init                          0x000005e1   Thumb Code    30  fm33a0xxev_cmu.o(i.CMU_SysClk_Init)
    CMU_XTHFCR_XTHFEN_Setable                0x00000601   Thumb Code    32  fm33a0xxev_cmu.o(i.CMU_XTHFCR_XTHFEN_Setable)
    CMU_XTHFCR_XTHF_CFG_Set                  0x00000625   Thumb Code    28  fm33a0xxev_cmu.o(i.CMU_XTHFCR_XTHF_CFG_Set)
    COM_equipment_basic_inf_handle           0x00000645   Thumb Code    46  upper_com_data_pro.o(i.COM_equipment_basic_inf_handle)
    DEBUG_Init                               0x00000679   Thumb Code    10  rcc_config.o(i.DEBUG_Init)
    DMA_CHxCR_CHxFTIE_Getable                0x00000685   Thumb Code    26  fm33a0xxev_dma.o(i.DMA_CHxCR_CHxFTIE_Getable)
    DMA_IRQHandler                           0x000006a5   Thumb Code    30  uart.o(i.DMA_IRQHandler)
    DMA_ISR_DMACHFT_Chk                      0x000006c5   Thumb Code    26  fm33a0xxev_dma.o(i.DMA_ISR_DMACHFT_Chk)
    DMA_ISR_DMACHFT_Clr                      0x000006e5   Thumb Code    12  fm33a0xxev_dma.o(i.DMA_ISR_DMACHFT_Clr)
    EEPROM_MultipleRead                      0x000006f5   Thumb Code   106  eeprom.o(i.EEPROM_MultipleRead)
    EEPROM_MultipleWrite                     0x00000765   Thumb Code   274  eeprom.o(i.EEPROM_MultipleWrite)
    EEPROM_Wait_Busy                         0x0000087d   Thumb Code    18  eeprom.o(i.EEPROM_Wait_Busy)
    EEPROM_stat_read                         0x00000891   Thumb Code    70  eeprom.o(i.EEPROM_stat_read)
    FLS_RDCR_WAIT_Set                        0x000008dd   Thumb Code    22  fm33a0xxev_flash.o(i.FLS_RDCR_WAIT_Set)
    GPIO_EXTI_EXTIDF_Setable                 0x000008f9   Thumb Code   238  fm33a0xxev_gpio.o(i.GPIO_EXTI_EXTIDF_Setable)
    GPIO_EXTI_EXTIISR_ChkEx                  0x000009f5   Thumb Code   232  fm33a0xxev_gpio.o(i.GPIO_EXTI_EXTIISR_ChkEx)
    GPIO_EXTI_EXTIISR_ClrEx                  0x00000ae9   Thumb Code   222  fm33a0xxev_gpio.o(i.GPIO_EXTI_EXTIISR_ClrEx)
    GPIO_EXTI_Init                           0x00000bd5   Thumb Code    84  fm33a0xxev_gpio.o(i.GPIO_EXTI_Init)
    GPIO_EXTI_Select_Edge                    0x00000c2d   Thumb Code   254  fm33a0xxev_gpio.o(i.GPIO_EXTI_Select_Edge)
    GPIO_EXTI_Select_Pin                     0x00000d39   Thumb Code   296  fm33a0xxev_gpio.o(i.GPIO_EXTI_Select_Pin)
    GPIO_Get_InitPara                        0x00000e6d   Thumb Code   148  fm33a0xxev_gpio.o(i.GPIO_Get_InitPara)
    GPIO_IRQHandler                          0x00000f01   Thumb Code   268  exti.o(i.GPIO_IRQHandler)
    GPIO_Init                                0x00001019   Thumb Code   114  fm33a0xxev_gpio.o(i.GPIO_Init)
    GPIO_ReadInputDataBit                    0x0000108b   Thumb Code    20  fm33a0xxev_gpio.o(i.GPIO_ReadInputDataBit)
    GPIO_ResetBits                           0x0000109f   Thumb Code     4  fm33a0xxev_gpio.o(i.GPIO_ResetBits)
    GPIO_SetBits                             0x000010a3   Thumb Code     4  fm33a0xxev_gpio.o(i.GPIO_SetBits)
    Get_Extern_Rtc_Time                      0x000010a7   Thumb Code   186  extern_rtc.o(i.Get_Extern_Rtc_Time)
    I2c_Ack                                  0x00001161   Thumb Code    58  i2c.o(i.I2c_Ack)
    I2c_No_Ack                               0x000011a1   Thumb Code    50  i2c.o(i.I2c_No_Ack)
    I2c_Read                                 0x000011d9   Thumb Code    82  i2c.o(i.I2c_Read)
    I2c_Scl_Gpio_Init                        0x00001231   Thumb Code    30  i2c.o(i.I2c_Scl_Gpio_Init)
    I2c_Send                                 0x00001259   Thumb Code   102  i2c.o(i.I2c_Send)
    I2c_Start                                0x000012c5   Thumb Code    56  i2c.o(i.I2c_Start)
    I2c_Stop                                 0x00001301   Thumb Code    58  i2c.o(i.I2c_Stop)
    IWDT_Clr                                 0x00001341   Thumb Code     8  user_init.o(i.IWDT_Clr)
    IWDT_Init                                0x00001351   Thumb Code    22  user_init.o(i.IWDT_Init)
    Init_RCHF                                0x00001371   Thumb Code    26  user_init.o(i.Init_RCHF)
    Init_RCLP                                0x0000138d   Thumb Code    24  user_init.o(i.Init_RCLP)
    Init_SysClk                              0x000013b1   Thumb Code   108  user_init.o(i.Init_SysClk)
    Init_SysClk_Gen                          0x00001429   Thumb Code    22  user_init.o(i.Init_SysClk_Gen)
    InputtIO                                 0x0000143f   Thumb Code   116  gpio.o(i.InputtIO)
    Key_GPIO_Init                            0x000014b5   Thumb Code    48  key.o(i.Key_GPIO_Init)
    LPTIM_CR_EN_Getable                      0x000014e9   Thumb Code    20  fm33a0xxev_lptim.o(i.LPTIM_CR_EN_Getable)
    LPTIM_IRQHandler                         0x00001501   Thumb Code    24  tim.o(i.LPTIM_IRQHandler)
    LPTIM_ISR_OVIF_Chk                       0x00001519   Thumb Code    20  fm33a0xxev_lptim.o(i.LPTIM_ISR_OVIF_Chk)
    LPTIM_ISR_OVIF_Clr                       0x00001531   Thumb Code     8  fm33a0xxev_lptim.o(i.LPTIM_ISR_OVIF_Clr)
    Lcd_DeInit                               0x0000153d   Thumb Code    32  lcd.o(i.Lcd_DeInit)
    Lcd_GPIO_Init                            0x00001565   Thumb Code    52  lcd_io_api.o(i.Lcd_GPIO_Init)
    Lcd_Init                                 0x000015a1   Thumb Code    14  lcd.o(i.Lcd_Init)
    Lcd_Show_MenuProcess                     0x000015b5   Thumb Code    26  lcd.o(i.Lcd_Show_MenuProcess)
    Lcd_Sys_Init                             0x000015d9   Thumb Code    32  lcd.o(i.Lcd_Sys_Init)
    Lcd_Write                                0x00001601   Thumb Code    50  lcd_io_api.o(i.Lcd_Write)
    Lcd_Write_Reg                            0x00001633   Thumb Code    56  lcd_io_api.o(i.Lcd_Write_Reg)
    NMI_Handler                              0x0000166b   Thumb Code     2  exti.o(i.NMI_Handler)
    OutputIO                                 0x000016e5   Thumb Code   114  gpio.o(i.OutputIO)
    R8025T_Read                              0x00001757   Thumb Code    76  extern_rtc.o(i.R8025T_Read)
    R8025T_Write                             0x000017a3   Thumb Code    48  extern_rtc.o(i.R8025T_Write)
    RMU_BORCR_BOR_PDRCFG_Set                 0x000017d5   Thumb Code    26  fm33a0xxev_rmu.o(i.RMU_BORCR_BOR_PDRCFG_Set)
    RMU_BORCR_OFF_BOR_Setable                0x000017f5   Thumb Code    32  fm33a0xxev_rmu.o(i.RMU_BORCR_OFF_BOR_Setable)
    RMU_PDRCR_PDREN_Setable                  0x00001819   Thumb Code    32  fm33a0xxev_rmu.o(i.RMU_PDRCR_PDREN_Setable)
    RTC_GPIO_Init                            0x0000183d   Thumb Code    18  extern_rtc.o(i.RTC_GPIO_Init)
    RTC_IRQHandler                           0x00001855   Thumb Code     2  rtc.o(i.RTC_IRQHandler)
    SPI3_Init                                0x00001859   Thumb Code   200  spi.o(i.SPI3_Init)
    SPIx_CR1_BAUD_Set                        0x00001931   Thumb Code    24  fm33a0xxev_spi.o(i.SPIx_CR1_BAUD_Set)
    SPIx_CR1_CPHA_Set                        0x00001949   Thumb Code    18  fm33a0xxev_spi.o(i.SPIx_CR1_CPHA_Set)
    SPIx_CR1_CPHOL_Set                       0x0000195b   Thumb Code    24  fm33a0xxev_spi.o(i.SPIx_CR1_CPHOL_Set)
    SPIx_CR1_IOSWAP_Set                      0x00001973   Thumb Code    26  fm33a0xxev_spi.o(i.SPIx_CR1_IOSWAP_Set)
    SPIx_CR1_LSBF_Set                        0x0000198d   Thumb Code    24  fm33a0xxev_spi.o(i.SPIx_CR1_LSBF_Set)
    SPIx_CR1_MM_Set                          0x000019a5   Thumb Code    26  fm33a0xxev_spi.o(i.SPIx_CR1_MM_Set)
    SPIx_CR1_WAIT_Set                        0x000019bf   Thumb Code    24  fm33a0xxev_spi.o(i.SPIx_CR1_WAIT_Set)
    SPIx_CR2_DLEN_Set                        0x000019d7   Thumb Code    26  fm33a0xxev_spi.o(i.SPIx_CR2_DLEN_Set)
    SPIx_CR2_HALFDUPLEX_Set                  0x000019f1   Thumb Code    26  fm33a0xxev_spi.o(i.SPIx_CR2_HALFDUPLEX_Set)
    SPIx_CR2_RXO_Setable                     0x00001a0b   Thumb Code    26  fm33a0xxev_spi.o(i.SPIx_CR2_RXO_Setable)
    SPIx_CR2_SPIEN_Setable                   0x00001a25   Thumb Code    24  fm33a0xxev_spi.o(i.SPIx_CR2_SPIEN_Setable)
    SPIx_CR2_SSNM_Set                        0x00001a3d   Thumb Code    24  fm33a0xxev_spi.o(i.SPIx_CR2_SSNM_Set)
    SPIx_CR2_SSNSEN_Setable                  0x00001a55   Thumb Code    24  fm33a0xxev_spi.o(i.SPIx_CR2_SSNSEN_Setable)
    SPIx_CR2_TXO_AC_Setable                  0x00001a6d   Thumb Code    24  fm33a0xxev_spi.o(i.SPIx_CR2_TXO_AC_Setable)
    SPIx_CR2_TXO_Setable                     0x00001a85   Thumb Code    24  fm33a0xxev_spi.o(i.SPIx_CR2_TXO_Setable)
    SPIx_CR3_MERRC_Clr                       0x00001a9d   Thumb Code     6  fm33a0xxev_spi.o(i.SPIx_CR3_MERRC_Clr)
    SPIx_CR3_RXBFC_Clr                       0x00001aa3   Thumb Code     6  fm33a0xxev_spi.o(i.SPIx_CR3_RXBFC_Clr)
    SPIx_CR3_SERRC_Clr                       0x00001aa9   Thumb Code     6  fm33a0xxev_spi.o(i.SPIx_CR3_SERRC_Clr)
    SPIx_CR3_TXBFC_Clr                       0x00001aaf   Thumb Code     6  fm33a0xxev_spi.o(i.SPIx_CR3_TXBFC_Clr)
    SPIx_ISR_RXBF_Chk                        0x00001ab5   Thumb Code    20  fm33a0xxev_spi.o(i.SPIx_ISR_RXBF_Chk)
    SPIx_ISR_TXBE_Chk                        0x00001ac9   Thumb Code    20  fm33a0xxev_spi.o(i.SPIx_ISR_TXBE_Chk)
    SPIx_RXBUF_Read                          0x00001add   Thumb Code     6  fm33a0xxev_spi.o(i.SPIx_RXBUF_Read)
    SPIx_TXBUF_Write                         0x00001ae3   Thumb Code     4  fm33a0xxev_spi.o(i.SPIx_TXBUF_Write)
    Sda_In                                   0x00001ae9   Thumb Code    22  i2c.o(i.Sda_In)
    Sda_Out                                  0x00001b09   Thumb Code    22  i2c.o(i.Sda_Out)
    Set_Extern_Rtc_Time                      0x00001b29   Thumb Code    90  extern_rtc.o(i.Set_Extern_Rtc_Time)
    Set_Rtc_UpdataInterrupt                  0x00001b8d   Thumb Code    34  extern_rtc.o(i.Set_Rtc_UpdataInterrupt)
    SpiWriteAndRead                          0x00001bb1   Thumb Code    48  spi.o(i.SpiWriteAndRead)
    SysWakeUp_ClockCfg                       0x00001be5   Thumb Code    84  user_init.o(i.SysWakeUp_ClockCfg)
    SystemInit                               0x00001c3d   Thumb Code    16  system_fm33a0xxev.o(i.SystemInit)
    System_power_on_init                     0x00001c59   Thumb Code    62  rcc_config.o(i.System_power_on_init)
    TimeEffectJudgm                          0x00001ca1   Thumb Code   346  extern_rtc.o(i.TimeEffectJudgm)
    UARTx_ISR_TXSE_Chk                       0x00001dfb   Thumb Code    20  fm33a0xxev_uart.o(i.UARTx_ISR_TXSE_Chk)
    UARTx_SendData_Normal                    0x00001e0f   Thumb Code    42  uart.o(i.UARTx_SendData_Normal)
    UARTx_TXBUF_Write                        0x00001e39   Thumb Code     8  fm33a0xxev_uart.o(i.UARTx_TXBUF_Write)
    Upper_ComputerLoginRecvHandler           0x00001e41   Thumb Code   134  upper_com.o(i.Upper_ComputerLoginRecvHandler)
    Upper_ComputerLoginRespond               0x00001ed5   Thumb Code    12  upper_com.o(i.Upper_ComputerLoginRespond)
    Upper_ComputerReadWriteHandler           0x00001ee1   Thumb Code    88  upper_com.o(i.Upper_ComputerReadWriteHandler)
    Upper_ComputerRespond                    0x00001f41   Thumb Code    88  upper_com.o(i.Upper_ComputerRespond)
    __0printf$8                              0x00001fa1   Thumb Code    24  printf8.o(i.__0printf$8)
    __1printf$8                              0x00001fa1   Thumb Code     0  printf8.o(i.__0printf$8)
    __2printf                                0x00001fa1   Thumb Code     0  printf8.o(i.__0printf$8)
    __0sprintf$8                             0x00001fc1   Thumb Code    36  printf8.o(i.__0sprintf$8)
    __1sprintf$8                             0x00001fc1   Thumb Code     0  printf8.o(i.__0sprintf$8)
    __2sprintf                               0x00001fc1   Thumb Code     0  printf8.o(i.__0sprintf$8)
    __ARM_common_switch8                     0x00001fe9   Thumb Code    28  extern_rtc.o(i.__ARM_common_switch8)
    __scatterload_copy                       0x00002005   Thumb Code    14  handlers.o(i.__scatterload_copy)
    __scatterload_null                       0x00002013   Thumb Code     2  handlers.o(i.__scatterload_null)
    __scatterload_zeroinit                   0x00002015   Thumb Code    14  handlers.o(i.__scatterload_zeroinit)
    allExtiIRQ                               0x000024a5   Thumb Code   136  system_run_fun.o(i.allExtiIRQ)
    allGpioInit                              0x00002535   Thumb Code    16  system_run_fun.o(i.allGpioInit)
    allParaDefaultInit                       0x00002545   Thumb Code    16  system_mem_para.o(i.allParaDefaultInit)
    allParaPatchPro                          0x00002555   Thumb Code    54  system_mem_para.o(i.allParaPatchPro)
    allParaReadFromEep                       0x00002595   Thumb Code    16  system_mem_para.o(i.allParaReadFromEep)
    arrayA_2_arrayB                          0x000025a5   Thumb Code    66  system_general_para.o(i.arrayA_2_arrayB)
    cm_backtrace_call_stack                  0x000025e9   Thumb Code   248  cm_backtrace.o(i.cm_backtrace_call_stack)
    cm_backtrace_fault                       0x000026fd   Thumb Code   322  cm_backtrace.o(i.cm_backtrace_fault)
    cm_backtrace_firmware_info               0x0000290d   Thumb Code    24  cm_backtrace.o(i.cm_backtrace_firmware_info)
    delay_init                               0x00002939   Thumb Code    56  delay.o(i.delay_init)
    delay_ms                                 0x00002981   Thumb Code    70  delay.o(i.delay_ms)
    delay_us                                 0x000029d1   Thumb Code    70  delay.o(i.delay_us)
    eepABReadCheck                           0x00002b31   Thumb Code   262  system_mem_para.o(i.eepABReadCheck)
    eepABWriteAndReadCheck                   0x00002c3d   Thumb Code    78  system_mem_para.o(i.eepABWriteAndReadCheck)
    eepParaPatchPro_1                        0x00002c8b   Thumb Code     2  system_mem_para.o(i.eepParaPatchPro_1)
    eepWriteAndReadCheck                     0x00002c8d   Thumb Code    64  system_mem_para.o(i.eepWriteAndReadCheck)
    fputc                                    0x00002ccd   Thumb Code    32  uart.o(i.fputc)
    hardwareDriversInit                      0x00002cf1   Thumb Code    12  system_run_fun.o(i.hardwareDriversInit)
    keyPro                                   0x00002cfd   Thumb Code    86  key.o(i.keyPro)
    lcdDisplayPro                            0x00002d65   Thumb Code    38  lcd.o(i.lcdDisplayPro)
    main                                     0x00002d95   Thumb Code    68  main.o(i.main)
    paraCalcCrcAndWriteEepAB                 0x00002de1   Thumb Code    52  system_mem_para.o(i.paraCalcCrcAndWriteEepAB)
    rs485ReadDataPro                         0x00002eb1   Thumb Code    52  rs485_read_data.o(i.rs485ReadDataPro)
    sysRunFunParaInit                        0x00002ee9   Thumb Code    48  system_run_fun.o(i.sysRunFunParaInit)
    sysStoredParaInit                        0x00002f21   Thumb Code   102  system_run_fun.o(i.sysStoredParaInit)
    systemEepIdDefaultInit                   0x00002f8d   Thumb Code    50  system_mem_para.o(i.systemEepIdDefaultInit)
    systemEepIdReadFromEep                   0x00002fc9   Thumb Code    34  system_mem_para.o(i.systemEepIdReadFromEep)
    ucharcmp                                 0x00002ff1   Thumb Code    44  system_general_para.o(i.ucharcmp)
    upperComPro                              0x0000301d   Thumb Code   330  upper_com.o(i.upperComPro)
    usMBCRC16                                0x00003185   Thumb Code    44  mbcrc.o(i.usMBCRC16)
    Region$$Table$$Base                      0x00003ab8   Number         0  anon$$obj.o(Region$$Table)
    Image$$ER_IROM1$$Limit                   0x00003ad8   Number         0  anon$$obj.o ABSOLUTE
    Region$$Table$$Limit                     0x00003ad8   Number         0  anon$$obj.o(Region$$Table)
    sys_run_period                           0x20000000   Data           1  system_general_para.o(.data)
    sys_delay_sec_para_g                     0x20000002   Data          16  system_general_para.o(.data)
    sys_clockBCD_g                           0x20000016   Data           6  extern_rtc.o(.data)
    uc_return_flag_g                         0x20000021   Data           1  upper_com.o(.data)
    LCD_DRIVE_MODE_14_13                     0x20000026   Data           1  lcd.o(.data)
    LCD_DRIVE_MODE_14_14                     0x20000027   Data           1  lcd.o(.data)
    LCD_DRIVE_MODE_18_13                     0x20000028   Data           1  lcd.o(.data)
    LCD_DRIVE_MODE_18_14                     0x20000029   Data           1  lcd.o(.data)
    LCD_SYSTEM_MODE_OFF_OFF                  0x2000002a   Data           1  lcd.o(.data)
    LCD_SYSTEM_MODE_ON_OFF                   0x2000002b   Data           1  lcd.o(.data)
    LCD_SYSTEM_MODE_ON_ON                    0x2000002c   Data           1  lcd.o(.data)
    lcd_wake_up_flag_g                       0x2000002d   Data           1  lcd.o(.data)
    rs485_com_status_g                       0x20000044   Data           1  rs485_read_data.o(.data)
    SystemCoreClock                          0x20000048   Data           4  system_fm33a0xxev.o(.data)
    __stdout                                 0x20000050   Data           4  stdout.o(.data)
    system_eep_id_g                          0x20000054   Data          42  system_mem_para.o(.bss)
    equipment_basic_inf_g                    0x2000007e   Data          70  system_mem_para.o(.bss)
    main_equipment_hardware_software_inf_g   0x200000c4   Data          26  system_mem_para.o(.bss)
    lcd_equipment_hardware_software_inf_g    0x200000de   Data          26  system_mem_para.o(.bss)
    wireless_equipment_hardware_software_inf_g 0x200000f8   Data          26  system_mem_para.o(.bss)
    save_realtime_data_g                     0x20000112   Data         167  system_mem_para.o(.bss)
    uc_recv_para_g                           0x200001bc   Data        1027  upper_com.o(.bss)
    uc_respond_data_g                        0x200005bf   Data        1024  upper_com.o(.bss)
    LCD_Buffer                               0x200009bf   Data          48  lcd_io_api.o(.bss)
    STACK$$Base                              0x20000b28   Number         0  startup_fm33a0xxev.o(STACK)
    STACK$$Limit                             0x20004b28   Number         0  startup_fm33a0xxev.o(STACK)
    __initial_sp                             0x20004b28   Data           0  startup_fm33a0xxev.o(STACK)
 
 
 
==============================================================================
 
Memory Map of the image
 
  Image Entry point : 0x000000c1
 
  Load Region LR_IROM1 (Base: 0x00000000, Size: 0x00003b2c, Max: 0x00080000, ABSOLUTE)
 
    Execution Region ER_IROM1 (Exec base: 0x00000000, Load base: 0x00000000, Size: 0x00003ad8, Max: 0x00080000, ABSOLUTE)
 
    Exec Addr    Load Addr    Size         Type   Attr      Idx    E Section Name        Object
 
    0x00000000   0x00000000   0x000000c0   Data   RO        12785    RESET               startup_fm33a0xxev.o
    0x000000c0   0x000000c0   0x00000000   Code   RO        12826  * .ARM.Collect$$$$00000000  mc_p.l(entry.o)
    0x000000c0   0x000000c0   0x00000004   Code   RO        13145    .ARM.Collect$$$$00000001  mc_p.l(entry2.o)
    0x000000c4   0x000000c4   0x00000004   Code   RO        13148    .ARM.Collect$$$$00000004  mc_p.l(entry5.o)
    0x000000c8   0x000000c8   0x00000000   Code   RO        13150    .ARM.Collect$$$$00000008  mc_p.l(entry7b.o)
    0x000000c8   0x000000c8   0x00000000   Code   RO        13152    .ARM.Collect$$$$0000000A  mc_p.l(entry8b.o)
    0x000000c8   0x000000c8   0x00000008   Code   RO        13153    .ARM.Collect$$$$0000000B  mc_p.l(entry9a.o)
    0x000000d0   0x000000d0   0x00000004   Code   RO        13160    .ARM.Collect$$$$0000000E  mc_p.l(entry12b.o)
    0x000000d4   0x000000d4   0x00000000   Code   RO        13155    .ARM.Collect$$$$0000000F  mc_p.l(entry10a.o)
    0x000000d4   0x000000d4   0x00000000   Code   RO        13157    .ARM.Collect$$$$00000011  mc_p.l(entry11a.o)
    0x000000d4   0x000000d4   0x00000004   Code   RO        13146    .ARM.Collect$$$$00002712  mc_p.l(entry2.o)
    0x000000d8   0x000000d8   0x0000000c   Code   RO         2623    .text               cmb_fault.o
    0x000000e4   0x000000e4   0x0000001c   Code   RO        12786    .text               startup_fm33a0xxev.o
    0x00000100   0x00000100   0x0000002c   Code   RO        12829    .text               mc_p.l(uidiv.o)
    0x0000012c   0x0000012c   0x00000028   Code   RO        12831    .text               mc_p.l(idiv.o)
    0x00000154   0x00000154   0x00000060   Code   RO        12833    .text               mc_p.l(uldiv.o)
    0x000001b4   0x000001b4   0x00000024   Code   RO        12835    .text               mc_p.l(rand.o)
    0x000001d8   0x000001d8   0x00000024   Code   RO        12838    .text               mc_p.l(memcpya.o)
    0x000001fc   0x000001fc   0x00000024   Code   RO        12840    .text               mc_p.l(memseta.o)
    0x00000220   0x00000220   0x00000014   Code   RO        13107    .text               mc_p.l(uread4.o)
    0x00000234   0x00000234   0x00000012   Code   RO        13109    .text               mc_p.l(uwrite4.o)
    0x00000246   0x00000246   0x00000020   Code   RO        13162    .text               mc_p.l(llshl.o)
    0x00000266   0x00000266   0x00000022   Code   RO        13164    .text               mc_p.l(llushr.o)
    0x00000288   0x00000288   0x00000024   Code   RO        13175    .text               mc_p.l(init.o)
    0x000002ac   0x000002ac   0x000000a6   Code   RO          722    i.AltFunIO          gpio.o
    0x00000352   0x00000352   0x00000050   Code   RO          724    i.AnalogIO          gpio.o
    0x000003a2   0x000003a2   0x00000002   Code   RO          942    i.BSTIM_IRQHandler  tim.o
    0x000003a4   0x000003a4   0x00000002   Code   RO          943    i.BTx_IRQHandler    tim.o
    0x000003a6   0x000003a6   0x00000002   PAD
    0x000003a8   0x000003a8   0x00000024   Code   RO         4190    i.CMU_IER_HFDET_IE_Setable  fm33a0xxev_cmu.o
    0x000003cc   0x000003cc   0x00000004   Code   RO          570    i.CMU_IRQHandler    user_init.o
    0x000003d0   0x000003d0   0x0000001c   Code   RO         4193    i.CMU_ISR_HFDETO_Chk  fm33a0xxev_cmu.o
    0x000003ec   0x000003ec   0x00000054   Code   RO         4198    i.CMU_Init_RCHF_Trim  fm33a0xxev_cmu.o
    0x00000440   0x00000440   0x00000024   Code   RO         4200    i.CMU_OPCCR1_EXTICKE_Setable  fm33a0xxev_cmu.o
    0x00000464   0x00000464   0x00000020   Code   RO         4202    i.CMU_OPCCR1_EXTICKSEL_Set  fm33a0xxev_cmu.o
    0x00000484   0x00000484   0x00000068   Code   RO         4241    i.CMU_PERCLK_SetableEx  fm33a0xxev_cmu.o
    0x000004ec   0x000004ec   0x00000020   Code   RO         4260    i.CMU_RCHFCR_FSEL_Set  fm33a0xxev_cmu.o
    0x0000050c   0x0000050c   0x00000024   Code   RO         4262    i.CMU_RCHFCR_RCHFEN_Setable  fm33a0xxev_cmu.o
    0x00000530   0x00000530   0x00000018   Code   RO         4264    i.CMU_RCHFTR_RCHFTRIM_Set  fm33a0xxev_cmu.o
    0x00000548   0x00000548   0x00000012   Code   RO         4265    i.CMU_RCHF_Init     fm33a0xxev_cmu.o
    0x0000055a   0x0000055a   0x00000002   PAD
    0x0000055c   0x0000055c   0x00000020   Code   RO         4267    i.CMU_SYSCLKCR_AHBPRES_Set  fm33a0xxev_cmu.o
    0x0000057c   0x0000057c   0x00000020   Code   RO         4269    i.CMU_SYSCLKCR_APBPRES_Set  fm33a0xxev_cmu.o
    0x0000059c   0x0000059c   0x00000028   Code   RO         4271    i.CMU_SYSCLKCR_SLP_ENEXTI_Setable  fm33a0xxev_cmu.o
    0x000005c4   0x000005c4   0x0000001c   Code   RO         4275    i.CMU_SYSCLKCR_SYSCLKSEL_Set  fm33a0xxev_cmu.o
    0x000005e0   0x000005e0   0x0000001e   Code   RO         4276    i.CMU_SysClk_Init   fm33a0xxev_cmu.o
    0x000005fe   0x000005fe   0x00000002   PAD
    0x00000600   0x00000600   0x00000024   Code   RO         4278    i.CMU_XTHFCR_XTHFEN_Setable  fm33a0xxev_cmu.o
    0x00000624   0x00000624   0x00000020   Code   RO         4280    i.CMU_XTHFCR_XTHF_CFG_Set  fm33a0xxev_cmu.o
    0x00000644   0x00000644   0x00000034   Code   RO         2237    i.COM_equipment_basic_inf_handle  upper_com_data_pro.o
    0x00000678   0x00000678   0x0000000a   Code   RO          686    i.DEBUG_Init        rcc_config.o
    0x00000682   0x00000682   0x00000002   PAD
    0x00000684   0x00000684   0x00000020   Code   RO         5577    i.DMA_CHxCR_CHxFTIE_Getable  fm33a0xxev_dma.o
    0x000006a4   0x000006a4   0x0000001e   Code   RO          836    i.DMA_IRQHandler    uart.o
    0x000006c2   0x000006c2   0x00000002   PAD
    0x000006c4   0x000006c4   0x00000020   Code   RO         5610    i.DMA_ISR_DMACHFT_Chk  fm33a0xxev_dma.o
    0x000006e4   0x000006e4   0x00000010   Code   RO         5611    i.DMA_ISR_DMACHFT_Clr  fm33a0xxev_dma.o
    0x000006f4   0x000006f4   0x00000070   Code   RO         1643    i.EEPROM_MultipleRead  eeprom.o
    0x00000764   0x00000764   0x00000118   Code   RO         1645    i.EEPROM_MultipleWrite  eeprom.o
    0x0000087c   0x0000087c   0x00000012   Code   RO         1647    i.EEPROM_Wait_Busy  eeprom.o
    0x0000088e   0x0000088e   0x00000002   PAD
    0x00000890   0x00000890   0x0000004c   Code   RO         1659    i.EEPROM_stat_read  eeprom.o
    0x000008dc   0x000008dc   0x0000001c   Code   RO         6326    i.FLS_RDCR_WAIT_Set  fm33a0xxev_flash.o
    0x000008f8   0x000008f8   0x000000fc   Code   RO         6586    i.GPIO_EXTI_EXTIDF_Setable  fm33a0xxev_gpio.o
    0x000009f4   0x000009f4   0x000000f4   Code   RO         6588    i.GPIO_EXTI_EXTIISR_ChkEx  fm33a0xxev_gpio.o
    0x00000ae8   0x00000ae8   0x000000ec   Code   RO         6589    i.GPIO_EXTI_EXTIISR_ClrEx  fm33a0xxev_gpio.o
    0x00000bd4   0x00000bd4   0x00000058   Code   RO         6590    i.GPIO_EXTI_Init    fm33a0xxev_gpio.o
    0x00000c2c   0x00000c2c   0x0000010c   Code   RO         6591    i.GPIO_EXTI_Select_Edge  fm33a0xxev_gpio.o
    0x00000d38   0x00000d38   0x00000134   Code   RO         6592    i.GPIO_EXTI_Select_Pin  fm33a0xxev_gpio.o
    0x00000e6c   0x00000e6c   0x00000094   Code   RO         6597    i.GPIO_Get_InitPara  fm33a0xxev_gpio.o
    0x00000f00   0x00000f00   0x00000118   Code   RO          801    i.GPIO_IRQHandler   exti.o
    0x00001018   0x00001018   0x00000072   Code   RO         6602    i.GPIO_Init         fm33a0xxev_gpio.o
    0x0000108a   0x0000108a   0x00000014   Code   RO         6610    i.GPIO_ReadInputDataBit  fm33a0xxev_gpio.o
    0x0000109e   0x0000109e   0x00000004   Code   RO         6613    i.GPIO_ResetBits    fm33a0xxev_gpio.o
    0x000010a2   0x000010a2   0x00000004   Code   RO         6614    i.GPIO_SetBits      fm33a0xxev_gpio.o
    0x000010a6   0x000010a6   0x000000ba   Code   RO         1365    i.Get_Extern_Rtc_Time  extern_rtc.o
    0x00001160   0x00001160   0x00000040   Code   RO         1172    i.I2c_Ack           i2c.o
    0x000011a0   0x000011a0   0x00000038   Code   RO         1173    i.I2c_No_Ack        i2c.o
    0x000011d8   0x000011d8   0x00000058   Code   RO         1174    i.I2c_Read          i2c.o
    0x00001230   0x00001230   0x00000028   Code   RO         1175    i.I2c_Scl_Gpio_Init  i2c.o
    0x00001258   0x00001258   0x0000006c   Code   RO         1176    i.I2c_Send          i2c.o
    0x000012c4   0x000012c4   0x0000003c   Code   RO         1177    i.I2c_Start         i2c.o
    0x00001300   0x00001300   0x00000040   Code   RO         1178    i.I2c_Stop          i2c.o
    0x00001340   0x00001340   0x00000010   Code   RO          573    i.IWDT_Clr          user_init.o
    0x00001350   0x00001350   0x00000020   Code   RO          574    i.IWDT_Init         user_init.o
    0x00001370   0x00001370   0x0000001a   Code   RO          575    i.Init_RCHF         user_init.o
    0x0000138a   0x0000138a   0x00000002   PAD
    0x0000138c   0x0000138c   0x00000024   Code   RO          576    i.Init_RCLP         user_init.o
    0x000013b0   0x000013b0   0x00000078   Code   RO          577    i.Init_SysClk       user_init.o
    0x00001428   0x00001428   0x00000016   Code   RO          578    i.Init_SysClk_Gen   user_init.o
    0x0000143e   0x0000143e   0x00000074   Code   RO          728    i.InputtIO          gpio.o
    0x000014b2   0x000014b2   0x00000002   PAD
    0x000014b4   0x000014b4   0x00000034   Code   RO         1433    i.Key_GPIO_Init     key.o
    0x000014e8   0x000014e8   0x00000018   Code   RO         7858    i.LPTIM_CR_EN_Getable  fm33a0xxev_lptim.o
    0x00001500   0x00001500   0x00000018   Code   RO          946    i.LPTIM_IRQHandler  tim.o
    0x00001518   0x00001518   0x00000018   Code   RO         7897    i.LPTIM_ISR_OVIF_Chk  fm33a0xxev_lptim.o
    0x00001530   0x00001530   0x0000000c   Code   RO         7898    i.LPTIM_ISR_OVIF_Clr  fm33a0xxev_lptim.o
    0x0000153c   0x0000153c   0x00000028   Code   RO         2262    i.Lcd_DeInit        lcd.o
    0x00001564   0x00001564   0x0000003c   Code   RO         2471    i.Lcd_GPIO_Init     lcd_io_api.o
    0x000015a0   0x000015a0   0x00000014   Code   RO         2264    i.Lcd_Init          lcd.o
    0x000015b4   0x000015b4   0x00000024   Code   RO         2266    i.Lcd_Show_MenuProcess  lcd.o
    0x000015d8   0x000015d8   0x00000028   Code   RO         2267    i.Lcd_Sys_Init      lcd.o
    0x00001600   0x00001600   0x00000032   Code   RO         2472    i.Lcd_Write         lcd_io_api.o
    0x00001632   0x00001632   0x00000038   Code   RO         2473    i.Lcd_Write_Reg     lcd_io_api.o
    0x0000166a   0x0000166a   0x00000002   Code   RO          802    i.NMI_Handler       exti.o
    0x0000166c   0x0000166c   0x00000078   Code   RO          393    i.NVIC_SetPriority  system_run_fun.o
    0x000016e4   0x000016e4   0x00000072   Code   RO          730    i.OutputIO          gpio.o
    0x00001756   0x00001756   0x0000004c   Code   RO         1366    i.R8025T_Read       extern_rtc.o
    0x000017a2   0x000017a2   0x00000030   Code   RO         1367    i.R8025T_Write      extern_rtc.o
    0x000017d2   0x000017d2   0x00000002   PAD
    0x000017d4   0x000017d4   0x00000020   Code   RO         9782    i.RMU_BORCR_BOR_PDRCFG_Set  fm33a0xxev_rmu.o
    0x000017f4   0x000017f4   0x00000024   Code   RO         9784    i.RMU_BORCR_OFF_BOR_Setable  fm33a0xxev_rmu.o
    0x00001818   0x00001818   0x00000024   Code   RO         9789    i.RMU_PDRCR_PDREN_Setable  fm33a0xxev_rmu.o
    0x0000183c   0x0000183c   0x00000018   Code   RO         1368    i.RTC_GPIO_Init     extern_rtc.o
    0x00001854   0x00001854   0x00000002   Code   RO         1025    i.RTC_IRQHandler    rtc.o
    0x00001856   0x00001856   0x00000002   PAD
    0x00001858   0x00001858   0x000000d8   Code   RO         1250    i.SPI3_Init         spi.o
    0x00001930   0x00001930   0x00000018   Code   RO        11031    i.SPIx_CR1_BAUD_Set  fm33a0xxev_spi.o
    0x00001948   0x00001948   0x00000012   Code   RO        11033    i.SPIx_CR1_CPHA_Set  fm33a0xxev_spi.o
    0x0000195a   0x0000195a   0x00000018   Code   RO        11035    i.SPIx_CR1_CPHOL_Set  fm33a0xxev_spi.o
    0x00001972   0x00001972   0x0000001a   Code   RO        11037    i.SPIx_CR1_IOSWAP_Set  fm33a0xxev_spi.o
    0x0000198c   0x0000198c   0x00000018   Code   RO        11039    i.SPIx_CR1_LSBF_Set  fm33a0xxev_spi.o
    0x000019a4   0x000019a4   0x0000001a   Code   RO        11041    i.SPIx_CR1_MM_Set   fm33a0xxev_spi.o
    0x000019be   0x000019be   0x00000018   Code   RO        11047    i.SPIx_CR1_WAIT_Set  fm33a0xxev_spi.o
    0x000019d6   0x000019d6   0x0000001a   Code   RO        11051    i.SPIx_CR2_DLEN_Set  fm33a0xxev_spi.o
    0x000019f0   0x000019f0   0x0000001a   Code   RO        11055    i.SPIx_CR2_HALFDUPLEX_Set  fm33a0xxev_spi.o
    0x00001a0a   0x00001a0a   0x0000001a   Code   RO        11059    i.SPIx_CR2_RXO_Setable  fm33a0xxev_spi.o
    0x00001a24   0x00001a24   0x00000018   Code   RO        11061    i.SPIx_CR2_SPIEN_Setable  fm33a0xxev_spi.o
    0x00001a3c   0x00001a3c   0x00000018   Code   RO        11063    i.SPIx_CR2_SSNM_Set  fm33a0xxev_spi.o
    0x00001a54   0x00001a54   0x00000018   Code   RO        11065    i.SPIx_CR2_SSNSEN_Setable  fm33a0xxev_spi.o
    0x00001a6c   0x00001a6c   0x00000018   Code   RO        11069    i.SPIx_CR2_TXO_AC_Setable  fm33a0xxev_spi.o
    0x00001a84   0x00001a84   0x00000018   Code   RO        11071    i.SPIx_CR2_TXO_Setable  fm33a0xxev_spi.o
    0x00001a9c   0x00001a9c   0x00000006   Code   RO        11072    i.SPIx_CR3_MERRC_Clr  fm33a0xxev_spi.o
    0x00001aa2   0x00001aa2   0x00000006   Code   RO        11073    i.SPIx_CR3_RXBFC_Clr  fm33a0xxev_spi.o
    0x00001aa8   0x00001aa8   0x00000006   Code   RO        11074    i.SPIx_CR3_SERRC_Clr  fm33a0xxev_spi.o
    0x00001aae   0x00001aae   0x00000006   Code   RO        11075    i.SPIx_CR3_TXBFC_Clr  fm33a0xxev_spi.o
    0x00001ab4   0x00001ab4   0x00000014   Code   RO        11087    i.SPIx_ISR_RXBF_Chk  fm33a0xxev_spi.o
    0x00001ac8   0x00001ac8   0x00000014   Code   RO        11091    i.SPIx_ISR_TXBE_Chk  fm33a0xxev_spi.o
    0x00001adc   0x00001adc   0x00000006   Code   RO        11094    i.SPIx_RXBUF_Read   fm33a0xxev_spi.o
    0x00001ae2   0x00001ae2   0x00000004   Code   RO        11095    i.SPIx_TXBUF_Write  fm33a0xxev_spi.o
    0x00001ae6   0x00001ae6   0x00000002   PAD
    0x00001ae8   0x00001ae8   0x00000020   Code   RO         1180    i.Sda_In            i2c.o
    0x00001b08   0x00001b08   0x00000020   Code   RO         1181    i.Sda_Out           i2c.o
    0x00001b28   0x00001b28   0x00000064   Code   RO         1369    i.Set_Extern_Rtc_Time  extern_rtc.o
    0x00001b8c   0x00001b8c   0x00000022   Code   RO         1370    i.Set_Rtc_UpdataInterrupt  extern_rtc.o
    0x00001bae   0x00001bae   0x00000002   PAD
    0x00001bb0   0x00001bb0   0x00000034   Code   RO         1253    i.SpiWriteAndRead   spi.o
    0x00001be4   0x00001be4   0x00000058   Code   RO          579    i.SysWakeUp_ClockCfg  user_init.o
    0x00001c3c   0x00001c3c   0x0000001c   Code   RO        12793    i.SystemInit        system_fm33a0xxev.o
    0x00001c58   0x00001c58   0x00000048   Code   RO          687    i.System_power_on_init  rcc_config.o
    0x00001ca0   0x00001ca0   0x0000015a   Code   RO         1371    i.TimeEffectJudgm   extern_rtc.o
    0x00001dfa   0x00001dfa   0x00000014   Code   RO        12107    i.UARTx_ISR_TXSE_Chk  fm33a0xxev_uart.o
    0x00001e0e   0x00001e0e   0x0000002a   Code   RO          840    i.UARTx_SendData_Normal  uart.o
    0x00001e38   0x00001e38   0x00000008   Code   RO        12115    i.UARTx_TXBUF_Write  fm33a0xxev_uart.o
    0x00001e40   0x00001e40   0x00000094   Code   RO         2179    i.Upper_ComputerLoginRecvHandler  upper_com.o
    0x00001ed4   0x00001ed4   0x0000000c   Code   RO         2180    i.Upper_ComputerLoginRespond  upper_com.o
    0x00001ee0   0x00001ee0   0x00000060   Code   RO         2181    i.Upper_ComputerReadWriteHandler  upper_com.o
    0x00001f40   0x00001f40   0x00000060   Code   RO         2182    i.Upper_ComputerRespond  upper_com.o
    0x00001fa0   0x00001fa0   0x00000020   Code   RO        13053    i.__0printf$8       mc_p.l(printf8.o)
    0x00001fc0   0x00001fc0   0x00000028   Code   RO        13055    i.__0sprintf$8      mc_p.l(printf8.o)
    0x00001fe8   0x00001fe8   0x0000001c   Code   RO         1419    i.__ARM_common_switch8  extern_rtc.o
    0x00002004   0x00002004   0x0000000e   Code   RO        13179    i.__scatterload_copy  mc_p.l(handlers.o)
    0x00002012   0x00002012   0x00000002   Code   RO        13180    i.__scatterload_null  mc_p.l(handlers.o)
    0x00002014   0x00002014   0x0000000e   Code   RO        13181    i.__scatterload_zeroinit  mc_p.l(handlers.o)
    0x00002022   0x00002022   0x00000002   PAD
    0x00002024   0x00002024   0x00000428   Code   RO        13060    i._printf_core      mc_p.l(printf8.o)
    0x0000244c   0x0000244c   0x00000020   Code   RO        13061    i._printf_post_padding  mc_p.l(printf8.o)
    0x0000246c   0x0000246c   0x0000002c   Code   RO        13062    i._printf_pre_padding  mc_p.l(printf8.o)
    0x00002498   0x00002498   0x0000000a   Code   RO        13064    i._sputc            mc_p.l(printf8.o)
    0x000024a2   0x000024a2   0x00000002   PAD
    0x000024a4   0x000024a4   0x00000090   Code   RO          394    i.allExtiIRQ        system_run_fun.o
    0x00002534   0x00002534   0x00000010   Code   RO          395    i.allGpioInit       system_run_fun.o
    0x00002544   0x00002544   0x00000010   Code   RO         2089    i.allParaDefaultInit  system_mem_para.o
    0x00002554   0x00002554   0x00000040   Code   RO         2090    i.allParaPatchPro   system_mem_para.o
    0x00002594   0x00002594   0x00000010   Code   RO         2091    i.allParaReadFromEep  system_mem_para.o
    0x000025a4   0x000025a4   0x00000042   Code   RO          353    i.arrayA_2_arrayB   system_general_para.o
    0x000025e6   0x000025e6   0x00000002   PAD
    0x000025e8   0x000025e8   0x00000114   Code   RO         2542    i.cm_backtrace_call_stack  cm_backtrace.o
    0x000026fc   0x000026fc   0x00000210   Code   RO         2543    i.cm_backtrace_fault  cm_backtrace.o
    0x0000290c   0x0000290c   0x0000002c   Code   RO         2544    i.cm_backtrace_firmware_info  cm_backtrace.o
    0x00002938   0x00002938   0x00000048   Code   RO          648    i.delay_init        delay.o
    0x00002980   0x00002980   0x00000050   Code   RO          649    i.delay_ms          delay.o
    0x000029d0   0x000029d0   0x00000050   Code   RO          650    i.delay_us          delay.o
    0x00002a20   0x00002a20   0x0000003a   Code   RO         2546    i.disassembly_ins_is_bl_blx  cm_backtrace.o
    0x00002a5a   0x00002a5a   0x00000002   PAD
    0x00002a5c   0x00002a5c   0x000000d4   Code   RO         2547    i.dump_stack        cm_backtrace.o
    0x00002b30   0x00002b30   0x0000010c   Code   RO         2092    i.eepABReadCheck    system_mem_para.o
    0x00002c3c   0x00002c3c   0x0000004e   Code   RO         2093    i.eepABWriteAndReadCheck  system_mem_para.o
    0x00002c8a   0x00002c8a   0x00000002   Code   RO         2094    i.eepParaPatchPro_1  system_mem_para.o
    0x00002c8c   0x00002c8c   0x00000040   Code   RO         2096    i.eepWriteAndReadCheck  system_mem_para.o
    0x00002ccc   0x00002ccc   0x00000024   Code   RO          847    i.fputc             uart.o
    0x00002cf0   0x00002cf0   0x0000000c   Code   RO          397    i.hardwareDriversInit  system_run_fun.o
    0x00002cfc   0x00002cfc   0x00000068   Code   RO         1434    i.keyPro            key.o
    0x00002d64   0x00002d64   0x00000030   Code   RO         2268    i.lcdDisplayPro     lcd.o
    0x00002d94   0x00002d94   0x0000004c   Code   RO          499    i.main              main.o
    0x00002de0   0x00002de0   0x00000038   Code   RO         2097    i.paraCalcCrcAndWriteEepAB  system_mem_para.o
    0x00002e18   0x00002e18   0x00000098   Code   RO         2548    i.print_call_stack  cm_backtrace.o
    0x00002eb0   0x00002eb0   0x00000038   Code   RO        12724    i.rs485ReadDataPro  rs485_read_data.o
    0x00002ee8   0x00002ee8   0x00000038   Code   RO          398    i.sysRunFunParaInit  system_run_fun.o
    0x00002f20   0x00002f20   0x0000006c   Code   RO          399    i.sysStoredParaInit  system_run_fun.o
    0x00002f8c   0x00002f8c   0x0000003c   Code   RO         2098    i.systemEepIdDefaultInit  system_mem_para.o
    0x00002fc8   0x00002fc8   0x00000028   Code   RO         2099    i.systemEepIdReadFromEep  system_mem_para.o
    0x00002ff0   0x00002ff0   0x0000002c   Code   RO          354    i.ucharcmp          system_general_para.o
    0x0000301c   0x0000301c   0x00000168   Code   RO         2183    i.upperComPro       upper_com.o
    0x00003184   0x00003184   0x00000034   Code   RO          104    i.usMBCRC16         mbcrc.o
    0x000031b8   0x000031b8   0x00000200   Data   RO          105    .constdata          mbcrc.o
    0x000033b8   0x000033b8   0x000000e0   Data   RO         2550    .constdata          cm_backtrace.o
    0x00003498   0x00003498   0x0000061e   Data   RO         2551    .conststring        cm_backtrace.o
    0x00003ab6   0x00003ab6   0x00000002   PAD
    0x00003ab8   0x00003ab8   0x00000020   Data   RO        13177    Region$$Table       anon$$obj.o
 
 
    Execution Region RW_IRAM1 (Exec base: 0x20000000, Load base: 0x00003ad8, Size: 0x00004b28, Max: 0x00014000, ABSOLUTE)
 
    Exec Addr    Load Addr    Size         Type   Attr      Idx    E Section Name        Object
 
    0x20000000   0x00003ad8   0x00000012   Data   RW          355    .data               system_general_para.o
    0x20000012   0x00003aea   0x00000004   Data   RW          651    .data               delay.o
    0x20000016   0x00003aee   0x00000006   Data   RW         1372    .data               extern_rtc.o
    0x2000001c   0x00003af4   0x00000003   Data   RW         1435    .data               key.o
    0x2000001f   0x00003af7   0x00000001   PAD
    0x20000020   0x00003af8   0x00000006   Data   RW         2185    .data               upper_com.o
    0x20000026   0x00003afe   0x00000008   Data   RW         2269    .data               lcd.o
    0x2000002e   0x00003b06   0x00000002   PAD
    0x20000030   0x00003b08   0x00000014   Data   RW         2552    .data               cm_backtrace.o
    0x20000044   0x00003b1c   0x00000001   Data   RW        12725    .data               rs485_read_data.o
    0x20000045   0x00003b1d   0x00000003   PAD
    0x20000048   0x00003b20   0x00000004   Data   RW        12794    .data               system_fm33a0xxev.o
    0x2000004c   0x00003b24   0x00000004   Data   RW        12836    .data               mc_p.l(rand.o)
    0x20000050   0x00003b28   0x00000004   Data   RW        13161    .data               mc_p.l(stdout.o)
    0x20000054        -       0x00000165   Zero   RW         2100    .bss                system_mem_para.o
    0x200001b9   0x00003b2c   0x00000003   PAD
    0x200001bc        -       0x00000803   Zero   RW         2184    .bss                upper_com.o
    0x200009bf        -       0x00000030   Zero   RW         2474    .bss                lcd_io_api.o
    0x200009ef   0x00003b2c   0x00000001   PAD
    0x200009f0        -       0x00000134   Zero   RW         2549    .bss                cm_backtrace.o
    0x20000b24   0x00003b2c   0x00000004   PAD
    0x20000b28        -       0x00004000   Zero   RW        12783    STACK               startup_fm33a0xxev.o
 
 
==============================================================================
 
Image component sizes
 
 
      Code (inc. data)   RO Data    RW Data    ZI Data      Debug   Object Name
 
         0          0          0          0          0       4624   aes128.o
      1270        370       1790         20        308      12850   cm_backtrace.o
        12          0          0          0          0        404   cmb_fault.o
       232         36          0          4          0       1907   delay.o
       486         18          0          0          0       3759   eeprom.o
       842         28          0          6          0       7322   extern_rtc.o
       282         12          0          0          0       1076   exti.o
       660         68          0          0          0      10249   fm33a0xxev_cmu.o
        80         16          0          0          0       2232   fm33a0xxev_dma.o
        28          6          0          0          0        560   fm33a0xxev_flash.o
      1686         70          0          0          0      29163   fm33a0xxev_gpio.o
        60         12          0          0          0       1560   fm33a0xxev_lptim.o
       104         14          0          0          0       1653   fm33a0xxev_rmu.o
       438          0          0          0          0      13763   fm33a0xxev_spi.o
        28          0          0          0          0      17617   fm33a0xxev_uart.o
       476          0          0          0          0       3444   gpio.o
       544         64          0          0          0       4659   i2c.o
       156         22          0          3          0       1069   key.o
       184         42          0          8          0       3828   lcd.o
       166          8          0          0         48       2817   lcd_io_api.o
        76          8          0          0          0       2139   main.o
        52          8        512          0          0      53440   mbcrc.o
        82         10          0          0          0       1028   rcc_config.o
        56         12          0          1          0       2032   rs485_read_data.o
         2          0          0          0          0        453   rtc.o
         0          0          0          0          0      38352   sizhu_ctrl_word.o
       268         20          0          0          0       1146   spi.o
        28          8        192          0      16384        684   startup_fm33a0xxev.o
        28         12          0          4          0        791   system_fm33a0xxev.o
       110          0          0         18          0       5059   system_general_para.o
       664         36          0          0        357      11703   system_mem_para.o
       456         32          0          0          0      19345   system_run_fun.o
        28          0          0          0          0       1403   tim.o
       108          4          0          0          0       3649   uart.o
       712         60          0          6       2051       6293   upper_com.o
        52          6          0          0          0       1469   upper_com_data_pro.o
       344         46          0          0          0       4161   user_init.o
 
    ----------------------------------------------------------------------
     10828       1048       2528         76      19156     277703   Object Totals
         0          0         32          0          0          0   (incl. Generated)
        28          0          2          6          8          0   (incl. Padding)
 
    ----------------------------------------------------------------------
 
      Code (inc. data)   RO Data    RW Data    ZI Data      Debug   Library Member Name
 
         0          0          0          0          0          0   entry.o
         0          0          0          0          0          0   entry10a.o
         0          0          0          0          0          0   entry11a.o
         4          0          0          0          0          0   entry12b.o
         8          4          0          0          0          0   entry2.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
        32          0          0          0          0         68   llshl.o
        34          0          0          0          0         68   llushr.o
        36          0          0          0          0         60   memcpya.o
        36          0          0          0          0        100   memseta.o
      1222         56          0          0          0        468   printf8.o
        36         12          0          4          0        120   rand.o
         0          0          0          4          0          0   stdout.o
        44          0          0          0          0         72   uidiv.o
        96          0          0          0          0         84   uldiv.o
        20          0          0          0          0         60   uread4.o
        18          0          0          0          0         60   uwrite4.o
 
    ----------------------------------------------------------------------
      1708         84          0          8          0       1300   Library Totals
         4          0          0          0          0          0   (incl. Padding)
 
    ----------------------------------------------------------------------
 
      Code (inc. data)   RO Data    RW Data    ZI Data      Debug   Library Name
 
      1704         84          0          8          0       1300   mc_p.l
 
    ----------------------------------------------------------------------
      1708         84          0          8          0       1300   Library Totals
 
    ----------------------------------------------------------------------
 
==============================================================================
 
 
      Code (inc. data)   RO Data    RW Data    ZI Data      Debug   
 
     12536       1132       2528         84      19156     271887   Grand Totals
     12536       1132       2528         84      19156     271887   ELF Image Totals
     12536       1132       2528         84          0          0   ROM Totals
 
==============================================================================
 
    Total RO  Size (Code + RO Data)                15064 (  14.71kB)
    Total RW  Size (RW Data + ZI Data)             19240 (  18.79kB)
    Total ROM Size (Code + RO Data + RW Data)      15148 (  14.79kB)
 
==============================================================================