forked from SZV10X_Software/SZV103_FM33A0xxEV_SiZhu

jinlicong
2024-04-18 de0f427ee76ab84d3afb22c92a2b065b1ce06d3e
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
Component: ARM Compiler 5.06 update 7 for Certification (build 960) Tool: armlink [4d3601]
 
==============================================================================
 
Section Cross References
 
    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.sysRunParaInit) for sysRunParaInit
    main.o(i.main) refers to user_init.o(i.IWDT_Clr) for IWDT_Clr
    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
    gpio.o(i.Pulse_IO_Init) refers to fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx) for CMU_PERCLK_SetableEx
    gpio.o(i.Pulse_IO_Init) refers to gpio.o(i.OutputIO) for OutputIO
    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
    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
    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.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
    key.o(i.Get_key) refers to fm33a0xxev_gpio.o(i.GPIO_ReadInputDataBit) for GPIO_ReadInputDataBit
    key.o(i.Get_key) refers to delay.o(i.delay_ms) for delay_ms
    key.o(i.get_key4) refers to fm33a0xxev_gpio.o(i.GPIO_ReadInputDataBit) for GPIO_ReadInputDataBit
    key.o(i.get_key4) refers to delay.o(i.delay_ms) for delay_ms
    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 spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    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_Enable) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    off_chip_flash.o(i.FLASH_Write_Enable) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    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_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 spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    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_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 spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    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_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 spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    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_PowerDown) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    off_chip_flash.o(i.Flash_PowerDown) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    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 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 spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    off_chip_flash.o(i.Flash_ReadID) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    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 spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    off_chip_flash.o(i.Flash_ReadSR) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    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 spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    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 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 spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    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 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 spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    off_chip_flash.o(i.Flash_data_read) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    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 spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    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_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 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 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 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 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 off_chip_flash.o(i.Out_Flash_MultipleWrite) for Out_Flash_MultipleWrite
    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 spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    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 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 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 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 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 spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    eeprom.o(i.EEPROM_stat_write) refers to spi.o(i.SpiWriteAndRead) for SpiWriteAndRead
    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
    check_out.o(i.get_led_para_output_flag) refers to check_out.o(.data) for check_cal_g
    check_out.o(i.led_para_output_init) refers to uwrite8.o(.text) for __aeabi_uwrite8
    check_out.o(i.led_para_output_init) refers to uread8.o(.text) for __aeabi_uread8
    check_out.o(i.led_para_output_init) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    check_out.o(i.led_para_output_init) refers to check_out.o(.data) for check_cal_g
    check_out.o(i.led_pluse_out) refers to uwrite8.o(.text) for __aeabi_uwrite8
    check_out.o(i.led_pluse_out) refers to uread8.o(.text) for __aeabi_uread8
    check_out.o(i.led_pluse_out) refers to dadd.o(.text) for __aeabi_dadd
    check_out.o(i.led_pluse_out) refers to dmul.o(.text) for __aeabi_dmul
    check_out.o(i.led_pluse_out) refers to cdcmple.o(.text) for __aeabi_cdcmple
    check_out.o(i.led_pluse_out) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
    check_out.o(i.led_pluse_out) refers to ddiv.o(.text) for __aeabi_ddiv
    check_out.o(i.led_pluse_out) refers to dfltui.o(.text) for __aeabi_ui2d
    check_out.o(i.led_pluse_out) refers to fm33a0xxev_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
    check_out.o(i.led_pluse_out) refers to delay.o(i.delay_ms) for delay_ms
    check_out.o(i.led_pluse_out) refers to fm33a0xxev_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
    check_out.o(i.led_pluse_out) refers to dflti.o(.text) for __aeabi_i2d
    check_out.o(i.led_pluse_out) refers to dfixui.o(.text) for __aeabi_d2uiz
    check_out.o(i.led_pluse_out) refers to check_out.o(.data) for check_cal_g
    check_out.o(i.set_led_para_output_flag) refers to check_out.o(.data) for check_cal_g
    mbcrc.o(i.usMBCRC16) refers to mbcrc.o(.constdata) for aucCRCHi
    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
    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
    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
    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
    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
    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
    uldiv.o(.text) refers to llushr.o(.text) for __aeabi_llsr
    uldiv.o(.text) refers to llshl.o(.text) for __aeabi_llsl
    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
    dfixul.o(.text) refers to llushr.o(.text) for __aeabi_llsr
    dfixul.o(.text) refers to llshl.o(.text) for __aeabi_llsl
    init.o(.text) refers to entry5.o(.ARM.Collect$$$$00000004) for __main_after_scatterload
 
 
==============================================================================
 
Removing Unused input sections from the image.
 
    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 user_init.o(i.SysWakeUp_ClockCfg), (88 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.ALL_GPIO_Init), (2 bytes).
    Removing gpio.o(i.AltFunIO), (166 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), (116 bytes).
    Removing gpio.o(i.InputtIO_H), (132 bytes).
    Removing gpio.o(i.OutputIO), (114 bytes).
    Removing gpio.o(i.OutputIO_H), (128 bytes).
    Removing gpio.o(i.Pulse_IO_Init), (32 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.UARTx_SendData_Normal), (42 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_Ack), (64 bytes).
    Removing i2c.o(i.I2c_No_Ack), (56 bytes).
    Removing i2c.o(i.I2c_Read), (88 bytes).
    Removing i2c.o(i.I2c_Scl_Gpio_Init), (40 bytes).
    Removing i2c.o(i.I2c_Send), (108 bytes).
    Removing i2c.o(i.I2c_Start), (60 bytes).
    Removing i2c.o(i.I2c_Stop), (64 bytes).
    Removing i2c.o(i.I2c_Wait_Ack), (92 bytes).
    Removing i2c.o(i.Sda_In), (32 bytes).
    Removing i2c.o(i.Sda_Out), (32 bytes).
    Removing spi.o(.rev16_text), (4 bytes).
    Removing spi.o(.revsh_text), (4 bytes).
    Removing spi.o(i.SPI3_Init), (216 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 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 extern_rtc.o(.rev16_text), (4 bytes).
    Removing extern_rtc.o(.revsh_text), (4 bytes).
    Removing extern_rtc.o(i.Get_Extern_Rtc_Time), (98 bytes).
    Removing extern_rtc.o(i.R8025T_Read), (76 bytes).
    Removing extern_rtc.o(i.R8025T_Write), (48 bytes).
    Removing extern_rtc.o(i.Set_Extern_Rtc_Time), (100 bytes).
    Removing extern_rtc.o(i.Set_Rtc_UpdataInterrupt), (34 bytes).
    Removing extern_rtc.o(i.TimeEffectJudgm), (274 bytes).
    Removing extern_rtc.o(.data), (8 bytes).
    Removing key.o(.rev16_text), (4 bytes).
    Removing key.o(.revsh_text), (4 bytes).
    Removing key.o(i.Get_key), (108 bytes).
    Removing key.o(i.get_key4), (48 bytes).
    Removing key.o(i.key_interruptinit), (2 bytes).
    Removing key.o(i.key_interruptinit_disable), (2 bytes).
    Removing key.o(i.key_interruptinit_enable), (2 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), (44 bytes).
    Removing off_chip_flash.o(i.FLASH_Write_Enable), (44 bytes).
    Removing off_chip_flash.o(i.FLASH_Write_SR), (56 bytes).
    Removing off_chip_flash.o(i.Flash_Erase_Chip), (56 bytes).
    Removing off_chip_flash.o(i.Flash_OUT_Erase_Sector), (80 bytes).
    Removing off_chip_flash.o(i.Flash_PowerDown), (48 bytes).
    Removing off_chip_flash.o(i.Flash_ReadID), (84 bytes).
    Removing off_chip_flash.o(i.Flash_ReadSR), (56 bytes).
    Removing off_chip_flash.o(i.Flash_WAKEUP), (48 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), (96 bytes).
    Removing off_chip_flash.o(i.Flash_data_read), (76 bytes).
    Removing off_chip_flash.o(i.OUT_FLASH_test), (80 bytes).
    Removing off_chip_flash.o(i.Out_Flash_MultipleRead), (92 bytes).
    Removing off_chip_flash.o(i.Out_Flash_MultipleWrite), (280 bytes).
    Removing bootloader_iap.o(.rev16_text), (4 bytes).
    Removing bootloader_iap.o(.revsh_text), (4 bytes).
    Removing bootloader_iap.o(i.BootLoader_IapConfigCheckHandler), (328 bytes).
    Removing bootloader_iap.o(i.BootLoader_IapConfigSetHander), (248 bytes).
    Removing bootloader_iap.o(i.BootLoader_IapDiffDataHandler), (88 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), (38 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), (46 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), (54 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), (16 bytes).
    Removing eeprom.o(i.EEPROM_stat_write), (24 bytes).
    Removing eeprom.o(.data), (1 bytes).
    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 check_out.o(.rev16_text), (4 bytes).
    Removing check_out.o(.revsh_text), (4 bytes).
    Removing check_out.o(i.get_led_para_output_flag), (12 bytes).
    Removing check_out.o(i.led_para_output_init), (300 bytes).
    Removing check_out.o(i.led_pluse_out), (712 bytes).
    Removing check_out.o(i.set_led_para_output_flag), (12 bytes).
    Removing check_out.o(.data), (85 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 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_EXTICKE_Setable), (36 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_EXTICKSEL_Get), (16 bytes).
    Removing fm33a0xxev_cmu.o(i.CMU_OPCCR1_EXTICKSEL_Set), (32 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_EXTIDF_Setable), (252 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_EXTI_EXTIDI_Getable), (248 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_EXTI_EXTIISR_ChkEx), (244 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_EXTI_EXTIISR_ClrEx), (236 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_EXTI_Init), (88 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_EXTI_Select_Edge), (268 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_EXTI_Select_Pin), (308 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_ReadInputDataBit), (20 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_ResetBits), (4 bytes).
    Removing fm33a0xxev_gpio.o(i.GPIO_SetBits), (4 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_BAUD_Set), (24 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR1_CPHA_Get), (10 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR1_CPHA_Set), (18 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR1_CPHOL_Get), (10 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR1_CPHOL_Set), (24 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR1_IOSWAP_Get), (12 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR1_IOSWAP_Set), (26 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR1_LSBF_Get), (10 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR1_LSBF_Set), (24 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR1_MM_Get), (12 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR1_MM_Set), (26 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_CR1_WAIT_Set), (24 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_DLEN_Set), (26 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_HALFDUPLEX_Set), (26 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_RXO_Setable), (26 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR2_SPIEN_Getable), (20 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR2_SPIEN_Setable), (24 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR2_SSNM_Get), (10 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR2_SSNM_Set), (24 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR2_SSNSEN_Getable), (20 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR2_SSNSEN_Setable), (24 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_AC_Setable), (24 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR2_TXO_Getable), (20 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR2_TXO_Setable), (24 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR3_MERRC_Clr), (6 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR3_RXBFC_Clr), (6 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR3_SERRC_Clr), (6 bytes).
    Removing fm33a0xxev_spi.o(i.SPIx_CR3_TXBFC_Clr), (6 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 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 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 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 dfixul.o(.text), (64 bytes).
    Removing depilogue.o(i.__ARM_clz), (46 bytes).
 
1881 unused section(s) (total 60290 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  entry2.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry10a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry7b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry10b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry7a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry5.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry11a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry8a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry9a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry9b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry8b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry11b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry12a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry12b.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  printf7.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf5.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf4.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printfa.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf6.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf8.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/stubs.s          0x00000000   Number         0  stubs.o ABSOLUTE
    ../clib/microlib/stdio/streams.c         0x00000000   Number         0  stdout.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  uread4.o ABSOLUTE
    ../clib/microlib/unhosted.c              0x00000000   Number         0  uwrite4.o ABSOLUTE
    ../clib/microlib/unhosted.c              0x00000000   Number         0  uwrite8.o ABSOLUTE
    ../clib/microlib/unhosted.c              0x00000000   Number         0  uread8.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  dadd.o ABSOLUTE
    ../fplib/microlib/fpadd.c                0x00000000   Number         0  fadd.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  dfixi.o ABSOLUTE
    ../fplib/microlib/fpfix.c                0x00000000   Number         0  dfixui.o ABSOLUTE
    ../fplib/microlib/fpfix.c                0x00000000   Number         0  dfixul.o ABSOLUTE
    ../fplib/microlib/fpflt.c                0x00000000   Number         0  ffltui.o ABSOLUTE
    ../fplib/microlib/fpflt.c                0x00000000   Number         0  dflti.o ABSOLUTE
    ../fplib/microlib/fpflt.c                0x00000000   Number         0  dfltui.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\KEY\key.c                    0x00000000   Number         0  key.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
    ..\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\check_out.c                      0x00000000   Number         0  check_out.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\\KEY\\key.c                 0x00000000   Number         0  key.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
    ..\\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\\check_out.c                    0x00000000   Number         0  check_out.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  memcpya.o(.text)
    .text                                    0x00000150   Section        0  memseta.o(.text)
    .text                                    0x00000174   Section        0  uread4.o(.text)
    .text                                    0x00000188   Section        0  uwrite4.o(.text)
    .text                                    0x0000019a   Section        0  uldiv.o(.text)
    .text                                    0x000001fa   Section        0  llshl.o(.text)
    .text                                    0x0000021a   Section        0  llushr.o(.text)
    .text                                    0x0000023c   Section       36  init.o(.text)
    i.AnalogIO                               0x00000260   Section        0  gpio.o(i.AnalogIO)
    i.BSTIM_IRQHandler                       0x000002b0   Section        0  tim.o(i.BSTIM_IRQHandler)
    i.BTx_IRQHandler                         0x000002b2   Section        0  tim.o(i.BTx_IRQHandler)
    i.CMU_IER_HFDET_IE_Setable               0x000002b4   Section        0  fm33a0xxev_cmu.o(i.CMU_IER_HFDET_IE_Setable)
    i.CMU_IRQHandler                         0x000002d8   Section        0  user_init.o(i.CMU_IRQHandler)
    i.CMU_ISR_HFDETO_Chk                     0x000002dc   Section        0  fm33a0xxev_cmu.o(i.CMU_ISR_HFDETO_Chk)
    i.CMU_Init_RCHF_Trim                     0x000002f8   Section        0  fm33a0xxev_cmu.o(i.CMU_Init_RCHF_Trim)
    i.CMU_PERCLK_SetableEx                   0x0000034c   Section        0  fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx)
    i.CMU_RCHFCR_FSEL_Set                    0x000003b4   Section        0  fm33a0xxev_cmu.o(i.CMU_RCHFCR_FSEL_Set)
    i.CMU_RCHFCR_RCHFEN_Setable              0x000003d4   Section        0  fm33a0xxev_cmu.o(i.CMU_RCHFCR_RCHFEN_Setable)
    i.CMU_RCHFTR_RCHFTRIM_Set                0x000003f8   Section        0  fm33a0xxev_cmu.o(i.CMU_RCHFTR_RCHFTRIM_Set)
    i.CMU_RCHF_Init                          0x00000410   Section        0  fm33a0xxev_cmu.o(i.CMU_RCHF_Init)
    i.CMU_SYSCLKCR_AHBPRES_Set               0x00000424   Section        0  fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_AHBPRES_Set)
    i.CMU_SYSCLKCR_APBPRES_Set               0x00000444   Section        0  fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_APBPRES_Set)
    i.CMU_SYSCLKCR_SLP_ENEXTI_Setable        0x00000464   Section        0  fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_SLP_ENEXTI_Setable)
    i.CMU_SYSCLKCR_SYSCLKSEL_Set             0x0000048c   Section        0  fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_SYSCLKSEL_Set)
    i.CMU_SysClk_Init                        0x000004a8   Section        0  fm33a0xxev_cmu.o(i.CMU_SysClk_Init)
    i.CMU_XTHFCR_XTHFEN_Setable              0x000004c8   Section        0  fm33a0xxev_cmu.o(i.CMU_XTHFCR_XTHFEN_Setable)
    i.CMU_XTHFCR_XTHF_CFG_Set                0x000004ec   Section        0  fm33a0xxev_cmu.o(i.CMU_XTHFCR_XTHF_CFG_Set)
    i.DEBUG_Init                             0x0000050c   Section        0  rcc_config.o(i.DEBUG_Init)
    i.DMA_CHxCR_CHxFTIE_Getable              0x00000518   Section        0  fm33a0xxev_dma.o(i.DMA_CHxCR_CHxFTIE_Getable)
    i.DMA_IRQHandler                         0x00000538   Section        0  uart.o(i.DMA_IRQHandler)
    i.DMA_ISR_DMACHFT_Chk                    0x00000558   Section        0  fm33a0xxev_dma.o(i.DMA_ISR_DMACHFT_Chk)
    i.DMA_ISR_DMACHFT_Clr                    0x00000578   Section        0  fm33a0xxev_dma.o(i.DMA_ISR_DMACHFT_Clr)
    i.EEPROM_MultipleRead                    0x00000588   Section        0  eeprom.o(i.EEPROM_MultipleRead)
    i.EEPROM_MultipleWrite                   0x000005c6   Section        0  eeprom.o(i.EEPROM_MultipleWrite)
    i.EEPROM_Wait_Busy                       0x00000680   Section        0  eeprom.o(i.EEPROM_Wait_Busy)
    i.EEPROM_stat_read                       0x00000692   Section        0  eeprom.o(i.EEPROM_stat_read)
    i.FLS_RDCR_WAIT_Set                      0x000006ac   Section        0  fm33a0xxev_flash.o(i.FLS_RDCR_WAIT_Set)
    i.GPIO_Get_InitPara                      0x000006c8   Section        0  fm33a0xxev_gpio.o(i.GPIO_Get_InitPara)
    i.GPIO_IRQHandler                        0x0000075c   Section        0  exti.o(i.GPIO_IRQHandler)
    i.GPIO_Init                              0x0000075e   Section        0  fm33a0xxev_gpio.o(i.GPIO_Init)
    i.IWDT_Clr                               0x000007d0   Section        0  user_init.o(i.IWDT_Clr)
    i.IWDT_Init                              0x000007e0   Section        0  user_init.o(i.IWDT_Init)
    i.Init_RCHF                              0x00000800   Section        0  user_init.o(i.Init_RCHF)
    i.Init_RCLP                              0x0000081c   Section        0  user_init.o(i.Init_RCLP)
    i.Init_SysClk                            0x00000840   Section        0  user_init.o(i.Init_SysClk)
    i.Init_SysClk_Gen                        0x000008b8   Section        0  user_init.o(i.Init_SysClk_Gen)
    i.LPTIM_CR_EN_Getable                    0x000008d0   Section        0  fm33a0xxev_lptim.o(i.LPTIM_CR_EN_Getable)
    i.LPTIM_IRQHandler                       0x000008e8   Section        0  tim.o(i.LPTIM_IRQHandler)
    i.LPTIM_ISR_OVIF_Chk                     0x00000900   Section        0  fm33a0xxev_lptim.o(i.LPTIM_ISR_OVIF_Chk)
    i.LPTIM_ISR_OVIF_Clr                     0x00000918   Section        0  fm33a0xxev_lptim.o(i.LPTIM_ISR_OVIF_Clr)
    i.NMI_Handler                            0x00000924   Section        0  exti.o(i.NMI_Handler)
    i.RMU_BORCR_BOR_PDRCFG_Set               0x00000928   Section        0  fm33a0xxev_rmu.o(i.RMU_BORCR_BOR_PDRCFG_Set)
    i.RMU_BORCR_OFF_BOR_Setable              0x00000948   Section        0  fm33a0xxev_rmu.o(i.RMU_BORCR_OFF_BOR_Setable)
    i.RMU_PDRCR_PDREN_Setable                0x0000096c   Section        0  fm33a0xxev_rmu.o(i.RMU_PDRCR_PDREN_Setable)
    i.RTC_IRQHandler                         0x00000990   Section        0  rtc.o(i.RTC_IRQHandler)
    i.SPIx_ISR_RXBF_Chk                      0x00000992   Section        0  fm33a0xxev_spi.o(i.SPIx_ISR_RXBF_Chk)
    i.SPIx_ISR_TXBE_Chk                      0x000009a6   Section        0  fm33a0xxev_spi.o(i.SPIx_ISR_TXBE_Chk)
    i.SPIx_RXBUF_Read                        0x000009ba   Section        0  fm33a0xxev_spi.o(i.SPIx_RXBUF_Read)
    i.SPIx_TXBUF_Write                       0x000009c0   Section        0  fm33a0xxev_spi.o(i.SPIx_TXBUF_Write)
    i.SpiWriteAndRead                        0x000009c4   Section        0  spi.o(i.SpiWriteAndRead)
    i.SystemInit                             0x000009f8   Section        0  system_fm33a0xxev.o(i.SystemInit)
    i.System_power_on_init                   0x00000a14   Section        0  rcc_config.o(i.System_power_on_init)
    i.UARTx_ISR_TXSE_Chk                     0x00000a5c   Section        0  fm33a0xxev_uart.o(i.UARTx_ISR_TXSE_Chk)
    i.UARTx_TXBUF_Write                      0x00000a70   Section        0  fm33a0xxev_uart.o(i.UARTx_TXBUF_Write)
    i.__0printf$8                            0x00000a78   Section        0  printf8.o(i.__0printf$8)
    i.__0sprintf$8                           0x00000a98   Section        0  printf8.o(i.__0sprintf$8)
    i.__scatterload_copy                     0x00000ac0   Section       14  handlers.o(i.__scatterload_copy)
    i.__scatterload_null                     0x00000ace   Section        2  handlers.o(i.__scatterload_null)
    i.__scatterload_zeroinit                 0x00000ad0   Section       14  handlers.o(i.__scatterload_zeroinit)
    i._printf_core                           0x00000ae0   Section        0  printf8.o(i._printf_core)
    _printf_core                             0x00000ae1   Thumb Code  1020  printf8.o(i._printf_core)
    i._printf_post_padding                   0x00000f08   Section        0  printf8.o(i._printf_post_padding)
    _printf_post_padding                     0x00000f09   Thumb Code    32  printf8.o(i._printf_post_padding)
    i._printf_pre_padding                    0x00000f28   Section        0  printf8.o(i._printf_pre_padding)
    _printf_pre_padding                      0x00000f29   Thumb Code    44  printf8.o(i._printf_pre_padding)
    i._sputc                                 0x00000f54   Section        0  printf8.o(i._sputc)
    _sputc                                   0x00000f55   Thumb Code    10  printf8.o(i._sputc)
    i.allParaDefaultInit                     0x00000f5e   Section        0  system_mem_para.o(i.allParaDefaultInit)
    i.allParaPatchPro                        0x00000f70   Section        0  system_mem_para.o(i.allParaPatchPro)
    i.allParaReadFromEep                     0x00000fb0   Section        0  system_mem_para.o(i.allParaReadFromEep)
    i.arrayA_2_arrayB                        0x00000fc0   Section        0  system_general_para.o(i.arrayA_2_arrayB)
    i.cm_backtrace_call_stack                0x00001004   Section        0  cm_backtrace.o(i.cm_backtrace_call_stack)
    i.cm_backtrace_fault                     0x00001118   Section        0  cm_backtrace.o(i.cm_backtrace_fault)
    i.cm_backtrace_firmware_info             0x00001328   Section        0  cm_backtrace.o(i.cm_backtrace_firmware_info)
    i.delay_init                             0x00001354   Section        0  delay.o(i.delay_init)
    i.delay_ms                               0x0000139c   Section        0  delay.o(i.delay_ms)
    i.delay_us                               0x000013ec   Section        0  delay.o(i.delay_us)
    i.disassembly_ins_is_bl_blx              0x0000143c   Section        0  cm_backtrace.o(i.disassembly_ins_is_bl_blx)
    disassembly_ins_is_bl_blx                0x0000143d   Thumb Code    58  cm_backtrace.o(i.disassembly_ins_is_bl_blx)
    i.dump_stack                             0x00001478   Section        0  cm_backtrace.o(i.dump_stack)
    dump_stack                               0x00001479   Thumb Code   128  cm_backtrace.o(i.dump_stack)
    i.eepABReadCheck                         0x0000154c   Section        0  system_mem_para.o(i.eepABReadCheck)
    i.eepABWriteAndReadCheck                 0x00001658   Section        0  system_mem_para.o(i.eepABWriteAndReadCheck)
    i.eepParaPatchPro_1                      0x000016a6   Section        0  system_mem_para.o(i.eepParaPatchPro_1)
    i.eepWriteAndReadCheck                   0x000016a8   Section        0  system_mem_para.o(i.eepWriteAndReadCheck)
    i.fputc                                  0x000016e8   Section        0  uart.o(i.fputc)
    i.hardwareDriversInit                    0x0000170c   Section        0  system_run_fun.o(i.hardwareDriversInit)
    i.main                                   0x0000170e   Section        0  main.o(i.main)
    i.paraCalcCrcAndWriteEepAB               0x00001728   Section        0  system_mem_para.o(i.paraCalcCrcAndWriteEepAB)
    i.print_call_stack                       0x00001760   Section        0  cm_backtrace.o(i.print_call_stack)
    print_call_stack                         0x00001761   Thumb Code   120  cm_backtrace.o(i.print_call_stack)
    i.sysRunParaInit                         0x000017f8   Section        0  system_run_fun.o(i.sysRunParaInit)
    i.sysStoredParaInit                      0x000017fc   Section        0  system_run_fun.o(i.sysStoredParaInit)
    i.systemEepIdDefaultInit                 0x00001868   Section        0  system_mem_para.o(i.systemEepIdDefaultInit)
    i.systemEepIdReadFromEep                 0x000018a4   Section        0  system_mem_para.o(i.systemEepIdReadFromEep)
    i.ucharcmp                               0x000018cc   Section        0  system_general_para.o(i.ucharcmp)
    i.usMBCRC16                              0x000018f8   Section        0  mbcrc.o(i.usMBCRC16)
    .constdata                               0x0000192c   Section      512  mbcrc.o(.constdata)
    aucCRCHi                                 0x0000192c   Data         256  mbcrc.o(.constdata)
    aucCRCLo                                 0x00001a2c   Data         256  mbcrc.o(.constdata)
    .constdata                               0x00001b2c   Section      224  cm_backtrace.o(.constdata)
    print_info                               0x00001b2c   Data         152  cm_backtrace.o(.constdata)
    __FUNCTION__                             0x00001bc4   Data          20  cm_backtrace.o(.constdata)
    __FUNCTION__                             0x00001bd8   Data          19  cm_backtrace.o(.constdata)
    .conststring                             0x00001c0c   Section     1566  cm_backtrace.o(.conststring)
    .data                                    0x20000000   Section        4  delay.o(.data)
    fac_us                                   0x20000000   Data           1  delay.o(.data)
    fac_ms                                   0x20000002   Data           2  delay.o(.data)
    .data                                    0x20000004   Section       20  cm_backtrace.o(.data)
    main_stack_start_addr                    0x20000004   Data           4  cm_backtrace.o(.data)
    main_stack_size                          0x20000008   Data           4  cm_backtrace.o(.data)
    code_start_addr                          0x2000000c   Data           4  cm_backtrace.o(.data)
    code_size                                0x20000010   Data           4  cm_backtrace.o(.data)
    init_ok                                  0x20000014   Data           1  cm_backtrace.o(.data)
    on_fault                                 0x20000015   Data           1  cm_backtrace.o(.data)
    stack_is_overflow                        0x20000016   Data           1  cm_backtrace.o(.data)
    on_thread_before_fault                   0x20000017   Data           1  cm_backtrace.o(.data)
    .data                                    0x20000018   Section        4  system_fm33a0xxev.o(.data)
    .data                                    0x2000001c   Section        4  stdout.o(.data)
    .bss                                     0x20000020   Section      190  system_mem_para.o(.bss)
    .bss                                     0x200000e0   Section      308  cm_backtrace.o(.bss)
    fw_name                                  0x200000e0   Data          32  cm_backtrace.o(.bss)
    hw_ver                                   0x20000100   Data          32  cm_backtrace.o(.bss)
    sw_ver                                   0x20000120   Data          32  cm_backtrace.o(.bss)
    call_stack_info                          0x20000140   Data         144  cm_backtrace.o(.bss)
    regs                                     0x200001d0   Data          68  cm_backtrace.o(.bss)
    STACK                                    0x20000218   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_memcpy                           0x0000012d   Thumb Code    36  memcpya.o(.text)
    __aeabi_memcpy4                          0x0000012d   Thumb Code     0  memcpya.o(.text)
    __aeabi_memcpy8                          0x0000012d   Thumb Code     0  memcpya.o(.text)
    __aeabi_memset                           0x00000151   Thumb Code    14  memseta.o(.text)
    __aeabi_memset4                          0x00000151   Thumb Code     0  memseta.o(.text)
    __aeabi_memset8                          0x00000151   Thumb Code     0  memseta.o(.text)
    __aeabi_memclr                           0x0000015f   Thumb Code     4  memseta.o(.text)
    __aeabi_memclr4                          0x0000015f   Thumb Code     0  memseta.o(.text)
    __aeabi_memclr8                          0x0000015f   Thumb Code     0  memseta.o(.text)
    _memset$wrapper                          0x00000163   Thumb Code    18  memseta.o(.text)
    __aeabi_uread4                           0x00000175   Thumb Code    20  uread4.o(.text)
    __rt_uread4                              0x00000175   Thumb Code     0  uread4.o(.text)
    _uread4                                  0x00000175   Thumb Code     0  uread4.o(.text)
    __aeabi_uwrite4                          0x00000189   Thumb Code    18  uwrite4.o(.text)
    __rt_uwrite4                             0x00000189   Thumb Code     0  uwrite4.o(.text)
    _uwrite4                                 0x00000189   Thumb Code     0  uwrite4.o(.text)
    __aeabi_uldivmod                         0x0000019b   Thumb Code    96  uldiv.o(.text)
    __aeabi_llsl                             0x000001fb   Thumb Code    32  llshl.o(.text)
    _ll_shift_l                              0x000001fb   Thumb Code     0  llshl.o(.text)
    __aeabi_llsr                             0x0000021b   Thumb Code    34  llushr.o(.text)
    _ll_ushift_r                             0x0000021b   Thumb Code     0  llushr.o(.text)
    __scatterload                            0x0000023d   Thumb Code    28  init.o(.text)
    __scatterload_rt2                        0x0000023d   Thumb Code     0  init.o(.text)
    AnalogIO                                 0x00000261   Thumb Code    80  gpio.o(i.AnalogIO)
    BSTIM_IRQHandler                         0x000002b1   Thumb Code     2  tim.o(i.BSTIM_IRQHandler)
    BTx_IRQHandler                           0x000002b3   Thumb Code     2  tim.o(i.BTx_IRQHandler)
    CMU_IER_HFDET_IE_Setable                 0x000002b5   Thumb Code    32  fm33a0xxev_cmu.o(i.CMU_IER_HFDET_IE_Setable)
    CMU_IRQHandler                           0x000002d9   Thumb Code     4  user_init.o(i.CMU_IRQHandler)
    CMU_ISR_HFDETO_Chk                       0x000002dd   Thumb Code    22  fm33a0xxev_cmu.o(i.CMU_ISR_HFDETO_Chk)
    CMU_Init_RCHF_Trim                       0x000002f9   Thumb Code    80  fm33a0xxev_cmu.o(i.CMU_Init_RCHF_Trim)
    CMU_PERCLK_SetableEx                     0x0000034d   Thumb Code   100  fm33a0xxev_cmu.o(i.CMU_PERCLK_SetableEx)
    CMU_RCHFCR_FSEL_Set                      0x000003b5   Thumb Code    28  fm33a0xxev_cmu.o(i.CMU_RCHFCR_FSEL_Set)
    CMU_RCHFCR_RCHFEN_Setable                0x000003d5   Thumb Code    32  fm33a0xxev_cmu.o(i.CMU_RCHFCR_RCHFEN_Setable)
    CMU_RCHFTR_RCHFTRIM_Set                  0x000003f9   Thumb Code    20  fm33a0xxev_cmu.o(i.CMU_RCHFTR_RCHFTRIM_Set)
    CMU_RCHF_Init                            0x00000411   Thumb Code    18  fm33a0xxev_cmu.o(i.CMU_RCHF_Init)
    CMU_SYSCLKCR_AHBPRES_Set                 0x00000425   Thumb Code    28  fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_AHBPRES_Set)
    CMU_SYSCLKCR_APBPRES_Set                 0x00000445   Thumb Code    28  fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_APBPRES_Set)
    CMU_SYSCLKCR_SLP_ENEXTI_Setable          0x00000465   Thumb Code    34  fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_SLP_ENEXTI_Setable)
    CMU_SYSCLKCR_SYSCLKSEL_Set               0x0000048d   Thumb Code    22  fm33a0xxev_cmu.o(i.CMU_SYSCLKCR_SYSCLKSEL_Set)
    CMU_SysClk_Init                          0x000004a9   Thumb Code    30  fm33a0xxev_cmu.o(i.CMU_SysClk_Init)
    CMU_XTHFCR_XTHFEN_Setable                0x000004c9   Thumb Code    32  fm33a0xxev_cmu.o(i.CMU_XTHFCR_XTHFEN_Setable)
    CMU_XTHFCR_XTHF_CFG_Set                  0x000004ed   Thumb Code    28  fm33a0xxev_cmu.o(i.CMU_XTHFCR_XTHF_CFG_Set)
    DEBUG_Init                               0x0000050d   Thumb Code    10  rcc_config.o(i.DEBUG_Init)
    DMA_CHxCR_CHxFTIE_Getable                0x00000519   Thumb Code    26  fm33a0xxev_dma.o(i.DMA_CHxCR_CHxFTIE_Getable)
    DMA_IRQHandler                           0x00000539   Thumb Code    30  uart.o(i.DMA_IRQHandler)
    DMA_ISR_DMACHFT_Chk                      0x00000559   Thumb Code    26  fm33a0xxev_dma.o(i.DMA_ISR_DMACHFT_Chk)
    DMA_ISR_DMACHFT_Clr                      0x00000579   Thumb Code    12  fm33a0xxev_dma.o(i.DMA_ISR_DMACHFT_Clr)
    EEPROM_MultipleRead                      0x00000589   Thumb Code    62  eeprom.o(i.EEPROM_MultipleRead)
    EEPROM_MultipleWrite                     0x000005c7   Thumb Code   186  eeprom.o(i.EEPROM_MultipleWrite)
    EEPROM_Wait_Busy                         0x00000681   Thumb Code    18  eeprom.o(i.EEPROM_Wait_Busy)
    EEPROM_stat_read                         0x00000693   Thumb Code    26  eeprom.o(i.EEPROM_stat_read)
    FLS_RDCR_WAIT_Set                        0x000006ad   Thumb Code    22  fm33a0xxev_flash.o(i.FLS_RDCR_WAIT_Set)
    GPIO_Get_InitPara                        0x000006c9   Thumb Code   148  fm33a0xxev_gpio.o(i.GPIO_Get_InitPara)
    GPIO_IRQHandler                          0x0000075d   Thumb Code     2  exti.o(i.GPIO_IRQHandler)
    GPIO_Init                                0x0000075f   Thumb Code   114  fm33a0xxev_gpio.o(i.GPIO_Init)
    IWDT_Clr                                 0x000007d1   Thumb Code     8  user_init.o(i.IWDT_Clr)
    IWDT_Init                                0x000007e1   Thumb Code    22  user_init.o(i.IWDT_Init)
    Init_RCHF                                0x00000801   Thumb Code    26  user_init.o(i.Init_RCHF)
    Init_RCLP                                0x0000081d   Thumb Code    24  user_init.o(i.Init_RCLP)
    Init_SysClk                              0x00000841   Thumb Code   108  user_init.o(i.Init_SysClk)
    Init_SysClk_Gen                          0x000008b9   Thumb Code    22  user_init.o(i.Init_SysClk_Gen)
    LPTIM_CR_EN_Getable                      0x000008d1   Thumb Code    20  fm33a0xxev_lptim.o(i.LPTIM_CR_EN_Getable)
    LPTIM_IRQHandler                         0x000008e9   Thumb Code    24  tim.o(i.LPTIM_IRQHandler)
    LPTIM_ISR_OVIF_Chk                       0x00000901   Thumb Code    20  fm33a0xxev_lptim.o(i.LPTIM_ISR_OVIF_Chk)
    LPTIM_ISR_OVIF_Clr                       0x00000919   Thumb Code     8  fm33a0xxev_lptim.o(i.LPTIM_ISR_OVIF_Clr)
    NMI_Handler                              0x00000925   Thumb Code     2  exti.o(i.NMI_Handler)
    RMU_BORCR_BOR_PDRCFG_Set                 0x00000929   Thumb Code    26  fm33a0xxev_rmu.o(i.RMU_BORCR_BOR_PDRCFG_Set)
    RMU_BORCR_OFF_BOR_Setable                0x00000949   Thumb Code    32  fm33a0xxev_rmu.o(i.RMU_BORCR_OFF_BOR_Setable)
    RMU_PDRCR_PDREN_Setable                  0x0000096d   Thumb Code    32  fm33a0xxev_rmu.o(i.RMU_PDRCR_PDREN_Setable)
    RTC_IRQHandler                           0x00000991   Thumb Code     2  rtc.o(i.RTC_IRQHandler)
    SPIx_ISR_RXBF_Chk                        0x00000993   Thumb Code    20  fm33a0xxev_spi.o(i.SPIx_ISR_RXBF_Chk)
    SPIx_ISR_TXBE_Chk                        0x000009a7   Thumb Code    20  fm33a0xxev_spi.o(i.SPIx_ISR_TXBE_Chk)
    SPIx_RXBUF_Read                          0x000009bb   Thumb Code     6  fm33a0xxev_spi.o(i.SPIx_RXBUF_Read)
    SPIx_TXBUF_Write                         0x000009c1   Thumb Code     4  fm33a0xxev_spi.o(i.SPIx_TXBUF_Write)
    SpiWriteAndRead                          0x000009c5   Thumb Code    48  spi.o(i.SpiWriteAndRead)
    SystemInit                               0x000009f9   Thumb Code    16  system_fm33a0xxev.o(i.SystemInit)
    System_power_on_init                     0x00000a15   Thumb Code    62  rcc_config.o(i.System_power_on_init)
    UARTx_ISR_TXSE_Chk                       0x00000a5d   Thumb Code    20  fm33a0xxev_uart.o(i.UARTx_ISR_TXSE_Chk)
    UARTx_TXBUF_Write                        0x00000a71   Thumb Code     8  fm33a0xxev_uart.o(i.UARTx_TXBUF_Write)
    __0printf$8                              0x00000a79   Thumb Code    24  printf8.o(i.__0printf$8)
    __1printf$8                              0x00000a79   Thumb Code     0  printf8.o(i.__0printf$8)
    __2printf                                0x00000a79   Thumb Code     0  printf8.o(i.__0printf$8)
    __0sprintf$8                             0x00000a99   Thumb Code    36  printf8.o(i.__0sprintf$8)
    __1sprintf$8                             0x00000a99   Thumb Code     0  printf8.o(i.__0sprintf$8)
    __2sprintf                               0x00000a99   Thumb Code     0  printf8.o(i.__0sprintf$8)
    __scatterload_copy                       0x00000ac1   Thumb Code    14  handlers.o(i.__scatterload_copy)
    __scatterload_null                       0x00000acf   Thumb Code     2  handlers.o(i.__scatterload_null)
    __scatterload_zeroinit                   0x00000ad1   Thumb Code    14  handlers.o(i.__scatterload_zeroinit)
    allParaDefaultInit                       0x00000f5f   Thumb Code    16  system_mem_para.o(i.allParaDefaultInit)
    allParaPatchPro                          0x00000f71   Thumb Code    54  system_mem_para.o(i.allParaPatchPro)
    allParaReadFromEep                       0x00000fb1   Thumb Code    16  system_mem_para.o(i.allParaReadFromEep)
    arrayA_2_arrayB                          0x00000fc1   Thumb Code    66  system_general_para.o(i.arrayA_2_arrayB)
    cm_backtrace_call_stack                  0x00001005   Thumb Code   248  cm_backtrace.o(i.cm_backtrace_call_stack)
    cm_backtrace_fault                       0x00001119   Thumb Code   322  cm_backtrace.o(i.cm_backtrace_fault)
    cm_backtrace_firmware_info               0x00001329   Thumb Code    24  cm_backtrace.o(i.cm_backtrace_firmware_info)
    delay_init                               0x00001355   Thumb Code    56  delay.o(i.delay_init)
    delay_ms                                 0x0000139d   Thumb Code    70  delay.o(i.delay_ms)
    delay_us                                 0x000013ed   Thumb Code    70  delay.o(i.delay_us)
    eepABReadCheck                           0x0000154d   Thumb Code   262  system_mem_para.o(i.eepABReadCheck)
    eepABWriteAndReadCheck                   0x00001659   Thumb Code    78  system_mem_para.o(i.eepABWriteAndReadCheck)
    eepParaPatchPro_1                        0x000016a7   Thumb Code     2  system_mem_para.o(i.eepParaPatchPro_1)
    eepWriteAndReadCheck                     0x000016a9   Thumb Code    64  system_mem_para.o(i.eepWriteAndReadCheck)
    fputc                                    0x000016e9   Thumb Code    32  uart.o(i.fputc)
    hardwareDriversInit                      0x0000170d   Thumb Code     2  system_run_fun.o(i.hardwareDriversInit)
    main                                     0x0000170f   Thumb Code    24  main.o(i.main)
    paraCalcCrcAndWriteEepAB                 0x00001729   Thumb Code    52  system_mem_para.o(i.paraCalcCrcAndWriteEepAB)
    sysRunParaInit                           0x000017f9   Thumb Code     2  system_run_fun.o(i.sysRunParaInit)
    sysStoredParaInit                        0x000017fd   Thumb Code   102  system_run_fun.o(i.sysStoredParaInit)
    systemEepIdDefaultInit                   0x00001869   Thumb Code    50  system_mem_para.o(i.systemEepIdDefaultInit)
    systemEepIdReadFromEep                   0x000018a5   Thumb Code    34  system_mem_para.o(i.systemEepIdReadFromEep)
    ucharcmp                                 0x000018cd   Thumb Code    44  system_general_para.o(i.ucharcmp)
    usMBCRC16                                0x000018f9   Thumb Code    44  mbcrc.o(i.usMBCRC16)
    Region$$Table$$Base                      0x0000222c   Number         0  anon$$obj.o(Region$$Table)
    Image$$ER_IROM1$$Limit                   0x0000224c   Number         0  anon$$obj.o ABSOLUTE
    Region$$Table$$Limit                     0x0000224c   Number         0  anon$$obj.o(Region$$Table)
    SystemCoreClock                          0x20000018   Data           4  system_fm33a0xxev.o(.data)
    __stdout                                 0x2000001c   Data           4  stdout.o(.data)
    system_eep_id_g                          0x20000020   Data          42  system_mem_para.o(.bss)
    equipment_basic_inf_g                    0x2000004a   Data          70  system_mem_para.o(.bss)
    main_equipment_hardware_software_inf_g   0x20000090   Data          26  system_mem_para.o(.bss)
    lcd_equipment_hardware_software_inf_g    0x200000aa   Data          26  system_mem_para.o(.bss)
    wireless_equipment_hardware_software_inf_g 0x200000c4   Data          26  system_mem_para.o(.bss)
    STACK$$Base                              0x20000218   Number         0  startup_fm33a0xxev.o(STACK)
    STACK$$Limit                             0x20004218   Number         0  startup_fm33a0xxev.o(STACK)
    __initial_sp                             0x20004218   Data           0  startup_fm33a0xxev.o(STACK)
 
 
 
==============================================================================
 
Memory Map of the image
 
  Image Entry point : 0x000000c1
 
  Load Region LR_IROM1 (Base: 0x00000000, Size: 0x0000226c, Max: 0x00080000, ABSOLUTE)
 
    Execution Region ER_IROM1 (Exec base: 0x00000000, Load base: 0x00000000, Size: 0x0000224c, Max: 0x00080000, ABSOLUTE)
 
    Exec Addr    Load Addr    Size         Type   Attr      Idx    E Section Name        Object
 
    0x00000000   0x00000000   0x000000c0   Data   RO        12386    RESET               startup_fm33a0xxev.o
    0x000000c0   0x000000c0   0x00000000   Code   RO        12427  * .ARM.Collect$$$$00000000  mc_p.l(entry.o)
    0x000000c0   0x000000c0   0x00000004   Code   RO        12741    .ARM.Collect$$$$00000001  mc_p.l(entry2.o)
    0x000000c4   0x000000c4   0x00000004   Code   RO        12744    .ARM.Collect$$$$00000004  mc_p.l(entry5.o)
    0x000000c8   0x000000c8   0x00000000   Code   RO        12746    .ARM.Collect$$$$00000008  mc_p.l(entry7b.o)
    0x000000c8   0x000000c8   0x00000000   Code   RO        12748    .ARM.Collect$$$$0000000A  mc_p.l(entry8b.o)
    0x000000c8   0x000000c8   0x00000008   Code   RO        12749    .ARM.Collect$$$$0000000B  mc_p.l(entry9a.o)
    0x000000d0   0x000000d0   0x00000004   Code   RO        12756    .ARM.Collect$$$$0000000E  mc_p.l(entry12b.o)
    0x000000d4   0x000000d4   0x00000000   Code   RO        12751    .ARM.Collect$$$$0000000F  mc_p.l(entry10a.o)
    0x000000d4   0x000000d4   0x00000000   Code   RO        12753    .ARM.Collect$$$$00000011  mc_p.l(entry11a.o)
    0x000000d4   0x000000d4   0x00000004   Code   RO        12742    .ARM.Collect$$$$00002712  mc_p.l(entry2.o)
    0x000000d8   0x000000d8   0x0000000c   Code   RO         2287    .text               cmb_fault.o
    0x000000e4   0x000000e4   0x0000001c   Code   RO        12387    .text               startup_fm33a0xxev.o
    0x00000100   0x00000100   0x0000002c   Code   RO        12430    .text               mc_p.l(uidiv.o)
    0x0000012c   0x0000012c   0x00000024   Code   RO        12434    .text               mc_p.l(memcpya.o)
    0x00000150   0x00000150   0x00000024   Code   RO        12436    .text               mc_p.l(memseta.o)
    0x00000174   0x00000174   0x00000014   Code   RO        12703    .text               mc_p.l(uread4.o)
    0x00000188   0x00000188   0x00000012   Code   RO        12707    .text               mc_p.l(uwrite4.o)
    0x0000019a   0x0000019a   0x00000060   Code   RO        12758    .text               mc_p.l(uldiv.o)
    0x000001fa   0x000001fa   0x00000020   Code   RO        12760    .text               mc_p.l(llshl.o)
    0x0000021a   0x0000021a   0x00000022   Code   RO        12762    .text               mc_p.l(llushr.o)
    0x0000023c   0x0000023c   0x00000024   Code   RO        12775    .text               mc_p.l(init.o)
    0x00000260   0x00000260   0x00000050   Code   RO          389    i.AnalogIO          gpio.o
    0x000002b0   0x000002b0   0x00000002   Code   RO          635    i.BSTIM_IRQHandler  tim.o
    0x000002b2   0x000002b2   0x00000002   Code   RO          636    i.BTx_IRQHandler    tim.o
    0x000002b4   0x000002b4   0x00000024   Code   RO         3854    i.CMU_IER_HFDET_IE_Setable  fm33a0xxev_cmu.o
    0x000002d8   0x000002d8   0x00000004   Code   RO          212    i.CMU_IRQHandler    user_init.o
    0x000002dc   0x000002dc   0x0000001c   Code   RO         3857    i.CMU_ISR_HFDETO_Chk  fm33a0xxev_cmu.o
    0x000002f8   0x000002f8   0x00000054   Code   RO         3862    i.CMU_Init_RCHF_Trim  fm33a0xxev_cmu.o
    0x0000034c   0x0000034c   0x00000068   Code   RO         3905    i.CMU_PERCLK_SetableEx  fm33a0xxev_cmu.o
    0x000003b4   0x000003b4   0x00000020   Code   RO         3924    i.CMU_RCHFCR_FSEL_Set  fm33a0xxev_cmu.o
    0x000003d4   0x000003d4   0x00000024   Code   RO         3926    i.CMU_RCHFCR_RCHFEN_Setable  fm33a0xxev_cmu.o
    0x000003f8   0x000003f8   0x00000018   Code   RO         3928    i.CMU_RCHFTR_RCHFTRIM_Set  fm33a0xxev_cmu.o
    0x00000410   0x00000410   0x00000012   Code   RO         3929    i.CMU_RCHF_Init     fm33a0xxev_cmu.o
    0x00000422   0x00000422   0x00000002   PAD
    0x00000424   0x00000424   0x00000020   Code   RO         3931    i.CMU_SYSCLKCR_AHBPRES_Set  fm33a0xxev_cmu.o
    0x00000444   0x00000444   0x00000020   Code   RO         3933    i.CMU_SYSCLKCR_APBPRES_Set  fm33a0xxev_cmu.o
    0x00000464   0x00000464   0x00000028   Code   RO         3935    i.CMU_SYSCLKCR_SLP_ENEXTI_Setable  fm33a0xxev_cmu.o
    0x0000048c   0x0000048c   0x0000001c   Code   RO         3939    i.CMU_SYSCLKCR_SYSCLKSEL_Set  fm33a0xxev_cmu.o
    0x000004a8   0x000004a8   0x0000001e   Code   RO         3940    i.CMU_SysClk_Init   fm33a0xxev_cmu.o
    0x000004c6   0x000004c6   0x00000002   PAD
    0x000004c8   0x000004c8   0x00000024   Code   RO         3942    i.CMU_XTHFCR_XTHFEN_Setable  fm33a0xxev_cmu.o
    0x000004ec   0x000004ec   0x00000020   Code   RO         3944    i.CMU_XTHFCR_XTHF_CFG_Set  fm33a0xxev_cmu.o
    0x0000050c   0x0000050c   0x0000000a   Code   RO          350    i.DEBUG_Init        rcc_config.o
    0x00000516   0x00000516   0x00000002   PAD
    0x00000518   0x00000518   0x00000020   Code   RO         5241    i.DMA_CHxCR_CHxFTIE_Getable  fm33a0xxev_dma.o
    0x00000538   0x00000538   0x0000001e   Code   RO          529    i.DMA_IRQHandler    uart.o
    0x00000556   0x00000556   0x00000002   PAD
    0x00000558   0x00000558   0x00000020   Code   RO         5274    i.DMA_ISR_DMACHFT_Chk  fm33a0xxev_dma.o
    0x00000578   0x00000578   0x00000010   Code   RO         5275    i.DMA_ISR_DMACHFT_Clr  fm33a0xxev_dma.o
    0x00000588   0x00000588   0x0000003e   Code   RO         1763    i.EEPROM_MultipleRead  eeprom.o
    0x000005c6   0x000005c6   0x000000ba   Code   RO         1765    i.EEPROM_MultipleWrite  eeprom.o
    0x00000680   0x00000680   0x00000012   Code   RO         1767    i.EEPROM_Wait_Busy  eeprom.o
    0x00000692   0x00000692   0x0000001a   Code   RO         1779    i.EEPROM_stat_read  eeprom.o
    0x000006ac   0x000006ac   0x0000001c   Code   RO         5990    i.FLS_RDCR_WAIT_Set  fm33a0xxev_flash.o
    0x000006c8   0x000006c8   0x00000094   Code   RO         6261    i.GPIO_Get_InitPara  fm33a0xxev_gpio.o
    0x0000075c   0x0000075c   0x00000002   Code   RO          494    i.GPIO_IRQHandler   exti.o
    0x0000075e   0x0000075e   0x00000072   Code   RO         6266    i.GPIO_Init         fm33a0xxev_gpio.o
    0x000007d0   0x000007d0   0x00000010   Code   RO          215    i.IWDT_Clr          user_init.o
    0x000007e0   0x000007e0   0x00000020   Code   RO          216    i.IWDT_Init         user_init.o
    0x00000800   0x00000800   0x0000001a   Code   RO          217    i.Init_RCHF         user_init.o
    0x0000081a   0x0000081a   0x00000002   PAD
    0x0000081c   0x0000081c   0x00000024   Code   RO          218    i.Init_RCLP         user_init.o
    0x00000840   0x00000840   0x00000078   Code   RO          219    i.Init_SysClk       user_init.o
    0x000008b8   0x000008b8   0x00000016   Code   RO          220    i.Init_SysClk_Gen   user_init.o
    0x000008ce   0x000008ce   0x00000002   PAD
    0x000008d0   0x000008d0   0x00000018   Code   RO         7522    i.LPTIM_CR_EN_Getable  fm33a0xxev_lptim.o
    0x000008e8   0x000008e8   0x00000018   Code   RO          639    i.LPTIM_IRQHandler  tim.o
    0x00000900   0x00000900   0x00000018   Code   RO         7561    i.LPTIM_ISR_OVIF_Chk  fm33a0xxev_lptim.o
    0x00000918   0x00000918   0x0000000c   Code   RO         7562    i.LPTIM_ISR_OVIF_Clr  fm33a0xxev_lptim.o
    0x00000924   0x00000924   0x00000002   Code   RO          495    i.NMI_Handler       exti.o
    0x00000926   0x00000926   0x00000002   PAD
    0x00000928   0x00000928   0x00000020   Code   RO         9446    i.RMU_BORCR_BOR_PDRCFG_Set  fm33a0xxev_rmu.o
    0x00000948   0x00000948   0x00000024   Code   RO         9448    i.RMU_BORCR_OFF_BOR_Setable  fm33a0xxev_rmu.o
    0x0000096c   0x0000096c   0x00000024   Code   RO         9453    i.RMU_PDRCR_PDREN_Setable  fm33a0xxev_rmu.o
    0x00000990   0x00000990   0x00000002   Code   RO          718    i.RTC_IRQHandler    rtc.o
    0x00000992   0x00000992   0x00000014   Code   RO        10751    i.SPIx_ISR_RXBF_Chk  fm33a0xxev_spi.o
    0x000009a6   0x000009a6   0x00000014   Code   RO        10755    i.SPIx_ISR_TXBE_Chk  fm33a0xxev_spi.o
    0x000009ba   0x000009ba   0x00000006   Code   RO        10758    i.SPIx_RXBUF_Read   fm33a0xxev_spi.o
    0x000009c0   0x000009c0   0x00000004   Code   RO        10759    i.SPIx_TXBUF_Write  fm33a0xxev_spi.o
    0x000009c4   0x000009c4   0x00000034   Code   RO          952    i.SpiWriteAndRead   spi.o
    0x000009f8   0x000009f8   0x0000001c   Code   RO        12394    i.SystemInit        system_fm33a0xxev.o
    0x00000a14   0x00000a14   0x00000048   Code   RO          351    i.System_power_on_init  rcc_config.o
    0x00000a5c   0x00000a5c   0x00000014   Code   RO        11771    i.UARTx_ISR_TXSE_Chk  fm33a0xxev_uart.o
    0x00000a70   0x00000a70   0x00000008   Code   RO        11779    i.UARTx_TXBUF_Write  fm33a0xxev_uart.o
    0x00000a78   0x00000a78   0x00000020   Code   RO        12649    i.__0printf$8       mc_p.l(printf8.o)
    0x00000a98   0x00000a98   0x00000028   Code   RO        12651    i.__0sprintf$8      mc_p.l(printf8.o)
    0x00000ac0   0x00000ac0   0x0000000e   Code   RO        12779    i.__scatterload_copy  mc_p.l(handlers.o)
    0x00000ace   0x00000ace   0x00000002   Code   RO        12780    i.__scatterload_null  mc_p.l(handlers.o)
    0x00000ad0   0x00000ad0   0x0000000e   Code   RO        12781    i.__scatterload_zeroinit  mc_p.l(handlers.o)
    0x00000ade   0x00000ade   0x00000002   PAD
    0x00000ae0   0x00000ae0   0x00000428   Code   RO        12656    i._printf_core      mc_p.l(printf8.o)
    0x00000f08   0x00000f08   0x00000020   Code   RO        12657    i._printf_post_padding  mc_p.l(printf8.o)
    0x00000f28   0x00000f28   0x0000002c   Code   RO        12658    i._printf_pre_padding  mc_p.l(printf8.o)
    0x00000f54   0x00000f54   0x0000000a   Code   RO        12660    i._sputc            mc_p.l(printf8.o)
    0x00000f5e   0x00000f5e   0x00000010   Code   RO         1377    i.allParaDefaultInit  system_mem_para.o
    0x00000f6e   0x00000f6e   0x00000002   PAD
    0x00000f70   0x00000f70   0x00000040   Code   RO         1378    i.allParaPatchPro   system_mem_para.o
    0x00000fb0   0x00000fb0   0x00000010   Code   RO         1379    i.allParaReadFromEep  system_mem_para.o
    0x00000fc0   0x00000fc0   0x00000042   Code   RO         2136    i.arrayA_2_arrayB   system_general_para.o
    0x00001002   0x00001002   0x00000002   PAD
    0x00001004   0x00001004   0x00000114   Code   RO         2206    i.cm_backtrace_call_stack  cm_backtrace.o
    0x00001118   0x00001118   0x00000210   Code   RO         2207    i.cm_backtrace_fault  cm_backtrace.o
    0x00001328   0x00001328   0x0000002c   Code   RO         2208    i.cm_backtrace_firmware_info  cm_backtrace.o
    0x00001354   0x00001354   0x00000048   Code   RO          290    i.delay_init        delay.o
    0x0000139c   0x0000139c   0x00000050   Code   RO          291    i.delay_ms          delay.o
    0x000013ec   0x000013ec   0x00000050   Code   RO          292    i.delay_us          delay.o
    0x0000143c   0x0000143c   0x0000003a   Code   RO         2210    i.disassembly_ins_is_bl_blx  cm_backtrace.o
    0x00001476   0x00001476   0x00000002   PAD
    0x00001478   0x00001478   0x000000d4   Code   RO         2211    i.dump_stack        cm_backtrace.o
    0x0000154c   0x0000154c   0x0000010c   Code   RO         1380    i.eepABReadCheck    system_mem_para.o
    0x00001658   0x00001658   0x0000004e   Code   RO         1381    i.eepABWriteAndReadCheck  system_mem_para.o
    0x000016a6   0x000016a6   0x00000002   Code   RO         1382    i.eepParaPatchPro_1  system_mem_para.o
    0x000016a8   0x000016a8   0x00000040   Code   RO         1384    i.eepWriteAndReadCheck  system_mem_para.o
    0x000016e8   0x000016e8   0x00000024   Code   RO          540    i.fputc             uart.o
    0x0000170c   0x0000170c   0x00000002   Code   RO         2166    i.hardwareDriversInit  system_run_fun.o
    0x0000170e   0x0000170e   0x00000018   Code   RO            3    i.main              main.o
    0x00001726   0x00001726   0x00000002   PAD
    0x00001728   0x00001728   0x00000038   Code   RO         1385    i.paraCalcCrcAndWriteEepAB  system_mem_para.o
    0x00001760   0x00001760   0x00000098   Code   RO         2212    i.print_call_stack  cm_backtrace.o
    0x000017f8   0x000017f8   0x00000002   Code   RO         2167    i.sysRunParaInit    system_run_fun.o
    0x000017fa   0x000017fa   0x00000002   PAD
    0x000017fc   0x000017fc   0x0000006c   Code   RO         2168    i.sysStoredParaInit  system_run_fun.o
    0x00001868   0x00001868   0x0000003c   Code   RO         1386    i.systemEepIdDefaultInit  system_mem_para.o
    0x000018a4   0x000018a4   0x00000028   Code   RO         1387    i.systemEepIdReadFromEep  system_mem_para.o
    0x000018cc   0x000018cc   0x0000002c   Code   RO         2137    i.ucharcmp          system_general_para.o
    0x000018f8   0x000018f8   0x00000034   Code   RO         2049    i.usMBCRC16         mbcrc.o
    0x0000192c   0x0000192c   0x00000200   Data   RO         2050    .constdata          mbcrc.o
    0x00001b2c   0x00001b2c   0x000000e0   Data   RO         2214    .constdata          cm_backtrace.o
    0x00001c0c   0x00001c0c   0x0000061e   Data   RO         2215    .conststring        cm_backtrace.o
    0x0000222a   0x0000222a   0x00000002   PAD
    0x0000222c   0x0000222c   0x00000020   Data   RO        12777    Region$$Table       anon$$obj.o
 
 
    Execution Region RW_IRAM1 (Exec base: 0x20000000, Load base: 0x0000224c, Size: 0x00004218, Max: 0x00014000, ABSOLUTE)
 
    Exec Addr    Load Addr    Size         Type   Attr      Idx    E Section Name        Object
 
    0x20000000   0x0000224c   0x00000004   Data   RW          293    .data               delay.o
    0x20000004   0x00002250   0x00000014   Data   RW         2216    .data               cm_backtrace.o
    0x20000018   0x00002264   0x00000004   Data   RW        12395    .data               system_fm33a0xxev.o
    0x2000001c   0x00002268   0x00000004   Data   RW        12757    .data               mc_p.l(stdout.o)
    0x20000020        -       0x000000be   Zero   RW         1388    .bss                system_mem_para.o
    0x200000de   0x0000226c   0x00000002   PAD
    0x200000e0        -       0x00000134   Zero   RW         2213    .bss                cm_backtrace.o
    0x20000214   0x0000226c   0x00000004   PAD
    0x20000218        -       0x00004000   Zero   RW        12384    STACK               startup_fm33a0xxev.o
 
 
==============================================================================
 
Image component sizes
 
 
      Code (inc. data)   RO Data    RW Data    ZI Data      Debug   Object Name
 
      1270        370       1790         20        308      12914   cm_backtrace.o
        12          0          0          0          0        412   cmb_fault.o
       232         36          0          4          0      31855   delay.o
       292          0          0          0          0       3727   eeprom.o
         4          0          0          0          0        916   exti.o
       592         58          0          0          0       9233   fm33a0xxev_cmu.o
        80         16          0          0          0       2260   fm33a0xxev_dma.o
        28          6          0          0          0        568   fm33a0xxev_flash.o
       262          0          0          0          0      12976   fm33a0xxev_gpio.o
        60         12          0          0          0       1580   fm33a0xxev_lptim.o
       104         14          0          0          0       1673   fm33a0xxev_rmu.o
        50          0          0          0          0       2797   fm33a0xxev_spi.o
        28          0          0          0          0      17645   fm33a0xxev_uart.o
        80          0          0          0          0       1311   gpio.o
        24          0          0          0          0      41365   main.o
        52          8        512          0          0      25620   mbcrc.o
        82         10          0          0          0       1040   rcc_config.o
         2          0          0          0          0        461   rtc.o
         0          0          0          0          0       1376   sizhu_alarm_record.o
        52          4          0          0          0        586   spi.o
        28          8        192          0      16384        688   startup_fm33a0xxev.o
        28         12          0          4          0        807   system_fm33a0xxev.o
       110          0          0          0          0       2053   system_general_para.o
       664         36          0          0        190      11738   system_mem_para.o
       112          6          0          0          0       5347   system_run_fun.o
        28          0          0          0          0       1427   tim.o
        66          4          0          0          0       2945   uart.o
       256         42          0          0          0       3596   user_init.o
 
    ----------------------------------------------------------------------
      4622        642       2528         28      16888     198916   Object Totals
         0          0         32          0          0          0   (incl. Generated)
        24          0          2          0          6          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
        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
         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
 
    ----------------------------------------------------------------------
      1630         72          0          4          0       1108   Library Totals
         2          0          0          0          0          0   (incl. Padding)
 
    ----------------------------------------------------------------------
 
      Code (inc. data)   RO Data    RW Data    ZI Data      Debug   Library Name
 
      1628         72          0          4          0       1108   mc_p.l
 
    ----------------------------------------------------------------------
      1630         72          0          4          0       1108   Library Totals
 
    ----------------------------------------------------------------------
 
==============================================================================
 
 
      Code (inc. data)   RO Data    RW Data    ZI Data      Debug   
 
      6252        714       2528         32      16888     196120   Grand Totals
      6252        714       2528         32      16888     196120   ELF Image Totals
      6252        714       2528         32          0          0   ROM Totals
 
==============================================================================
 
    Total RO  Size (Code + RO Data)                 8780 (   8.57kB)
    Total RW  Size (RW Data + ZI Data)             16920 (  16.52kB)
    Total ROM Size (Code + RO Data + RW Data)       8812 (   8.61kB)
 
==============================================================================