WXK
2025-04-22 9fe12e7c573075949205e2ae2ca6a810a68ef2db
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6877
6878
6879
6880
6881
6882
6883
6884
6885
6886
6887
6888
6889
6890
6891
6892
6893
6894
6895
6896
6897
6898
6899
6900
6901
6902
6903
6904
6905
6906
6907
6908
6909
6910
6911
6912
6913
6914
6915
6916
6917
6918
6919
6920
6921
6922
6923
6924
6925
6926
6927
6928
6929
6930
6931
6932
6933
6934
6935
6936
6937
6938
6939
6940
6941
6942
6943
6944
6945
6946
6947
6948
6949
6950
6951
6952
6953
6954
6955
6956
6957
6958
6959
6960
6961
6962
6963
6964
6965
6966
6967
6968
6969
6970
6971
6972
6973
6974
6975
6976
6977
6978
6979
6980
6981
6982
6983
6984
6985
6986
6987
6988
6989
6990
6991
6992
6993
6994
6995
6996
6997
6998
6999
7000
7001
7002
7003
7004
7005
7006
7007
7008
7009
7010
7011
7012
7013
7014
7015
7016
7017
7018
7019
7020
7021
7022
7023
7024
7025
7026
7027
7028
7029
7030
7031
7032
7033
7034
7035
7036
7037
7038
7039
7040
7041
7042
7043
7044
7045
7046
7047
7048
7049
7050
7051
7052
7053
7054
7055
7056
7057
7058
7059
7060
7061
7062
7063
7064
7065
7066
7067
7068
7069
7070
7071
7072
7073
7074
7075
7076
7077
7078
7079
7080
7081
7082
7083
7084
7085
7086
7087
7088
7089
7090
7091
7092
7093
7094
7095
7096
7097
7098
7099
7100
7101
7102
7103
7104
7105
7106
7107
7108
7109
7110
7111
7112
7113
7114
7115
7116
7117
7118
7119
7120
7121
7122
7123
7124
7125
7126
7127
7128
7129
7130
7131
7132
7133
7134
7135
7136
7137
7138
7139
7140
7141
7142
7143
7144
7145
7146
7147
7148
7149
7150
7151
7152
7153
7154
7155
7156
7157
7158
7159
7160
7161
7162
7163
7164
7165
7166
7167
7168
7169
7170
7171
7172
7173
7174
7175
7176
7177
7178
7179
7180
7181
7182
7183
7184
7185
7186
7187
7188
7189
7190
7191
7192
7193
7194
7195
7196
7197
7198
7199
7200
7201
7202
7203
7204
7205
7206
7207
7208
7209
7210
7211
7212
7213
7214
7215
7216
7217
7218
7219
7220
7221
7222
7223
7224
7225
7226
7227
7228
7229
7230
7231
7232
7233
7234
7235
7236
7237
7238
7239
7240
7241
Component: ARM Compiler 5.06 update 6 (build 750) Tool: armlink [4d35ed]
 
==============================================================================
 
Section Cross References
 
    startup_stm32l071xx.o(RESET) refers to startup_stm32l071xx.o(STACK) for __initial_sp
    startup_stm32l071xx.o(RESET) refers to startup_stm32l071xx.o(.text) for Reset_Handler
    startup_stm32l071xx.o(RESET) refers to stm32l0xx_it.o(i.NMI_Handler) for NMI_Handler
    startup_stm32l071xx.o(RESET) refers to stm32l0xx_it.o(i.HardFault_Handler) for HardFault_Handler
    startup_stm32l071xx.o(RESET) refers to stm32l0xx_it.o(i.SVC_Handler) for SVC_Handler
    startup_stm32l071xx.o(RESET) refers to stm32l0xx_it.o(i.PendSV_Handler) for PendSV_Handler
    startup_stm32l071xx.o(RESET) refers to stm32l0xx_it.o(i.SysTick_Handler) for SysTick_Handler
    startup_stm32l071xx.o(RESET) refers to stm32l0xx_it.o(i.EXTI0_1_IRQHandler) for EXTI0_1_IRQHandler
    startup_stm32l071xx.o(RESET) refers to stm32l0xx_it.o(i.EXTI4_15_IRQHandler) for EXTI4_15_IRQHandler
    startup_stm32l071xx.o(RESET) refers to stm32l0xx_it.o(i.DMA1_Channel2_3_IRQHandler) for DMA1_Channel2_3_IRQHandler
    startup_stm32l071xx.o(RESET) refers to stm32l0xx_it.o(i.DMA1_Channel4_5_6_7_IRQHandler) for DMA1_Channel4_5_6_7_IRQHandler
    startup_stm32l071xx.o(RESET) refers to stm32l0xx_it.o(i.LPTIM1_IRQHandler) for LPTIM1_IRQHandler
    startup_stm32l071xx.o(RESET) refers to stm32l0xx_it.o(i.USART4_5_IRQHandler) for USART4_5_IRQHandler
    startup_stm32l071xx.o(RESET) refers to stm32l0xx_it.o(i.USART1_IRQHandler) for USART1_IRQHandler
    startup_stm32l071xx.o(RESET) refers to stm32l0xx_it.o(i.USART2_IRQHandler) for USART2_IRQHandler
    startup_stm32l071xx.o(.text) refers to system_stm32l0xx.o(i.SystemInit) for SystemInit
    startup_stm32l071xx.o(.text) refers to entry.o(.ARM.Collect$$$$00000000) for __main
    main.o(i.Bat_Percent_Poll) refers to adc.o(i.Get_Battary) for Get_Battary
    main.o(i.Bat_Percent_Poll) refers to main.o(.data) for .data
    main.o(i.Beep_Off) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Stop) for HAL_TIM_PWM_Stop
    main.o(i.Beep_Off) refers to main.o(.bss) for .bss
    main.o(i.Beep_Off) refers to main.o(.data) for .data
    main.o(i.Beep_On) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Start) for HAL_TIM_PWM_Start
    main.o(i.Beep_On) refers to main.o(.bss) for .bss
    main.o(i.Beep_On) refers to main.o(.data) for .data
    main.o(i.Fangchai_Panduan_Poll) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_ReadPin) for HAL_GPIO_ReadPin
    main.o(i.Fangchai_Panduan_Poll) refers to stm32l0xx_hal_cortex.o(i.HAL_NVIC_SystemReset) for HAL_NVIC_SystemReset
    main.o(i.Fangchai_Panduan_Poll) refers to app.o(.data) for fangchai_flag
    main.o(i.Fangchai_Panduan_Poll) refers to main.o(.data) for .data
    main.o(i.Fangchai_Panduan_Poll) refers to app.o(.data) for fangchai_state
    main.o(i.GPS_Close_Init) refers to stm32l0xx_hal_uart.o(i.HAL_UART_Transmit) for HAL_UART_Transmit
    main.o(i.GPS_Close_Init) refers to delay.o(i.Delay_Ms) for Delay_Ms
    main.o(i.GPS_Close_Init) refers to main.o(.data) for .data
    main.o(i.GPS_Close_Init) refers to main.o(.bss) for .bss
    main.o(i.Gps_Chongqi_Poll) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_ReadPin) for HAL_GPIO_ReadPin
    main.o(i.Gps_Chongqi_Poll) refers to stm32l0xx_hal_cortex.o(i.HAL_NVIC_SystemReset) for HAL_NVIC_SystemReset
    main.o(i.Gps_Chongqi_Poll) refers to main.o(.data) for .data
    main.o(i.Gps_Chongqi_Poll) refers to app.o(.data) for fangchai_state
    main.o(i.HAL_GPIO_EXTI_Callback) refers to main.o(i.SystemClock_Config) for SystemClock_Config
    main.o(i.HAL_GPIO_EXTI_Callback) refers to dw_mbx_tag.o(i.MbxTagUwbRec) for MbxTagUwbRec
    main.o(i.HAL_GPIO_EXTI_Callback) refers to stm32l0xx_hal_cortex.o(i.HAL_NVIC_SystemReset) for HAL_NVIC_SystemReset
    main.o(i.HAL_GPIO_EXTI_Callback) refers to main.o(.data) for .data
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to main.o(i.SystemClock_Config) for SystemClock_Config
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to main.o(i.Gps_Chongqi_Poll) for Gps_Chongqi_Poll
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to main.o(i.Powerled_Poll) for Powerled_Poll
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_ReadPin) for HAL_GPIO_ReadPin
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to stm32l0xx_hal_cortex.o(i.HAL_NVIC_SystemReset) for HAL_NVIC_SystemReset
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to ws2812.o(i.Set4LEDColor_Off) for Set4LEDColor_Off
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to ws2812.o(i.Set4LEDColor) for Set4LEDColor
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to main.o(i.Fangchai_Panduan_Poll) for Fangchai_Panduan_Poll
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to main.o(i.Sleep_Panduan_Poll) for Sleep_Panduan_Poll
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to main.o(i.Bat_Percent_Poll) for Bat_Percent_Poll
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to main.o(.data) for .data
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to app.o(.data) for chongman_flag
    main.o(i.MX_ADC1_Init) refers to main.o(i.MX_ADC_Init) for MX_ADC_Init
    main.o(i.MX_ADC_DeInit) refers to stm32l0xx_hal_adc.o(i.HAL_ADC_DeInit) for HAL_ADC_DeInit
    main.o(i.MX_ADC_DeInit) refers to stm32l0xx_hal_adc_ex.o(i.HAL_ADCEx_DisableVREFINT) for HAL_ADCEx_DisableVREFINT
    main.o(i.MX_ADC_DeInit) refers to main.o(.bss) for .bss
    main.o(i.MX_ADC_Init) refers to stm32l0xx_hal_adc.o(i.HAL_ADC_Init) for HAL_ADC_Init
    main.o(i.MX_ADC_Init) refers to stm32l0xx_hal_adc.o(i.HAL_ADC_ConfigChannel) for HAL_ADC_ConfigChannel
    main.o(i.MX_ADC_Init) refers to main.o(.bss) for .bss
    main.o(i.MX_GPIO_Init) refers to memseta.o(.text) for __aeabi_memclr4
    main.o(i.MX_GPIO_Init) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    main.o(i.MX_GPIO_Init) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_Init) for HAL_GPIO_Init
    main.o(i.MX_GPIO_Init) refers to stm32l0xx_hal_cortex.o(i.HAL_NVIC_SetPriority) for HAL_NVIC_SetPriority
    main.o(i.MX_GPIO_Init) refers to stm32l0xx_hal_cortex.o(i.HAL_NVIC_EnableIRQ) for HAL_NVIC_EnableIRQ
    main.o(i.MX_SPI1_Init) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_Init) for HAL_SPI_Init
    main.o(i.MX_SPI1_Init) refers to main.o(.bss) for .bss
    main.o(i.MX_TIM3_Init) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Init) for HAL_TIM_PWM_Init
    main.o(i.MX_TIM3_Init) refers to stm32l0xx_hal_tim_ex.o(i.HAL_TIMEx_MasterConfigSynchronization) for HAL_TIMEx_MasterConfigSynchronization
    main.o(i.MX_TIM3_Init) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_ConfigChannel) for HAL_TIM_PWM_ConfigChannel
    main.o(i.MX_TIM3_Init) refers to stm32l0xx_hal_tim_ex.o(i.HAL_TIMEx_RemapConfig) for HAL_TIMEx_RemapConfig
    main.o(i.MX_TIM3_Init) refers to stm32l0xx_hal_msp.o(i.HAL_TIM_MspPostInit) for HAL_TIM_MspPostInit
    main.o(i.MX_TIM3_Init) refers to main.o(.bss) for .bss
    main.o(i.MX_USART1_UART_Init) refers to stm32l0xx_hal_uart.o(i.HAL_UART_Init) for HAL_UART_Init
    main.o(i.MX_USART1_UART_Init) refers to main.o(.bss) for .bss
    main.o(i.MX_USART2_UART_Init) refers to stm32l0xx_hal_uart.o(i.HAL_UART_Init) for HAL_UART_Init
    main.o(i.MX_USART2_UART_Init) refers to main.o(.bss) for .bss
    main.o(i.MX_USART5_UART_Init) refers to stm32l0xx_hal_uart.o(i.HAL_UART_Init) for HAL_UART_Init
    main.o(i.MX_USART5_UART_Init) refers to main.o(.bss) for .bss
    main.o(i.Powerled_Poll) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_ReadPin) for HAL_GPIO_ReadPin
    main.o(i.Powerled_Poll) refers to main.o(.data) for .data
    main.o(i.Sleep_Panduan_Poll) refers to global_param.o(.bss) for g_com_map
    main.o(i.Sleep_Panduan_Poll) refers to main.o(.data) for .data
    main.o(i.Sleep_Panduan_Poll) refers to app.o(.data) for imu_enable
    main.o(i.SystemClock_Config) refers to memseta.o(.text) for __aeabi_memclr4
    main.o(i.SystemClock_Config) refers to stm32l0xx_hal_pwr.o(i.HAL_PWR_EnableBkUpAccess) for HAL_PWR_EnableBkUpAccess
    main.o(i.SystemClock_Config) refers to stm32l0xx_hal_rcc.o(i.HAL_RCC_OscConfig) for HAL_RCC_OscConfig
    main.o(i.SystemClock_Config) refers to stm32l0xx_hal_rcc.o(i.HAL_RCC_ClockConfig) for HAL_RCC_ClockConfig
    main.o(i.SystemClock_Config) refers to stm32l0xx_hal_rcc_ex.o(i.HAL_RCCEx_PeriphCLKConfig) for HAL_RCCEx_PeriphCLKConfig
    main.o(i.main) refers to stm32l0xx_hal.o(i.HAL_Init) for HAL_Init
    main.o(i.main) refers to main.o(i.SystemClock_Config) for SystemClock_Config
    main.o(i.main) refers to stm32l0xx_hal_iwdg.o(i.HAL_IWDG_Init) for HAL_IWDG_Init
    main.o(i.main) refers to main.o(i.MX_GPIO_Init) for MX_GPIO_Init
    main.o(i.main) refers to stm32l0xx_hal_cortex.o(i.HAL_NVIC_SetPriority) for HAL_NVIC_SetPriority
    main.o(i.main) refers to stm32l0xx_hal_cortex.o(i.HAL_NVIC_EnableIRQ) for HAL_NVIC_EnableIRQ
    main.o(i.main) refers to stm32l0xx_hal_rtc.o(i.HAL_RTC_Init) for HAL_RTC_Init
    main.o(i.main) refers to main.o(i.MX_USART5_UART_Init) for MX_USART5_UART_Init
    main.o(i.main) refers to main.o(i.MX_USART2_UART_Init) for MX_USART2_UART_Init
    main.o(i.main) refers to main.o(i.MX_SPI1_Init) for MX_SPI1_Init
    main.o(i.main) refers to main.o(i.MX_ADC_Init) for MX_ADC_Init
    main.o(i.main) refers to stm32l0xx_hal_lptim.o(i.HAL_LPTIM_Init) for HAL_LPTIM_Init
    main.o(i.main) refers to main.o(i.MX_USART1_UART_Init) for MX_USART1_UART_Init
    main.o(i.main) refers to main.o(i.MX_TIM3_Init) for MX_TIM3_Init
    main.o(i.main) refers to uart.o(i.Uart_Register) for Uart_Register
    main.o(i.main) refers to spi_hal.o(i.SPI_Register) for SPI_Register
    main.o(i.main) refers to air780edriver.o(i.AIR780EDriver_PinRegister) for AIR780EDriver_PinRegister
    main.o(i.main) refers to gps.o(i.GPS_PinRegister) for GPS_PinRegister
    main.o(i.main) refers to spiflash.o(i.SPIFlash_PinRegister) for SPIFlash_PinRegister
    main.o(i.main) refers to spiflash.o(i.SPIFlash_Init) for SPIFlash_Init
    main.o(i.main) refers to dbg.o(i.DBG_Init) for DBG_Init
    main.o(i.main) refers to shell.o(i.Shell_Init) for Shell_Init
    main.o(i.main) refers to app.o(i.Program_Init) for Program_Init
    main.o(i.main) refers to gps.o(i.GPS_Init) for GPS_Init
    main.o(i.main) refers to internet.o(i.Internet_Init) for Internet_Init
    main.o(i.main) refers to udpclient.o(i.UDPClient_Init) for UDPClient_Init
    main.o(i.main) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    main.o(i.main) refers to dw_app.o(i.Dw1000_Init) for Dw1000_Init
    main.o(i.main) refers to deca_device.o(i.dwt_configuresleep) for dwt_configuresleep
    main.o(i.main) refers to lis3dh_driver.o(i.LIS3DH_Data_Init) for LIS3DH_Data_Init
    main.o(i.main) refers to stm32l0xx_hal.o(i.HAL_Delay) for HAL_Delay
    main.o(i.main) refers to stm32l0xx_hal_lptim.o(i.HAL_LPTIM_TimeOut_Start_IT) for HAL_LPTIM_TimeOut_Start_IT
    main.o(i.main) refers to ws2812.o(i.Set4LEDColor) for Set4LEDColor
    main.o(i.main) refers to ws2812.o(i.Set4LEDColor_Off) for Set4LEDColor_Off
    main.o(i.main) refers to main.o(i.GPS_Close_Init) for GPS_Close_Init
    main.o(i.main) refers to adc.o(i.Get_Battary) for Get_Battary
    main.o(i.main) refers to app.o(i.Main_Poll) for Main_Poll
    main.o(i.main) refers to main.o(.bss) for .bss
    main.o(i.main) refers to main.o(.data) for .data
    stm32l0xx_it.o(i.DMA1_Channel2_3_IRQHandler) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_IRQHandler) for HAL_DMA_IRQHandler
    stm32l0xx_it.o(i.DMA1_Channel2_3_IRQHandler) refers to main.o(.bss) for hdma_usart5_rx
    stm32l0xx_it.o(i.DMA1_Channel4_5_6_7_IRQHandler) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_IRQHandler) for HAL_DMA_IRQHandler
    stm32l0xx_it.o(i.DMA1_Channel4_5_6_7_IRQHandler) refers to main.o(.bss) for hdma_usart2_tx
    stm32l0xx_it.o(i.DMA1_Channel4_5_6_7_IRQHandler) refers to main.o(.bss) for hdma_usart2_rx
    stm32l0xx_it.o(i.EXTI0_1_IRQHandler) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_EXTI_IRQHandler) for HAL_GPIO_EXTI_IRQHandler
    stm32l0xx_it.o(i.EXTI4_15_IRQHandler) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_EXTI_IRQHandler) for HAL_GPIO_EXTI_IRQHandler
    stm32l0xx_it.o(i.LPTIM1_IRQHandler) refers to stm32l0xx_hal_lptim.o(i.HAL_LPTIM_IRQHandler) for HAL_LPTIM_IRQHandler
    stm32l0xx_it.o(i.LPTIM1_IRQHandler) refers to main.o(.bss) for hlptim1
    stm32l0xx_it.o(i.SysTick_Handler) refers to hido_timer.o(i.HIDO_TimerTick) for HIDO_TimerTick
    stm32l0xx_it.o(i.SysTick_Handler) refers to stm32l0xx_hal.o(i.HAL_IncTick) for HAL_IncTick
    stm32l0xx_it.o(i.USART1_IRQHandler) refers to stm32l0xx_hal_uart.o(i.HAL_UART_IRQHandler) for HAL_UART_IRQHandler
    stm32l0xx_it.o(i.USART1_IRQHandler) refers to main.o(.bss) for huart1
    stm32l0xx_it.o(i.USART2_IRQHandler) refers to stm32l0xx_hal_uart.o(i.HAL_UART_IRQHandler) for HAL_UART_IRQHandler
    stm32l0xx_it.o(i.USART2_IRQHandler) refers to main.o(.bss) for huart2
    stm32l0xx_it.o(i.USART4_5_IRQHandler) refers to stm32l0xx_hal_uart.o(i.HAL_UART_IRQHandler) for HAL_UART_IRQHandler
    stm32l0xx_it.o(i.USART4_5_IRQHandler) refers to main.o(.bss) for huart5
    stm32l0xx_hal_msp.o(i.HAL_ADC_MspDeInit) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_DeInit) for HAL_GPIO_DeInit
    stm32l0xx_hal_msp.o(i.HAL_ADC_MspInit) refers to memseta.o(.text) for __aeabi_memclr4
    stm32l0xx_hal_msp.o(i.HAL_ADC_MspInit) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_Init) for HAL_GPIO_Init
    stm32l0xx_hal_msp.o(i.HAL_LPTIM_MspDeInit) refers to stm32l0xx_hal_cortex.o(i.HAL_NVIC_DisableIRQ) for HAL_NVIC_DisableIRQ
    stm32l0xx_hal_msp.o(i.HAL_LPTIM_MspInit) refers to stm32l0xx_hal_cortex.o(i.HAL_NVIC_SetPriority) for HAL_NVIC_SetPriority
    stm32l0xx_hal_msp.o(i.HAL_LPTIM_MspInit) refers to stm32l0xx_hal_cortex.o(i.HAL_NVIC_EnableIRQ) for HAL_NVIC_EnableIRQ
    stm32l0xx_hal_msp.o(i.HAL_SPI_MspDeInit) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_DeInit) for HAL_GPIO_DeInit
    stm32l0xx_hal_msp.o(i.HAL_SPI_MspInit) refers to memseta.o(.text) for __aeabi_memclr4
    stm32l0xx_hal_msp.o(i.HAL_SPI_MspInit) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_Init) for HAL_GPIO_Init
    stm32l0xx_hal_msp.o(i.HAL_TIM_MspPostInit) refers to memseta.o(.text) for __aeabi_memclr4
    stm32l0xx_hal_msp.o(i.HAL_TIM_MspPostInit) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_Init) for HAL_GPIO_Init
    stm32l0xx_hal_msp.o(i.HAL_UART_MspDeInit) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_DeInit) for HAL_GPIO_DeInit
    stm32l0xx_hal_msp.o(i.HAL_UART_MspDeInit) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_DeInit) for HAL_DMA_DeInit
    stm32l0xx_hal_msp.o(i.HAL_UART_MspDeInit) refers to stm32l0xx_hal_cortex.o(i.HAL_NVIC_DisableIRQ) for HAL_NVIC_DisableIRQ
    stm32l0xx_hal_msp.o(i.HAL_UART_MspInit) refers to memseta.o(.text) for __aeabi_memclr4
    stm32l0xx_hal_msp.o(i.HAL_UART_MspInit) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_Init) for HAL_GPIO_Init
    stm32l0xx_hal_msp.o(i.HAL_UART_MspInit) refers to stm32l0xx_hal_cortex.o(i.HAL_NVIC_SetPriority) for HAL_NVIC_SetPriority
    stm32l0xx_hal_msp.o(i.HAL_UART_MspInit) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Init) for HAL_DMA_Init
    stm32l0xx_hal_msp.o(i.HAL_UART_MspInit) refers to main.o(i.Error_Handler) for Error_Handler
    stm32l0xx_hal_msp.o(i.HAL_UART_MspInit) refers to stm32l0xx_hal_cortex.o(i.HAL_NVIC_EnableIRQ) for HAL_NVIC_EnableIRQ
    stm32l0xx_hal_msp.o(i.HAL_UART_MspInit) refers to main.o(.bss) for hdma_usart2_rx
    stm32l0xx_hal_msp.o(i.HAL_UART_MspInit) refers to main.o(.bss) for hdma_usart2_tx
    stm32l0xx_hal_msp.o(i.HAL_UART_MspInit) refers to main.o(.bss) for hdma_usart5_rx
    stm32l0xx_hal_adc.o(i.ADC_ConversionStop) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_adc.o(i.ADC_DMAConvCplt) refers to stm32l0xx_hal_adc.o(i.HAL_ADC_ConvCpltCallback) for HAL_ADC_ConvCpltCallback
    stm32l0xx_hal_adc.o(i.ADC_DMAError) refers to stm32l0xx_hal_adc.o(i.HAL_ADC_ErrorCallback) for HAL_ADC_ErrorCallback
    stm32l0xx_hal_adc.o(i.ADC_DMAHalfConvCplt) refers to stm32l0xx_hal_adc.o(i.HAL_ADC_ConvHalfCpltCallback) for HAL_ADC_ConvHalfCpltCallback
    stm32l0xx_hal_adc.o(i.ADC_DelayMicroSecond) refers to uidiv.o(.text) for __aeabi_uidivmod
    stm32l0xx_hal_adc.o(i.ADC_DelayMicroSecond) refers to system_stm32l0xx.o(.data) for SystemCoreClock
    stm32l0xx_hal_adc.o(i.ADC_Disable) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_adc.o(i.ADC_Enable) refers to stm32l0xx_hal_adc.o(i.ADC_DelayMicroSecond) for ADC_DelayMicroSecond
    stm32l0xx_hal_adc.o(i.ADC_Enable) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_adc.o(i.HAL_ADC_ConfigChannel) refers to stm32l0xx_hal_adc.o(i.ADC_DelayMicroSecond) for ADC_DelayMicroSecond
    stm32l0xx_hal_adc.o(i.HAL_ADC_DeInit) refers to stm32l0xx_hal_adc.o(i.ADC_ConversionStop) for ADC_ConversionStop
    stm32l0xx_hal_adc.o(i.HAL_ADC_DeInit) refers to stm32l0xx_hal_msp.o(i.HAL_ADC_MspDeInit) for HAL_ADC_MspDeInit
    stm32l0xx_hal_adc.o(i.HAL_ADC_DeInit) refers to stm32l0xx_hal_adc.o(i.ADC_Disable) for ADC_Disable
    stm32l0xx_hal_adc.o(i.HAL_ADC_IRQHandler) refers to stm32l0xx_hal_adc.o(i.HAL_ADC_ConvCpltCallback) for HAL_ADC_ConvCpltCallback
    stm32l0xx_hal_adc.o(i.HAL_ADC_IRQHandler) refers to stm32l0xx_hal_adc.o(i.HAL_ADC_LevelOutOfWindowCallback) for HAL_ADC_LevelOutOfWindowCallback
    stm32l0xx_hal_adc.o(i.HAL_ADC_IRQHandler) refers to stm32l0xx_hal_adc.o(i.HAL_ADC_ErrorCallback) for HAL_ADC_ErrorCallback
    stm32l0xx_hal_adc.o(i.HAL_ADC_Init) refers to stm32l0xx_hal_msp.o(i.HAL_ADC_MspInit) for HAL_ADC_MspInit
    stm32l0xx_hal_adc.o(i.HAL_ADC_PollForConversion) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_adc.o(i.HAL_ADC_PollForEvent) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_adc.o(i.HAL_ADC_Start) refers to stm32l0xx_hal_adc.o(i.ADC_Enable) for ADC_Enable
    stm32l0xx_hal_adc.o(i.HAL_ADC_Start_DMA) refers to stm32l0xx_hal_adc.o(i.ADC_Enable) for ADC_Enable
    stm32l0xx_hal_adc.o(i.HAL_ADC_Start_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_adc.o(i.HAL_ADC_Start_DMA) refers to stm32l0xx_hal_adc.o(i.ADC_DMAConvCplt) for ADC_DMAConvCplt
    stm32l0xx_hal_adc.o(i.HAL_ADC_Start_DMA) refers to stm32l0xx_hal_adc.o(i.ADC_DMAHalfConvCplt) for ADC_DMAHalfConvCplt
    stm32l0xx_hal_adc.o(i.HAL_ADC_Start_DMA) refers to stm32l0xx_hal_adc.o(i.ADC_DMAError) for ADC_DMAError
    stm32l0xx_hal_adc.o(i.HAL_ADC_Start_IT) refers to stm32l0xx_hal_adc.o(i.ADC_Enable) for ADC_Enable
    stm32l0xx_hal_adc.o(i.HAL_ADC_Stop) refers to stm32l0xx_hal_adc.o(i.ADC_ConversionStop) for ADC_ConversionStop
    stm32l0xx_hal_adc.o(i.HAL_ADC_Stop) refers to stm32l0xx_hal_adc.o(i.ADC_Disable) for ADC_Disable
    stm32l0xx_hal_adc.o(i.HAL_ADC_Stop_DMA) refers to stm32l0xx_hal_adc.o(i.ADC_ConversionStop) for ADC_ConversionStop
    stm32l0xx_hal_adc.o(i.HAL_ADC_Stop_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort) for HAL_DMA_Abort
    stm32l0xx_hal_adc.o(i.HAL_ADC_Stop_DMA) refers to stm32l0xx_hal_adc.o(i.ADC_Disable) for ADC_Disable
    stm32l0xx_hal_adc.o(i.HAL_ADC_Stop_IT) refers to stm32l0xx_hal_adc.o(i.ADC_ConversionStop) for ADC_ConversionStop
    stm32l0xx_hal_adc.o(i.HAL_ADC_Stop_IT) refers to stm32l0xx_hal_adc.o(i.ADC_Disable) for ADC_Disable
    stm32l0xx_hal_adc_ex.o(i.HAL_ADCEx_Calibration_Start) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_adc_ex.o(i.HAL_ADCEx_EnableVREFINT) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_adc_ex.o(i.HAL_ADCEx_EnableVREFINTTempSensor) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal.o(i.HAL_DeInit) refers to stm32l0xx_hal.o(i.HAL_MspDeInit) for HAL_MspDeInit
    stm32l0xx_hal.o(i.HAL_Delay) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal.o(i.HAL_Delay) refers to stm32l0xx_hal.o(.data) for .data
    stm32l0xx_hal.o(i.HAL_GetTick) refers to stm32l0xx_hal.o(.data) for .data
    stm32l0xx_hal.o(i.HAL_GetTickFreq) refers to stm32l0xx_hal.o(.data) for .data
    stm32l0xx_hal.o(i.HAL_GetTickPrio) refers to stm32l0xx_hal.o(.data) for .data
    stm32l0xx_hal.o(i.HAL_IncTick) refers to stm32l0xx_hal.o(.data) for .data
    stm32l0xx_hal.o(i.HAL_Init) refers to stm32l0xx_hal.o(i.HAL_InitTick) for HAL_InitTick
    stm32l0xx_hal.o(i.HAL_Init) refers to stm32l0xx_hal_msp.o(i.HAL_MspInit) for HAL_MspInit
    stm32l0xx_hal.o(i.HAL_InitTick) refers to uidiv.o(.text) for __aeabi_uidivmod
    stm32l0xx_hal.o(i.HAL_InitTick) refers to stm32l0xx_hal_cortex.o(i.HAL_SYSTICK_Config) for HAL_SYSTICK_Config
    stm32l0xx_hal.o(i.HAL_InitTick) refers to stm32l0xx_hal_cortex.o(i.HAL_NVIC_SetPriority) for HAL_NVIC_SetPriority
    stm32l0xx_hal.o(i.HAL_InitTick) refers to stm32l0xx_hal.o(.data) for .data
    stm32l0xx_hal.o(i.HAL_InitTick) refers to system_stm32l0xx.o(.data) for SystemCoreClock
    stm32l0xx_hal.o(i.HAL_SetTickFreq) refers to stm32l0xx_hal.o(i.HAL_InitTick) for HAL_InitTick
    stm32l0xx_hal.o(i.HAL_SetTickFreq) refers to stm32l0xx_hal.o(.data) for .data
    stm32l0xx_hal_i2c.o(i.HAL_I2C_DeInit) refers to stm32l0xx_hal_i2c.o(i.HAL_I2C_MspDeInit) for HAL_I2C_MspDeInit
    stm32l0xx_hal_i2c.o(i.HAL_I2C_DisableListen_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Disable_IRQ) for I2C_Disable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_ER_IRQHandler) refers to stm32l0xx_hal_i2c.o(i.I2C_ITError) for I2C_ITError
    stm32l0xx_hal_i2c.o(i.HAL_I2C_EnableListen_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_EnableListen_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_IT) for I2C_Slave_ISR_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Init) refers to stm32l0xx_hal_i2c.o(i.HAL_I2C_MspInit) for HAL_I2C_MspInit
    stm32l0xx_hal_i2c.o(i.HAL_I2C_IsDeviceReady) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_i2c.o(i.HAL_I2C_IsDeviceReady) refers to stm32l0xx_hal_i2c.o(i.I2C_WaitOnFlagUntilTimeout) for I2C_WaitOnFlagUntilTimeout
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Abort_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Disable_IRQ) for I2C_Disable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Abort_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Abort_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Receive) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Receive) refers to stm32l0xx_hal_i2c.o(i.I2C_WaitOnFlagUntilTimeout) for I2C_WaitOnFlagUntilTimeout
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Receive) refers to stm32l0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Receive) refers to stm32l0xx_hal_i2c.o(i.I2C_WaitOnRXNEFlagUntilTimeout) for I2C_WaitOnRXNEFlagUntilTimeout
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Receive) refers to stm32l0xx_hal_i2c.o(i.I2C_WaitOnSTOPFlagUntilTimeout) for I2C_WaitOnSTOPFlagUntilTimeout
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Receive_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Receive_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Receive_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Receive_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_DMA) for I2C_Master_ISR_DMA
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Receive_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_DMAMasterReceiveCplt) for I2C_DMAMasterReceiveCplt
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Receive_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_DMAError) for I2C_DMAError
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Receive_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_IT) for I2C_Master_ISR_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Receive_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Receive_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Receive_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_IT) for I2C_Master_ISR_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Receive_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_ConvertOtherXferOptions) for I2C_ConvertOtherXferOptions
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Receive_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Receive_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Receive_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Receive_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_DMA) for I2C_Master_ISR_DMA
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Receive_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_DMAMasterReceiveCplt) for I2C_DMAMasterReceiveCplt
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Receive_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_DMAError) for I2C_DMAError
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Receive_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_IT) for I2C_Master_ISR_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Receive_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_ConvertOtherXferOptions) for I2C_ConvertOtherXferOptions
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Receive_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Receive_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Receive_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_IT) for I2C_Master_ISR_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Transmit_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_ConvertOtherXferOptions) for I2C_ConvertOtherXferOptions
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Transmit_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Transmit_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Transmit_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Transmit_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_DMA) for I2C_Master_ISR_DMA
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Transmit_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_DMAMasterTransmitCplt) for I2C_DMAMasterTransmitCplt
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Transmit_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_DMAError) for I2C_DMAError
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Transmit_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_IT) for I2C_Master_ISR_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Transmit_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_ConvertOtherXferOptions) for I2C_ConvertOtherXferOptions
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Transmit_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Transmit_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Transmit_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_IT) for I2C_Master_ISR_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit) refers to stm32l0xx_hal_i2c.o(i.I2C_WaitOnFlagUntilTimeout) for I2C_WaitOnFlagUntilTimeout
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit) refers to stm32l0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit) refers to stm32l0xx_hal_i2c.o(i.I2C_WaitOnTXISFlagUntilTimeout) for I2C_WaitOnTXISFlagUntilTimeout
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit) refers to stm32l0xx_hal_i2c.o(i.I2C_WaitOnSTOPFlagUntilTimeout) for I2C_WaitOnSTOPFlagUntilTimeout
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_DMA) for I2C_Master_ISR_DMA
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_DMAMasterTransmitCplt) for I2C_DMAMasterTransmitCplt
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_DMAError) for I2C_DMAError
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_IT) for I2C_Master_ISR_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_IT) for I2C_Master_ISR_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Read) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Read) refers to stm32l0xx_hal_i2c.o(i.I2C_WaitOnFlagUntilTimeout) for I2C_WaitOnFlagUntilTimeout
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Read) refers to stm32l0xx_hal_i2c.o(i.I2C_RequestMemoryRead) for I2C_RequestMemoryRead
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Read) refers to stm32l0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Read) refers to stm32l0xx_hal_i2c.o(i.I2C_WaitOnSTOPFlagUntilTimeout) for I2C_WaitOnSTOPFlagUntilTimeout
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Mem_ISR_DMA) for I2C_Mem_ISR_DMA
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_DMAMasterReceiveCplt) for I2C_DMAMasterReceiveCplt
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_DMAError) for I2C_DMAError
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Mem_ISR_IT) for I2C_Mem_ISR_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Write) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Write) refers to stm32l0xx_hal_i2c.o(i.I2C_WaitOnFlagUntilTimeout) for I2C_WaitOnFlagUntilTimeout
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Write) refers to stm32l0xx_hal_i2c.o(i.I2C_RequestMemoryWrite) for I2C_RequestMemoryWrite
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Write) refers to stm32l0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Write) refers to stm32l0xx_hal_i2c.o(i.I2C_WaitOnTXISFlagUntilTimeout) for I2C_WaitOnTXISFlagUntilTimeout
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Write) refers to stm32l0xx_hal_i2c.o(i.I2C_WaitOnSTOPFlagUntilTimeout) for I2C_WaitOnSTOPFlagUntilTimeout
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Mem_ISR_DMA) for I2C_Mem_ISR_DMA
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_DMAMasterTransmitCplt) for I2C_DMAMasterTransmitCplt
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_DMAError) for I2C_DMAError
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Mem_ISR_IT) for I2C_Mem_ISR_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive) refers to stm32l0xx_hal_i2c.o(i.I2C_WaitOnFlagUntilTimeout) for I2C_WaitOnFlagUntilTimeout
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive) refers to stm32l0xx_hal_i2c.o(i.I2C_WaitOnRXNEFlagUntilTimeout) for I2C_WaitOnRXNEFlagUntilTimeout
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive) refers to stm32l0xx_hal_i2c.o(i.I2C_WaitOnSTOPFlagUntilTimeout) for I2C_WaitOnSTOPFlagUntilTimeout
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_DMA) for I2C_Slave_ISR_DMA
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_DMASlaveReceiveCplt) for I2C_DMASlaveReceiveCplt
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_DMAError) for I2C_DMAError
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_IT) for I2C_Slave_ISR_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Receive_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Disable_IRQ) for I2C_Disable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Receive_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Receive_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Receive_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Receive_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_DMAAbort) for I2C_DMAAbort
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Receive_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_DMA) for I2C_Slave_ISR_DMA
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Receive_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_DMASlaveReceiveCplt) for I2C_DMASlaveReceiveCplt
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Receive_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_DMAError) for I2C_DMAError
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Receive_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Disable_IRQ) for I2C_Disable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Receive_IT) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Receive_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Receive_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_DMAAbort) for I2C_DMAAbort
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Receive_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_IT) for I2C_Slave_ISR_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Transmit_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Disable_IRQ) for I2C_Disable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Transmit_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Transmit_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Transmit_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Transmit_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_DMAAbort) for I2C_DMAAbort
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Transmit_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_DMA) for I2C_Slave_ISR_DMA
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Transmit_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_DMASlaveTransmitCplt) for I2C_DMASlaveTransmitCplt
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Transmit_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_DMAError) for I2C_DMAError
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Transmit_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Disable_IRQ) for I2C_Disable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Transmit_IT) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Transmit_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Transmit_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_DMAAbort) for I2C_DMAAbort
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Transmit_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_IT) for I2C_Slave_ISR_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit) refers to stm32l0xx_hal_i2c.o(i.I2C_WaitOnFlagUntilTimeout) for I2C_WaitOnFlagUntilTimeout
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit) refers to stm32l0xx_hal_i2c.o(i.I2C_WaitOnTXISFlagUntilTimeout) for I2C_WaitOnTXISFlagUntilTimeout
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit) refers to stm32l0xx_hal_i2c.o(i.I2C_Flush_TXDR) for I2C_Flush_TXDR
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit) refers to stm32l0xx_hal_i2c.o(i.I2C_WaitOnSTOPFlagUntilTimeout) for I2C_WaitOnSTOPFlagUntilTimeout
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_DMA) for I2C_Slave_ISR_DMA
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_DMASlaveTransmitCplt) for I2C_DMASlaveTransmitCplt
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_DMAError) for I2C_DMAError
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_IT) for I2C_Slave_ISR_IT
    stm32l0xx_hal_i2c.o(i.I2C_DMAAbort) refers to stm32l0xx_hal_i2c.o(i.I2C_TreatErrorCallback) for I2C_TreatErrorCallback
    stm32l0xx_hal_i2c.o(i.I2C_DMAError) refers to stm32l0xx_hal_i2c.o(i.I2C_ITError) for I2C_ITError
    stm32l0xx_hal_i2c.o(i.I2C_DMAMasterReceiveCplt) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_i2c.o(i.I2C_DMAMasterReceiveCplt) refers to stm32l0xx_hal_i2c.o(i.I2C_ITError) for I2C_ITError
    stm32l0xx_hal_i2c.o(i.I2C_DMAMasterReceiveCplt) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.I2C_DMAMasterTransmitCplt) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_i2c.o(i.I2C_DMAMasterTransmitCplt) refers to stm32l0xx_hal_i2c.o(i.I2C_ITError) for I2C_ITError
    stm32l0xx_hal_i2c.o(i.I2C_DMAMasterTransmitCplt) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.I2C_DMASlaveReceiveCplt) refers to stm32l0xx_hal_i2c.o(i.I2C_ITSlaveSeqCplt) for I2C_ITSlaveSeqCplt
    stm32l0xx_hal_i2c.o(i.I2C_DMASlaveTransmitCplt) refers to stm32l0xx_hal_i2c.o(i.I2C_ITSlaveSeqCplt) for I2C_ITSlaveSeqCplt
    stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) refers to stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_DMA) for I2C_Master_ISR_DMA
    stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) refers to stm32l0xx_hal_i2c.o(i.I2C_Mem_ISR_DMA) for I2C_Mem_ISR_DMA
    stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) refers to stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_DMA) for I2C_Slave_ISR_DMA
    stm32l0xx_hal_i2c.o(i.I2C_ITAddrCplt) refers to stm32l0xx_hal_i2c.o(i.HAL_I2C_AddrCallback) for HAL_I2C_AddrCallback
    stm32l0xx_hal_i2c.o(i.I2C_ITAddrCplt) refers to stm32l0xx_hal_i2c.o(i.I2C_Disable_IRQ) for I2C_Disable_IRQ
    stm32l0xx_hal_i2c.o(i.I2C_ITError) refers to stm32l0xx_hal_i2c.o(i.I2C_Disable_IRQ) for I2C_Disable_IRQ
    stm32l0xx_hal_i2c.o(i.I2C_ITError) refers to stm32l0xx_hal_i2c.o(i.I2C_Flush_TXDR) for I2C_Flush_TXDR
    stm32l0xx_hal_i2c.o(i.I2C_ITError) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_GetState) for HAL_DMA_GetState
    stm32l0xx_hal_i2c.o(i.I2C_ITError) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
    stm32l0xx_hal_i2c.o(i.I2C_ITError) refers to stm32l0xx_hal_i2c.o(i.I2C_TreatErrorCallback) for I2C_TreatErrorCallback
    stm32l0xx_hal_i2c.o(i.I2C_ITError) refers to stm32l0xx_hal_i2c.o(i.I2C_DMAAbort) for I2C_DMAAbort
    stm32l0xx_hal_i2c.o(i.I2C_ITError) refers to stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_IT) for I2C_Slave_ISR_IT
    stm32l0xx_hal_i2c.o(i.I2C_ITListenCplt) refers to stm32l0xx_hal_i2c.o(i.I2C_Disable_IRQ) for I2C_Disable_IRQ
    stm32l0xx_hal_i2c.o(i.I2C_ITListenCplt) refers to stm32l0xx_hal_i2c.o(i.HAL_I2C_ListenCpltCallback) for HAL_I2C_ListenCpltCallback
    stm32l0xx_hal_i2c.o(i.I2C_ITMasterCplt) refers to stm32l0xx_hal_i2c.o(i.I2C_Disable_IRQ) for I2C_Disable_IRQ
    stm32l0xx_hal_i2c.o(i.I2C_ITMasterCplt) refers to stm32l0xx_hal_i2c.o(i.I2C_Flush_TXDR) for I2C_Flush_TXDR
    stm32l0xx_hal_i2c.o(i.I2C_ITMasterCplt) refers to stm32l0xx_hal_i2c.o(i.I2C_ITError) for I2C_ITError
    stm32l0xx_hal_i2c.o(i.I2C_ITMasterCplt) refers to stm32l0xx_hal_i2c.o(i.HAL_I2C_MasterRxCpltCallback) for HAL_I2C_MasterRxCpltCallback
    stm32l0xx_hal_i2c.o(i.I2C_ITMasterCplt) refers to stm32l0xx_hal_i2c.o(i.HAL_I2C_MasterTxCpltCallback) for HAL_I2C_MasterTxCpltCallback
    stm32l0xx_hal_i2c.o(i.I2C_ITMasterCplt) refers to stm32l0xx_hal_i2c.o(i.HAL_I2C_MemTxCpltCallback) for HAL_I2C_MemTxCpltCallback
    stm32l0xx_hal_i2c.o(i.I2C_ITMasterCplt) refers to stm32l0xx_hal_i2c.o(i.HAL_I2C_MemRxCpltCallback) for HAL_I2C_MemRxCpltCallback
    stm32l0xx_hal_i2c.o(i.I2C_ITMasterSeqCplt) refers to stm32l0xx_hal_i2c.o(i.I2C_Disable_IRQ) for I2C_Disable_IRQ
    stm32l0xx_hal_i2c.o(i.I2C_ITMasterSeqCplt) refers to stm32l0xx_hal_i2c.o(i.HAL_I2C_MasterRxCpltCallback) for HAL_I2C_MasterRxCpltCallback
    stm32l0xx_hal_i2c.o(i.I2C_ITMasterSeqCplt) refers to stm32l0xx_hal_i2c.o(i.HAL_I2C_MasterTxCpltCallback) for HAL_I2C_MasterTxCpltCallback
    stm32l0xx_hal_i2c.o(i.I2C_ITSlaveCplt) refers to stm32l0xx_hal_i2c.o(i.I2C_Disable_IRQ) for I2C_Disable_IRQ
    stm32l0xx_hal_i2c.o(i.I2C_ITSlaveCplt) refers to stm32l0xx_hal_i2c.o(i.I2C_Flush_TXDR) for I2C_Flush_TXDR
    stm32l0xx_hal_i2c.o(i.I2C_ITSlaveCplt) refers to stm32l0xx_hal_i2c.o(i.I2C_ITError) for I2C_ITError
    stm32l0xx_hal_i2c.o(i.I2C_ITSlaveCplt) refers to stm32l0xx_hal_i2c.o(i.I2C_ITListenCplt) for I2C_ITListenCplt
    stm32l0xx_hal_i2c.o(i.I2C_ITSlaveCplt) refers to stm32l0xx_hal_i2c.o(i.I2C_ITSlaveSeqCplt) for I2C_ITSlaveSeqCplt
    stm32l0xx_hal_i2c.o(i.I2C_ITSlaveCplt) refers to stm32l0xx_hal_i2c.o(i.HAL_I2C_ListenCpltCallback) for HAL_I2C_ListenCpltCallback
    stm32l0xx_hal_i2c.o(i.I2C_ITSlaveCplt) refers to stm32l0xx_hal_i2c.o(i.HAL_I2C_SlaveTxCpltCallback) for HAL_I2C_SlaveTxCpltCallback
    stm32l0xx_hal_i2c.o(i.I2C_ITSlaveCplt) refers to stm32l0xx_hal_i2c.o(i.HAL_I2C_SlaveRxCpltCallback) for HAL_I2C_SlaveRxCpltCallback
    stm32l0xx_hal_i2c.o(i.I2C_ITSlaveSeqCplt) refers to stm32l0xx_hal_i2c.o(i.I2C_Disable_IRQ) for I2C_Disable_IRQ
    stm32l0xx_hal_i2c.o(i.I2C_ITSlaveSeqCplt) refers to stm32l0xx_hal_i2c.o(i.HAL_I2C_SlaveRxCpltCallback) for HAL_I2C_SlaveRxCpltCallback
    stm32l0xx_hal_i2c.o(i.I2C_ITSlaveSeqCplt) refers to stm32l0xx_hal_i2c.o(i.HAL_I2C_SlaveTxCpltCallback) for HAL_I2C_SlaveTxCpltCallback
    stm32l0xx_hal_i2c.o(i.I2C_IsErrorOccurred) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_i2c.o(i.I2C_IsErrorOccurred) refers to stm32l0xx_hal_i2c.o(i.I2C_Flush_TXDR) for I2C_Flush_TXDR
    stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Flush_TXDR) for I2C_Flush_TXDR
    stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_ITError) for I2C_ITError
    stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_ITMasterSeqCplt) for I2C_ITMasterSeqCplt
    stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_ITMasterCplt) for I2C_ITMasterCplt
    stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Flush_TXDR) for I2C_Flush_TXDR
    stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_ITError) for I2C_ITError
    stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_ITMasterCplt) for I2C_ITMasterCplt
    stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_ITMasterSeqCplt) for I2C_ITMasterSeqCplt
    stm32l0xx_hal_i2c.o(i.I2C_Mem_ISR_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32l0xx_hal_i2c.o(i.I2C_Mem_ISR_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Flush_TXDR) for I2C_Flush_TXDR
    stm32l0xx_hal_i2c.o(i.I2C_Mem_ISR_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32l0xx_hal_i2c.o(i.I2C_Mem_ISR_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_ITError) for I2C_ITError
    stm32l0xx_hal_i2c.o(i.I2C_Mem_ISR_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_ITMasterCplt) for I2C_ITMasterCplt
    stm32l0xx_hal_i2c.o(i.I2C_Mem_ISR_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Flush_TXDR) for I2C_Flush_TXDR
    stm32l0xx_hal_i2c.o(i.I2C_Mem_ISR_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_ITError) for I2C_ITError
    stm32l0xx_hal_i2c.o(i.I2C_Mem_ISR_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32l0xx_hal_i2c.o(i.I2C_Mem_ISR_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_ITMasterCplt) for I2C_ITMasterCplt
    stm32l0xx_hal_i2c.o(i.I2C_RequestMemoryRead) refers to stm32l0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32l0xx_hal_i2c.o(i.I2C_RequestMemoryRead) refers to stm32l0xx_hal_i2c.o(i.I2C_WaitOnTXISFlagUntilTimeout) for I2C_WaitOnTXISFlagUntilTimeout
    stm32l0xx_hal_i2c.o(i.I2C_RequestMemoryRead) refers to stm32l0xx_hal_i2c.o(i.I2C_WaitOnFlagUntilTimeout) for I2C_WaitOnFlagUntilTimeout
    stm32l0xx_hal_i2c.o(i.I2C_RequestMemoryWrite) refers to stm32l0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32l0xx_hal_i2c.o(i.I2C_RequestMemoryWrite) refers to stm32l0xx_hal_i2c.o(i.I2C_WaitOnTXISFlagUntilTimeout) for I2C_WaitOnTXISFlagUntilTimeout
    stm32l0xx_hal_i2c.o(i.I2C_RequestMemoryWrite) refers to stm32l0xx_hal_i2c.o(i.I2C_WaitOnFlagUntilTimeout) for I2C_WaitOnFlagUntilTimeout
    stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_ITSlaveCplt) for I2C_ITSlaveCplt
    stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_ITListenCplt) for I2C_ITListenCplt
    stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_Flush_TXDR) for I2C_Flush_TXDR
    stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_ITSlaveSeqCplt) for I2C_ITSlaveSeqCplt
    stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_ITError) for I2C_ITError
    stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_ITAddrCplt) for I2C_ITAddrCplt
    stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_ITSlaveCplt) for I2C_ITSlaveCplt
    stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_ITError) for I2C_ITError
    stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_ITListenCplt) for I2C_ITListenCplt
    stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_Flush_TXDR) for I2C_Flush_TXDR
    stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_ITAddrCplt) for I2C_ITAddrCplt
    stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_ITSlaveSeqCplt) for I2C_ITSlaveSeqCplt
    stm32l0xx_hal_i2c.o(i.I2C_TreatErrorCallback) refers to stm32l0xx_hal_i2c.o(i.HAL_I2C_ErrorCallback) for HAL_I2C_ErrorCallback
    stm32l0xx_hal_i2c.o(i.I2C_TreatErrorCallback) refers to stm32l0xx_hal_i2c.o(i.HAL_I2C_AbortCpltCallback) for HAL_I2C_AbortCpltCallback
    stm32l0xx_hal_i2c.o(i.I2C_WaitOnFlagUntilTimeout) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_i2c.o(i.I2C_WaitOnRXNEFlagUntilTimeout) refers to stm32l0xx_hal_i2c.o(i.I2C_IsErrorOccurred) for I2C_IsErrorOccurred
    stm32l0xx_hal_i2c.o(i.I2C_WaitOnRXNEFlagUntilTimeout) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_i2c.o(i.I2C_WaitOnSTOPFlagUntilTimeout) refers to stm32l0xx_hal_i2c.o(i.I2C_IsErrorOccurred) for I2C_IsErrorOccurred
    stm32l0xx_hal_i2c.o(i.I2C_WaitOnSTOPFlagUntilTimeout) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_i2c.o(i.I2C_WaitOnTXISFlagUntilTimeout) refers to stm32l0xx_hal_i2c.o(i.I2C_IsErrorOccurred) for I2C_IsErrorOccurred
    stm32l0xx_hal_i2c.o(i.I2C_WaitOnTXISFlagUntilTimeout) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_rcc.o(i.HAL_RCC_ClockConfig) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_rcc.o(i.HAL_RCC_ClockConfig) refers to stm32l0xx_hal_rcc.o(i.HAL_RCC_GetSysClockFreq) for HAL_RCC_GetSysClockFreq
    stm32l0xx_hal_rcc.o(i.HAL_RCC_ClockConfig) refers to stm32l0xx_hal.o(i.HAL_InitTick) for HAL_InitTick
    stm32l0xx_hal_rcc.o(i.HAL_RCC_ClockConfig) refers to system_stm32l0xx.o(.constdata) for AHBPrescTable
    stm32l0xx_hal_rcc.o(i.HAL_RCC_ClockConfig) refers to system_stm32l0xx.o(.data) for SystemCoreClock
    stm32l0xx_hal_rcc.o(i.HAL_RCC_ClockConfig) refers to stm32l0xx_hal.o(.data) for uwTickPrio
    stm32l0xx_hal_rcc.o(i.HAL_RCC_DeInit) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_rcc.o(i.HAL_RCC_DeInit) refers to stm32l0xx_hal.o(i.HAL_InitTick) for HAL_InitTick
    stm32l0xx_hal_rcc.o(i.HAL_RCC_DeInit) refers to system_stm32l0xx.o(.data) for SystemCoreClock
    stm32l0xx_hal_rcc.o(i.HAL_RCC_DeInit) refers to stm32l0xx_hal.o(.data) for uwTickPrio
    stm32l0xx_hal_rcc.o(i.HAL_RCC_GetHCLKFreq) refers to system_stm32l0xx.o(.data) for SystemCoreClock
    stm32l0xx_hal_rcc.o(i.HAL_RCC_GetPCLK1Freq) refers to system_stm32l0xx.o(.data) for SystemCoreClock
    stm32l0xx_hal_rcc.o(i.HAL_RCC_GetPCLK1Freq) refers to system_stm32l0xx.o(.constdata) for APBPrescTable
    stm32l0xx_hal_rcc.o(i.HAL_RCC_GetPCLK2Freq) refers to system_stm32l0xx.o(.data) for SystemCoreClock
    stm32l0xx_hal_rcc.o(i.HAL_RCC_GetPCLK2Freq) refers to system_stm32l0xx.o(.constdata) for APBPrescTable
    stm32l0xx_hal_rcc.o(i.HAL_RCC_GetSysClockFreq) refers to stm32l0xx_hal_rcc.o(i.__ARM_common_ll_muluu) for __ARM_common_ll_muluu
    stm32l0xx_hal_rcc.o(i.HAL_RCC_GetSysClockFreq) refers to uldiv.o(.text) for __aeabi_uldivmod
    stm32l0xx_hal_rcc.o(i.HAL_RCC_GetSysClockFreq) refers to system_stm32l0xx.o(.constdata) for PLLMulTable
    stm32l0xx_hal_rcc.o(i.HAL_RCC_MCOConfig) refers to memseta.o(.text) for __aeabi_memclr4
    stm32l0xx_hal_rcc.o(i.HAL_RCC_MCOConfig) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_Init) for HAL_GPIO_Init
    stm32l0xx_hal_rcc.o(i.HAL_RCC_NMI_IRQHandler) refers to stm32l0xx_hal_rcc.o(i.HAL_RCC_CSSCallback) for HAL_RCC_CSSCallback
    stm32l0xx_hal_rcc.o(i.HAL_RCC_OscConfig) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_rcc.o(i.HAL_RCC_OscConfig) refers to stm32l0xx_hal_rcc.o(i.HAL_RCC_GetSysClockFreq) for HAL_RCC_GetSysClockFreq
    stm32l0xx_hal_rcc.o(i.HAL_RCC_OscConfig) refers to stm32l0xx_hal.o(i.HAL_InitTick) for HAL_InitTick
    stm32l0xx_hal_rcc.o(i.HAL_RCC_OscConfig) refers to system_stm32l0xx.o(.constdata) for AHBPrescTable
    stm32l0xx_hal_rcc.o(i.HAL_RCC_OscConfig) refers to system_stm32l0xx.o(.data) for SystemCoreClock
    stm32l0xx_hal_rcc.o(i.HAL_RCC_OscConfig) refers to stm32l0xx_hal.o(.data) for uwTickPrio
    stm32l0xx_hal_rcc_ex.o(i.HAL_RCCEx_GetPeriphCLKFreq) refers to stm32l0xx_hal_rcc.o(i.HAL_RCC_GetPCLK2Freq) for HAL_RCC_GetPCLK2Freq
    stm32l0xx_hal_rcc_ex.o(i.HAL_RCCEx_GetPeriphCLKFreq) refers to stm32l0xx_hal_rcc.o(i.HAL_RCC_GetSysClockFreq) for HAL_RCC_GetSysClockFreq
    stm32l0xx_hal_rcc_ex.o(i.HAL_RCCEx_GetPeriphCLKFreq) refers to stm32l0xx_hal_rcc.o(i.HAL_RCC_GetPCLK1Freq) for HAL_RCC_GetPCLK1Freq
    stm32l0xx_hal_rcc_ex.o(i.HAL_RCCEx_LSECSS_IRQHandler) refers to stm32l0xx_hal_rcc_ex.o(i.HAL_RCCEx_LSECSS_Callback) for HAL_RCCEx_LSECSS_Callback
    stm32l0xx_hal_rcc_ex.o(i.HAL_RCCEx_PeriphCLKConfig) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_flash_ramfunc.o(i.FLASHRAM_SetErrorCode) refers to stm32l0xx_hal_flash.o(.bss) for pFlash
    stm32l0xx_hal_flash_ramfunc.o(i.FLASHRAM_WaitForLastOperation) refers to stm32l0xx_hal_flash_ramfunc.o(i.FLASHRAM_SetErrorCode) for FLASHRAM_SetErrorCode
    stm32l0xx_hal_flash_ramfunc.o(i.HAL_FLASHEx_EraseParallelPage) refers to stm32l0xx_hal_flash_ramfunc.o(i.FLASHRAM_WaitForLastOperation) for FLASHRAM_WaitForLastOperation
    stm32l0xx_hal_flash_ramfunc.o(i.HAL_FLASHEx_GetError) refers to stm32l0xx_hal_flash.o(.bss) for pFlash
    stm32l0xx_hal_flash_ramfunc.o(i.HAL_FLASHEx_HalfPageProgram) refers to stm32l0xx_hal_flash_ramfunc.o(i.FLASHRAM_WaitForLastOperation) for FLASHRAM_WaitForLastOperation
    stm32l0xx_hal_flash_ramfunc.o(i.HAL_FLASHEx_ProgramParallelHalfPage) refers to stm32l0xx_hal_flash_ramfunc.o(i.FLASHRAM_WaitForLastOperation) for FLASHRAM_WaitForLastOperation
    stm32l0xx_hal_flash.o(i.FLASH_SetErrorCode) refers to stm32l0xx_hal_flash.o(.bss) for .bss
    stm32l0xx_hal_flash.o(i.FLASH_WaitForLastOperation) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_flash.o(i.FLASH_WaitForLastOperation) refers to stm32l0xx_hal_flash.o(i.FLASH_SetErrorCode) for FLASH_SetErrorCode
    stm32l0xx_hal_flash.o(i.HAL_FLASH_GetError) refers to stm32l0xx_hal_flash.o(.bss) for .bss
    stm32l0xx_hal_flash.o(i.HAL_FLASH_IRQHandler) refers to stm32l0xx_hal_flash.o(i.FLASH_SetErrorCode) for FLASH_SetErrorCode
    stm32l0xx_hal_flash.o(i.HAL_FLASH_IRQHandler) refers to stm32l0xx_hal_flash.o(i.HAL_FLASH_OperationErrorCallback) for HAL_FLASH_OperationErrorCallback
    stm32l0xx_hal_flash.o(i.HAL_FLASH_IRQHandler) refers to stm32l0xx_hal_flash.o(i.HAL_FLASH_EndOfOperationCallback) for HAL_FLASH_EndOfOperationCallback
    stm32l0xx_hal_flash.o(i.HAL_FLASH_IRQHandler) refers to stm32l0xx_hal_flash_ex.o(i.FLASH_PageErase) for FLASH_PageErase
    stm32l0xx_hal_flash.o(i.HAL_FLASH_IRQHandler) refers to stm32l0xx_hal_flash.o(.bss) for .bss
    stm32l0xx_hal_flash.o(i.HAL_FLASH_OB_Launch) refers to stm32l0xx_hal_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
    stm32l0xx_hal_flash.o(i.HAL_FLASH_Program) refers to stm32l0xx_hal_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
    stm32l0xx_hal_flash.o(i.HAL_FLASH_Program) refers to stm32l0xx_hal_flash.o(.bss) for .bss
    stm32l0xx_hal_flash.o(i.HAL_FLASH_Program_IT) refers to stm32l0xx_hal_flash.o(.bss) for .bss
    stm32l0xx_hal_flash_ex.o(i.FLASH_OB_ProtectedSectorsConfig) refers to stm32l0xx_hal_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
    stm32l0xx_hal_flash_ex.o(i.FLASH_OB_ProtectedSectorsConfig) refers to stm32l0xx_hal_flash.o(.bss) for pFlash
    stm32l0xx_hal_flash_ex.o(i.FLASH_PageErase) refers to stm32l0xx_hal_flash.o(.bss) for pFlash
    stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_AdvOBProgram) refers to stm32l0xx_hal_flash_ex.o(i.FLASH_OB_ProtectedSectorsConfig) for FLASH_OB_ProtectedSectorsConfig
    stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_AdvOBProgram) refers to stm32l0xx_hal_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
    stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_AdvOBProgram) refers to stm32l0xx_hal_flash.o(.bss) for pFlash
    stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_DATAEEPROM_Erase) refers to stm32l0xx_hal_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
    stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_DATAEEPROM_Erase) refers to stm32l0xx_hal_flash.o(.bss) for pFlash
    stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_DATAEEPROM_Program) refers to stm32l0xx_hal_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
    stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_DATAEEPROM_Program) refers to stm32l0xx_hal_flash.o(.bss) for pFlash
    stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase) refers to stm32l0xx_hal_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
    stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase) refers to stm32l0xx_hal_flash_ex.o(i.FLASH_PageErase) for FLASH_PageErase
    stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase) refers to stm32l0xx_hal_flash.o(.bss) for pFlash
    stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase_IT) refers to stm32l0xx_hal_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
    stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase_IT) refers to stm32l0xx_hal_flash_ex.o(i.FLASH_PageErase) for FLASH_PageErase
    stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase_IT) refers to stm32l0xx_hal_flash.o(.bss) for pFlash
    stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBProgram) refers to stm32l0xx_hal_flash_ex.o(i.FLASH_OB_ProtectedSectorsConfig) for FLASH_OB_ProtectedSectorsConfig
    stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBProgram) refers to stm32l0xx_hal_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
    stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBProgram) refers to stm32l0xx_hal_flash.o(.bss) for pFlash
    stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_OB_DeSelectPCROP) refers to stm32l0xx_hal_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
    stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_OB_DeSelectPCROP) refers to stm32l0xx_hal_flash.o(.bss) for pFlash
    stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_OB_SelectPCROP) refers to stm32l0xx_hal_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
    stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_OB_SelectPCROP) refers to stm32l0xx_hal_flash.o(.bss) for pFlash
    stm32l0xx_hal_gpio.o(i.HAL_GPIO_EXTI_IRQHandler) refers to main.o(i.HAL_GPIO_EXTI_Callback) for HAL_GPIO_EXTI_Callback
    stm32l0xx_hal_dma.o(i.HAL_DMA_DeInit) refers to uidiv.o(.text) for __aeabi_uidivmod
    stm32l0xx_hal_dma.o(i.HAL_DMA_Init) refers to uidiv.o(.text) for __aeabi_uidivmod
    stm32l0xx_hal_dma.o(i.HAL_DMA_PollForTransfer) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_dma.o(i.HAL_DMA_Start) refers to stm32l0xx_hal_dma.o(i.DMA_SetConfig) for DMA_SetConfig
    stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) refers to stm32l0xx_hal_dma.o(i.DMA_SetConfig) for DMA_SetConfig
    stm32l0xx_hal_dma.o(i.HAL_DMA_UnRegisterCallback) refers to stm32l0xx_hal_dma.o(i.__ARM_common_switch8) for __ARM_common_switch8
    stm32l0xx_hal_pwr.o(i.HAL_PWR_PVD_IRQHandler) refers to stm32l0xx_hal_pwr.o(i.HAL_PWR_PVDCallback) for HAL_PWR_PVDCallback
    stm32l0xx_hal_pwr_ex.o(i.HAL_PWREx_DisableLowPowerRunMode) refers to uidiv.o(.text) for __aeabi_uidivmod
    stm32l0xx_hal_pwr_ex.o(i.HAL_PWREx_DisableLowPowerRunMode) refers to system_stm32l0xx.o(.data) for SystemCoreClock
    stm32l0xx_hal_cortex.o(i.HAL_NVIC_SetPriority) refers to stm32l0xx_hal_cortex.o(i.__NVIC_SetPriority) for __NVIC_SetPriority
    stm32l0xx_hal_cortex.o(i.HAL_SYSTICK_Config) refers to stm32l0xx_hal_cortex.o(i.__NVIC_SetPriority) for __NVIC_SetPriority
    stm32l0xx_hal_cortex.o(i.HAL_SYSTICK_IRQHandler) refers to stm32l0xx_hal_cortex.o(i.HAL_SYSTICK_Callback) for HAL_SYSTICK_Callback
    stm32l0xx_hal_iwdg.o(i.HAL_IWDG_Init) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_Counter_Start) refers to stm32l0xx_hal_lptim.o(i.LPTIM_WaitForFlag) for LPTIM_WaitForFlag
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_Counter_Start_IT) refers to stm32l0xx_hal_lptim.o(i.LPTIM_WaitForFlag) for LPTIM_WaitForFlag
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_Counter_Start_IT) refers to stm32l0xx_hal_lptim.o(i.LPTIM_Disable) for LPTIM_Disable
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_Counter_Stop) refers to stm32l0xx_hal_lptim.o(i.LPTIM_Disable) for LPTIM_Disable
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_Counter_Stop_IT) refers to stm32l0xx_hal_lptim.o(i.LPTIM_Disable) for LPTIM_Disable
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_DeInit) refers to stm32l0xx_hal_lptim.o(i.LPTIM_Disable) for LPTIM_Disable
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_DeInit) refers to stm32l0xx_hal_msp.o(i.HAL_LPTIM_MspDeInit) for HAL_LPTIM_MspDeInit
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_Encoder_Start) refers to stm32l0xx_hal_lptim.o(i.LPTIM_WaitForFlag) for LPTIM_WaitForFlag
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_Encoder_Start_IT) refers to stm32l0xx_hal_lptim.o(i.LPTIM_WaitForFlag) for LPTIM_WaitForFlag
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_Encoder_Start_IT) refers to stm32l0xx_hal_lptim.o(i.LPTIM_Disable) for LPTIM_Disable
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_Encoder_Stop) refers to stm32l0xx_hal_lptim.o(i.LPTIM_Disable) for LPTIM_Disable
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_Encoder_Stop_IT) refers to stm32l0xx_hal_lptim.o(i.LPTIM_Disable) for LPTIM_Disable
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_IRQHandler) refers to main.o(i.HAL_LPTIM_CompareMatchCallback) for HAL_LPTIM_CompareMatchCallback
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_IRQHandler) refers to stm32l0xx_hal_lptim.o(i.HAL_LPTIM_AutoReloadMatchCallback) for HAL_LPTIM_AutoReloadMatchCallback
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_IRQHandler) refers to stm32l0xx_hal_lptim.o(i.HAL_LPTIM_TriggerCallback) for HAL_LPTIM_TriggerCallback
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_IRQHandler) refers to stm32l0xx_hal_lptim.o(i.HAL_LPTIM_CompareWriteCallback) for HAL_LPTIM_CompareWriteCallback
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_IRQHandler) refers to stm32l0xx_hal_lptim.o(i.HAL_LPTIM_AutoReloadWriteCallback) for HAL_LPTIM_AutoReloadWriteCallback
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_IRQHandler) refers to stm32l0xx_hal_lptim.o(i.HAL_LPTIM_DirectionUpCallback) for HAL_LPTIM_DirectionUpCallback
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_IRQHandler) refers to stm32l0xx_hal_lptim.o(i.HAL_LPTIM_DirectionDownCallback) for HAL_LPTIM_DirectionDownCallback
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_Init) refers to stm32l0xx_hal_msp.o(i.HAL_LPTIM_MspInit) for HAL_LPTIM_MspInit
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_OnePulse_Start) refers to stm32l0xx_hal_lptim.o(i.LPTIM_WaitForFlag) for LPTIM_WaitForFlag
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_OnePulse_Start_IT) refers to stm32l0xx_hal_lptim.o(i.LPTIM_WaitForFlag) for LPTIM_WaitForFlag
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_OnePulse_Start_IT) refers to stm32l0xx_hal_lptim.o(i.LPTIM_Disable) for LPTIM_Disable
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_OnePulse_Stop) refers to stm32l0xx_hal_lptim.o(i.LPTIM_Disable) for LPTIM_Disable
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_OnePulse_Stop_IT) refers to stm32l0xx_hal_lptim.o(i.LPTIM_Disable) for LPTIM_Disable
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_PWM_Start) refers to stm32l0xx_hal_lptim.o(i.LPTIM_WaitForFlag) for LPTIM_WaitForFlag
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_PWM_Start_IT) refers to stm32l0xx_hal_lptim.o(i.LPTIM_WaitForFlag) for LPTIM_WaitForFlag
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_PWM_Start_IT) refers to stm32l0xx_hal_lptim.o(i.LPTIM_Disable) for LPTIM_Disable
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_PWM_Stop) refers to stm32l0xx_hal_lptim.o(i.LPTIM_Disable) for LPTIM_Disable
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_PWM_Stop_IT) refers to stm32l0xx_hal_lptim.o(i.LPTIM_Disable) for LPTIM_Disable
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_SetOnce_Start) refers to stm32l0xx_hal_lptim.o(i.LPTIM_WaitForFlag) for LPTIM_WaitForFlag
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_SetOnce_Start_IT) refers to stm32l0xx_hal_lptim.o(i.LPTIM_WaitForFlag) for LPTIM_WaitForFlag
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_SetOnce_Start_IT) refers to stm32l0xx_hal_lptim.o(i.LPTIM_Disable) for LPTIM_Disable
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_SetOnce_Stop) refers to stm32l0xx_hal_lptim.o(i.LPTIM_Disable) for LPTIM_Disable
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_SetOnce_Stop_IT) refers to stm32l0xx_hal_lptim.o(i.LPTIM_Disable) for LPTIM_Disable
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_TimeOut_Start) refers to stm32l0xx_hal_lptim.o(i.LPTIM_WaitForFlag) for LPTIM_WaitForFlag
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_TimeOut_Start_IT) refers to stm32l0xx_hal_lptim.o(i.LPTIM_WaitForFlag) for LPTIM_WaitForFlag
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_TimeOut_Start_IT) refers to stm32l0xx_hal_lptim.o(i.LPTIM_Disable) for LPTIM_Disable
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_TimeOut_Stop) refers to stm32l0xx_hal_lptim.o(i.LPTIM_Disable) for LPTIM_Disable
    stm32l0xx_hal_lptim.o(i.HAL_LPTIM_TimeOut_Stop_IT) refers to stm32l0xx_hal_lptim.o(i.LPTIM_Disable) for LPTIM_Disable
    stm32l0xx_hal_lptim.o(i.LPTIM_Disable) refers to stm32l0xx_hal_lptim.o(i.LPTIM_WaitForFlag) for LPTIM_WaitForFlag
    stm32l0xx_hal_lptim.o(i.LPTIM_WaitForFlag) refers to uidiv.o(.text) for __aeabi_uidivmod
    stm32l0xx_hal_lptim.o(i.LPTIM_WaitForFlag) refers to system_stm32l0xx.o(.data) for SystemCoreClock
    stm32l0xx_hal_rtc.o(i.HAL_RTC_AlarmIRQHandler) refers to bsp.o(i.HAL_RTC_AlarmAEventCallback) for HAL_RTC_AlarmAEventCallback
    stm32l0xx_hal_rtc.o(i.HAL_RTC_AlarmIRQHandler) refers to stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_AlarmBEventCallback) for HAL_RTCEx_AlarmBEventCallback
    stm32l0xx_hal_rtc.o(i.HAL_RTC_DeInit) refers to stm32l0xx_hal_rtc.o(i.RTC_EnterInitMode) for RTC_EnterInitMode
    stm32l0xx_hal_rtc.o(i.HAL_RTC_DeInit) refers to stm32l0xx_hal_rtc.o(i.RTC_ExitInitMode) for RTC_ExitInitMode
    stm32l0xx_hal_rtc.o(i.HAL_RTC_DeInit) refers to stm32l0xx_hal_msp.o(i.HAL_RTC_MspDeInit) for HAL_RTC_MspDeInit
    stm32l0xx_hal_rtc.o(i.HAL_RTC_DeactivateAlarm) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_rtc.o(i.HAL_RTC_GetAlarm) refers to stm32l0xx_hal_rtc.o(i.RTC_Bcd2ToByte) for RTC_Bcd2ToByte
    stm32l0xx_hal_rtc.o(i.HAL_RTC_GetDate) refers to stm32l0xx_hal_rtc.o(i.RTC_Bcd2ToByte) for RTC_Bcd2ToByte
    stm32l0xx_hal_rtc.o(i.HAL_RTC_GetTime) refers to stm32l0xx_hal_rtc.o(i.RTC_Bcd2ToByte) for RTC_Bcd2ToByte
    stm32l0xx_hal_rtc.o(i.HAL_RTC_Init) refers to stm32l0xx_hal_msp.o(i.HAL_RTC_MspInit) for HAL_RTC_MspInit
    stm32l0xx_hal_rtc.o(i.HAL_RTC_Init) refers to stm32l0xx_hal_rtc.o(i.RTC_EnterInitMode) for RTC_EnterInitMode
    stm32l0xx_hal_rtc.o(i.HAL_RTC_Init) refers to stm32l0xx_hal_rtc.o(i.RTC_ExitInitMode) for RTC_ExitInitMode
    stm32l0xx_hal_rtc.o(i.HAL_RTC_PollForAlarmAEvent) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_rtc.o(i.HAL_RTC_SetAlarm) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_rtc.o(i.HAL_RTC_SetAlarm) refers to stm32l0xx_hal_rtc.o(i.RTC_ByteToBcd2) for RTC_ByteToBcd2
    stm32l0xx_hal_rtc.o(i.HAL_RTC_SetAlarm_IT) refers to uidiv.o(.text) for __aeabi_uidivmod
    stm32l0xx_hal_rtc.o(i.HAL_RTC_SetAlarm_IT) refers to stm32l0xx_hal_rtc.o(i.RTC_ByteToBcd2) for RTC_ByteToBcd2
    stm32l0xx_hal_rtc.o(i.HAL_RTC_SetAlarm_IT) refers to system_stm32l0xx.o(.data) for SystemCoreClock
    stm32l0xx_hal_rtc.o(i.HAL_RTC_SetDate) refers to stm32l0xx_hal_rtc.o(i.RTC_ByteToBcd2) for RTC_ByteToBcd2
    stm32l0xx_hal_rtc.o(i.HAL_RTC_SetDate) refers to stm32l0xx_hal_rtc.o(i.RTC_EnterInitMode) for RTC_EnterInitMode
    stm32l0xx_hal_rtc.o(i.HAL_RTC_SetDate) refers to stm32l0xx_hal_rtc.o(i.RTC_ExitInitMode) for RTC_ExitInitMode
    stm32l0xx_hal_rtc.o(i.HAL_RTC_SetTime) refers to stm32l0xx_hal_rtc.o(i.RTC_EnterInitMode) for RTC_EnterInitMode
    stm32l0xx_hal_rtc.o(i.HAL_RTC_SetTime) refers to stm32l0xx_hal_rtc.o(i.RTC_ByteToBcd2) for RTC_ByteToBcd2
    stm32l0xx_hal_rtc.o(i.HAL_RTC_SetTime) refers to stm32l0xx_hal_rtc.o(i.RTC_ExitInitMode) for RTC_ExitInitMode
    stm32l0xx_hal_rtc.o(i.HAL_RTC_WaitForSynchro) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_rtc.o(i.RTC_EnterInitMode) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_rtc.o(i.RTC_ExitInitMode) refers to stm32l0xx_hal_rtc.o(i.HAL_RTC_WaitForSynchro) for HAL_RTC_WaitForSynchro
    stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_DeactivateRefClock) refers to stm32l0xx_hal_rtc.o(i.RTC_EnterInitMode) for RTC_EnterInitMode
    stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_DeactivateRefClock) refers to stm32l0xx_hal_rtc.o(i.RTC_ExitInitMode) for RTC_ExitInitMode
    stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_DeactivateWakeUpTimer) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_GetTimeStamp) refers to stm32l0xx_hal_rtc.o(i.RTC_Bcd2ToByte) for RTC_Bcd2ToByte
    stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_PollForAlarmBEvent) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_PollForTamper1Event) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_PollForTamper2Event) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_PollForTamper3Event) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_PollForTimeStampEvent) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_PollForWakeUpTimerEvent) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_SetRefClock) refers to stm32l0xx_hal_rtc.o(i.RTC_EnterInitMode) for RTC_EnterInitMode
    stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_SetRefClock) refers to stm32l0xx_hal_rtc.o(i.RTC_ExitInitMode) for RTC_ExitInitMode
    stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_SetSmoothCalib) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_SetSynchroShift) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_SetSynchroShift) refers to stm32l0xx_hal_rtc.o(i.HAL_RTC_WaitForSynchro) for HAL_RTC_WaitForSynchro
    stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_SetWakeUpTimer) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_SetWakeUpTimer_IT) refers to uidiv.o(.text) for __aeabi_uidivmod
    stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_SetWakeUpTimer_IT) refers to system_stm32l0xx.o(.data) for SystemCoreClock
    stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_TamperTimeStampIRQHandler) refers to stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_TimeStampEventCallback) for HAL_RTCEx_TimeStampEventCallback
    stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_TamperTimeStampIRQHandler) refers to stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_Tamper1EventCallback) for HAL_RTCEx_Tamper1EventCallback
    stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_TamperTimeStampIRQHandler) refers to stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_Tamper2EventCallback) for HAL_RTCEx_Tamper2EventCallback
    stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_TamperTimeStampIRQHandler) refers to stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_Tamper3EventCallback) for HAL_RTCEx_Tamper3EventCallback
    stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_WakeUpTimerIRQHandler) refers to stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_WakeUpTimerEventCallback) for HAL_RTCEx_WakeUpTimerEventCallback
    stm32l0xx_hal_spi.o(i.HAL_SPI_Abort) refers to uidiv.o(.text) for __aeabi_uidivmod
    stm32l0xx_hal_spi.o(i.HAL_SPI_Abort) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort) for HAL_DMA_Abort
    stm32l0xx_hal_spi.o(i.HAL_SPI_Abort) refers to system_stm32l0xx.o(.data) for SystemCoreClock
    stm32l0xx_hal_spi.o(i.HAL_SPI_Abort) refers to stm32l0xx_hal_spi.o(i.SPI_AbortTx_ISR) for SPI_AbortTx_ISR
    stm32l0xx_hal_spi.o(i.HAL_SPI_Abort) refers to stm32l0xx_hal_spi.o(i.SPI_AbortRx_ISR) for SPI_AbortRx_ISR
    stm32l0xx_hal_spi.o(i.HAL_SPI_Abort_IT) refers to uidiv.o(.text) for __aeabi_uidivmod
    stm32l0xx_hal_spi.o(i.HAL_SPI_Abort_IT) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
    stm32l0xx_hal_spi.o(i.HAL_SPI_Abort_IT) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_AbortCpltCallback) for HAL_SPI_AbortCpltCallback
    stm32l0xx_hal_spi.o(i.HAL_SPI_Abort_IT) refers to system_stm32l0xx.o(.data) for SystemCoreClock
    stm32l0xx_hal_spi.o(i.HAL_SPI_Abort_IT) refers to stm32l0xx_hal_spi.o(i.SPI_AbortTx_ISR) for SPI_AbortTx_ISR
    stm32l0xx_hal_spi.o(i.HAL_SPI_Abort_IT) refers to stm32l0xx_hal_spi.o(i.SPI_AbortRx_ISR) for SPI_AbortRx_ISR
    stm32l0xx_hal_spi.o(i.HAL_SPI_Abort_IT) refers to stm32l0xx_hal_spi.o(i.SPI_DMATxAbortCallback) for SPI_DMATxAbortCallback
    stm32l0xx_hal_spi.o(i.HAL_SPI_Abort_IT) refers to stm32l0xx_hal_spi.o(i.SPI_DMARxAbortCallback) for SPI_DMARxAbortCallback
    stm32l0xx_hal_spi.o(i.HAL_SPI_DMAStop) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort) for HAL_DMA_Abort
    stm32l0xx_hal_spi.o(i.HAL_SPI_DeInit) refers to stm32l0xx_hal_msp.o(i.HAL_SPI_MspDeInit) for HAL_SPI_MspDeInit
    stm32l0xx_hal_spi.o(i.HAL_SPI_IRQHandler) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
    stm32l0xx_hal_spi.o(i.HAL_SPI_IRQHandler) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_ErrorCallback) for HAL_SPI_ErrorCallback
    stm32l0xx_hal_spi.o(i.HAL_SPI_IRQHandler) refers to stm32l0xx_hal_spi.o(i.SPI_DMAAbortOnError) for SPI_DMAAbortOnError
    stm32l0xx_hal_spi.o(i.HAL_SPI_Init) refers to stm32l0xx_hal_msp.o(i.HAL_SPI_MspInit) for HAL_SPI_MspInit
    stm32l0xx_hal_spi.o(i.HAL_SPI_Receive) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_spi.o(i.HAL_SPI_Receive) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_TransmitReceive) for HAL_SPI_TransmitReceive
    stm32l0xx_hal_spi.o(i.HAL_SPI_Receive) refers to stm32l0xx_hal_spi.o(i.SPI_EndRxTransaction) for SPI_EndRxTransaction
    stm32l0xx_hal_spi.o(i.HAL_SPI_Receive_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_spi.o(i.HAL_SPI_Receive_DMA) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_TransmitReceive_DMA) for HAL_SPI_TransmitReceive_DMA
    stm32l0xx_hal_spi.o(i.HAL_SPI_Receive_DMA) refers to stm32l0xx_hal_spi.o(i.SPI_DMAHalfReceiveCplt) for SPI_DMAHalfReceiveCplt
    stm32l0xx_hal_spi.o(i.HAL_SPI_Receive_DMA) refers to stm32l0xx_hal_spi.o(i.SPI_DMAReceiveCplt) for SPI_DMAReceiveCplt
    stm32l0xx_hal_spi.o(i.HAL_SPI_Receive_DMA) refers to stm32l0xx_hal_spi.o(i.SPI_DMAError) for SPI_DMAError
    stm32l0xx_hal_spi.o(i.HAL_SPI_Receive_IT) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_TransmitReceive_IT) for HAL_SPI_TransmitReceive_IT
    stm32l0xx_hal_spi.o(i.HAL_SPI_Receive_IT) refers to stm32l0xx_hal_spi.o(i.SPI_RxISR_16BIT) for SPI_RxISR_16BIT
    stm32l0xx_hal_spi.o(i.HAL_SPI_Receive_IT) refers to stm32l0xx_hal_spi.o(i.SPI_RxISR_8BIT) for SPI_RxISR_8BIT
    stm32l0xx_hal_spi.o(i.HAL_SPI_Transmit) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_spi.o(i.HAL_SPI_Transmit) refers to stm32l0xx_hal_spi.o(i.SPI_EndRxTxTransaction) for SPI_EndRxTxTransaction
    stm32l0xx_hal_spi.o(i.HAL_SPI_TransmitReceive) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_spi.o(i.HAL_SPI_TransmitReceive) refers to stm32l0xx_hal_spi.o(i.SPI_EndRxTxTransaction) for SPI_EndRxTxTransaction
    stm32l0xx_hal_spi.o(i.HAL_SPI_TransmitReceive_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_spi.o(i.HAL_SPI_TransmitReceive_DMA) refers to stm32l0xx_hal_spi.o(i.SPI_DMAHalfTransmitReceiveCplt) for SPI_DMAHalfTransmitReceiveCplt
    stm32l0xx_hal_spi.o(i.HAL_SPI_TransmitReceive_DMA) refers to stm32l0xx_hal_spi.o(i.SPI_DMATransmitReceiveCplt) for SPI_DMATransmitReceiveCplt
    stm32l0xx_hal_spi.o(i.HAL_SPI_TransmitReceive_DMA) refers to stm32l0xx_hal_spi.o(i.SPI_DMAError) for SPI_DMAError
    stm32l0xx_hal_spi.o(i.HAL_SPI_TransmitReceive_DMA) refers to stm32l0xx_hal_spi.o(i.SPI_DMAHalfReceiveCplt) for SPI_DMAHalfReceiveCplt
    stm32l0xx_hal_spi.o(i.HAL_SPI_TransmitReceive_DMA) refers to stm32l0xx_hal_spi.o(i.SPI_DMAReceiveCplt) for SPI_DMAReceiveCplt
    stm32l0xx_hal_spi.o(i.HAL_SPI_TransmitReceive_IT) refers to stm32l0xx_hal_spi.o(i.SPI_2linesRxISR_16BIT) for SPI_2linesRxISR_16BIT
    stm32l0xx_hal_spi.o(i.HAL_SPI_TransmitReceive_IT) refers to stm32l0xx_hal_spi.o(i.SPI_2linesTxISR_16BIT) for SPI_2linesTxISR_16BIT
    stm32l0xx_hal_spi.o(i.HAL_SPI_TransmitReceive_IT) refers to stm32l0xx_hal_spi.o(i.SPI_2linesRxISR_8BIT) for SPI_2linesRxISR_8BIT
    stm32l0xx_hal_spi.o(i.HAL_SPI_TransmitReceive_IT) refers to stm32l0xx_hal_spi.o(i.SPI_2linesTxISR_8BIT) for SPI_2linesTxISR_8BIT
    stm32l0xx_hal_spi.o(i.HAL_SPI_Transmit_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_spi.o(i.HAL_SPI_Transmit_DMA) refers to stm32l0xx_hal_spi.o(i.SPI_DMAHalfTransmitCplt) for SPI_DMAHalfTransmitCplt
    stm32l0xx_hal_spi.o(i.HAL_SPI_Transmit_DMA) refers to stm32l0xx_hal_spi.o(i.SPI_DMATransmitCplt) for SPI_DMATransmitCplt
    stm32l0xx_hal_spi.o(i.HAL_SPI_Transmit_DMA) refers to stm32l0xx_hal_spi.o(i.SPI_DMAError) for SPI_DMAError
    stm32l0xx_hal_spi.o(i.HAL_SPI_Transmit_IT) refers to stm32l0xx_hal_spi.o(i.SPI_TxISR_16BIT) for SPI_TxISR_16BIT
    stm32l0xx_hal_spi.o(i.HAL_SPI_Transmit_IT) refers to stm32l0xx_hal_spi.o(i.SPI_TxISR_8BIT) for SPI_TxISR_8BIT
    stm32l0xx_hal_spi.o(i.SPI_2linesRxISR_16BIT) refers to stm32l0xx_hal_spi.o(i.SPI_CloseRxTx_ISR) for SPI_CloseRxTx_ISR
    stm32l0xx_hal_spi.o(i.SPI_2linesRxISR_8BIT) refers to stm32l0xx_hal_spi.o(i.SPI_CloseRxTx_ISR) for SPI_CloseRxTx_ISR
    stm32l0xx_hal_spi.o(i.SPI_2linesTxISR_16BIT) refers to stm32l0xx_hal_spi.o(i.SPI_CloseRxTx_ISR) for SPI_CloseRxTx_ISR
    stm32l0xx_hal_spi.o(i.SPI_2linesTxISR_8BIT) refers to stm32l0xx_hal_spi.o(i.SPI_CloseRxTx_ISR) for SPI_CloseRxTx_ISR
    stm32l0xx_hal_spi.o(i.SPI_AbortRx_ISR) refers to uidiv.o(.text) for __aeabi_uidivmod
    stm32l0xx_hal_spi.o(i.SPI_AbortRx_ISR) refers to system_stm32l0xx.o(.data) for SystemCoreClock
    stm32l0xx_hal_spi.o(i.SPI_CloseRxTx_ISR) refers to uidiv.o(.text) for __aeabi_uidivmod
    stm32l0xx_hal_spi.o(i.SPI_CloseRxTx_ISR) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_spi.o(i.SPI_CloseRxTx_ISR) refers to stm32l0xx_hal_spi.o(i.SPI_EndRxTxTransaction) for SPI_EndRxTxTransaction
    stm32l0xx_hal_spi.o(i.SPI_CloseRxTx_ISR) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_ErrorCallback) for HAL_SPI_ErrorCallback
    stm32l0xx_hal_spi.o(i.SPI_CloseRxTx_ISR) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_TxRxCpltCallback) for HAL_SPI_TxRxCpltCallback
    stm32l0xx_hal_spi.o(i.SPI_CloseRxTx_ISR) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_RxCpltCallback) for HAL_SPI_RxCpltCallback
    stm32l0xx_hal_spi.o(i.SPI_CloseRxTx_ISR) refers to system_stm32l0xx.o(.data) for SystemCoreClock
    stm32l0xx_hal_spi.o(i.SPI_CloseRx_ISR) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_spi.o(i.SPI_CloseRx_ISR) refers to stm32l0xx_hal_spi.o(i.SPI_EndRxTransaction) for SPI_EndRxTransaction
    stm32l0xx_hal_spi.o(i.SPI_CloseRx_ISR) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_ErrorCallback) for HAL_SPI_ErrorCallback
    stm32l0xx_hal_spi.o(i.SPI_CloseRx_ISR) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_RxCpltCallback) for HAL_SPI_RxCpltCallback
    stm32l0xx_hal_spi.o(i.SPI_CloseTx_ISR) refers to uidiv.o(.text) for __aeabi_uidivmod
    stm32l0xx_hal_spi.o(i.SPI_CloseTx_ISR) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_spi.o(i.SPI_CloseTx_ISR) refers to stm32l0xx_hal_spi.o(i.SPI_EndRxTxTransaction) for SPI_EndRxTxTransaction
    stm32l0xx_hal_spi.o(i.SPI_CloseTx_ISR) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_ErrorCallback) for HAL_SPI_ErrorCallback
    stm32l0xx_hal_spi.o(i.SPI_CloseTx_ISR) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_TxCpltCallback) for HAL_SPI_TxCpltCallback
    stm32l0xx_hal_spi.o(i.SPI_CloseTx_ISR) refers to system_stm32l0xx.o(.data) for SystemCoreClock
    stm32l0xx_hal_spi.o(i.SPI_DMAAbortOnError) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_ErrorCallback) for HAL_SPI_ErrorCallback
    stm32l0xx_hal_spi.o(i.SPI_DMAError) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_ErrorCallback) for HAL_SPI_ErrorCallback
    stm32l0xx_hal_spi.o(i.SPI_DMAHalfReceiveCplt) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_RxHalfCpltCallback) for HAL_SPI_RxHalfCpltCallback
    stm32l0xx_hal_spi.o(i.SPI_DMAHalfTransmitCplt) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_TxHalfCpltCallback) for HAL_SPI_TxHalfCpltCallback
    stm32l0xx_hal_spi.o(i.SPI_DMAHalfTransmitReceiveCplt) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_TxRxHalfCpltCallback) for HAL_SPI_TxRxHalfCpltCallback
    stm32l0xx_hal_spi.o(i.SPI_DMAReceiveCplt) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_spi.o(i.SPI_DMAReceiveCplt) refers to stm32l0xx_hal_spi.o(i.SPI_EndRxTransaction) for SPI_EndRxTransaction
    stm32l0xx_hal_spi.o(i.SPI_DMAReceiveCplt) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_ErrorCallback) for HAL_SPI_ErrorCallback
    stm32l0xx_hal_spi.o(i.SPI_DMAReceiveCplt) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_RxCpltCallback) for HAL_SPI_RxCpltCallback
    stm32l0xx_hal_spi.o(i.SPI_DMARxAbortCallback) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_spi.o(i.SPI_DMARxAbortCallback) refers to stm32l0xx_hal_spi.o(i.SPI_EndRxTxTransaction) for SPI_EndRxTxTransaction
    stm32l0xx_hal_spi.o(i.SPI_DMARxAbortCallback) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_AbortCpltCallback) for HAL_SPI_AbortCpltCallback
    stm32l0xx_hal_spi.o(i.SPI_DMATransmitCplt) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_spi.o(i.SPI_DMATransmitCplt) refers to stm32l0xx_hal_spi.o(i.SPI_EndRxTxTransaction) for SPI_EndRxTxTransaction
    stm32l0xx_hal_spi.o(i.SPI_DMATransmitCplt) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_ErrorCallback) for HAL_SPI_ErrorCallback
    stm32l0xx_hal_spi.o(i.SPI_DMATransmitCplt) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_TxCpltCallback) for HAL_SPI_TxCpltCallback
    stm32l0xx_hal_spi.o(i.SPI_DMATransmitReceiveCplt) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_spi.o(i.SPI_DMATransmitReceiveCplt) refers to stm32l0xx_hal_spi.o(i.SPI_EndRxTxTransaction) for SPI_EndRxTxTransaction
    stm32l0xx_hal_spi.o(i.SPI_DMATransmitReceiveCplt) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_ErrorCallback) for HAL_SPI_ErrorCallback
    stm32l0xx_hal_spi.o(i.SPI_DMATransmitReceiveCplt) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_TxRxCpltCallback) for HAL_SPI_TxRxCpltCallback
    stm32l0xx_hal_spi.o(i.SPI_DMATxAbortCallback) refers to uidiv.o(.text) for __aeabi_uidivmod
    stm32l0xx_hal_spi.o(i.SPI_DMATxAbortCallback) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_AbortCpltCallback) for HAL_SPI_AbortCpltCallback
    stm32l0xx_hal_spi.o(i.SPI_DMATxAbortCallback) refers to system_stm32l0xx.o(.data) for SystemCoreClock
    stm32l0xx_hal_spi.o(i.SPI_EndRxTransaction) refers to stm32l0xx_hal_spi.o(i.SPI_WaitFlagStateUntilTimeout) for SPI_WaitFlagStateUntilTimeout
    stm32l0xx_hal_spi.o(i.SPI_EndRxTxTransaction) refers to uidiv.o(.text) for __aeabi_uidivmod
    stm32l0xx_hal_spi.o(i.SPI_EndRxTxTransaction) refers to stm32l0xx_hal_spi.o(i.SPI_WaitFlagStateUntilTimeout) for SPI_WaitFlagStateUntilTimeout
    stm32l0xx_hal_spi.o(i.SPI_EndRxTxTransaction) refers to system_stm32l0xx.o(.data) for SystemCoreClock
    stm32l0xx_hal_spi.o(i.SPI_RxISR_16BIT) refers to stm32l0xx_hal_spi.o(i.SPI_CloseRx_ISR) for SPI_CloseRx_ISR
    stm32l0xx_hal_spi.o(i.SPI_RxISR_8BIT) refers to stm32l0xx_hal_spi.o(i.SPI_CloseRx_ISR) for SPI_CloseRx_ISR
    stm32l0xx_hal_spi.o(i.SPI_TxISR_16BIT) refers to stm32l0xx_hal_spi.o(i.SPI_CloseTx_ISR) for SPI_CloseTx_ISR
    stm32l0xx_hal_spi.o(i.SPI_TxISR_8BIT) refers to stm32l0xx_hal_spi.o(i.SPI_CloseTx_ISR) for SPI_CloseTx_ISR
    stm32l0xx_hal_spi.o(i.SPI_WaitFlagStateUntilTimeout) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_spi.o(i.SPI_WaitFlagStateUntilTimeout) refers to system_stm32l0xx.o(.data) for SystemCoreClock
    stm32l0xx_hal_tim.o(i.HAL_TIM_Base_DeInit) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_Base_MspDeInit) for HAL_TIM_Base_MspDeInit
    stm32l0xx_hal_tim.o(i.HAL_TIM_Base_Init) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_Base_MspInit) for HAL_TIM_Base_MspInit
    stm32l0xx_hal_tim.o(i.HAL_TIM_Base_Init) refers to stm32l0xx_hal_tim.o(i.TIM_Base_SetConfig) for TIM_Base_SetConfig
    stm32l0xx_hal_tim.o(i.HAL_TIM_Base_Start_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_tim.o(i.HAL_TIM_Base_Start_DMA) refers to stm32l0xx_hal_tim.o(i.TIM_DMAPeriodElapsedCplt) for TIM_DMAPeriodElapsedCplt
    stm32l0xx_hal_tim.o(i.HAL_TIM_Base_Start_DMA) refers to stm32l0xx_hal_tim.o(i.TIM_DMAPeriodElapsedHalfCplt) for TIM_DMAPeriodElapsedHalfCplt
    stm32l0xx_hal_tim.o(i.HAL_TIM_Base_Start_DMA) refers to stm32l0xx_hal_tim.o(i.TIM_DMAError) for TIM_DMAError
    stm32l0xx_hal_tim.o(i.HAL_TIM_Base_Stop_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
    stm32l0xx_hal_tim.o(i.HAL_TIM_ConfigClockSource) refers to stm32l0xx_hal_tim.o(i.TIM_ETR_SetConfig) for TIM_ETR_SetConfig
    stm32l0xx_hal_tim.o(i.HAL_TIM_ConfigClockSource) refers to stm32l0xx_hal_tim.o(i.TIM_TI1_ConfigInputStage) for TIM_TI1_ConfigInputStage
    stm32l0xx_hal_tim.o(i.HAL_TIM_ConfigClockSource) refers to stm32l0xx_hal_tim.o(i.TIM_TI2_ConfigInputStage) for TIM_TI2_ConfigInputStage
    stm32l0xx_hal_tim.o(i.HAL_TIM_ConfigClockSource) refers to stm32l0xx_hal_tim.o(i.TIM_ITRx_SetConfig) for TIM_ITRx_SetConfig
    stm32l0xx_hal_tim.o(i.HAL_TIM_ConfigOCrefClear) refers to stm32l0xx_hal_tim.o(i.TIM_ETR_SetConfig) for TIM_ETR_SetConfig
    stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiReadStart) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiReadStart) refers to stm32l0xx_hal_tim.o(i.TIM_DMAError) for TIM_DMAError
    stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiReadStart) refers to stm32l0xx_hal_tim.o(i.TIM_DMACaptureCplt) for TIM_DMACaptureCplt
    stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiReadStart) refers to stm32l0xx_hal_tim.o(i.TIM_DMACaptureHalfCplt) for TIM_DMACaptureHalfCplt
    stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiReadStart) refers to stm32l0xx_hal_tim.o(i.TIM_DMATriggerCplt) for TIM_DMATriggerCplt
    stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiReadStart) refers to stm32l0xx_hal_tim.o(i.TIM_DMATriggerHalfCplt) for TIM_DMATriggerHalfCplt
    stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiReadStart) refers to stm32l0xx_hal_tim.o(i.TIM_DMAPeriodElapsedCplt) for TIM_DMAPeriodElapsedCplt
    stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiReadStart) refers to stm32l0xx_hal_tim.o(i.TIM_DMAPeriodElapsedHalfCplt) for TIM_DMAPeriodElapsedHalfCplt
    stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32l0xx_hal_tim.o(i.TIM_DMAError) for TIM_DMAError
    stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32l0xx_hal_tim.o(i.TIM_DMADelayPulseCplt) for TIM_DMADelayPulseCplt
    stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32l0xx_hal_tim.o(i.TIM_DMADelayPulseHalfCplt) for TIM_DMADelayPulseHalfCplt
    stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32l0xx_hal_tim.o(i.TIM_DMATriggerCplt) for TIM_DMATriggerCplt
    stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32l0xx_hal_tim.o(i.TIM_DMATriggerHalfCplt) for TIM_DMATriggerHalfCplt
    stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32l0xx_hal_tim.o(i.TIM_DMAPeriodElapsedCplt) for TIM_DMAPeriodElapsedCplt
    stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32l0xx_hal_tim.o(i.TIM_DMAPeriodElapsedHalfCplt) for TIM_DMAPeriodElapsedHalfCplt
    stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_ReadStart) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiReadStart) for HAL_TIM_DMABurst_MultiReadStart
    stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_ReadStop) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
    stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_WriteStart) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiWriteStart) for HAL_TIM_DMABurst_MultiWriteStart
    stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_WriteStop) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
    stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_DeInit) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_MspDeInit) for HAL_TIM_Encoder_MspDeInit
    stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_Init) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_MspInit) for HAL_TIM_Encoder_MspInit
    stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_Init) refers to stm32l0xx_hal_tim.o(i.TIM_Base_SetConfig) for TIM_Base_SetConfig
    stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_Start) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_Start_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_Start_DMA) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_Start_DMA) refers to stm32l0xx_hal_tim.o(i.TIM_DMACaptureHalfCplt) for TIM_DMACaptureHalfCplt
    stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_Start_DMA) refers to stm32l0xx_hal_tim.o(i.TIM_DMACaptureCplt) for TIM_DMACaptureCplt
    stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_Start_DMA) refers to stm32l0xx_hal_tim.o(i.TIM_DMAError) for TIM_DMAError
    stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_Start_IT) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_Stop) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_Stop_DMA) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_Stop_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
    stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_Stop_IT) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_IC_ConfigChannel) refers to stm32l0xx_hal_tim.o(i.TIM_TI1_SetConfig) for TIM_TI1_SetConfig
    stm32l0xx_hal_tim.o(i.HAL_TIM_IC_ConfigChannel) refers to stm32l0xx_hal_tim.o(i.TIM_TI2_SetConfig) for TIM_TI2_SetConfig
    stm32l0xx_hal_tim.o(i.HAL_TIM_IC_DeInit) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_IC_MspDeInit) for HAL_TIM_IC_MspDeInit
    stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Init) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_IC_MspInit) for HAL_TIM_IC_MspInit
    stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Init) refers to stm32l0xx_hal_tim.o(i.TIM_Base_SetConfig) for TIM_Base_SetConfig
    stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Start) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Start_DMA) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Start_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Start_DMA) refers to stm32l0xx_hal_tim.o(i.TIM_DMACaptureCplt) for TIM_DMACaptureCplt
    stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Start_DMA) refers to stm32l0xx_hal_tim.o(i.TIM_DMACaptureHalfCplt) for TIM_DMACaptureHalfCplt
    stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Start_DMA) refers to stm32l0xx_hal_tim.o(i.TIM_DMAError) for TIM_DMAError
    stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Start_IT) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Stop) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Stop_DMA) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Stop_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
    stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Stop_IT) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_IRQHandler) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_IC_CaptureCallback) for HAL_TIM_IC_CaptureCallback
    stm32l0xx_hal_tim.o(i.HAL_TIM_IRQHandler) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_OC_DelayElapsedCallback) for HAL_TIM_OC_DelayElapsedCallback
    stm32l0xx_hal_tim.o(i.HAL_TIM_IRQHandler) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_PulseFinishedCallback) for HAL_TIM_PWM_PulseFinishedCallback
    stm32l0xx_hal_tim.o(i.HAL_TIM_IRQHandler) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_PeriodElapsedCallback) for HAL_TIM_PeriodElapsedCallback
    stm32l0xx_hal_tim.o(i.HAL_TIM_IRQHandler) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_TriggerCallback) for HAL_TIM_TriggerCallback
    stm32l0xx_hal_tim.o(i.HAL_TIM_OC_ConfigChannel) refers to stm32l0xx_hal_tim.o(i.TIM_OC1_SetConfig) for TIM_OC1_SetConfig
    stm32l0xx_hal_tim.o(i.HAL_TIM_OC_ConfigChannel) refers to stm32l0xx_hal_tim.o(i.TIM_OC2_SetConfig) for TIM_OC2_SetConfig
    stm32l0xx_hal_tim.o(i.HAL_TIM_OC_ConfigChannel) refers to stm32l0xx_hal_tim.o(i.TIM_OC3_SetConfig) for TIM_OC3_SetConfig
    stm32l0xx_hal_tim.o(i.HAL_TIM_OC_ConfigChannel) refers to stm32l0xx_hal_tim.o(i.TIM_OC4_SetConfig) for TIM_OC4_SetConfig
    stm32l0xx_hal_tim.o(i.HAL_TIM_OC_DeInit) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_OC_MspDeInit) for HAL_TIM_OC_MspDeInit
    stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Init) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_OC_MspInit) for HAL_TIM_OC_MspInit
    stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Init) refers to stm32l0xx_hal_tim.o(i.TIM_Base_SetConfig) for TIM_Base_SetConfig
    stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Start) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Start_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Start_DMA) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Start_DMA) refers to stm32l0xx_hal_tim.o(i.TIM_DMADelayPulseCplt) for TIM_DMADelayPulseCplt
    stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Start_DMA) refers to stm32l0xx_hal_tim.o(i.TIM_DMADelayPulseHalfCplt) for TIM_DMADelayPulseHalfCplt
    stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Start_DMA) refers to stm32l0xx_hal_tim.o(i.TIM_DMAError) for TIM_DMAError
    stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Start_IT) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Stop) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Stop_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
    stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Stop_DMA) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Stop_IT) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_OnePulse_ConfigChannel) refers to stm32l0xx_hal_tim.o(i.TIM_OC1_SetConfig) for TIM_OC1_SetConfig
    stm32l0xx_hal_tim.o(i.HAL_TIM_OnePulse_ConfigChannel) refers to stm32l0xx_hal_tim.o(i.TIM_OC2_SetConfig) for TIM_OC2_SetConfig
    stm32l0xx_hal_tim.o(i.HAL_TIM_OnePulse_ConfigChannel) refers to stm32l0xx_hal_tim.o(i.TIM_TI1_SetConfig) for TIM_TI1_SetConfig
    stm32l0xx_hal_tim.o(i.HAL_TIM_OnePulse_ConfigChannel) refers to stm32l0xx_hal_tim.o(i.TIM_TI2_SetConfig) for TIM_TI2_SetConfig
    stm32l0xx_hal_tim.o(i.HAL_TIM_OnePulse_DeInit) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_OnePulse_MspDeInit) for HAL_TIM_OnePulse_MspDeInit
    stm32l0xx_hal_tim.o(i.HAL_TIM_OnePulse_Init) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_OnePulse_MspInit) for HAL_TIM_OnePulse_MspInit
    stm32l0xx_hal_tim.o(i.HAL_TIM_OnePulse_Init) refers to stm32l0xx_hal_tim.o(i.TIM_Base_SetConfig) for TIM_Base_SetConfig
    stm32l0xx_hal_tim.o(i.HAL_TIM_OnePulse_Start) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_OnePulse_Start_IT) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_OnePulse_Stop) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_OnePulse_Stop_IT) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_ConfigChannel) refers to stm32l0xx_hal_tim.o(i.TIM_OC1_SetConfig) for TIM_OC1_SetConfig
    stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_ConfigChannel) refers to stm32l0xx_hal_tim.o(i.TIM_OC2_SetConfig) for TIM_OC2_SetConfig
    stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_ConfigChannel) refers to stm32l0xx_hal_tim.o(i.TIM_OC3_SetConfig) for TIM_OC3_SetConfig
    stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_ConfigChannel) refers to stm32l0xx_hal_tim.o(i.TIM_OC4_SetConfig) for TIM_OC4_SetConfig
    stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_DeInit) refers to stm32l0xx_hal_msp.o(i.HAL_TIM_PWM_MspDeInit) for HAL_TIM_PWM_MspDeInit
    stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Init) refers to stm32l0xx_hal_msp.o(i.HAL_TIM_PWM_MspInit) for HAL_TIM_PWM_MspInit
    stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Init) refers to stm32l0xx_hal_tim.o(i.TIM_Base_SetConfig) for TIM_Base_SetConfig
    stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Start) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Start_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Start_DMA) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Start_DMA) refers to stm32l0xx_hal_tim.o(i.TIM_DMADelayPulseCplt) for TIM_DMADelayPulseCplt
    stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Start_DMA) refers to stm32l0xx_hal_tim.o(i.TIM_DMADelayPulseHalfCplt) for TIM_DMADelayPulseHalfCplt
    stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Start_DMA) refers to stm32l0xx_hal_tim.o(i.TIM_DMAError) for TIM_DMAError
    stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Start_IT) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Stop) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Stop_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
    stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Stop_DMA) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Stop_IT) refers to stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
    stm32l0xx_hal_tim.o(i.HAL_TIM_SlaveConfigSynchro) refers to stm32l0xx_hal_tim.o(i.TIM_SlaveTimer_SetConfig) for TIM_SlaveTimer_SetConfig
    stm32l0xx_hal_tim.o(i.HAL_TIM_SlaveConfigSynchro_IT) refers to stm32l0xx_hal_tim.o(i.TIM_SlaveTimer_SetConfig) for TIM_SlaveTimer_SetConfig
    stm32l0xx_hal_tim.o(i.TIM_DMACaptureCplt) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_IC_CaptureCallback) for HAL_TIM_IC_CaptureCallback
    stm32l0xx_hal_tim.o(i.TIM_DMACaptureHalfCplt) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_IC_CaptureHalfCpltCallback) for HAL_TIM_IC_CaptureHalfCpltCallback
    stm32l0xx_hal_tim.o(i.TIM_DMADelayPulseCplt) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_PulseFinishedCallback) for HAL_TIM_PWM_PulseFinishedCallback
    stm32l0xx_hal_tim.o(i.TIM_DMADelayPulseHalfCplt) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_PulseFinishedHalfCpltCallback) for HAL_TIM_PWM_PulseFinishedHalfCpltCallback
    stm32l0xx_hal_tim.o(i.TIM_DMAError) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_ErrorCallback) for HAL_TIM_ErrorCallback
    stm32l0xx_hal_tim.o(i.TIM_DMAPeriodElapsedCplt) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_PeriodElapsedCallback) for HAL_TIM_PeriodElapsedCallback
    stm32l0xx_hal_tim.o(i.TIM_DMAPeriodElapsedHalfCplt) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_PeriodElapsedHalfCpltCallback) for HAL_TIM_PeriodElapsedHalfCpltCallback
    stm32l0xx_hal_tim.o(i.TIM_DMATriggerCplt) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_TriggerCallback) for HAL_TIM_TriggerCallback
    stm32l0xx_hal_tim.o(i.TIM_DMATriggerHalfCplt) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_TriggerHalfCpltCallback) for HAL_TIM_TriggerHalfCpltCallback
    stm32l0xx_hal_tim.o(i.TIM_SlaveTimer_SetConfig) refers to stm32l0xx_hal_dma.o(i.__ARM_common_switch8) for __ARM_common_switch8
    stm32l0xx_hal_tim.o(i.TIM_SlaveTimer_SetConfig) refers to stm32l0xx_hal_tim.o(i.TIM_ETR_SetConfig) for TIM_ETR_SetConfig
    stm32l0xx_hal_tim.o(i.TIM_SlaveTimer_SetConfig) refers to stm32l0xx_hal_tim.o(i.TIM_TI1_ConfigInputStage) for TIM_TI1_ConfigInputStage
    stm32l0xx_hal_tim.o(i.TIM_SlaveTimer_SetConfig) refers to stm32l0xx_hal_tim.o(i.TIM_TI2_ConfigInputStage) for TIM_TI2_ConfigInputStage
    stm32l0xx_hal_uart.o(i.HAL_HalfDuplex_Init) refers to stm32l0xx_hal_msp.o(i.HAL_UART_MspInit) for HAL_UART_MspInit
    stm32l0xx_hal_uart.o(i.HAL_HalfDuplex_Init) refers to stm32l0xx_hal_uart.o(i.UART_SetConfig) for UART_SetConfig
    stm32l0xx_hal_uart.o(i.HAL_HalfDuplex_Init) refers to stm32l0xx_hal_uart.o(i.UART_AdvFeatureConfig) for UART_AdvFeatureConfig
    stm32l0xx_hal_uart.o(i.HAL_HalfDuplex_Init) refers to stm32l0xx_hal_uart.o(i.UART_CheckIdleState) for UART_CheckIdleState
    stm32l0xx_hal_uart.o(i.HAL_LIN_Init) refers to stm32l0xx_hal_msp.o(i.HAL_UART_MspInit) for HAL_UART_MspInit
    stm32l0xx_hal_uart.o(i.HAL_LIN_Init) refers to stm32l0xx_hal_uart.o(i.UART_SetConfig) for UART_SetConfig
    stm32l0xx_hal_uart.o(i.HAL_LIN_Init) refers to stm32l0xx_hal_uart.o(i.UART_AdvFeatureConfig) for UART_AdvFeatureConfig
    stm32l0xx_hal_uart.o(i.HAL_LIN_Init) refers to stm32l0xx_hal_uart.o(i.UART_CheckIdleState) for UART_CheckIdleState
    stm32l0xx_hal_uart.o(i.HAL_MultiProcessor_DisableMuteMode) refers to stm32l0xx_hal_uart.o(i.UART_CheckIdleState) for UART_CheckIdleState
    stm32l0xx_hal_uart.o(i.HAL_MultiProcessor_EnableMuteMode) refers to stm32l0xx_hal_uart.o(i.UART_CheckIdleState) for UART_CheckIdleState
    stm32l0xx_hal_uart.o(i.HAL_MultiProcessor_Init) refers to stm32l0xx_hal_msp.o(i.HAL_UART_MspInit) for HAL_UART_MspInit
    stm32l0xx_hal_uart.o(i.HAL_MultiProcessor_Init) refers to stm32l0xx_hal_uart.o(i.UART_SetConfig) for UART_SetConfig
    stm32l0xx_hal_uart.o(i.HAL_MultiProcessor_Init) refers to stm32l0xx_hal_uart.o(i.UART_AdvFeatureConfig) for UART_AdvFeatureConfig
    stm32l0xx_hal_uart.o(i.HAL_MultiProcessor_Init) refers to stm32l0xx_hal_uart.o(i.UART_CheckIdleState) for UART_CheckIdleState
    stm32l0xx_hal_uart.o(i.HAL_UART_Abort) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort) for HAL_DMA_Abort
    stm32l0xx_hal_uart.o(i.HAL_UART_Abort) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_GetError) for HAL_DMA_GetError
    stm32l0xx_hal_uart.o(i.HAL_UART_AbortReceive) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort) for HAL_DMA_Abort
    stm32l0xx_hal_uart.o(i.HAL_UART_AbortReceive) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_GetError) for HAL_DMA_GetError
    stm32l0xx_hal_uart.o(i.HAL_UART_AbortReceive_IT) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
    stm32l0xx_hal_uart.o(i.HAL_UART_AbortReceive_IT) refers to stm32l0xx_hal_uart.o(i.HAL_UART_AbortReceiveCpltCallback) for HAL_UART_AbortReceiveCpltCallback
    stm32l0xx_hal_uart.o(i.HAL_UART_AbortReceive_IT) refers to stm32l0xx_hal_uart.o(i.UART_DMARxOnlyAbortCallback) for UART_DMARxOnlyAbortCallback
    stm32l0xx_hal_uart.o(i.HAL_UART_AbortTransmit) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort) for HAL_DMA_Abort
    stm32l0xx_hal_uart.o(i.HAL_UART_AbortTransmit) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_GetError) for HAL_DMA_GetError
    stm32l0xx_hal_uart.o(i.HAL_UART_AbortTransmit_IT) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
    stm32l0xx_hal_uart.o(i.HAL_UART_AbortTransmit_IT) refers to stm32l0xx_hal_uart.o(i.HAL_UART_AbortTransmitCpltCallback) for HAL_UART_AbortTransmitCpltCallback
    stm32l0xx_hal_uart.o(i.HAL_UART_AbortTransmit_IT) refers to stm32l0xx_hal_uart.o(i.UART_DMATxOnlyAbortCallback) for UART_DMATxOnlyAbortCallback
    stm32l0xx_hal_uart.o(i.HAL_UART_Abort_IT) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
    stm32l0xx_hal_uart.o(i.HAL_UART_Abort_IT) refers to stm32l0xx_hal_uart.o(i.HAL_UART_AbortCpltCallback) for HAL_UART_AbortCpltCallback
    stm32l0xx_hal_uart.o(i.HAL_UART_Abort_IT) refers to stm32l0xx_hal_uart.o(i.UART_DMATxAbortCallback) for UART_DMATxAbortCallback
    stm32l0xx_hal_uart.o(i.HAL_UART_Abort_IT) refers to stm32l0xx_hal_uart.o(i.UART_DMARxAbortCallback) for UART_DMARxAbortCallback
    stm32l0xx_hal_uart.o(i.HAL_UART_DMAStop) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort) for HAL_DMA_Abort
    stm32l0xx_hal_uart.o(i.HAL_UART_DMAStop) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_GetError) for HAL_DMA_GetError
    stm32l0xx_hal_uart.o(i.HAL_UART_DMAStop) refers to stm32l0xx_hal_uart.o(i.UART_EndTxTransfer) for UART_EndTxTransfer
    stm32l0xx_hal_uart.o(i.HAL_UART_DMAStop) refers to stm32l0xx_hal_uart.o(i.UART_EndRxTransfer) for UART_EndRxTransfer
    stm32l0xx_hal_uart.o(i.HAL_UART_DeInit) refers to stm32l0xx_hal_msp.o(i.HAL_UART_MspDeInit) for HAL_UART_MspDeInit
    stm32l0xx_hal_uart.o(i.HAL_UART_IRQHandler) refers to stm32l0xx_hal_uart.o(i.UART_EndRxTransfer) for UART_EndRxTransfer
    stm32l0xx_hal_uart.o(i.HAL_UART_IRQHandler) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
    stm32l0xx_hal_uart.o(i.HAL_UART_IRQHandler) refers to bsp.o(i.HAL_UART_ErrorCallback) for HAL_UART_ErrorCallback
    stm32l0xx_hal_uart.o(i.HAL_UART_IRQHandler) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Abort) for HAL_DMA_Abort
    stm32l0xx_hal_uart.o(i.HAL_UART_IRQHandler) refers to stm32l0xx_hal_uart.o(i.HAL_UARTEx_RxEventCallback) for HAL_UARTEx_RxEventCallback
    stm32l0xx_hal_uart.o(i.HAL_UART_IRQHandler) refers to stm32l0xx_hal_uart_ex.o(i.HAL_UARTEx_WakeupCallback) for HAL_UARTEx_WakeupCallback
    stm32l0xx_hal_uart.o(i.HAL_UART_IRQHandler) refers to bsp.o(i.HAL_UART_TxCpltCallback) for HAL_UART_TxCpltCallback
    stm32l0xx_hal_uart.o(i.HAL_UART_IRQHandler) refers to stm32l0xx_hal_uart.o(i.UART_DMAAbortOnError) for UART_DMAAbortOnError
    stm32l0xx_hal_uart.o(i.HAL_UART_Init) refers to stm32l0xx_hal_msp.o(i.HAL_UART_MspInit) for HAL_UART_MspInit
    stm32l0xx_hal_uart.o(i.HAL_UART_Init) refers to stm32l0xx_hal_uart.o(i.UART_SetConfig) for UART_SetConfig
    stm32l0xx_hal_uart.o(i.HAL_UART_Init) refers to stm32l0xx_hal_uart.o(i.UART_AdvFeatureConfig) for UART_AdvFeatureConfig
    stm32l0xx_hal_uart.o(i.HAL_UART_Init) refers to stm32l0xx_hal_uart.o(i.UART_CheckIdleState) for UART_CheckIdleState
    stm32l0xx_hal_uart.o(i.HAL_UART_Receive) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_uart.o(i.HAL_UART_Receive) refers to stm32l0xx_hal_uart.o(i.UART_WaitOnFlagUntilTimeout) for UART_WaitOnFlagUntilTimeout
    stm32l0xx_hal_uart.o(i.HAL_UART_Receive_DMA) refers to stm32l0xx_hal_uart.o(i.UART_Start_Receive_DMA) for UART_Start_Receive_DMA
    stm32l0xx_hal_uart.o(i.HAL_UART_Receive_IT) refers to stm32l0xx_hal_uart.o(i.UART_Start_Receive_IT) for UART_Start_Receive_IT
    stm32l0xx_hal_uart.o(i.HAL_UART_Transmit) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_uart.o(i.HAL_UART_Transmit) refers to stm32l0xx_hal_uart.o(i.UART_WaitOnFlagUntilTimeout) for UART_WaitOnFlagUntilTimeout
    stm32l0xx_hal_uart.o(i.HAL_UART_Transmit_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_uart.o(i.HAL_UART_Transmit_DMA) refers to stm32l0xx_hal_uart.o(i.UART_DMATransmitCplt) for UART_DMATransmitCplt
    stm32l0xx_hal_uart.o(i.HAL_UART_Transmit_DMA) refers to stm32l0xx_hal_uart.o(i.UART_DMATxHalfCplt) for UART_DMATxHalfCplt
    stm32l0xx_hal_uart.o(i.HAL_UART_Transmit_DMA) refers to stm32l0xx_hal_uart.o(i.UART_DMAError) for UART_DMAError
    stm32l0xx_hal_uart.o(i.HAL_UART_Transmit_IT) refers to stm32l0xx_hal_uart.o(i.UART_TxISR_8BIT) for UART_TxISR_8BIT
    stm32l0xx_hal_uart.o(i.HAL_UART_Transmit_IT) refers to stm32l0xx_hal_uart.o(i.UART_TxISR_16BIT) for UART_TxISR_16BIT
    stm32l0xx_hal_uart.o(i.UART_CheckIdleState) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_uart.o(i.UART_CheckIdleState) refers to stm32l0xx_hal_uart.o(i.UART_WaitOnFlagUntilTimeout) for UART_WaitOnFlagUntilTimeout
    stm32l0xx_hal_uart.o(i.UART_DMAAbortOnError) refers to bsp.o(i.HAL_UART_ErrorCallback) for HAL_UART_ErrorCallback
    stm32l0xx_hal_uart.o(i.UART_DMAError) refers to stm32l0xx_hal_uart.o(i.UART_EndTxTransfer) for UART_EndTxTransfer
    stm32l0xx_hal_uart.o(i.UART_DMAError) refers to stm32l0xx_hal_uart.o(i.UART_EndRxTransfer) for UART_EndRxTransfer
    stm32l0xx_hal_uart.o(i.UART_DMAError) refers to bsp.o(i.HAL_UART_ErrorCallback) for HAL_UART_ErrorCallback
    stm32l0xx_hal_uart.o(i.UART_DMAReceiveCplt) refers to bsp.o(i.HAL_UART_RxCpltCallback) for HAL_UART_RxCpltCallback
    stm32l0xx_hal_uart.o(i.UART_DMAReceiveCplt) refers to stm32l0xx_hal_uart.o(i.HAL_UARTEx_RxEventCallback) for HAL_UARTEx_RxEventCallback
    stm32l0xx_hal_uart.o(i.UART_DMARxAbortCallback) refers to stm32l0xx_hal_uart.o(i.HAL_UART_AbortCpltCallback) for HAL_UART_AbortCpltCallback
    stm32l0xx_hal_uart.o(i.UART_DMARxHalfCplt) refers to stm32l0xx_hal_uart.o(i.HAL_UART_RxHalfCpltCallback) for HAL_UART_RxHalfCpltCallback
    stm32l0xx_hal_uart.o(i.UART_DMARxHalfCplt) refers to stm32l0xx_hal_uart.o(i.HAL_UARTEx_RxEventCallback) for HAL_UARTEx_RxEventCallback
    stm32l0xx_hal_uart.o(i.UART_DMARxOnlyAbortCallback) refers to stm32l0xx_hal_uart.o(i.HAL_UART_AbortReceiveCpltCallback) for HAL_UART_AbortReceiveCpltCallback
    stm32l0xx_hal_uart.o(i.UART_DMATransmitCplt) refers to bsp.o(i.HAL_UART_TxCpltCallback) for HAL_UART_TxCpltCallback
    stm32l0xx_hal_uart.o(i.UART_DMATxAbortCallback) refers to stm32l0xx_hal_uart.o(i.HAL_UART_AbortCpltCallback) for HAL_UART_AbortCpltCallback
    stm32l0xx_hal_uart.o(i.UART_DMATxHalfCplt) refers to stm32l0xx_hal_uart.o(i.HAL_UART_TxHalfCpltCallback) for HAL_UART_TxHalfCpltCallback
    stm32l0xx_hal_uart.o(i.UART_DMATxOnlyAbortCallback) refers to stm32l0xx_hal_uart.o(i.HAL_UART_AbortTransmitCpltCallback) for HAL_UART_AbortTransmitCpltCallback
    stm32l0xx_hal_uart.o(i.UART_RxISR_16BIT) refers to bsp.o(i.HAL_UART_RxCpltCallback) for HAL_UART_RxCpltCallback
    stm32l0xx_hal_uart.o(i.UART_RxISR_16BIT) refers to stm32l0xx_hal_uart.o(i.HAL_UARTEx_RxEventCallback) for HAL_UARTEx_RxEventCallback
    stm32l0xx_hal_uart.o(i.UART_RxISR_8BIT) refers to bsp.o(i.HAL_UART_RxCpltCallback) for HAL_UART_RxCpltCallback
    stm32l0xx_hal_uart.o(i.UART_RxISR_8BIT) refers to stm32l0xx_hal_uart.o(i.HAL_UARTEx_RxEventCallback) for HAL_UARTEx_RxEventCallback
    stm32l0xx_hal_uart.o(i.UART_SetConfig) refers to stm32l0xx_hal_rcc.o(i.HAL_RCC_GetPCLK1Freq) for HAL_RCC_GetPCLK1Freq
    stm32l0xx_hal_uart.o(i.UART_SetConfig) refers to stm32l0xx_hal_rcc.o(i.HAL_RCC_GetSysClockFreq) for HAL_RCC_GetSysClockFreq
    stm32l0xx_hal_uart.o(i.UART_SetConfig) refers to uldiv.o(.text) for __aeabi_uldivmod
    stm32l0xx_hal_uart.o(i.UART_SetConfig) refers to stm32l0xx_hal_dma.o(i.__ARM_common_switch8) for __ARM_common_switch8
    stm32l0xx_hal_uart.o(i.UART_SetConfig) refers to stm32l0xx_hal_rcc.o(i.HAL_RCC_GetPCLK2Freq) for HAL_RCC_GetPCLK2Freq
    stm32l0xx_hal_uart.o(i.UART_SetConfig) refers to uidiv.o(.text) for __aeabi_uidivmod
    stm32l0xx_hal_uart.o(i.UART_Start_Receive_DMA) refers to stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32l0xx_hal_uart.o(i.UART_Start_Receive_DMA) refers to stm32l0xx_hal_uart.o(i.UART_DMAReceiveCplt) for UART_DMAReceiveCplt
    stm32l0xx_hal_uart.o(i.UART_Start_Receive_DMA) refers to stm32l0xx_hal_uart.o(i.UART_DMARxHalfCplt) for UART_DMARxHalfCplt
    stm32l0xx_hal_uart.o(i.UART_Start_Receive_DMA) refers to stm32l0xx_hal_uart.o(i.UART_DMAError) for UART_DMAError
    stm32l0xx_hal_uart.o(i.UART_Start_Receive_IT) refers to stm32l0xx_hal_uart.o(i.UART_RxISR_8BIT) for UART_RxISR_8BIT
    stm32l0xx_hal_uart.o(i.UART_Start_Receive_IT) refers to stm32l0xx_hal_uart.o(i.UART_RxISR_16BIT) for UART_RxISR_16BIT
    stm32l0xx_hal_uart.o(i.UART_WaitOnFlagUntilTimeout) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_uart.o(i.UART_WaitOnFlagUntilTimeout) refers to stm32l0xx_hal_uart.o(i.UART_EndRxTransfer) for UART_EndRxTransfer
    stm32l0xx_hal_uart_ex.o(i.HAL_MultiProcessorEx_AddressLength_Set) refers to stm32l0xx_hal_uart.o(i.UART_CheckIdleState) for UART_CheckIdleState
    stm32l0xx_hal_uart_ex.o(i.HAL_RS485Ex_Init) refers to stm32l0xx_hal_msp.o(i.HAL_UART_MspInit) for HAL_UART_MspInit
    stm32l0xx_hal_uart_ex.o(i.HAL_RS485Ex_Init) refers to stm32l0xx_hal_uart.o(i.UART_SetConfig) for UART_SetConfig
    stm32l0xx_hal_uart_ex.o(i.HAL_RS485Ex_Init) refers to stm32l0xx_hal_uart.o(i.UART_AdvFeatureConfig) for UART_AdvFeatureConfig
    stm32l0xx_hal_uart_ex.o(i.HAL_RS485Ex_Init) refers to stm32l0xx_hal_uart.o(i.UART_CheckIdleState) for UART_CheckIdleState
    stm32l0xx_hal_uart_ex.o(i.HAL_UARTEx_ReceiveToIdle) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_uart_ex.o(i.HAL_UARTEx_ReceiveToIdle_DMA) refers to stm32l0xx_hal_uart.o(i.UART_Start_Receive_DMA) for UART_Start_Receive_DMA
    stm32l0xx_hal_uart_ex.o(i.HAL_UARTEx_ReceiveToIdle_IT) refers to stm32l0xx_hal_uart.o(i.UART_Start_Receive_IT) for UART_Start_Receive_IT
    stm32l0xx_hal_uart_ex.o(i.HAL_UARTEx_StopModeWakeUpSourceConfig) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_uart_ex.o(i.HAL_UARTEx_StopModeWakeUpSourceConfig) refers to stm32l0xx_hal_uart.o(i.UART_WaitOnFlagUntilTimeout) for UART_WaitOnFlagUntilTimeout
    system_stm32l0xx.o(i.SystemCoreClockUpdate) refers to uidiv.o(.text) for __aeabi_uidivmod
    system_stm32l0xx.o(i.SystemCoreClockUpdate) refers to system_stm32l0xx.o(.data) for .data
    system_stm32l0xx.o(i.SystemCoreClockUpdate) refers to system_stm32l0xx.o(.constdata) for .constdata
    air780edriver.o(i.AIR780EDriver_DebugOff) refers to air780efsm.o(.bss) for g_stFSMAIR780E
    air780edriver.o(i.AIR780EDriver_DebugOn) refers to air780efsm.o(.bss) for g_stFSMAIR780E
    air780edriver.o(i.AIR780EDriver_FSMDebug) refers to printfa.o(i.__0vsnprintf) for vsnprintf
    air780edriver.o(i.AIR780EDriver_FSMDebug) refers to dbg.o(i.HIDO_Debug) for HIDO_Debug
    air780edriver.o(i.AIR780EDriver_Init) refers to uart.o(i.Uart_Init) for Uart_Init
    air780edriver.o(i.AIR780EDriver_Init) refers to hido_timer.o(i.HIDO_TimerCreate) for HIDO_TimerCreate
    air780edriver.o(i.AIR780EDriver_Init) refers to hido_atlite.o(i.HIDO_ATLiteDeviceInit) for HIDO_ATLiteDeviceInit
    air780edriver.o(i.AIR780EDriver_Init) refers to hido_fsm.o(i.HIDO_FSMRegister) for HIDO_FSMRegister
    air780edriver.o(i.AIR780EDriver_Init) refers to hido_fsm.o(i.HIDO_FSMRegisterDebugFunc) for HIDO_FSMRegisterDebugFunc
    air780edriver.o(i.AIR780EDriver_Init) refers to air780edriver.o(.bss) for .bss
    air780edriver.o(i.AIR780EDriver_Init) refers to air780edriver.o(.data) for .data
    air780edriver.o(i.AIR780EDriver_Init) refers to air780efsm.o(.bss) for g_stFSMAIR780E
    air780edriver.o(i.AIR780EDriver_Init) refers to air780edriver.o(.constdata) for .constdata
    air780edriver.o(i.AIR780EDriver_Init) refers to air780edriver.o(i.AIR780E_GetChar) for AIR780E_GetChar
    air780edriver.o(i.AIR780EDriver_Init) refers to air780edriver.o(i.AIR780E_ReadLine) for AIR780E_ReadLine
    air780edriver.o(i.AIR780EDriver_Init) refers to air780edriver.o(i.AIR780E_Output) for AIR780E_Output
    air780edriver.o(i.AIR780EDriver_Init) refers to air780efsm.o(.constdata) for g_stStateAIR780E
    air780edriver.o(i.AIR780EDriver_Init) refers to air780edriver.o(i.AIR780EDriver_FSMDebug) for AIR780EDriver_FSMDebug
    air780edriver.o(i.AIR780EDriver_PWRKEYReset) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    air780edriver.o(i.AIR780EDriver_PWRKEYReset) refers to air780edriver.o(.bss) for .bss
    air780edriver.o(i.AIR780EDriver_PWRKEYSet) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    air780edriver.o(i.AIR780EDriver_PWRKEYSet) refers to air780edriver.o(.bss) for .bss
    air780edriver.o(i.AIR780EDriver_PinRegister) refers to air780edriver.o(.bss) for .bss
    air780edriver.o(i.AIR780EDriver_PowerOff) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    air780edriver.o(i.AIR780EDriver_PowerOff) refers to air780edriver.o(.bss) for .bss
    air780edriver.o(i.AIR780EDriver_PowerOn) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    air780edriver.o(i.AIR780EDriver_PowerOn) refers to air780edriver.o(.bss) for .bss
    air780edriver.o(i.AIR780EDriver_Reset) refers to hido_fsm.o(i.HIDO_FSMEventExecute) for HIDO_FSMEventExecute
    air780edriver.o(i.AIR780EDriver_Reset) refers to air780efsm.o(.bss) for g_stFSMAIR780E
    air780edriver.o(i.AIR780EDriver_SetConnectLen) refers to air780edriver.o(.data) for .data
    air780edriver.o(i.AIR780E_GetChar) refers to uart.o(i.Uart_GetChar) for Uart_GetChar
    air780edriver.o(i.AIR780E_Output) refers to hido_util.o(i.HIDO_UtilIsAsciiString) for HIDO_UtilIsAsciiString
    air780edriver.o(i.AIR780E_Output) refers to dbg.o(i.HIDO_DebugEx) for HIDO_DebugEx
    air780edriver.o(i.AIR780E_Output) refers to uart.o(i.Uart_Send) for Uart_Send
    air780edriver.o(i.AIR780E_ReadLine) refers to memcmp.o(.text) for memcmp
    air780edriver.o(i.AIR780E_ReadLine) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    air780edriver.o(i.AIR780E_ReadLine) refers to strstr.o(.text) for strstr
    air780edriver.o(i.AIR780E_ReadLine) refers to hido_util.o(i.HIDO_UtilParseFormat) for HIDO_UtilParseFormat
    air780edriver.o(i.AIR780E_ReadLine) refers to hido_util.o(i.HIDO_UtilIsAsciiString) for HIDO_UtilIsAsciiString
    air780edriver.o(i.AIR780E_ReadLine) refers to dbg.o(i.HIDO_DebugEx) for HIDO_DebugEx
    air780edriver.o(i.AIR780E_ReadLine) refers to air780edriver.o(.data) for .data
    air780edriver.o(.constdata) refers to air780edriver.o(.conststring) for .conststring
    air780efsm.o(i.AIR780EATCmdInitProc) refers to memcpya.o(.text) for __aeabi_memcpy4
    air780efsm.o(i.AIR780EATCmdInitProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSend) for HIDO_ATLiteCmdSend
    air780efsm.o(i.AIR780EATCmdInitProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSendOver) for HIDO_ATLiteCmdSendOver
    air780efsm.o(i.AIR780EATCmdInitProc) refers to hido_timer.o(i.HIDO_TimerCancel) for HIDO_TimerCancel
    air780efsm.o(i.AIR780EATCmdInitProc) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780efsm.o(i.AIR780EATCmdInitProc) refers to hido_fsm.o(i.HIDO_FSMStartTimer) for HIDO_FSMStartTimer
    air780efsm.o(i.AIR780EATCmdInitProc) refers to module.o(i.Module_SetIMEI) for Module_SetIMEI
    air780efsm.o(i.AIR780EATCmdInitProc) refers to module.o(i.Module_SetIMSI) for Module_SetIMSI
    air780efsm.o(i.AIR780EATCmdInitProc) refers to module.o(i.Module_SetCCID) for Module_SetCCID
    air780efsm.o(i.AIR780EATCmdInitProc) refers to module.o(i.Module_NeedPowerOff) for Module_NeedPowerOff
    air780efsm.o(i.AIR780EATCmdInitProc) refers to air780efsm.o(.constdata) for .constdata
    air780efsm.o(i.AIR780EATCmdInitProc) refers to air780efsm.o(.data) for .data
    air780efsm.o(i.AIR780EATCmdInitProc) refers to air780efsm.o(.bss) for .bss
    air780efsm.o(i.AIR780EATCmdTestProc) refers to uart.o(i.Uart_ReConfigBaudRate) for Uart_ReConfigBaudRate
    air780efsm.o(i.AIR780EATCmdTestProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSendOver) for HIDO_ATLiteCmdSendOver
    air780efsm.o(i.AIR780EATCmdTestProc) refers to hido_timer.o(i.HIDO_TimerCancel) for HIDO_TimerCancel
    air780efsm.o(i.AIR780EATCmdTestProc) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780efsm.o(i.AIR780EATCmdTestProc) refers to hido_fsm.o(i.HIDO_FSMStartTimer) for HIDO_FSMStartTimer
    air780efsm.o(i.AIR780EATCmdTestProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSend) for HIDO_ATLiteCmdSend
    air780efsm.o(i.AIR780EATCmdTestProc) refers to module.o(i.Module_PowerEvent) for Module_PowerEvent
    air780efsm.o(i.AIR780EATCmdTestProc) refers to module.o(i.Module_NeedPowerOff) for Module_NeedPowerOff
    air780efsm.o(i.AIR780EATCmdTestProc) refers to air780efsm.o(.data) for .data
    air780efsm.o(i.AIR780EATCmdTestProc) refers to air780efsm.o(.constdata) for .constdata
    air780efsm.o(i.AIR780EATCmdTestProc) refers to air780efsm.o(.bss) for .bss
    air780efsm.o(i.AIR780ECloseWirelessProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSend) for HIDO_ATLiteCmdSend
    air780efsm.o(i.AIR780ECloseWirelessProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSendOver) for HIDO_ATLiteCmdSendOver
    air780efsm.o(i.AIR780ECloseWirelessProc) refers to module.o(i.Module_PowerEvent) for Module_PowerEvent
    air780efsm.o(i.AIR780ECloseWirelessProc) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780efsm.o(i.AIR780ECloseWirelessProc) refers to air780efsm.o(.constdata) for .constdata
    air780efsm.o(i.AIR780EIPCheckProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSend) for HIDO_ATLiteCmdSend
    air780efsm.o(i.AIR780EIPCheckProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSendOver) for HIDO_ATLiteCmdSendOver
    air780efsm.o(i.AIR780EIPCheckProc) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780efsm.o(i.AIR780EIPCheckProc) refers to hido_util.o(i.HIDO_UtilParseFormat) for HIDO_UtilParseFormat
    air780efsm.o(i.AIR780EIPCheckProc) refers to air780efsm.o(.data) for .data
    air780efsm.o(i.AIR780EIPCheckProc) refers to air780efsm.o(.constdata) for .constdata
    air780efsm.o(i.AIR780EIPInitProc) refers to memseta.o(.text) for __aeabi_memclr4
    air780efsm.o(i.AIR780EIPInitProc) refers to memcpya.o(.text) for __aeabi_memcpy4
    air780efsm.o(i.AIR780EIPInitProc) refers to module.o(i.Module_GetIMSI) for Module_GetIMSI
    air780efsm.o(i.AIR780EIPInitProc) refers to strncmp.o(.text) for strncmp
    air780efsm.o(i.AIR780EIPInitProc) refers to hido_util.o(i.HIDO_UtilSnprintf) for HIDO_UtilSnprintf
    air780efsm.o(i.AIR780EIPInitProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSend) for HIDO_ATLiteCmdSend
    air780efsm.o(i.AIR780EIPInitProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSendOver) for HIDO_ATLiteCmdSendOver
    air780efsm.o(i.AIR780EIPInitProc) refers to hido_timer.o(i.HIDO_TimerCancel) for HIDO_TimerCancel
    air780efsm.o(i.AIR780EIPInitProc) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780efsm.o(i.AIR780EIPInitProc) refers to hido_fsm.o(i.HIDO_FSMStartTimer) for HIDO_FSMStartTimer
    air780efsm.o(i.AIR780EIPInitProc) refers to air780efsm.o(.constdata) for .constdata
    air780efsm.o(i.AIR780EIPInitProc) refers to air780efsm.o(.data) for .data
    air780efsm.o(i.AIR780EIPPollProc) refers to air780efsm.o(i.AIR780E_PollOnIPReady) for AIR780E_PollOnIPReady
    air780efsm.o(i.AIR780EIPPollProc) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780efsm.o(i.AIR780EIPPollProc) refers to air780efsm.o(.data) for .data
    air780efsm.o(i.AIR780EIPPollProc) refers to air780efsm.o(.constdata) for .constdata
    air780efsm.o(i.AIR780EIPReadyProc) refers to socket.o(i.Socket_ClosedAll) for Socket_ClosedAll
    air780efsm.o(i.AIR780EIPReadyProc) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780efsm.o(i.AIR780EIPReadyProc) refers to hido_util.o(i.HIDO_UtilParseFormat) for HIDO_UtilParseFormat
    air780efsm.o(i.AIR780EIPReadyProc) refers to socket.o(i.Socket_OnClosed) for Socket_OnClosed
    air780efsm.o(i.AIR780EIPReadyProc) refers to air780efsm.o(.constdata) for .constdata
    air780efsm.o(i.AIR780EIPReadyProc) refers to air780efsm.o(.data) for .data
    air780efsm.o(i.AIR780EIdleProc) refers to air780efsm.o(i.AIR780E_Poll) for AIR780E_Poll
    air780efsm.o(i.AIR780EInitProc) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780efsm.o(i.AIR780EInitProc) refers to air780efsm.o(.constdata) for .constdata
    air780efsm.o(i.AIR780EOpenWirelessProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSend) for HIDO_ATLiteCmdSend
    air780efsm.o(i.AIR780EOpenWirelessProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSendOver) for HIDO_ATLiteCmdSendOver
    air780efsm.o(i.AIR780EOpenWirelessProc) refers to module.o(i.Module_PowerEvent) for Module_PowerEvent
    air780efsm.o(i.AIR780EOpenWirelessProc) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780efsm.o(i.AIR780EOpenWirelessProc) refers to air780efsm.o(.constdata) for .constdata
    air780efsm.o(i.AIR780EPowerOffProc) refers to air780edriver.o(i.AIR780EDriver_PowerOff) for AIR780EDriver_PowerOff
    air780efsm.o(i.AIR780EPowerOffProc) refers to module.o(i.Module_PowerEvent) for Module_PowerEvent
    air780efsm.o(i.AIR780EPowerOffProc) refers to module.o(i.Module_NeedPowerOff) for Module_NeedPowerOff
    air780efsm.o(i.AIR780EPowerOffProc) refers to module.o(i.Module_NeedPowerOn) for Module_NeedPowerOn
    air780efsm.o(i.AIR780EPowerOffProc) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780efsm.o(i.AIR780EPowerOffProc) refers to air780efsm.o(.constdata) for .constdata
    air780efsm.o(i.AIR780EPowerOnProc) refers to air780edriver.o(i.AIR780EDriver_PowerOff) for AIR780EDriver_PowerOff
    air780efsm.o(i.AIR780EPowerOnProc) refers to hido_timer.o(i.HIDO_TimerCancel) for HIDO_TimerCancel
    air780efsm.o(i.AIR780EPowerOnProc) refers to air780edriver.o(i.AIR780EDriver_PowerOn) for AIR780EDriver_PowerOn
    air780efsm.o(i.AIR780EPowerOnProc) refers to air780edriver.o(i.AIR780EDriver_PWRKEYReset) for AIR780EDriver_PWRKEYReset
    air780efsm.o(i.AIR780EPowerOnProc) refers to air780edriver.o(i.AIR780EDriver_PWRKEYSet) for AIR780EDriver_PWRKEYSet
    air780efsm.o(i.AIR780EPowerOnProc) refers to hido_fsm.o(i.HIDO_FSMStartTimer) for HIDO_FSMStartTimer
    air780efsm.o(i.AIR780EPowerOnProc) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780efsm.o(i.AIR780EPowerOnProc) refers to air780efsm.o(.data) for .data
    air780efsm.o(i.AIR780EPowerOnProc) refers to air780efsm.o(.constdata) for .constdata
    air780efsm.o(i.AIR780EProc) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780efsm.o(i.AIR780EProc) refers to hido_util.o(i.HIDO_UtilParseFormat) for HIDO_UtilParseFormat
    air780efsm.o(i.AIR780EProc) refers to socket.o(i.Socket_RecvData) for Socket_RecvData
    air780efsm.o(i.AIR780EProc) refers to socket.o(i.Socket_OnRecv) for Socket_OnRecv
    air780efsm.o(i.AIR780EProc) refers to air780efsm.o(.constdata) for .constdata
    air780efsm.o(i.AIR780ERunATCmdProc) refers to stm32l0xx_hal_dma.o(i.__ARM_common_switch8) for __ARM_common_switch8
    air780efsm.o(i.AIR780ERunATCmdProc) refers to module.o(i.Module_GetRunATCmd) for Module_GetRunATCmd
    air780efsm.o(i.AIR780ERunATCmdProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSend) for HIDO_ATLiteCmdSend
    air780efsm.o(i.AIR780ERunATCmdProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSendOver) for HIDO_ATLiteCmdSendOver
    air780efsm.o(i.AIR780ERunATCmdProc) refers to module.o(i.Module_RunATCmdResult) for Module_RunATCmdResult
    air780efsm.o(i.AIR780ERunATCmdProc) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780efsm.o(i.AIR780ERunATCmdProc) refers to air780efsm.o(.data) for .data
    air780efsm.o(i.AIR780ESearchingNetworkProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSendOver) for HIDO_ATLiteCmdSendOver
    air780efsm.o(i.AIR780ESearchingNetworkProc) refers to hido_timer.o(i.HIDO_TimerCancel) for HIDO_TimerCancel
    air780efsm.o(i.AIR780ESearchingNetworkProc) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780efsm.o(i.AIR780ESearchingNetworkProc) refers to hido_fsm.o(i.HIDO_FSMStartTimer) for HIDO_FSMStartTimer
    air780efsm.o(i.AIR780ESearchingNetworkProc) refers to hido_util.o(i.HIDO_UtilParseFormat) for HIDO_UtilParseFormat
    air780efsm.o(i.AIR780ESearchingNetworkProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSend) for HIDO_ATLiteCmdSend
    air780efsm.o(i.AIR780ESearchingNetworkProc) refers to air780efsm.o(i.AIR780E_Poll) for AIR780E_Poll
    air780efsm.o(i.AIR780ESearchingNetworkProc) refers to air780efsm.o(.data) for .data
    air780efsm.o(i.AIR780ESearchingNetworkProc) refers to air780efsm.o(.constdata) for .constdata
    air780efsm.o(i.AIR780EWaitReadyProc) refers to hido_fsm.o(i.HIDO_FSMStartTimer) for HIDO_FSMStartTimer
    air780efsm.o(i.AIR780EWaitReadyProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSendOver) for HIDO_ATLiteCmdSendOver
    air780efsm.o(i.AIR780EWaitReadyProc) refers to hido_timer.o(i.HIDO_TimerCancel) for HIDO_TimerCancel
    air780efsm.o(i.AIR780EWaitReadyProc) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780efsm.o(i.AIR780EWaitReadyProc) refers to air780efsm.o(.constdata) for .constdata
    air780efsm.o(i.AIR780EWaitSimCardReadyProc) refers to stm32l0xx_hal_dma.o(i.__ARM_common_switch8) for __ARM_common_switch8
    air780efsm.o(i.AIR780EWaitSimCardReadyProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSendOver) for HIDO_ATLiteCmdSendOver
    air780efsm.o(i.AIR780EWaitSimCardReadyProc) refers to hido_timer.o(i.HIDO_TimerCancel) for HIDO_TimerCancel
    air780efsm.o(i.AIR780EWaitSimCardReadyProc) refers to hido_fsm.o(i.HIDO_FSMStartTimer) for HIDO_FSMStartTimer
    air780efsm.o(i.AIR780EWaitSimCardReadyProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSend) for HIDO_ATLiteCmdSend
    air780efsm.o(i.AIR780EWaitSimCardReadyProc) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780efsm.o(i.AIR780EWaitSimCardReadyProc) refers to module.o(i.Module_NeedPowerOff) for Module_NeedPowerOff
    air780efsm.o(i.AIR780EWaitSimCardReadyProc) refers to air780efsm.o(.data) for .data
    air780efsm.o(i.AIR780EWaitSimCardReadyProc) refers to air780efsm.o(.constdata) for .constdata
    air780efsm.o(i.AIR780EWaitSimCardReadyProc) refers to air780efsm.o(.bss) for .bss
    air780efsm.o(i.AIR780E_CloseWirelessPoll) refers to module.o(i.Module_NeedPowerOff) for Module_NeedPowerOff
    air780efsm.o(i.AIR780E_CloseWirelessPoll) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780efsm.o(i.AIR780E_CloseWirelessPoll) refers to air780efsm.o(.data) for .data
    air780efsm.o(i.AIR780E_IsIPIdle) refers to air780efsm.o(.bss) for .bss
    air780efsm.o(i.AIR780E_IsIPIdle) refers to air780efsm.o(.constdata) for .constdata
    air780efsm.o(i.AIR780E_IsIPReady) refers to air780efsm.o(.bss) for .bss
    air780efsm.o(i.AIR780E_IsIPReady) refers to air780efsm.o(.constdata) for .constdata
    air780efsm.o(i.AIR780E_OpenWirelessPoll) refers to module.o(i.Module_NeedPowerOn) for Module_NeedPowerOn
    air780efsm.o(i.AIR780E_OpenWirelessPoll) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780efsm.o(i.AIR780E_OpenWirelessPoll) refers to air780efsm.o(.data) for .data
    air780efsm.o(i.AIR780E_Poll) refers to air780efsm.o(i.AIR780E_PowerPoll) for AIR780E_PowerPoll
    air780efsm.o(i.AIR780E_Poll) refers to air780ecsq.o(i.AIR780ECSQ_Poll) for AIR780ECSQ_Poll
    air780efsm.o(i.AIR780E_Poll) refers to air780efsm.o(i.AIR780E_RunATCmdPoll) for AIR780E_RunATCmdPoll
    air780efsm.o(i.AIR780E_Poll) refers to air780efsm.o(i.AIR780E_CloseWirelessPoll) for AIR780E_CloseWirelessPoll
    air780efsm.o(i.AIR780E_Poll) refers to air780efsm.o(i.AIR780E_OpenWirelessPoll) for AIR780E_OpenWirelessPoll
    air780efsm.o(i.AIR780E_PollOnIPReady) refers to hido_timer.o(i.HIDO_TimerGetTick) for HIDO_TimerGetTick
    air780efsm.o(i.AIR780E_PollOnIPReady) refers to air780efsm.o(i.AIR780E_PowerPoll) for AIR780E_PowerPoll
    air780efsm.o(i.AIR780E_PollOnIPReady) refers to air780esocket.o(i.AIR780ESocket_Poll) for AIR780ESocket_Poll
    air780efsm.o(i.AIR780E_PollOnIPReady) refers to air780ecsq.o(i.AIR780ECSQ_Poll) for AIR780ECSQ_Poll
    air780efsm.o(i.AIR780E_PollOnIPReady) refers to air780eloc.o(i.AIR780ELoc_Poll) for AIR780ELoc_Poll
    air780efsm.o(i.AIR780E_PollOnIPReady) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780efsm.o(i.AIR780E_PollOnIPReady) refers to air780efsm.o(i.AIR780E_RunATCmdPoll) for AIR780E_RunATCmdPoll
    air780efsm.o(i.AIR780E_PollOnIPReady) refers to air780efsm.o(i.AIR780E_CloseWirelessPoll) for AIR780E_CloseWirelessPoll
    air780efsm.o(i.AIR780E_PollOnIPReady) refers to air780efsm.o(i.AIR780E_OpenWirelessPoll) for AIR780E_OpenWirelessPoll
    air780efsm.o(i.AIR780E_PollOnIPReady) refers to air780efsm.o(.data) for .data
    air780efsm.o(i.AIR780E_PollOnIPReady) refers to air780efsm.o(.constdata) for .constdata
    air780efsm.o(i.AIR780E_PollOnIPReady) refers to air780efsm.o(.bss) for .bss
    air780efsm.o(i.AIR780E_PowerPoll) refers to module.o(i.Module_NeedPowerOn) for Module_NeedPowerOn
    air780efsm.o(i.AIR780E_PowerPoll) refers to module.o(i.Module_PowerEvent) for Module_PowerEvent
    air780efsm.o(i.AIR780E_PowerPoll) refers to module.o(i.Module_NeedPowerOff) for Module_NeedPowerOff
    air780efsm.o(i.AIR780E_PowerPoll) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780efsm.o(i.AIR780E_PowerPoll) refers to air780efsm.o(.constdata) for .constdata
    air780efsm.o(i.AIR780E_PowerPoll) refers to air780efsm.o(.bss) for .bss
    air780efsm.o(i.AIR780E_RunATCmdPoll) refers to module.o(i.Module_RunATCmdEnable) for Module_RunATCmdEnable
    air780efsm.o(i.AIR780E_RunATCmdPoll) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780efsm.o(i.AIR780E_RunATCmdPoll) refers to air780efsm.o(.data) for .data
    air780efsm.o(.constdata) refers to air780efsm.o(.conststring) for .conststring
    air780efsm.o(.constdata) refers to air780efsm.o(i.AIR780EProc) for AIR780EProc
    air780efsm.o(.constdata) refers to air780efsm.o(i.AIR780EInitProc) for AIR780EInitProc
    air780efsm.o(.constdata) refers to air780efsm.o(i.AIR780EPowerOffProc) for AIR780EPowerOffProc
    air780efsm.o(.constdata) refers to air780efsm.o(i.AIR780EPowerOnProc) for AIR780EPowerOnProc
    air780efsm.o(.constdata) refers to air780efsm.o(i.AIR780EATCmdTestProc) for AIR780EATCmdTestProc
    air780efsm.o(.constdata) refers to air780efsm.o(i.AIR780EWaitSimCardReadyProc) for AIR780EWaitSimCardReadyProc
    air780efsm.o(.constdata) refers to air780efsm.o(i.AIR780EATCmdInitProc) for AIR780EATCmdInitProc
    air780efsm.o(.constdata) refers to air780efsm.o(i.AIR780EIdleProc) for AIR780EIdleProc
    air780efsm.o(.constdata) refers to air780efsm.o(.constdata) for g_stStateAIR780ESearchingNetwork
    air780efsm.o(.constdata) refers to air780efsm.o(i.AIR780EReadyProc) for AIR780EReadyProc
    air780efsm.o(.constdata) refers to air780efsm.o(i.AIR780EIPInitProc) for AIR780EIPInitProc
    air780efsm.o(.constdata) refers to air780efsm.o(i.AIR780EIPReadyProc) for AIR780EIPReadyProc
    air780efsm.o(.constdata) refers to air780efsm.o(i.AIR780EIPPollProc) for AIR780EIPPollProc
    air780efsm.o(.constdata) refers to air780efsm.o(i.AIR780EIPCheckProc) for AIR780EIPCheckProc
    air780efsm.o(.constdata) refers to air780efsm.o(.conststring) for .conststring
    air780efsm.o(.constdata) refers to air780efsm.o(.constdata) for g_stStateAIR780EInit
    air780efsm.o(.constdata) refers to air780efsm.o(i.AIR780EWaitReadyProc) for AIR780EWaitReadyProc
    air780efsm.o(.constdata) refers to air780efsm.o(.conststring) for .conststring
    air780efsm.o(.constdata) refers to air780efsm.o(.constdata) for g_stStateAIR780EReady
    air780efsm.o(.constdata) refers to air780efsm.o(i.AIR780ESearchingNetworkProc) for AIR780ESearchingNetworkProc
    air780efsm.o(.data) refers to air780efsm.o(.conststring) for .conststring
    air780efsm.o(.data) refers to air780efsm.o(i.AIR780ERunATCmdProc) for AIR780ERunATCmdProc
    air780efsm.o(.data) refers to air780efsm.o(i.AIR780ECloseWirelessProc) for AIR780ECloseWirelessProc
    air780efsm.o(.data) refers to air780efsm.o(i.AIR780EOpenWirelessProc) for AIR780EOpenWirelessProc
    air780esocket.o(i.AIR780ESocketCloseProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSend) for HIDO_ATLiteCmdSend
    air780esocket.o(i.AIR780ESocketCloseProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSendOver) for HIDO_ATLiteCmdSendOver
    air780esocket.o(i.AIR780ESocketCloseProc) refers to socket.o(i.Socket_OnClosed) for Socket_OnClosed
    air780esocket.o(i.AIR780ESocketCloseProc) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780esocket.o(i.AIR780ESocketCloseProc) refers to hido_util.o(i.HIDO_UtilParseFormat) for HIDO_UtilParseFormat
    air780esocket.o(i.AIR780ESocketCloseProc) refers to strncmp.o(.text) for strncmp
    air780esocket.o(i.AIR780ESocketCloseProc) refers to air780esocket.o(.data) for .data
    air780esocket.o(i.AIR780ESocketCloseProc) refers to air780efsm.o(.constdata) for g_stStateAIR780EIPPoll
    air780esocket.o(i.AIR780ESocketConnectProc) refers to hido_util.o(i.HIDO_UtilParseFormat) for HIDO_UtilParseFormat
    air780esocket.o(i.AIR780ESocketConnectProc) refers to socket.o(i.Socket_GetRemotePort) for Socket_GetRemotePort
    air780esocket.o(i.AIR780ESocketConnectProc) refers to socket.o(i.Socket_GetRemoteAddr) for Socket_GetRemoteAddr
    air780esocket.o(i.AIR780ESocketConnectProc) refers to socket.o(i.Socket_GetType) for Socket_GetType
    air780esocket.o(i.AIR780ESocketConnectProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSend) for HIDO_ATLiteCmdSend
    air780esocket.o(i.AIR780ESocketConnectProc) refers to hido_fsm.o(i.HIDO_FSMStartTimer) for HIDO_FSMStartTimer
    air780esocket.o(i.AIR780ESocketConnectProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSendOver) for HIDO_ATLiteCmdSendOver
    air780esocket.o(i.AIR780ESocketConnectProc) refers to hido_timer.o(i.HIDO_TimerCancel) for HIDO_TimerCancel
    air780esocket.o(i.AIR780ESocketConnectProc) refers to socket.o(i.Socket_OnConnectFailed) for Socket_OnConnectFailed
    air780esocket.o(i.AIR780ESocketConnectProc) refers to strncmp.o(.text) for strncmp
    air780esocket.o(i.AIR780ESocketConnectProc) refers to socket.o(i.Socket_OnConnected) for Socket_OnConnected
    air780esocket.o(i.AIR780ESocketConnectProc) refers to socket.o(i.Socket_Destroy) for Socket_Destroy
    air780esocket.o(i.AIR780ESocketConnectProc) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780esocket.o(i.AIR780ESocketConnectProc) refers to air780esocket.o(.data) for .data
    air780esocket.o(i.AIR780ESocketConnectProc) refers to air780efsm.o(.constdata) for g_stStateAIR780E
    air780esocket.o(i.AIR780ESocketSendDataProc) refers to hido_util.o(i.HIDO_UtilParseFormat) for HIDO_UtilParseFormat
    air780esocket.o(i.AIR780ESocketSendDataProc) refers to socket.o(i.Socket_GetSocketSendQueue) for Socket_GetSocketSendQueue
    air780esocket.o(i.AIR780ESocketSendDataProc) refers to hido_vlqueue.o(i.HIDO_VLQGetDequeueMember) for HIDO_VLQGetDequeueMember
    air780esocket.o(i.AIR780ESocketSendDataProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSend) for HIDO_ATLiteCmdSend
    air780esocket.o(i.AIR780ESocketSendDataProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSendOver) for HIDO_ATLiteCmdSendOver
    air780esocket.o(i.AIR780ESocketSendDataProc) refers to socket.o(i.Socket_OnClosed) for Socket_OnClosed
    air780esocket.o(i.AIR780ESocketSendDataProc) refers to hido_atlite.o(i.HIDO_ATLiteGetDebugFlag) for HIDO_ATLiteGetDebugFlag
    air780esocket.o(i.AIR780ESocketSendDataProc) refers to dbg.o(i.HIDO_DebugHex) for HIDO_DebugHex
    air780esocket.o(i.AIR780ESocketSendDataProc) refers to hido_atlite.o(i.HIDO_ATLiteDataSend) for HIDO_ATLiteDataSend
    air780esocket.o(i.AIR780ESocketSendDataProc) refers to strncmp.o(.text) for strncmp
    air780esocket.o(i.AIR780ESocketSendDataProc) refers to hido_vlqueue.o(i.HIDO_VLQDequeue) for HIDO_VLQDequeue
    air780esocket.o(i.AIR780ESocketSendDataProc) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780esocket.o(i.AIR780ESocketSendDataProc) refers to air780esocket.o(.data) for .data
    air780esocket.o(i.AIR780ESocketSendDataProc) refers to air780efsm.o(.constdata) for g_stStateAIR780EIPPoll
    air780esocket.o(i.AIR780ESocket_Poll) refers to hido_timer.o(i.HIDO_TimerGetTick) for HIDO_TimerGetTick
    air780esocket.o(i.AIR780ESocket_Poll) refers to socket.o(i.Socket_GetSocketState) for Socket_GetSocketState
    air780esocket.o(i.AIR780ESocket_Poll) refers to idiv.o(.text) for __aeabi_idivmod
    air780esocket.o(i.AIR780ESocket_Poll) refers to socket.o(i.Socket_SetSocketState) for Socket_SetSocketState
    air780esocket.o(i.AIR780ESocket_Poll) refers to socket.o(i.Socket_GetSocketSendQueue) for Socket_GetSocketSendQueue
    air780esocket.o(i.AIR780ESocket_Poll) refers to hido_vlqueue.o(i.HIDO_VLQGetDequeueMember) for HIDO_VLQGetDequeueMember
    air780esocket.o(i.AIR780ESocket_Poll) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780esocket.o(i.AIR780ESocket_Poll) refers to air780esocket.o(.data) for .data
    air780esocket.o(i.AIR780ESocket_Poll) refers to air780esocket.o(.constdata) for .constdata
    air780esocket.o(.constdata) refers to air780esocket.o(.conststring) for .conststring
    air780esocket.o(.constdata) refers to air780efsm.o(.constdata) for g_stStateAIR780EIPReady
    air780esocket.o(.constdata) refers to air780esocket.o(i.AIR780ESocketConnectProc) for AIR780ESocketConnectProc
    air780esocket.o(.constdata) refers to air780esocket.o(i.AIR780ESocketCloseProc) for AIR780ESocketCloseProc
    air780esocket.o(.constdata) refers to air780esocket.o(i.AIR780ESocketSendDataProc) for AIR780ESocketSendDataProc
    air780ecsq.o(i.AIR780ECSQProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSend) for HIDO_ATLiteCmdSend
    air780ecsq.o(i.AIR780ECSQProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSendOver) for HIDO_ATLiteCmdSendOver
    air780ecsq.o(i.AIR780ECSQProc) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780ecsq.o(i.AIR780ECSQProc) refers to hido_util.o(i.HIDO_UtilParseFormat) for HIDO_UtilParseFormat
    air780ecsq.o(i.AIR780ECSQProc) refers to module.o(i.Module_SignalIntensityResult) for Module_SignalIntensityResult
    air780ecsq.o(i.AIR780ECSQProc) refers to air780ecsq.o(.data) for .data
    air780ecsq.o(i.AIR780ECSQ_Get) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780ecsq.o(i.AIR780ECSQ_Get) refers to air780ecsq.o(.data) for .data
    air780ecsq.o(i.AIR780ECSQ_Poll) refers to module.o(i.Module_SignalIntensityNeedRequest) for Module_SignalIntensityNeedRequest
    air780ecsq.o(i.AIR780ECSQ_Poll) refers to air780ecsq.o(i.AIR780ECSQ_Get) for AIR780ECSQ_Get
    air780ecsq.o(.data) refers to air780ecsq.o(.conststring) for .conststring
    air780ecsq.o(.data) refers to air780ecsq.o(i.AIR780ECSQProc) for AIR780ECSQProc
    internet.o(i.Internet_DebugOff) refers to air780edriver.o(i.AIR780EDriver_DebugOff) for AIR780EDriver_DebugOff
    internet.o(i.Internet_DebugOn) refers to air780edriver.o(i.AIR780EDriver_DebugOn) for AIR780EDriver_DebugOn
    internet.o(i.Internet_Init) refers to air780edriver.o(i.AIR780EDriver_Init) for AIR780EDriver_Init
    internet.o(i.Internet_IsIPReady) refers to air780efsm.o(i.AIR780E_IsIPReady) for AIR780E_IsIPReady
    internet.o(i.Internet_Poll) refers to hido_fsm.o(i.HIDO_FSMEventExecute) for HIDO_FSMEventExecute
    internet.o(i.Internet_Poll) refers to air780efsm.o(.bss) for g_stFSMAIR780E
    module.o(i.Module_GetCCID) refers to module.o(.bss) for .bss
    module.o(i.Module_GetIMEI) refers to module.o(.bss) for .bss
    module.o(i.Module_GetIMSI) refers to module.o(.bss) for .bss
    module.o(i.Module_GetLBSLocationAsync) refers to module.o(.data) for .data
    module.o(i.Module_GetRunATCmd) refers to module.o(.bss) for .bss
    module.o(i.Module_GetSignalIntensity) refers to module.o(.data) for .data
    module.o(i.Module_GetSignalIntensityAsync) refers to module.o(.data) for .data
    module.o(i.Module_LBSLocationNeedRequest) refers to module.o(.data) for .data
    module.o(i.Module_LBSLocationResult) refers to memcpya.o(.text) for __aeabi_memcpy4
    module.o(i.Module_LBSLocationResult) refers to module.o(.data) for .data
    module.o(i.Module_LBSLocationResult) refers to module.o(.bss) for .bss
    module.o(i.Module_NeedPowerOff) refers to module.o(.data) for .data
    module.o(i.Module_NeedPowerOn) refers to module.o(.data) for .data
    module.o(i.Module_NeedSleep) refers to module.o(.data) for .data
    module.o(i.Module_NeedWakeUp) refers to module.o(.data) for .data
    module.o(i.Module_PowerEvent) refers to module.o(.data) for .data
    module.o(i.Module_PowerOff) refers to module.o(.data) for .data
    module.o(i.Module_PowerOn) refers to module.o(.data) for .data
    module.o(i.Module_RunATCmd) refers to hido_util.o(i.HIDO_UtilSnprintf) for HIDO_UtilSnprintf
    module.o(i.Module_RunATCmd) refers to module.o(.data) for .data
    module.o(i.Module_RunATCmd) refers to module.o(.bss) for .bss
    module.o(i.Module_RunATCmdEnable) refers to module.o(.data) for .data
    module.o(i.Module_SetCCID) refers to memcpya.o(.text) for __aeabi_memcpy
    module.o(i.Module_SetCCID) refers to module.o(.bss) for .bss
    module.o(i.Module_SetIMEI) refers to memcpya.o(.text) for __aeabi_memcpy
    module.o(i.Module_SetIMEI) refers to module.o(.bss) for .bss
    module.o(i.Module_SetIMSI) refers to memcpya.o(.text) for __aeabi_memcpy
    module.o(i.Module_SetIMSI) refers to module.o(.bss) for .bss
    module.o(i.Module_SetPowerEventCallback) refers to module.o(.data) for .data
    module.o(i.Module_SignalIntensityNeedRequest) refers to module.o(.data) for .data
    module.o(i.Module_SignalIntensityResult) refers to module.o(.data) for .data
    module.o(i.Module_Sleep) refers to module.o(.data) for .data
    module.o(i.Module_WakeUp) refers to module.o(.data) for .data
    socket.o(i.Socket_Close) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_ClosedAll) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_Connect) refers to hido_util.o(i.HIDO_UtilSnprintf) for HIDO_UtilSnprintf
    socket.o(i.Socket_Connect) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_Create) refers to hido_util.o(i.HIDO_UtilBzero) for HIDO_UtilBzero
    socket.o(i.Socket_Create) refers to hido_vlqueue.o(i.HIDO_VLQInit) for HIDO_VLQInit
    socket.o(i.Socket_Create) refers to hido_arraryqueue.o(i.HIDO_ArraryQueueInit) for HIDO_ArraryQueueInit
    socket.o(i.Socket_Create) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_Destroy) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_GetRemoteAddr) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_GetRemotePort) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_GetSocketRecvQueue) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_GetSocketSendQueue) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_GetSocketState) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_GetType) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_HasRecvData) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_HaveRecvData) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_IsClosed) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_IsConnected) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_IsSendQueueEmpty) refers to hido_vlqueue.o(i.HIDO_VLQGetDequeueMember) for HIDO_VLQGetDequeueMember
    socket.o(i.Socket_IsSendQueueEmpty) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_NoRecvData) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_OnClosed) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_OnConnectFailed) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_OnConnected) refers to hido_vlqueue.o(i.HIDO_VLQInit) for HIDO_VLQInit
    socket.o(i.Socket_OnConnected) refers to hido_arraryqueue.o(i.HIDO_ArraryQueueInit) for HIDO_ArraryQueueInit
    socket.o(i.Socket_OnConnected) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_OnRecv) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_Recv) refers to hido_vlqueue.o(i.HIDO_VLQGetDequeueMember) for HIDO_VLQGetDequeueMember
    socket.o(i.Socket_Recv) refers to memcpya.o(.text) for __aeabi_memcpy
    socket.o(i.Socket_Recv) refers to hido_vlqueue.o(i.HIDO_VLQDequeue) for HIDO_VLQDequeue
    socket.o(i.Socket_Recv) refers to hido_arraryqueue.o(i.HIDO_ArraryQueueOut) for HIDO_ArraryQueueOut
    socket.o(i.Socket_Recv) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_RecvAll) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_RecvData) refers to hido_vlqueue.o(i.HIDO_VLQGetEnqueueMember) for HIDO_VLQGetEnqueueMember
    socket.o(i.Socket_RecvData) refers to memcpya.o(.text) for __aeabi_memcpy
    socket.o(i.Socket_RecvData) refers to hido_vlqueue.o(i.HIDO_VLQEnqueue) for HIDO_VLQEnqueue
    socket.o(i.Socket_RecvData) refers to hido_arraryqueue.o(i.HIDO_ArraryQueueIn) for HIDO_ArraryQueueIn
    socket.o(i.Socket_RecvData) refers to dbg.o(i.HIDO_Debug) for HIDO_Debug
    socket.o(i.Socket_RecvData) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_Send) refers to hido_vlqueue.o(i.HIDO_VLQGetEnqueueMember) for HIDO_VLQGetEnqueueMember
    socket.o(i.Socket_Send) refers to memcpya.o(.text) for __aeabi_memcpy
    socket.o(i.Socket_Send) refers to hido_vlqueue.o(i.HIDO_VLQEnqueue) for HIDO_VLQEnqueue
    socket.o(i.Socket_Send) refers to dbg.o(i.HIDO_Debug) for HIDO_Debug
    socket.o(i.Socket_Send) refers to socket.o(.bss) for .bss
    socket.o(i.Socket_SetSocketState) refers to socket.o(.bss) for .bss
    air780eloc.o(i.AIR780ELocProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSend) for HIDO_ATLiteCmdSend
    air780eloc.o(i.AIR780ELocProc) refers to hido_atlite.o(i.HIDO_ATLiteCmdSendOver) for HIDO_ATLiteCmdSendOver
    air780eloc.o(i.AIR780ELocProc) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780eloc.o(i.AIR780ELocProc) refers to hido_util.o(i.HIDO_UtilParseFormat) for HIDO_UtilParseFormat
    air780eloc.o(i.AIR780ELocProc) refers to atof.o(i.atof) for atof
    air780eloc.o(i.AIR780ELocProc) refers to module.o(i.Module_LBSLocationResult) for Module_LBSLocationResult
    air780eloc.o(i.AIR780ELocProc) refers to air780eloc.o(.data) for .data
    air780eloc.o(i.AIR780ELoc_Get) refers to hido_fsm.o(i.HIDO_FSMStateChange) for HIDO_FSMStateChange
    air780eloc.o(i.AIR780ELoc_Get) refers to air780eloc.o(.data) for .data
    air780eloc.o(i.AIR780ELoc_Poll) refers to module.o(i.Module_LBSLocationNeedRequest) for Module_LBSLocationNeedRequest
    air780eloc.o(i.AIR780ELoc_Poll) refers to air780eloc.o(i.AIR780ELoc_Get) for AIR780ELoc_Get
    air780eloc.o(.data) refers to air780eloc.o(.conststring) for .conststring
    air780eloc.o(.data) refers to air780eloc.o(i.AIR780ELocProc) for AIR780ELocProc
    gps.o(i.GPS_AddHours) refers to stm32l0xx_hal_dma.o(i.__ARM_common_switch8) for __ARM_common_switch8
    gps.o(i.GPS_DataCheck) refers to hido_util.o(i.HIDO_UtilParseFormat) for HIDO_UtilParseFormat
    gps.o(i.GPS_DataCheck) refers to hido_util.o(i.HIDO_UtilHexStrBufToInt) for HIDO_UtilHexStrBufToInt
    gps.o(i.GPS_Init) refers to gps.o(i.GPS_PowerOn) for GPS_PowerOn
    gps.o(i.GPS_Init) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    gps.o(i.GPS_Init) refers to stm32l0xx_hal.o(i.HAL_Delay) for HAL_Delay
    gps.o(i.GPS_Init) refers to uart.o(i.Uart_Init) for Uart_Init
    gps.o(i.GPS_Init) refers to hido_util.o(i.HIDO_UtilBzero) for HIDO_UtilBzero
    gps.o(i.GPS_Init) refers to gps.o(.bss) for .bss
    gps.o(i.GPS_Init) refers to gps.o(.data) for .data
    gps.o(i.GPS_IsIdle) refers to gps.o(.data) for .data
    gps.o(i.GPS_ParseGGA) refers to memseta.o(.text) for __aeabi_memclr4
    gps.o(i.GPS_ParseGGA) refers to gps.o(i.GPS_DataCheck) for GPS_DataCheck
    gps.o(i.GPS_ParseGGA) refers to hido_util.o(i.HIDO_UtilParseFormat) for HIDO_UtilParseFormat
    gps.o(i.GPS_ParseGGA) refers to atoi.o(.text) for atoi
    gps.o(i.GPS_ParseGGA) refers to hido_util.o(i.HIDO_UtilSnprintf) for HIDO_UtilSnprintf
    gps.o(i.GPS_ParseGGA) refers to main.o(.data) for jinru_parsegga_flag
    gps.o(i.GPS_ParseGGA) refers to gps.o(.data) for .data
    gps.o(i.GPS_ParseGGA) refers to gps.o(.bss) for .bss
    gps.o(i.GPS_ParseGGA) refers to app.o(.data) for GPS_successful_flag
    gps.o(i.GPS_ParseGGA) refers to global_param.o(.bss) for g_com_map
    gps.o(i.GPS_ParseLat) refers to hido_util.o(i.HIDO_UtilStrnchr) for HIDO_UtilStrnchr
    gps.o(i.GPS_ParseLat) refers to hido_util.o(i.HIDO_UtilStrBufToInt) for HIDO_UtilStrBufToInt
    gps.o(i.GPS_ParseLat) refers to dfltui.o(.text) for __aeabi_ui2d
    gps.o(i.GPS_ParseLat) refers to ddiv.o(.text) for __aeabi_ddiv
    gps.o(i.GPS_ParseLat) refers to dadd.o(.text) for __aeabi_dadd
    gps.o(i.GPS_ParseLon) refers to hido_util.o(i.HIDO_UtilStrnchr) for HIDO_UtilStrnchr
    gps.o(i.GPS_ParseLon) refers to hido_util.o(i.HIDO_UtilStrBufToInt) for HIDO_UtilStrBufToInt
    gps.o(i.GPS_ParseLon) refers to dfltui.o(.text) for __aeabi_ui2d
    gps.o(i.GPS_ParseLon) refers to ddiv.o(.text) for __aeabi_ddiv
    gps.o(i.GPS_ParseLon) refers to dadd.o(.text) for __aeabi_dadd
    gps.o(i.GPS_ParseRMC) refers to gps.o(i.GPS_DataCheck) for GPS_DataCheck
    gps.o(i.GPS_ParseRMC) refers to hido_util.o(i.HIDO_UtilParseFormat) for HIDO_UtilParseFormat
    gps.o(i.GPS_ParseRMC) refers to hido_util.o(i.HIDO_UtilStrnchr) for HIDO_UtilStrnchr
    gps.o(i.GPS_ParseRMC) refers to hido_util.o(i.HIDO_UtilStrBufToInt) for HIDO_UtilStrBufToInt
    gps.o(i.GPS_ParseRMC) refers to gps.o(i.GPS_ParseLat) for GPS_ParseLat
    gps.o(i.GPS_ParseRMC) refers to gps.o(i.GPS_ParseLon) for GPS_ParseLon
    gps.o(i.GPS_ParseRMC) refers to memcpya.o(.text) for __aeabi_memcpy
    gps.o(i.GPS_ParseRMC) refers to atof.o(i.atof) for atof
    gps.o(i.GPS_ParseRMC) refers to dmul.o(.text) for __aeabi_dmul
    gps.o(i.GPS_ParseRMC) refers to dfixui.o(.text) for __aeabi_d2uiz
    gps.o(i.GPS_ParseRMC) refers to gps.o(i.GPS_AddHours) for GPS_AddHours
    gps.o(i.GPS_ParseRMC) refers to gps.o(.bss) for .bss
    gps.o(i.GPS_PinRegister) refers to gps.o(.bss) for .bss
    gps.o(i.GPS_Poll) refers to gps.o(i.GPS_RecvFsm) for GPS_RecvFsm
    gps.o(i.GPS_Poll) refers to uart.o(i.Uart_GetChar) for Uart_GetChar
    gps.o(i.GPS_PowerOff) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    gps.o(i.GPS_PowerOff) refers to gps.o(.data) for .data
    gps.o(i.GPS_PowerOn) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    gps.o(i.GPS_PowerOn) refers to gps.o(.data) for .data
    gps.o(i.GPS_RecvFsm) refers to strstr.o(.text) for strstr
    gps.o(i.GPS_RecvFsm) refers to gps.o(i.GPS_ParseGGA) for GPS_ParseGGA
    gps.o(i.GPS_RecvFsm) refers to memseta.o(.text) for __aeabi_memclr
    gps.o(i.GPS_RecvFsm) refers to gps.o(i.GPS_ParseRMC) for GPS_ParseRMC
    gps.o(i.GPS_RecvFsm) refers to gps.o(.bss) for .bss
    gps.o(i.GPS_SetEventCallback) refers to gps.o(.data) for .data
    gps.o(i.validate_gngga) refers to _scanf_int.o(.text) for _scanf_int
    gps.o(i.validate_gngga) refers to strlen.o(.text) for strlen
    gps.o(i.validate_gngga) refers to strncmp.o(.text) for strncmp
    gps.o(i.validate_gngga) refers to strchr.o(.text) for strchr
    gps.o(i.validate_gngga) refers to __0sscanf.o(.text) for __0sscanf
    gps.o(i.validate_gngga) refers to gps.o(.data) for .data
    spiflash.o(i.SPIFlash_BulkErase) refers to spiflash.o(i.SPIFlash_WriteEnable) for SPIFlash_WriteEnable
    spiflash.o(i.SPIFlash_BulkErase) refers to spiflash.o(i.SPIFlash_CSEnable) for SPIFlash_CSEnable
    spiflash.o(i.SPIFlash_BulkErase) refers to spiflash.o(i.SPIFlash_SendByte) for SPIFlash_SendByte
    spiflash.o(i.SPIFlash_BulkErase) refers to spiflash.o(i.SPIFlash_CSDisable) for SPIFlash_CSDisable
    spiflash.o(i.SPIFlash_BulkErase) refers to spiflash.o(i.SPIFlash_WriteDisable) for SPIFlash_WriteDisable
    spiflash.o(i.SPIFlash_BulkErase) refers to spiflash.o(i.SPIFlash_WaitBusy) for SPIFlash_WaitBusy
    spiflash.o(i.SPIFlash_CSDisable) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    spiflash.o(i.SPIFlash_CSDisable) refers to spiflash.o(.bss) for .bss
    spiflash.o(i.SPIFlash_CSEnable) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    spiflash.o(i.SPIFlash_CSEnable) refers to spiflash.o(.bss) for .bss
    spiflash.o(i.SPIFlash_Erase) refers to spiflash.o(i.SPIFlash_BulkErase) for SPIFlash_BulkErase
    spiflash.o(i.SPIFlash_Erase) refers to spiflash.o(i.SPIFlash_SectorErase) for SPIFlash_SectorErase
    spiflash.o(i.SPIFlash_Erase) refers to spiflash.o(.bss) for .bss
    spiflash.o(i.SPIFlash_Erase) refers to spiflash.o(.constdata) for .constdata
    spiflash.o(i.SPIFlash_Init) refers to spiflash.o(i.SPIFlash_ReadJedecID) for SPIFlash_ReadJedecID
    spiflash.o(i.SPIFlash_Init) refers to spiflash.o(.bss) for .bss
    spiflash.o(i.SPIFlash_PageProgram) refers to spiflash.o(i.SPIFlash_WaitBusy) for SPIFlash_WaitBusy
    spiflash.o(i.SPIFlash_PageProgram) refers to spiflash.o(i.SPIFlash_WriteEnable) for SPIFlash_WriteEnable
    spiflash.o(i.SPIFlash_PageProgram) refers to spiflash.o(i.SPIFlash_CSEnable) for SPIFlash_CSEnable
    spiflash.o(i.SPIFlash_PageProgram) refers to spiflash.o(i.SPIFlash_SendByte) for SPIFlash_SendByte
    spiflash.o(i.SPIFlash_PageProgram) refers to spiflash.o(i.SPIFlash_CSDisable) for SPIFlash_CSDisable
    spiflash.o(i.SPIFlash_PageProgram) refers to spiflash.o(i.SPIFlash_WriteDisable) for SPIFlash_WriteDisable
    spiflash.o(i.SPIFlash_PinRegister) refers to spiflash.o(.bss) for .bss
    spiflash.o(i.SPIFlash_PowerDown) refers to spiflash.o(i.SPIFlash_CSEnable) for SPIFlash_CSEnable
    spiflash.o(i.SPIFlash_PowerDown) refers to spiflash.o(i.SPIFlash_SendByte) for SPIFlash_SendByte
    spiflash.o(i.SPIFlash_PowerDown) refers to spiflash.o(i.SPIFlash_CSDisable) for SPIFlash_CSDisable
    spiflash.o(i.SPIFlash_PowerDown) refers to stm32l0xx_hal.o(i.HAL_Delay) for HAL_Delay
    spiflash.o(i.SPIFlash_Read) refers to spiflash.o(i.SPIFlash_CSEnable) for SPIFlash_CSEnable
    spiflash.o(i.SPIFlash_Read) refers to spiflash.o(i.SPIFlash_SendByte) for SPIFlash_SendByte
    spiflash.o(i.SPIFlash_Read) refers to spiflash.o(i.SPIFlash_CSDisable) for SPIFlash_CSDisable
    spiflash.o(i.SPIFlash_ReadJedecID) refers to spiflash.o(i.SPIFlash_CSEnable) for SPIFlash_CSEnable
    spiflash.o(i.SPIFlash_ReadJedecID) refers to spiflash.o(i.SPIFlash_SendByte) for SPIFlash_SendByte
    spiflash.o(i.SPIFlash_ReadJedecID) refers to spiflash.o(i.SPIFlash_CSDisable) for SPIFlash_CSDisable
    spiflash.o(i.SPIFlash_ReleasePowerDown) refers to spiflash.o(i.SPIFlash_CSEnable) for SPIFlash_CSEnable
    spiflash.o(i.SPIFlash_ReleasePowerDown) refers to spiflash.o(i.SPIFlash_SendByte) for SPIFlash_SendByte
    spiflash.o(i.SPIFlash_ReleasePowerDown) refers to spiflash.o(i.SPIFlash_CSDisable) for SPIFlash_CSDisable
    spiflash.o(i.SPIFlash_ReleasePowerDown) refers to stm32l0xx_hal.o(i.HAL_Delay) for HAL_Delay
    spiflash.o(i.SPIFlash_SPIRegister) refers to spiflash.o(.bss) for .bss
    spiflash.o(i.SPIFlash_SectorErase) refers to spiflash.o(i.SPIFlash_WriteEnable) for SPIFlash_WriteEnable
    spiflash.o(i.SPIFlash_SectorErase) refers to spiflash.o(i.SPIFlash_CSEnable) for SPIFlash_CSEnable
    spiflash.o(i.SPIFlash_SectorErase) refers to spiflash.o(i.SPIFlash_SendByte) for SPIFlash_SendByte
    spiflash.o(i.SPIFlash_SectorErase) refers to spiflash.o(i.SPIFlash_CSDisable) for SPIFlash_CSDisable
    spiflash.o(i.SPIFlash_SectorErase) refers to spiflash.o(i.SPIFlash_WriteDisable) for SPIFlash_WriteDisable
    spiflash.o(i.SPIFlash_SectorErase) refers to spiflash.o(i.SPIFlash_WaitBusy) for SPIFlash_WaitBusy
    spiflash.o(i.SPIFlash_SectorErase) refers to spiflash.o(.constdata) for .constdata
    spiflash.o(i.SPIFlash_SendByte) refers to spi_hal.o(i.SPI_ReadWrite) for SPI_ReadWrite
    spiflash.o(i.SPIFlash_SendByte) refers to spiflash.o(.bss) for .bss
    spiflash.o(i.SPIFlash_UnInit) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_DeInit) for HAL_GPIO_DeInit
    spiflash.o(i.SPIFlash_UnInit) refers to spiflash.o(.bss) for .bss
    spiflash.o(i.SPIFlash_WaitBusy) refers to spiflash.o(i.SPIFlash_CSEnable) for SPIFlash_CSEnable
    spiflash.o(i.SPIFlash_WaitBusy) refers to spiflash.o(i.SPIFlash_SendByte) for SPIFlash_SendByte
    spiflash.o(i.SPIFlash_WaitBusy) refers to spiflash.o(i.SPIFlash_CSDisable) for SPIFlash_CSDisable
    spiflash.o(i.SPIFlash_Write) refers to spiflash.o(i.SPIFlash_PageProgram) for SPIFlash_PageProgram
    spiflash.o(i.SPIFlash_Write) refers to spiflash.o(.bss) for .bss
    spiflash.o(i.SPIFlash_WriteDisable) refers to spiflash.o(i.SPIFlash_CSEnable) for SPIFlash_CSEnable
    spiflash.o(i.SPIFlash_WriteDisable) refers to spiflash.o(i.SPIFlash_SendByte) for SPIFlash_SendByte
    spiflash.o(i.SPIFlash_WriteDisable) refers to spiflash.o(i.SPIFlash_CSDisable) for SPIFlash_CSDisable
    spiflash.o(i.SPIFlash_WriteEnable) refers to spiflash.o(i.SPIFlash_CSEnable) for SPIFlash_CSEnable
    spiflash.o(i.SPIFlash_WriteEnable) refers to spiflash.o(i.SPIFlash_SendByte) for SPIFlash_SendByte
    spiflash.o(i.SPIFlash_WriteEnable) refers to spiflash.o(i.SPIFlash_CSDisable) for SPIFlash_CSDisable
    dbg.o(i.DBG_GetMode) refers to dbg.o(.data) for .data
    dbg.o(i.DBG_Init) refers to memseta.o(.text) for __aeabi_memclr4
    dbg.o(i.DBG_Init) refers to uart.o(i.Uart_Init) for Uart_Init
    dbg.o(i.DBG_Init) refers to hido_input.o(i.HIDO_InputRegister) for HIDO_InputRegister
    dbg.o(i.DBG_Init) refers to dbg.o(.bss) for .bss
    dbg.o(i.DBG_Init) refers to dbg.o(i.DBG_SerialPrintf) for DBG_SerialPrintf
    dbg.o(i.DBG_Init) refers to dbg.o(i.DBG_SerialGetChar) for DBG_SerialGetChar
    dbg.o(i.DBG_Init) refers to dbg.o(i.DBG_SerialPutChar) for DBG_SerialPutChar
    dbg.o(i.DBG_Init) refers to dbg.o(i.DBG_SerialPutString) for DBG_SerialPutString
    dbg.o(i.DBG_Poll) refers to hido_input.o(i.HIDO_InputPoll) for HIDO_InputPoll
    dbg.o(i.DBG_Poll) refers to uart.o(i.Uart_GetHandle) for Uart_GetHandle
    dbg.o(i.DBG_Poll) refers to stm32l0xx_hal_uart.o(i.HAL_UART_Transmit) for HAL_UART_Transmit
    dbg.o(i.DBG_Poll) refers to uart.o(i.Uart_GetChar) for Uart_GetChar
    dbg.o(i.DBG_Poll) refers to hido_timer.o(i.HIDO_TimerGetTick) for HIDO_TimerGetTick
    dbg.o(i.DBG_Poll) refers to serial_at_cmd_app.o(i.UsartParseDataHandler) for UsartParseDataHandler
    dbg.o(i.DBG_Poll) refers to dbg.o(.data) for .data
    dbg.o(i.DBG_SerialGetChar) refers to uart.o(i.Uart_GetChar) for Uart_GetChar
    dbg.o(i.DBG_SerialPrintf) refers to printfa.o(i.__0vsnprintf) for vsnprintf
    dbg.o(i.DBG_SerialPrintf) refers to strlen.o(.text) for strlen
    dbg.o(i.DBG_SerialPrintf) refers to uart.o(i.Uart_Send) for Uart_Send
    dbg.o(i.DBG_SerialPutChar) refers to uart.o(i.Uart_Send) for Uart_Send
    dbg.o(i.DBG_SerialPutString) refers to strlen.o(.text) for strlen
    dbg.o(i.DBG_SerialPutString) refers to uart.o(i.Uart_Send) for Uart_Send
    dbg.o(i.DBG_SetDebugFlag) refers to dbg.o(.data) for .data
    dbg.o(i.DBG_SetMode) refers to dbg.o(.data) for .data
    dbg.o(i.HIDO_Debug) refers to printfa.o(i.__0vsnprintf) for vsnprintf
    dbg.o(i.HIDO_Debug) refers to uart.o(i.Uart_Send) for Uart_Send
    dbg.o(i.HIDO_Debug) refers to dbg.o(.data) for .data
    dbg.o(i.HIDO_Debug2) refers to printfa.o(i.__0vsnprintf) for vsnprintf
    dbg.o(i.HIDO_Debug2) refers to uart.o(i.Uart_Send) for Uart_Send
    dbg.o(i.HIDO_DebugEx) refers to uart.o(i.Uart_Send) for Uart_Send
    dbg.o(i.HIDO_DebugEx) refers to printfa.o(i.__0vsnprintf) for vsnprintf
    dbg.o(i.HIDO_DebugEx) refers to dbg.o(.data) for .data
    dbg.o(i.HIDO_DebugHex) refers to memseta.o(.text) for __aeabi_memclr4
    dbg.o(i.HIDO_DebugHex) refers to hido_util.o(i.HIDO_UtilByteArrayToHexString) for HIDO_UtilByteArrayToHexString
    dbg.o(i.HIDO_DebugHex) refers to strcat.o(.text) for strcat
    dbg.o(i.HIDO_DebugHex) refers to strlen.o(.text) for strlen
    dbg.o(i.HIDO_DebugHex) refers to uart.o(i.Uart_Send) for Uart_Send
    dbg.o(i.HIDO_DebugHex) refers to dbg.o(.data) for .data
    dbg.o(i.HIDO_DebugString) refers to uart.o(i.Uart_Send) for Uart_Send
    dbg.o(i.HIDO_DebugString) refers to dbg.o(.data) for .data
    bsp.o(i.EXTI2_IRQHandler) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_EXTI_IRQHandler) for HAL_GPIO_EXTI_IRQHandler
    bsp.o(i.HAL_UART_ErrorCallback) refers to uart.o(i.Uart_RxErrorFromISR) for Uart_RxErrorFromISR
    bsp.o(i.HAL_UART_RxCpltCallback) refers to uart.o(i.Uart_RxOverFromISR) for Uart_RxOverFromISR
    bsp.o(i.HAL_UART_TxCpltCallback) refers to uart.o(i.Uart_TxOverFromISR) for Uart_TxOverFromISR
    uart.o(i.Uart_GetChar) refers to uidiv.o(.text) for __aeabi_uidivmod
    uart.o(i.Uart_GetChar) refers to hido_arraryqueue.o(i.HIDO_ArraryQueueOut) for HIDO_ArraryQueueOut
    uart.o(i.Uart_GetChar) refers to uart.o(.bss) for .bss
    uart.o(i.Uart_GetHandle) refers to uart.o(.bss) for .bss
    uart.o(i.Uart_Init) refers to hido_arraryqueue.o(i.HIDO_ArraryQueueInit) for HIDO_ArraryQueueInit
    uart.o(i.Uart_Init) refers to hido_vlqueue.o(i.HIDO_VLQInit) for HIDO_VLQInit
    uart.o(i.Uart_Init) refers to uart.o(i.Uart_RXDMAEnable) for Uart_RXDMAEnable
    uart.o(i.Uart_Init) refers to uart.o(i.Uart_RXINTEnable) for Uart_RXINTEnable
    uart.o(i.Uart_Init) refers to uart.o(.bss) for .bss
    uart.o(i.Uart_RXDMAEnable) refers to stm32l0xx_hal_uart.o(i.HAL_UART_Receive_DMA) for HAL_UART_Receive_DMA
    uart.o(i.Uart_RXDMAEnable) refers to uart.o(.bss) for .bss
    uart.o(i.Uart_RXINTEnable) refers to stm32l0xx_hal_uart.o(i.HAL_UART_Receive_IT) for HAL_UART_Receive_IT
    uart.o(i.Uart_RXINTEnable) refers to uart.o(.bss) for .bss
    uart.o(i.Uart_ReConfigBaudRate) refers to stm32l0xx_hal_uart.o(i.HAL_UART_DeInit) for HAL_UART_DeInit
    uart.o(i.Uart_ReConfigBaudRate) refers to stm32l0xx_hal_uart.o(i.HAL_UART_Init) for HAL_UART_Init
    uart.o(i.Uart_ReConfigBaudRate) refers to uart.o(i.Uart_ReInit) for Uart_ReInit
    uart.o(i.Uart_ReConfigBaudRate) refers to uart.o(.bss) for .bss
    uart.o(i.Uart_ReInit) refers to hido_arraryqueue.o(i.HIDO_ArraryQueueInit) for HIDO_ArraryQueueInit
    uart.o(i.Uart_ReInit) refers to hido_vlqueue.o(i.HIDO_VLQInit) for HIDO_VLQInit
    uart.o(i.Uart_ReInit) refers to uart.o(i.Uart_RXDMAEnable) for Uart_RXDMAEnable
    uart.o(i.Uart_ReInit) refers to uart.o(i.Uart_RXINTEnable) for Uart_RXINTEnable
    uart.o(i.Uart_ReInit) refers to uart.o(.bss) for .bss
    uart.o(i.Uart_Register) refers to hido_util.o(i.HIDO_UtilBzero) for HIDO_UtilBzero
    uart.o(i.Uart_Register) refers to uart.o(.bss) for .bss
    uart.o(i.Uart_RxErrorFromISR) refers to uart.o(i.Uart_RXINTEnable) for Uart_RXINTEnable
    uart.o(i.Uart_RxErrorFromISR) refers to uart.o(i.Uart_RXDMAEnable) for Uart_RXDMAEnable
    uart.o(i.Uart_RxErrorFromISR) refers to uart.o(.bss) for .bss
    uart.o(i.Uart_RxOverFromISR) refers to uart.o(i.Uart_RXINTEnable) for Uart_RXINTEnable
    uart.o(i.Uart_RxOverFromISR) refers to hido_arraryqueue.o(i.HIDO_ArraryQueueIn) for HIDO_ArraryQueueIn
    uart.o(i.Uart_RxOverFromISR) refers to uart.o(.bss) for .bss
    uart.o(i.Uart_Send) refers to hido_lock.o(i.HIDO_Lock) for HIDO_Lock
    uart.o(i.Uart_Send) refers to hido_vlqueue.o(i.HIDO_VLQGetEnqueueMember) for HIDO_VLQGetEnqueueMember
    uart.o(i.Uart_Send) refers to hido_vlqueue.o(i.HIDO_VLQEnqueue) for HIDO_VLQEnqueue
    uart.o(i.Uart_Send) refers to memcpya.o(.text) for __aeabi_memcpy
    uart.o(i.Uart_Send) refers to hido_vlqueue.o(i.HIDO_VLQGetDequeueMember) for HIDO_VLQGetDequeueMember
    uart.o(i.Uart_Send) refers to hido_lock.o(i.HIDO_UnLock) for HIDO_UnLock
    uart.o(i.Uart_Send) refers to stm32l0xx_hal_uart.o(i.HAL_UART_Transmit_DMA) for HAL_UART_Transmit_DMA
    uart.o(i.Uart_Send) refers to stm32l0xx_hal_uart.o(i.HAL_UART_Transmit_IT) for HAL_UART_Transmit_IT
    uart.o(i.Uart_Send) refers to stm32l0xx_hal_uart.o(i.HAL_UART_Transmit) for HAL_UART_Transmit
    uart.o(i.Uart_Send) refers to uart.o(.bss) for .bss
    uart.o(i.Uart_TxOverFromISR) refers to hido_vlqueue.o(i.HIDO_VLQGetDequeueMember) for HIDO_VLQGetDequeueMember
    uart.o(i.Uart_TxOverFromISR) refers to hido_vlqueue.o(i.HIDO_VLQDequeue) for HIDO_VLQDequeue
    uart.o(i.Uart_TxOverFromISR) refers to stm32l0xx_hal_uart.o(i.HAL_UART_Transmit_IT) for HAL_UART_Transmit_IT
    uart.o(i.Uart_TxOverFromISR) refers to stm32l0xx_hal_uart.o(i.HAL_UART_Transmit_DMA) for HAL_UART_Transmit_DMA
    uart.o(i.Uart_TxOverFromISR) refers to uart.o(.bss) for .bss
    uart.o(i.fputc) refers to stm32l0xx_hal_uart.o(i.HAL_UART_Transmit) for HAL_UART_Transmit
    uart.o(i.fputc) refers to main.o(.bss) for huart1
    spi_hal.o(i.SPI_ReadWrite) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_TransmitReceive) for HAL_SPI_TransmitReceive
    spi_hal.o(i.SPI_ReadWrite) refers to spi_hal.o(i.SPI_Write) for SPI_Write
    spi_hal.o(i.SPI_ReadWrite) refers to spi_hal.o(.data) for .data
    spi_hal.o(i.SPI_Register) refers to spi_hal.o(.data) for .data
    spi_hal.o(i.SPI_Write) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_Transmit) for HAL_SPI_Transmit
    spi_hal.o(i.SPI_Write) refers to spi_hal.o(.data) for .data
    spi.o(i.Uwb_CS_di) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_ReadPin) for HAL_GPIO_ReadPin
    spi.o(i.Uwb_CS_di) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    spi.o(i.Uwb_CS_di) refers to printfa.o(i.__0printf) for __2printf
    spi.o(i.readfromspi) refers to spi.o(i.Uwb_CS_di) for Uwb_CS_di
    spi.o(i.writetospi) refers to spi.o(i.Uwb_CS_di) for Uwb_CS_di
    adc.o(i.Get_ADC_Value) refers to stm32l0xx_hal_adc.o(i.HAL_ADC_Start) for HAL_ADC_Start
    adc.o(i.Get_ADC_Value) refers to stm32l0xx_hal_adc.o(i.HAL_ADC_PollForConversion) for HAL_ADC_PollForConversion
    adc.o(i.Get_ADC_Value) refers to stm32l0xx_hal_adc.o(i.HAL_ADC_GetState) for HAL_ADC_GetState
    adc.o(i.Get_ADC_Value) refers to stm32l0xx_hal_adc.o(i.HAL_ADC_GetValue) for HAL_ADC_GetValue
    adc.o(i.Get_ADC_Value) refers to main.o(.bss) for hadc
    adc.o(i.Get_Battary) refers to adc.o(i.Get_ADC_Value) for Get_ADC_Value
    adc.o(i.Get_Battary) refers to ffltui.o(.text) for __aeabi_ui2f
    adc.o(i.Get_Battary) refers to fdiv.o(.text) for __aeabi_fdiv
    adc.o(i.Get_Battary) refers to f2d.o(.text) for __aeabi_f2d
    adc.o(i.Get_Battary) refers to dadd.o(.text) for __aeabi_dsub
    adc.o(i.Get_Battary) refers to dmul.o(.text) for __aeabi_dmul
    adc.o(i.Get_Battary) refers to d2f.o(.text) for __aeabi_d2f
    adc.o(i.Get_Battary) refers to ffixui.o(.text) for __aeabi_f2uiz
    adc.o(i.Get_Battary) refers to adc.o(.data) for .data
    adc.o(i.Get_VDDVlotage) refers to uidiv.o(.text) for __aeabi_uidivmod
    adc.o(i.Get_VDDVlotage) refers to main.o(i.MX_ADC1_Init) for MX_ADC1_Init
    adc.o(i.Get_VDDVlotage) refers to delay.o(i.Delay_Us) for Delay_Us
    adc.o(i.Get_VDDVlotage) refers to adc.o(i.Get_ADC_Value) for Get_ADC_Value
    adc.o(i.Get_VDDVlotage) refers to main.o(i.MX_ADC_DeInit) for MX_ADC_DeInit
    adc.o(i.Get_VDDVlotage) refers to ffltui.o(.text) for __aeabi_ui2f
    adc.o(i.Get_VDDVlotage) refers to fmul.o(.text) for __aeabi_fmul
    adc.o(i.Get_VDDVlotage) refers to fdiv.o(.text) for __aeabi_fdiv
    adc.o(i.Get_VDDVlotage) refers to f2d.o(.text) for __aeabi_f2d
    adc.o(i.Get_VDDVlotage) refers to dadd.o(.text) for __aeabi_dsub
    adc.o(i.Get_VDDVlotage) refers to d2f.o(.text) for __aeabi_d2f
    adc.o(i.Get_VDDVlotage) refers to dmul.o(.text) for __aeabi_dmul
    adc.o(i.Get_VDDVlotage) refers to ffixui.o(.text) for __aeabi_f2uiz
    adc.o(i.Get_VDDVlotage) refers to adc.o(.data) for .data
    flash.o(i.FLASH_Prepare) refers to stm32l0xx_hal_flash.o(i.HAL_FLASH_Unlock) for HAL_FLASH_Unlock
    flash.o(i.FLASH_Prepare) refers to stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase) for HAL_FLASHEx_Erase
    flash.o(i.FLASH_Prepare) refers to stm32l0xx_hal_flash.o(i.HAL_FLASH_Lock) for HAL_FLASH_Lock
    flash.o(i.FLASH_Prepare) refers to flash.o(.data) for .data
    flash.o(i.FLASH_Write) refers to stm32l0xx_hal_flash.o(i.HAL_FLASH_Unlock) for HAL_FLASH_Unlock
    flash.o(i.FLASH_Write) refers to stm32l0xx_hal_flash.o(i.HAL_FLASH_Program) for HAL_FLASH_Program
    flash.o(i.FLASH_Write) refers to stm32l0xx_hal_flash.o(i.HAL_FLASH_Lock) for HAL_FLASH_Lock
    flash.o(i.FLASH_Write) refers to flash.o(.data) for .data
    udpclient.o(i.UDPClient_CmdParse) refers to dbg.o(i.HIDO_Debug) for HIDO_Debug
    udpclient.o(i.UDPClient_CmdParse) refers to strncmp.o(.text) for strncmp
    udpclient.o(i.UDPClient_CmdParse) refers to hido_util.o(i.HIDO_UtilStrSplit) for HIDO_UtilStrSplit
    udpclient.o(i.UDPClient_CmdParse) refers to hido_util.o(i.HIDO_UtilHexStrToInt) for HIDO_UtilHexStrToInt
    udpclient.o(i.UDPClient_CmdParse) refers to hido_util.o(i.HIDO_UtilStrToInt) for HIDO_UtilStrToInt
    udpclient.o(i.UDPClient_CmdParse) refers to hido_util.o(i.HIDO_UtilIPStringToByteArrary) for HIDO_UtilIPStringToByteArrary
    udpclient.o(i.UDPClient_CmdParse) refers to strcmp.o(.text) for strcmp
    udpclient.o(i.UDPClient_CmdParse) refers to spiflash.o(i.SPIFlash_Erase) for SPIFlash_Erase
    udpclient.o(i.UDPClient_CmdParse) refers to spiflash.o(i.SPIFlash_Write) for SPIFlash_Write
    udpclient.o(i.UDPClient_CmdParse) refers to strlen.o(.text) for strlen
    udpclient.o(i.UDPClient_CmdParse) refers to stm32l0xx_hal.o(i.HAL_Delay) for HAL_Delay
    udpclient.o(i.UDPClient_CmdParse) refers to hido_util.o(i.HIDO_UtilSnprintf) for HIDO_UtilSnprintf
    udpclient.o(i.UDPClient_CmdParse) refers to socket.o(i.Socket_Send) for Socket_Send
    udpclient.o(i.UDPClient_CmdParse) refers to hido_util.o(i.HIDO_UtilParseFormat) for HIDO_UtilParseFormat
    udpclient.o(i.UDPClient_CmdParse) refers to global_param.o(i.save_com_map_to_flash) for save_com_map_to_flash
    udpclient.o(i.UDPClient_CmdParse) refers to printfa.o(i.__0sprintf) for __2sprintf
    udpclient.o(i.UDPClient_CmdParse) refers to udpclient.o(.bss) for .bss
    udpclient.o(i.UDPClient_CmdParse) refers to udpclient.o(.data) for .data
    udpclient.o(i.UDPClient_CmdParse) refers to global_param.o(.bss) for g_com_map
    udpclient.o(i.UDPClient_Heartbeat) refers to module.o(i.Module_GetCCID) for Module_GetCCID
    udpclient.o(i.UDPClient_Heartbeat) refers to hido_util.o(i.HIDO_UtilSnprintf) for HIDO_UtilSnprintf
    udpclient.o(i.UDPClient_Heartbeat) refers to socket.o(i.Socket_Send) for Socket_Send
    udpclient.o(i.UDPClient_Heartbeat) refers to stm32l0xx_hal_uart.o(i.HAL_UART_Transmit) for HAL_UART_Transmit
    udpclient.o(i.UDPClient_Heartbeat) refers to memseta.o(.text) for __aeabi_memclr
    udpclient.o(i.UDPClient_Heartbeat) refers to udpclient.o(.data) for .data
    udpclient.o(i.UDPClient_Heartbeat) refers to main.o(.data) for nomove_flag
    udpclient.o(i.UDPClient_Heartbeat) refers to app.o(.data) for fangchai_flag
    udpclient.o(i.UDPClient_Heartbeat) refers to global_param.o(.bss) for g_com_map
    udpclient.o(i.UDPClient_Heartbeat) refers to udpclient.o(.bss) for .bss
    udpclient.o(i.UDPClient_Heartbeat) refers to main.o(.bss) for huart1
    udpclient.o(i.UDPClient_Init) refers to socket.o(i.Socket_Create) for Socket_Create
    udpclient.o(i.UDPClient_Init) refers to udpclient.o(i.UDPClient_SocketEventProc) for UDPClient_SocketEventProc
    udpclient.o(i.UDPClient_Init) refers to udpclient.o(.data) for .data
    udpclient.o(i.UDPClient_Poll) refers to internet.o(i.Internet_IsIPReady) for Internet_IsIPReady
    udpclient.o(i.UDPClient_Poll) refers to hido_timer.o(i.HIDO_TimerGetTick) for HIDO_TimerGetTick
    udpclient.o(i.UDPClient_Poll) refers to udpclient.o(i.UDPClient_Heartbeat) for UDPClient_Heartbeat
    udpclient.o(i.UDPClient_Poll) refers to hido_util.o(i.HIDO_UtilSnprintf) for HIDO_UtilSnprintf
    udpclient.o(i.UDPClient_Poll) refers to socket.o(i.Socket_Connect) for Socket_Connect
    udpclient.o(i.UDPClient_Poll) refers to main.o(.data) for loraled
    udpclient.o(i.UDPClient_Poll) refers to udpclient.o(.data) for .data
    udpclient.o(i.UDPClient_Poll) refers to global_param.o(.bss) for g_com_map
    udpclient.o(i.UDPClient_Poll) refers to udpclient.o(.bss) for .bss
    udpclient.o(i.UDPClient_SocketEventProc) refers to socket.o(i.Socket_Recv) for Socket_Recv
    udpclient.o(i.UDPClient_SocketEventProc) refers to udpclient.o(i.UDPClient_CmdParse) for UDPClient_CmdParse
    udpclient.o(i.UDPClient_SocketEventProc) refers to udpclient.o(.data) for .data
    udpclient.o(i.UDPClient_SocketEventProc) refers to udpclient.o(.bss) for .bss
    udpclient.o(i.UDPClient_UploadGPS) refers to hido_timer.o(i.HIDO_TimerGetTick) for HIDO_TimerGetTick
    udpclient.o(i.UDPClient_UploadGPS) refers to socket.o(i.Socket_Send) for Socket_Send
    udpclient.o(i.UDPClient_UploadGPS) refers to memseta.o(.text) for __aeabi_memclr
    udpclient.o(i.UDPClient_UploadGPS) refers to udpclient.o(.data) for .data
    udpclient.o(i.UDPClient_UploadGPS) refers to gps.o(.data) for GPS_ParseGGA_changdu
    udpclient.o(i.UDPClient_UploadGPS) refers to gps.o(.bss) for GPS_ParseGGA_data
    udpclient.o(i.UDPClient_Uploadhex) refers to memcpya.o(.text) for __aeabi_memcpy
    udpclient.o(i.UDPClient_Uploadhex) refers to hido_timer.o(i.HIDO_TimerGetTick) for HIDO_TimerGetTick
    udpclient.o(i.UDPClient_Uploadhex) refers to socket.o(i.Socket_Send) for Socket_Send
    udpclient.o(i.UDPClient_Uploadhex) refers to udpclient.o(.data) for .data
    udpclient.o(i.UDPClient_Uploadhex) refers to udpclient.o(.bss) for .bss
    global_param.o(i.parameter_init) refers to flash.o(i.FLASH_Read) for FLASH_Read
    global_param.o(i.parameter_init) refers to global_param.o(i.save_com_map_to_flash) for save_com_map_to_flash
    global_param.o(i.parameter_init) refers to global_param.o(.bss) for .bss
    global_param.o(i.save_com_map_to_flash) refers to flash.o(i.FLASH_Prepare) for FLASH_Prepare
    global_param.o(i.save_com_map_to_flash) refers to delay.o(i.Delay_Ms) for Delay_Ms
    global_param.o(i.save_com_map_to_flash) refers to flash.o(i.FLASH_Write) for FLASH_Write
    global_param.o(i.save_com_map_to_flash) refers to global_param.o(.bss) for .bss
    app.o(i.HexToAsciiSendUDP) refers to printfa.o(i.__0sprintf) for __2sprintf
    app.o(i.HexToAsciiSendUDP) refers to udpclient.o(i.UDPClient_Uploadhex) for UDPClient_Uploadhex
    app.o(i.HexToAsciiSendUDP) refers to app.o(.bss) for .bss
    app.o(i.IdleTask) refers to stm32l0xx_hal_cortex.o(i.HAL_NVIC_SystemReset) for HAL_NVIC_SystemReset
    app.o(i.IdleTask) refers to global_param.o(.bss) for g_com_map
    app.o(i.LBSLocationCallback) refers to printfa.o(i.__0snprintf) for __2snprintf
    app.o(i.LBSLocationCallback) refers to memcpya.o(.text) for __aeabi_memcpy
    app.o(i.LBSLocationCallback) refers to hido_util.o(i.HIDO_UtilSnprintf) for HIDO_UtilSnprintf
    app.o(i.LBSLocationCallback) refers to socket.o(i.Socket_Send) for Socket_Send
    app.o(i.LBSLocationCallback) refers to app.o(.data) for .data
    app.o(i.LBSLocationCallback) refers to main.o(.data) for bat_percent
    app.o(i.LBSLocationCallback) refers to global_param.o(.bss) for g_com_map
    app.o(i.Main_Poll) refers to app.o(i.IdleTask) for IdleTask
    app.o(i.Main_Poll) refers to stm32l0xx_hal_iwdg.o(i.HAL_IWDG_Refresh) for HAL_IWDG_Refresh
    app.o(i.Main_Poll) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    app.o(i.Main_Poll) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_ReadPin) for HAL_GPIO_ReadPin
    app.o(i.Main_Poll) refers to app.o(i.PowerLedTask) for PowerLedTask
    app.o(i.Main_Poll) refers to dbg.o(i.DBG_Poll) for DBG_Poll
    app.o(i.Main_Poll) refers to stm32l0xx_hal_cortex.o(i.HAL_NVIC_SystemReset) for HAL_NVIC_SystemReset
    app.o(i.Main_Poll) refers to app.o(i.Stop_Mode_Poll) for Stop_Mode_Poll
    app.o(i.Main_Poll) refers to stm32l0xx_hal_pwr.o(i.HAL_PWR_EnterSTOPMode) for HAL_PWR_EnterSTOPMode
    app.o(i.Main_Poll) refers to gps.o(i.GPS_Poll) for GPS_Poll
    app.o(i.Main_Poll) refers to internet.o(i.Internet_Poll) for Internet_Poll
    app.o(i.Main_Poll) refers to hido_timer.o(i.HIDO_TimerPoll) for HIDO_TimerPoll
    app.o(i.Main_Poll) refers to hido_atlite.o(i.HIDO_ATLitePoll) for HIDO_ATLitePoll
    app.o(i.Main_Poll) refers to udpclient.o(i.UDPClient_Poll) for UDPClient_Poll
    app.o(i.Main_Poll) refers to app.o(i.Uwb_Zubao_Poll) for Uwb_Zubao_Poll
    app.o(i.Main_Poll) refers to udpclient.o(i.UDPClient_UploadGPS) for UDPClient_UploadGPS
    app.o(i.Main_Poll) refers to app.o(i.HexToAsciiSendUDP) for HexToAsciiSendUDP
    app.o(i.Main_Poll) refers to module.o(i.Module_GetLBSLocationAsync) for Module_GetLBSLocationAsync
    app.o(i.Main_Poll) refers to main.o(.bss) for hiwdg
    app.o(i.Main_Poll) refers to main.o(.data) for bat_percent
    app.o(i.Main_Poll) refers to app.o(.data) for .data
    app.o(i.Main_Poll) refers to udpclient.o(.data) for receive3_gotosleep_flag
    app.o(i.Main_Poll) refers to dw_mbx_tag.o(.data) for taglist_num
    app.o(i.Main_Poll) refers to app.o(.bss) for .bss
    app.o(i.Main_Poll) refers to global_param.o(.bss) for g_com_map
    app.o(i.Main_Poll) refers to app.o(i.LBSLocationCallback) for LBSLocationCallback
    app.o(i.PowerLedTask) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_ReadPin) for HAL_GPIO_ReadPin
    app.o(i.PowerLedTask) refers to dbg.o(i.DBG_SetMode) for DBG_SetMode
    app.o(i.PowerLedTask) refers to stm32l0xx_hal_iwdg.o(i.HAL_IWDG_Refresh) for HAL_IWDG_Refresh
    app.o(i.PowerLedTask) refers to dbg.o(i.DBG_Poll) for DBG_Poll
    app.o(i.PowerLedTask) refers to app.o(i.IdleTask) for IdleTask
    app.o(i.PowerLedTask) refers to app.o(i.Stop_chongdian_Mode_Poll) for Stop_chongdian_Mode_Poll
    app.o(i.PowerLedTask) refers to stm32l0xx_hal_pwr.o(i.HAL_PWR_EnterSTOPMode) for HAL_PWR_EnterSTOPMode
    app.o(i.PowerLedTask) refers to stm32l0xx_hal_cortex.o(i.HAL_NVIC_SystemReset) for HAL_NVIC_SystemReset
    app.o(i.PowerLedTask) refers to internet.o(i.Internet_Poll) for Internet_Poll
    app.o(i.PowerLedTask) refers to hido_timer.o(i.HIDO_TimerPoll) for HIDO_TimerPoll
    app.o(i.PowerLedTask) refers to hido_atlite.o(i.HIDO_ATLitePoll) for HIDO_ATLitePoll
    app.o(i.PowerLedTask) refers to udpclient.o(i.UDPClient_Poll) for UDPClient_Poll
    app.o(i.PowerLedTask) refers to gps.o(i.GPS_Poll) for GPS_Poll
    app.o(i.PowerLedTask) refers to app.o(i.Uwb_Zubao_Poll) for Uwb_Zubao_Poll
    app.o(i.PowerLedTask) refers to udpclient.o(i.UDPClient_UploadGPS) for UDPClient_UploadGPS
    app.o(i.PowerLedTask) refers to app.o(i.HexToAsciiSendUDP) for HexToAsciiSendUDP
    app.o(i.PowerLedTask) refers to module.o(i.Module_GetLBSLocationAsync) for Module_GetLBSLocationAsync
    app.o(i.PowerLedTask) refers to dbg.o(i.DBG_GetMode) for DBG_GetMode
    app.o(i.PowerLedTask) refers to dbg.o(.data) for chargedbg_flag
    app.o(i.PowerLedTask) refers to app.o(.data) for .data
    app.o(i.PowerLedTask) refers to main.o(.data) for nomove_count
    app.o(i.PowerLedTask) refers to main.o(.bss) for hiwdg
    app.o(i.PowerLedTask) refers to udpclient.o(.data) for receive1_gotosleep_flag
    app.o(i.PowerLedTask) refers to dw_mbx_tag.o(.data) for taglist_num
    app.o(i.PowerLedTask) refers to app.o(.bss) for .bss
    app.o(i.PowerLedTask) refers to global_param.o(.bss) for g_com_map
    app.o(i.PowerLedTask) refers to app.o(i.LBSLocationCallback) for LBSLocationCallback
    app.o(i.Program_Init) refers to global_param.o(i.parameter_init) for parameter_init
    app.o(i.Program_Init) refers to printfa.o(i.__0printf) for __2printf
    app.o(i.Program_Init) refers to global_param.o(.bss) for g_com_map
    app.o(i.Program_Init) refers to app.o(.data) for .data
    app.o(i.Program_Init) refers to main.o(.data) for group_id
    app.o(i.Program_Init) refers to main.o(.data) for dev_id
    app.o(i.Stop_Mode_Poll) refers to gps.o(i.GPS_PowerOff) for GPS_PowerOff
    app.o(i.Stop_Mode_Poll) refers to stm32l0xx_hal_uart.o(i.HAL_UART_DeInit) for HAL_UART_DeInit
    app.o(i.Stop_Mode_Poll) refers to memseta.o(.text) for __aeabi_memclr4
    app.o(i.Stop_Mode_Poll) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_Init) for HAL_GPIO_Init
    app.o(i.Stop_Mode_Poll) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    app.o(i.Stop_Mode_Poll) refers to deca_device.o(i.dwt_configuresleep) for dwt_configuresleep
    app.o(i.Stop_Mode_Poll) refers to deca_device.o(i.dwt_entersleep) for dwt_entersleep
    app.o(i.Stop_Mode_Poll) refers to app.o(.data) for .data
    app.o(i.Stop_Mode_Poll) refers to main.o(.bss) for huart2
    app.o(i.Stop_chongdian_Mode_Poll) refers to gps.o(i.GPS_PowerOff) for GPS_PowerOff
    app.o(i.Stop_chongdian_Mode_Poll) refers to stm32l0xx_hal_uart.o(i.HAL_UART_DeInit) for HAL_UART_DeInit
    app.o(i.Stop_chongdian_Mode_Poll) refers to memseta.o(.text) for __aeabi_memclr4
    app.o(i.Stop_chongdian_Mode_Poll) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_Init) for HAL_GPIO_Init
    app.o(i.Stop_chongdian_Mode_Poll) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    app.o(i.Stop_chongdian_Mode_Poll) refers to deca_device.o(i.dwt_configuresleep) for dwt_configuresleep
    app.o(i.Stop_chongdian_Mode_Poll) refers to deca_device.o(i.dwt_entersleep) for dwt_entersleep
    app.o(i.Stop_chongdian_Mode_Poll) refers to app.o(.data) for .data
    app.o(i.Stop_chongdian_Mode_Poll) refers to main.o(.bss) for huart2
    app.o(i.Uwb_Zubao_Poll) refers to memcpya.o(.text) for __aeabi_memcpy
    app.o(i.Uwb_Zubao_Poll) refers to dw_app.o(i.Checksum_u16) for Checksum_u16
    app.o(i.Uwb_Zubao_Poll) refers to dw_mbx_tag.o(.data) for taglist_num
    app.o(i.Uwb_Zubao_Poll) refers to dw_mbx_tag.o(.bss) for tagdist_list
    app.o(i.Uwb_Zubao_Poll) refers to app.o(.data) for .data
    app.o(i.Uwb_Zubao_Poll) refers to main.o(.data) for dev_id
    app.o(i.Uwb_Zubao_Poll) refers to main.o(.data) for bat_percent
    app.o(i.Uwb_Zubao_Poll) refers to lora.o(.data) for testlorarecve
    dw_app.o(i.Dw1000_Init) refers to dw_driver.o(i.Reset_DW1000) for Reset_DW1000
    dw_app.o(i.Dw1000_Init) refers to spi.o(i.Spi_ChangePrescaler) for Spi_ChangePrescaler
    dw_app.o(i.Dw1000_Init) refers to deca_device.o(i.dwt_initialise) for dwt_initialise
    dw_app.o(i.Dw1000_Init) refers to deca_device.o(i.dwt_configure) for dwt_configure
    dw_app.o(i.Dw1000_Init) refers to deca_device.o(i.dwt_setinterrupt) for dwt_setinterrupt
    dw_app.o(i.Dw1000_Init) refers to deca_device.o(i.dwt_setrxantennadelay) for dwt_setrxantennadelay
    dw_app.o(i.Dw1000_Init) refers to deca_device.o(i.dwt_settxantennadelay) for dwt_settxantennadelay
    dw_app.o(i.Dw1000_Init) refers to deca_device.o(i.dwt_setrxtimeout) for dwt_setrxtimeout
    dw_app.o(i.Dw1000_Init) refers to deca_device.o(i.dwt_rxenable) for dwt_rxenable
    dw_app.o(i.Dw1000_Init) refers to dw_app.o(.data) for .data
    dw_app.o(i.UWB_Wkup) refers to delay.o(i.Delay_Us) for Delay_Us
    dw_app.o(i.UWB_Wkup) refers to deca_device.o(i.dwt_readdevid) for dwt_readdevid
    dw_app.o(i.UWB_Wkup) refers to dw_app.o(.data) for .data
    dw_mbx_tag.o(i.Anchor_RecNearPoll) refers to deca_device.o(i.dwt_readrxtimestamp) for dwt_readrxtimestamp
    dw_mbx_tag.o(i.Anchor_RecNearPoll) refers to deca_device.o(i.dwt_setdelayedtrxtime) for dwt_setdelayedtrxtime
    dw_mbx_tag.o(i.Anchor_RecNearPoll) refers to dw_mbx_tag.o(i.resp_msg_set_ts) for resp_msg_set_ts
    dw_mbx_tag.o(i.Anchor_RecNearPoll) refers to deca_device.o(i.dwt_writetxdata) for dwt_writetxdata
    dw_mbx_tag.o(i.Anchor_RecNearPoll) refers to deca_device.o(i.dwt_writetxfctrl) for dwt_writetxfctrl
    dw_mbx_tag.o(i.Anchor_RecNearPoll) refers to deca_device.o(i.dwt_starttx) for dwt_starttx
    dw_mbx_tag.o(i.Anchor_RecNearPoll) refers to stm32l0xx_hal_lptim.o(i.HAL_LPTIM_ReadCounter) for HAL_LPTIM_ReadCounter
    dw_mbx_tag.o(i.Anchor_RecNearPoll) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    dw_mbx_tag.o(i.Anchor_RecNearPoll) refers to dw_mbx_tag.o(.bss) for .bss
    dw_mbx_tag.o(i.Anchor_RecNearPoll) refers to main.o(.data) for dev_id
    dw_mbx_tag.o(i.Anchor_RecNearPoll) refers to dw_mbx_tag.o(.data) for .data
    dw_mbx_tag.o(i.Anchor_RecNearPoll) refers to global_param.o(.bss) for g_com_map
    dw_mbx_tag.o(i.Anchor_RecNearPoll) refers to main.o(.data) for group_id
    dw_mbx_tag.o(i.Anchor_RecNearPoll) refers to main.o(.bss) for hlptim1
    dw_mbx_tag.o(i.CmpTagInList) refers to memcmp.o(.text) for memcmp
    dw_mbx_tag.o(i.CmpTagInList) refers to dw_mbx_tag.o(.bss) for .bss
    dw_mbx_tag.o(i.CmpTagInList) refers to dw_mbx_tag.o(.data) for .data
    dw_mbx_tag.o(i.MbxTagUwbRec) refers to stm32l0xx_hal_rcc.o(i.HAL_RCC_GetPCLK1Freq) for HAL_RCC_GetPCLK1Freq
    dw_mbx_tag.o(i.MbxTagUwbRec) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    dw_mbx_tag.o(i.MbxTagUwbRec) refers to deca_device.o(i.dwt_setinterrupt) for dwt_setinterrupt
    dw_mbx_tag.o(i.MbxTagUwbRec) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    dw_mbx_tag.o(i.MbxTagUwbRec) refers to deca_device.o(i.dwt_readrxdata) for dwt_readrxdata
    dw_mbx_tag.o(i.MbxTagUwbRec) refers to memcpya.o(.text) for __aeabi_memcpy
    dw_mbx_tag.o(i.MbxTagUwbRec) refers to dw_mbx_tag.o(i.CmpTagInList) for CmpTagInList
    dw_mbx_tag.o(i.MbxTagUwbRec) refers to dw_mbx_tag.o(i.Anchor_RecNearPoll) for Anchor_RecNearPoll
    dw_mbx_tag.o(i.MbxTagUwbRec) refers to deca_device.o(i.dwt_forcetrxoff) for dwt_forcetrxoff
    dw_mbx_tag.o(i.MbxTagUwbRec) refers to deca_device.o(i.dwt_setrxtimeout) for dwt_setrxtimeout
    dw_mbx_tag.o(i.MbxTagUwbRec) refers to deca_device.o(i.dwt_rxenable) for dwt_rxenable
    dw_mbx_tag.o(i.MbxTagUwbRec) refers to dw_mbx_tag.o(.data) for .data
    dw_mbx_tag.o(i.MbxTagUwbRec) refers to dw_mbx_tag.o(.bss) for .bss
    dw_mbx_tag.o(i.MbxTagUwbRec) refers to main.o(.data) for group_id
    dw_mbx_tag.o(i.MbxTagUwbRec) refers to app.o(.data) for fangchai_flag
    dw_mbx_tag.o(i.MbxTagUwbRec) refers to main.o(.data) for uwbled
    dw_mbx_tag.o(i.MbxTagUwbRec) refers to main.o(.data) for dev_id
    dw_mbx_tag.o(i.TagListUpdate) refers to dw_mbx_tag.o(.data) for .data
    dw_mbx_tag.o(i.TagListUpdate) refers to dw_mbx_tag.o(.bss) for .bss
    dw_mbx_tag.o(i.resp_msg_set_ts) refers to llushr.o(.text) for __aeabi_llsr
    dw_driver.o(i.Reset_DW1000) refers to memseta.o(.text) for __aeabi_memclr4
    dw_driver.o(i.Reset_DW1000) refers to dw_driver.o(i.delay_ms) for delay_ms
    dw_driver.o(i.Reset_DW1000) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    dw_driver.o(i.Reset_DW1000) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_Init) for HAL_GPIO_Init
    dw_driver.o(i.delay_ms) refers to delay.o(i.Delay_Us) for Delay_Us
    ws2812.o(i.RGB_Rst) refers to ws2812.o(i.w28delay) for w28delay
    ws2812.o(i.RGB_Set) refers to ws2812.o(i.RGB_Set_RED) for RGB_Set_RED
    ws2812.o(i.RGB_Set) refers to ws2812.o(i.RGB_Set_GREEN) for RGB_Set_GREEN
    ws2812.o(i.RGB_Set) refers to ws2812.o(i.RGB_Set_WHITE) for RGB_Set_WHITE
    ws2812.o(i.RGB_Set) refers to ws2812.o(i.RGB_Set_BLUE) for RGB_Set_BLUE
    ws2812.o(i.RGB_Set) refers to ws2812.o(i.RGB_Set_LEDOFF) for RGB_Set_LEDOFF
    ws2812.o(i.RGB_Set_BLUE) refers to ws2812.o(i.RGB_Set_Down) for RGB_Set_Down
    ws2812.o(i.RGB_Set_BLUE) refers to ws2812.o(i.RGB_Set_Up) for RGB_Set_Up
    ws2812.o(i.RGB_Set_GREEN) refers to ws2812.o(i.RGB_Set_Up) for RGB_Set_Up
    ws2812.o(i.RGB_Set_GREEN) refers to ws2812.o(i.RGB_Set_Down) for RGB_Set_Down
    ws2812.o(i.RGB_Set_LEDOFF) refers to ws2812.o(i.RGB_Set_Down) for RGB_Set_Down
    ws2812.o(i.RGB_Set_RED) refers to ws2812.o(i.RGB_Set_Down) for RGB_Set_Down
    ws2812.o(i.RGB_Set_RED) refers to ws2812.o(i.RGB_Set_Up) for RGB_Set_Up
    ws2812.o(i.RGB_Set_WHITE) refers to ws2812.o(i.RGB_Set_Up) for RGB_Set_Up
    ws2812.o(i.Set4LEDColor) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    ws2812.o(i.Set4LEDColor) refers to ws2812.o(i.RGB_Rst) for RGB_Rst
    ws2812.o(i.Set4LEDColor) refers to ws2812.o(i.RGB_Set) for RGB_Set
    ws2812.o(i.Set4LEDColor_Off) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    serial_at_cmd_app.o(i.SendComMap) refers to memcpya.o(.text) for __aeabi_memcpy
    serial_at_cmd_app.o(i.SendComMap) refers to dw_app.o(i.Checksum_u16) for Checksum_u16
    serial_at_cmd_app.o(i.SendComMap) refers to stm32l0xx_hal_uart.o(i.HAL_UART_Transmit) for HAL_UART_Transmit
    serial_at_cmd_app.o(i.SendComMap) refers to serial_at_cmd_app.o(.bss) for .bss
    serial_at_cmd_app.o(i.SendComMap) refers to global_param.o(.bss) for g_com_map
    serial_at_cmd_app.o(i.SendComMap) refers to main.o(.bss) for huart1
    serial_at_cmd_app.o(i.UpdateProcess) refers to global_param.o(i.save_com_map_to_flash) for save_com_map_to_flash
    serial_at_cmd_app.o(i.UpdateProcess) refers to delay.o(i.Delay_Ms) for Delay_Ms
    serial_at_cmd_app.o(i.UpdateProcess) refers to flash.o(i.FLASH_Prepare) for FLASH_Prepare
    serial_at_cmd_app.o(i.UpdateProcess) refers to flash.o(i.FLASH_Write) for FLASH_Write
    serial_at_cmd_app.o(i.UpdateProcess) refers to global_param.o(.bss) for g_com_map
    serial_at_cmd_app.o(i.UsartParseDataHandler) refers to serial_at_cmd_app.o(i.UpdateProcess) for UpdateProcess
    serial_at_cmd_app.o(i.UsartParseDataHandler) refers to memcpya.o(.text) for __aeabi_memcpy
    serial_at_cmd_app.o(i.UsartParseDataHandler) refers to global_param.o(i.save_com_map_to_flash) for save_com_map_to_flash
    serial_at_cmd_app.o(i.UsartParseDataHandler) refers to delay.o(i.Delay_Ms) for Delay_Ms
    serial_at_cmd_app.o(i.UsartParseDataHandler) refers to serial_at_cmd_app.o(i.SendComMap) for SendComMap
    serial_at_cmd_app.o(i.UsartParseDataHandler) refers to serial_at_cmd_app.o(.data) for .data
    serial_at_cmd_app.o(i.UsartParseDataHandler) refers to serial_at_cmd_app.o(.bss) for .bss
    serial_at_cmd_app.o(i.UsartParseDataHandler) refers to global_param.o(.bss) for g_com_map
    shell.o(i.Shell_ATCmd) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_ATCmd) refers to module.o(i.Module_RunATCmd) for Module_RunATCmd
    shell.o(i.Shell_CloseWireless) refers to module.o(i.Module_PowerOff) for Module_PowerOff
    shell.o(i.Shell_CloseWireless) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_DBGMode) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_DBGMode) refers to atoi.o(.text) for atoi
    shell.o(i.Shell_DBGMode) refers to dbg.o(i.DBG_SetMode) for DBG_SetMode
    shell.o(i.Shell_DEVID) refers to atoi.o(.text) for atoi
    shell.o(i.Shell_DEVID) refers to uidiv.o(.text) for __aeabi_uidivmod
    shell.o(i.Shell_DEVID) refers to global_param.o(i.save_com_map_to_flash) for save_com_map_to_flash
    shell.o(i.Shell_DEVID) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_DEVID) refers to global_param.o(.bss) for g_com_map
    shell.o(i.Shell_DEVID) refers to main.o(.data) for dev_id
    shell.o(i.Shell_DebugOff) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_DebugOn) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_GPSBaudRate) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_GPSBaudRate) refers to atoi.o(.text) for atoi
    shell.o(i.Shell_GPSBaudRate) refers to global_param.o(i.save_com_map_to_flash) for save_com_map_to_flash
    shell.o(i.Shell_GPSBaudRate) refers to uart.o(i.Uart_ReConfigBaudRate) for Uart_ReConfigBaudRate
    shell.o(i.Shell_GPSBaudRate) refers to global_param.o(.bss) for g_com_map
    shell.o(i.Shell_Info) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_Info) refers to module.o(i.Module_GetIMEI) for Module_GetIMEI
    shell.o(i.Shell_Info) refers to module.o(i.Module_GetCCID) for Module_GetCCID
    shell.o(i.Shell_Info) refers to module.o(i.Module_GetIMSI) for Module_GetIMSI
    shell.o(i.Shell_Init) refers to hido_shell.o(i.HIDO_ShellCmdRegister) for HIDO_ShellCmdRegister
    shell.o(i.Shell_Init) refers to shell.o(.constdata) for .constdata
    shell.o(i.Shell_Log) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_LogClean) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_LogPrint) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_OpenWireless) refers to module.o(i.Module_PowerOn) for Module_PowerOn
    shell.o(i.Shell_OpenWireless) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_PowerOff) refers to module.o(i.Module_PowerOff) for Module_PowerOff
    shell.o(i.Shell_PowerOff) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_PowerOn) refers to module.o(i.Module_PowerOn) for Module_PowerOn
    shell.o(i.Shell_PowerOn) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_RTCAlarm) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_RTCSet) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_Reboot) refers to stm32l0xx_hal_cortex.o(i.HAL_NVIC_SystemReset) for HAL_NVIC_SystemReset
    shell.o(i.Shell_SetDataRate) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_SetDataRate) refers to atoi.o(.text) for atoi
    shell.o(i.Shell_SetDataRate) refers to idiv.o(.text) for __aeabi_idivmod
    shell.o(i.Shell_SetDataRate) refers to global_param.o(i.save_com_map_to_flash) for save_com_map_to_flash
    shell.o(i.Shell_SetDataRate) refers to global_param.o(.bss) for g_com_map
    shell.o(i.Shell_SetGpsUpdateTime) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_SetGpsUpdateTime) refers to atoi.o(.text) for atoi
    shell.o(i.Shell_SetGpsUpdateTime) refers to global_param.o(i.save_com_map_to_flash) for save_com_map_to_flash
    shell.o(i.Shell_SetGpsUpdateTime) refers to global_param.o(.bss) for g_com_map
    shell.o(i.Shell_SetNtrip) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_SetNtrip) refers to global_param.o(i.save_com_map_to_flash) for save_com_map_to_flash
    shell.o(i.Shell_SetNtrip) refers to global_param.o(.bss) for g_com_map
    shell.o(i.Shell_SetQXWZ) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_SetQXWZ) refers to global_param.o(i.save_com_map_to_flash) for save_com_map_to_flash
    shell.o(i.Shell_SetQXWZ) refers to global_param.o(.bss) for g_com_map
    shell.o(i.Shell_SetRTCMMode) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_SetRTCMMode) refers to hido_util.o(i.HIDO_UtilIPStringToByteArrary) for HIDO_UtilIPStringToByteArrary
    shell.o(i.Shell_SetRTCMMode) refers to hido_util.o(i.HIDO_UtilStrToInt) for HIDO_UtilStrToInt
    shell.o(i.Shell_SetRTCMMode) refers to global_param.o(i.save_com_map_to_flash) for save_com_map_to_flash
    shell.o(i.Shell_SetRTCMMode) refers to global_param.o(.bss) for g_com_map
    shell.o(i.Shell_SetRTCMTCPInfo) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_SetRTCMTCPInfo) refers to hido_util.o(i.HIDO_UtilIPStringToByteArrary) for HIDO_UtilIPStringToByteArrary
    shell.o(i.Shell_SetRTCMTCPInfo) refers to hido_util.o(i.HIDO_UtilStrToInt) for HIDO_UtilStrToInt
    shell.o(i.Shell_SetRTCMTCPInfo) refers to global_param.o(i.save_com_map_to_flash) for save_com_map_to_flash
    shell.o(i.Shell_SetRTCMTCPInfo) refers to global_param.o(.bss) for g_com_map
    shell.o(i.Shell_SetServerInfo) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_SetServerInfo) refers to hido_util.o(i.HIDO_UtilIPStringToByteArrary) for HIDO_UtilIPStringToByteArrary
    shell.o(i.Shell_SetServerInfo) refers to hido_util.o(i.HIDO_UtilStrToInt) for HIDO_UtilStrToInt
    shell.o(i.Shell_SetServerInfo) refers to global_param.o(i.save_com_map_to_flash) for save_com_map_to_flash
    shell.o(i.Shell_SetServerInfo) refers to global_param.o(.bss) for g_com_map
    shell.o(i.Shell_SetUWBEnable) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_SetUWBEnable) refers to hido_util.o(i.HIDO_UtilIPStringToByteArrary) for HIDO_UtilIPStringToByteArrary
    shell.o(i.Shell_SetUWBEnable) refers to hido_util.o(i.HIDO_UtilStrToInt) for HIDO_UtilStrToInt
    shell.o(i.Shell_SetUWBEnable) refers to global_param.o(i.save_com_map_to_flash) for save_com_map_to_flash
    shell.o(i.Shell_SetUWBEnable) refers to global_param.o(.bss) for g_com_map
    shell.o(i.Shell_Set_Chaichugps_S) refers to atoi.o(.text) for atoi
    shell.o(i.Shell_Set_Chaichugps_S) refers to global_param.o(i.save_com_map_to_flash) for save_com_map_to_flash
    shell.o(i.Shell_Set_Chaichugps_S) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_Set_Chaichugps_S) refers to global_param.o(.bss) for g_com_map
    shell.o(i.Shell_Set_Gps_S) refers to atoi.o(.text) for atoi
    shell.o(i.Shell_Set_Gps_S) refers to global_param.o(i.save_com_map_to_flash) for save_com_map_to_flash
    shell.o(i.Shell_Set_Gps_S) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_Set_Gps_S) refers to global_param.o(.bss) for g_com_map
    shell.o(i.Shell_SocketEventProc) refers to dbg.o(i.HIDO_Debug) for HIDO_Debug
    shell.o(i.Shell_TCPClose) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_TCPClose) refers to atoi.o(.text) for atoi
    shell.o(i.Shell_TCPClose) refers to socket.o(i.Socket_Close) for Socket_Close
    shell.o(i.Shell_TCPConnect) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_TCPConnect) refers to atoi.o(.text) for atoi
    shell.o(i.Shell_TCPConnect) refers to socket.o(i.Socket_Connect) for Socket_Connect
    shell.o(i.Shell_TCPCreate) refers to socket.o(i.Socket_Create) for Socket_Create
    shell.o(i.Shell_TCPCreate) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_TCPCreate) refers to shell.o(i.Shell_SocketEventProc) for Shell_SocketEventProc
    shell.o(i.Shell_TCPSend) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_TCPSend) refers to atoi.o(.text) for atoi
    shell.o(i.Shell_TCPSend) refers to strlen.o(.text) for strlen
    shell.o(i.Shell_TCPSend) refers to socket.o(i.Socket_Send) for Socket_Send
    shell.o(i.Shell_Update) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    shell.o(i.Shell_Update) refers to spiflash.o(i.SPIFlash_Erase) for SPIFlash_Erase
    shell.o(i.Shell_Update) refers to spiflash.o(i.SPIFlash_Write) for SPIFlash_Write
    shell.o(i.Shell_Update) refers to global_param.o(.bss) for g_com_map
    shell.o(.constdata) refers to shell.o(.conststring) for .conststring
    shell.o(.constdata) refers to shell.o(i.Shell_Test) for Shell_Test
    shell.o(.constdata) refers to shell.o(i.Shell_Reboot) for Shell_Reboot
    shell.o(.constdata) refers to shell.o(i.Shell_RTCSet) for Shell_RTCSet
    shell.o(.constdata) refers to shell.o(i.Shell_RTCAlarm) for Shell_RTCAlarm
    shell.o(.constdata) refers to shell.o(i.Shell_RTCGet) for Shell_RTCGet
    shell.o(.constdata) refers to shell.o(i.Shell_Sleep) for Shell_Sleep
    shell.o(.constdata) refers to shell.o(i.Shell_Info) for Shell_Info
    shell.o(.constdata) refers to shell.o(i.Shell_ATCmd) for Shell_ATCmd
    shell.o(.constdata) refers to shell.o(i.Shell_DebugOn) for Shell_DebugOn
    shell.o(.constdata) refers to shell.o(i.Shell_DebugOff) for Shell_DebugOff
    shell.o(.constdata) refers to shell.o(i.Shell_CloseWireless) for Shell_CloseWireless
    shell.o(.constdata) refers to shell.o(i.Shell_OpenWireless) for Shell_OpenWireless
    shell.o(.constdata) refers to shell.o(i.Shell_PowerOn) for Shell_PowerOn
    shell.o(.constdata) refers to shell.o(i.Shell_PowerOff) for Shell_PowerOff
    shell.o(.constdata) refers to shell.o(i.Shell_Update) for Shell_Update
    shell.o(.constdata) refers to shell.o(i.Shell_TCPCreate) for Shell_TCPCreate
    shell.o(.constdata) refers to shell.o(i.Shell_TCPConnect) for Shell_TCPConnect
    shell.o(.constdata) refers to shell.o(i.Shell_TCPSend) for Shell_TCPSend
    shell.o(.constdata) refers to shell.o(i.Shell_TCPClose) for Shell_TCPClose
    shell.o(.constdata) refers to shell.o(i.Shell_DBGMode) for Shell_DBGMode
    shell.o(.constdata) refers to shell.o(i.Shell_GPSBaudRate) for Shell_GPSBaudRate
    shell.o(.constdata) refers to shell.o(i.Shell_SetDataRate) for Shell_SetDataRate
    shell.o(.constdata) refers to shell.o(i.Shell_DEVID) for Shell_DEVID
    shell.o(.constdata) refers to shell.o(i.Shell_SetServerInfo) for Shell_SetServerInfo
    shell.o(.constdata) refers to shell.o(i.Shell_Set_Gps_S) for Shell_Set_Gps_S
    shell.o(.constdata) refers to shell.o(i.Shell_Set_Chaichugps_S) for Shell_Set_Chaichugps_S
    shell.o(.constdata) refers to shell.o(i.Shell_SetRTCMTCPInfo) for Shell_SetRTCMTCPInfo
    shell.o(.constdata) refers to shell.o(i.Shell_SetGpsUpdateTime) for Shell_SetGpsUpdateTime
    shell.o(.constdata) refers to shell.o(i.Shell_SetQXWZ) for Shell_SetQXWZ
    shell.o(.constdata) refers to shell.o(i.Shell_SetRTCMMode) for Shell_SetRTCMMode
    shell.o(.constdata) refers to shell.o(i.Shell_SetUWBEnable) for Shell_SetUWBEnable
    shell.o(.constdata) refers to shell.o(i.Shell_SetNtrip) for Shell_SetNtrip
    shell.o(.constdata) refers to shell.o(i.Shell_OTA) for Shell_OTA
    shell.o(.constdata) refers to shell.o(i.Shell_LogUpload) for Shell_LogUpload
    shell.o(.constdata) refers to shell.o(i.Shell_Log) for Shell_Log
    shell.o(.constdata) refers to shell.o(i.Shell_LogClean) for Shell_LogClean
    shell.o(.constdata) refers to shell.o(i.Shell_LogPrint) for Shell_LogPrint
    shell.o(.constdata) refers to shell.o(i.Shell_AudioVolume) for Shell_AudioVolume
    shell.o(.constdata) refers to shell.o(i.Shell_TTSPlay) for Shell_TTSPlay
    lis3dh_driver.o(i.IIC2_Ack) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    lis3dh_driver.o(i.IIC2_Ack) refers to lis3dh_driver.o(i.delay_us) for delay_us
    lis3dh_driver.o(i.IIC2_Init) refers to memseta.o(.text) for __aeabi_memclr4
    lis3dh_driver.o(i.IIC2_Init) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_Init) for HAL_GPIO_Init
    lis3dh_driver.o(i.IIC2_Init) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    lis3dh_driver.o(i.IIC2_NAck) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    lis3dh_driver.o(i.IIC2_NAck) refers to lis3dh_driver.o(i.delay_us) for delay_us
    lis3dh_driver.o(i.IIC2_Read_Byte) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    lis3dh_driver.o(i.IIC2_Read_Byte) refers to lis3dh_driver.o(i.delay_us) for delay_us
    lis3dh_driver.o(i.IIC2_Read_Byte) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_ReadPin) for HAL_GPIO_ReadPin
    lis3dh_driver.o(i.IIC2_Read_Byte) refers to lis3dh_driver.o(i.IIC2_Ack) for IIC2_Ack
    lis3dh_driver.o(i.IIC2_Read_Byte) refers to lis3dh_driver.o(i.IIC2_NAck) for IIC2_NAck
    lis3dh_driver.o(i.IIC2_Send_Byte) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    lis3dh_driver.o(i.IIC2_Send_Byte) refers to lis3dh_driver.o(i.delay_us) for delay_us
    lis3dh_driver.o(i.IIC2_Start) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    lis3dh_driver.o(i.IIC2_Start) refers to lis3dh_driver.o(i.delay_us) for delay_us
    lis3dh_driver.o(i.IIC2_Stop) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    lis3dh_driver.o(i.IIC2_Stop) refers to lis3dh_driver.o(i.delay_us) for delay_us
    lis3dh_driver.o(i.IIC2_Wait_Ack) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    lis3dh_driver.o(i.IIC2_Wait_Ack) refers to lis3dh_driver.o(i.delay_us) for delay_us
    lis3dh_driver.o(i.IIC2_Wait_Ack) refers to lis3dh_driver.o(i.IIC2_Stop) for IIC2_Stop
    lis3dh_driver.o(i.IIC2_Wait_Ack) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_ReadPin) for HAL_GPIO_ReadPin
    lis3dh_driver.o(i.LIS3DH_Data_Init) refers to lis3dh_driver.o(i.LIS3DH_GetWHO_AM_I) for LIS3DH_GetWHO_AM_I
    lis3dh_driver.o(i.LIS3DH_Data_Init) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_Data_Init) refers to lis3dh_driver.o(i.delay_us) for delay_us
    lis3dh_driver.o(i.LIS3DH_Data_Init) refers to lis3dh_driver.o(.data) for .data
    lis3dh_driver.o(i.LIS3DH_Data_Init) refers to global_param.o(.bss) for g_com_map
    lis3dh_driver.o(i.LIS3DH_ENTER_STY_Init) refers to lis3dh_driver.o(i.LIS3DH_SetODR) for LIS3DH_SetODR
    lis3dh_driver.o(i.LIS3DH_ENTER_STY_Init) refers to lis3dh_driver.o(i.LIS3DH_SetMode) for LIS3DH_SetMode
    lis3dh_driver.o(i.LIS3DH_ENTER_STY_Init) refers to lis3dh_driver.o(i.LIS3DH_SetFullScale) for LIS3DH_SetFullScale
    lis3dh_driver.o(i.LIS3DH_ENTER_STY_Init) refers to lis3dh_driver.o(i.LIS3DH_SetInt2Pin) for LIS3DH_SetInt2Pin
    lis3dh_driver.o(i.LIS3DH_ENTER_STY_Init) refers to lis3dh_driver.o(i.LIS3DH_SetAxis) for LIS3DH_SetAxis
    lis3dh_driver.o(i.LIS3DH_ENTER_STY_Init) refers to stm32l0xx_hal.o(i.HAL_Delay) for HAL_Delay
    lis3dh_driver.o(i.LIS3DH_FIFOModeEnable) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_FIFOModeEnable) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_Get6DPosition) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_GetAccAxesRaw) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_GetAuxRaw) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_GetClickResponse) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_GetFifoSourceBit) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_GetFifoSourceFSS) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_GetFifoSourceReg) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_GetInt1Src) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_GetInt1SrcBit) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_GetStatusAUX) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_GetStatusAUXBit) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_GetStatusBit) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_GetStatusReg) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_GetTempRaw) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_GetWHO_AM_I) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_HPFAOI1Enable) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_HPFAOI1Enable) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_HPFAOI2Enable) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_HPFAOI2Enable) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_HPFClickEnable) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_HPFClickEnable) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_Int1LatchEnable) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_Int1LatchEnable) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_ReadLenByte) refers to lis3dh_driver.o(i.LIS3DH_ReadOneByte) for LIS3DH_ReadOneByte
    lis3dh_driver.o(i.LIS3DH_ReadOneByte) refers to lis3dh_driver.o(i.IIC2_Start) for IIC2_Start
    lis3dh_driver.o(i.LIS3DH_ReadOneByte) refers to lis3dh_driver.o(i.IIC2_Send_Byte) for IIC2_Send_Byte
    lis3dh_driver.o(i.LIS3DH_ReadOneByte) refers to lis3dh_driver.o(i.IIC2_Wait_Ack) for IIC2_Wait_Ack
    lis3dh_driver.o(i.LIS3DH_ReadOneByte) refers to lis3dh_driver.o(i.IIC2_Read_Byte) for IIC2_Read_Byte
    lis3dh_driver.o(i.LIS3DH_ReadOneByte) refers to lis3dh_driver.o(i.IIC2_Stop) for IIC2_Stop
    lis3dh_driver.o(i.LIS3DH_ReadReg) refers to lis3dh_driver.o(i.LIS3DH_ReadOneByte) for LIS3DH_ReadOneByte
    lis3dh_driver.o(i.LIS3DH_ResetInt1Latch) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_SetADCAux) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_SetADCAux) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetAxis) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_SetAxis) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetBDU) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_SetBDU) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetBLE) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_SetBLE) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetClickCFG) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_SetClickCFG) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetClickLATENCY) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetClickLIMIT) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetClickTHS) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetClickWINDOW) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetFilterDataSel) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_SetFilterDataSel) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetFullScale) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_SetFullScale) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetHPFCutOFF) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_SetHPFCutOFF) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetHPFMode) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_SetHPFMode) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetInt1Duration) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetInt1Pin) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_SetInt1Pin) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetInt1Threshold) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetInt2Pin) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_SetInt2Pin) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetInt6D4DConfiguration) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_SetInt6D4DConfiguration) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetIntConfiguration) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_SetIntConfiguration) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetIntMode) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_SetIntMode) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetMode) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_SetMode) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetMode) refers to lis3dh_driver.o(.data) for .data
    lis3dh_driver.o(i.LIS3DH_SetODR) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_SetODR) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetSPIInterface) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_SetSPIInterface) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetSelfTest) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_SetSelfTest) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetTemperature) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_SetTemperature) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetTriggerInt) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_SetTriggerInt) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_SetWaterMark) refers to lis3dh_driver.o(i.LIS3DH_ReadReg) for LIS3DH_ReadReg
    lis3dh_driver.o(i.LIS3DH_SetWaterMark) refers to lis3dh_driver.o(i.LIS3DH_WriteReg) for LIS3DH_WriteReg
    lis3dh_driver.o(i.LIS3DH_WriteLenByte) refers to lis3dh_driver.o(i.LIS3DH_WriteOneByte) for LIS3DH_WriteOneByte
    lis3dh_driver.o(i.LIS3DH_WriteOneByte) refers to lis3dh_driver.o(i.IIC2_Start) for IIC2_Start
    lis3dh_driver.o(i.LIS3DH_WriteOneByte) refers to lis3dh_driver.o(i.IIC2_Send_Byte) for IIC2_Send_Byte
    lis3dh_driver.o(i.LIS3DH_WriteOneByte) refers to lis3dh_driver.o(i.IIC2_Wait_Ack) for IIC2_Wait_Ack
    lis3dh_driver.o(i.LIS3DH_WriteOneByte) refers to lis3dh_driver.o(i.IIC2_Stop) for IIC2_Stop
    lis3dh_driver.o(i.LIS3DH_WriteOneByte) refers to lis3dh_driver.o(i.delay_us) for delay_us
    lis3dh_driver.o(i.LIS3DH_WriteReg) refers to lis3dh_driver.o(i.LIS3DH_WriteOneByte) for LIS3DH_WriteOneByte
    lis3dh_driver.o(i.drv_lis2dh12_get_angle) refers to lis3dh_driver.o(i.LIS3DH_SetODR) for LIS3DH_SetODR
    lis3dh_driver.o(i.drv_lis2dh12_get_angle) refers to lis3dh_driver.o(i.LIS3DH_SetMode) for LIS3DH_SetMode
    lis3dh_driver.o(i.drv_lis2dh12_get_angle) refers to lis3dh_driver.o(i.LIS3DH_SetFullScale) for LIS3DH_SetFullScale
    lis3dh_driver.o(i.drv_lis2dh12_get_angle) refers to lis3dh_driver.o(i.LIS3DH_SetAxis) for LIS3DH_SetAxis
    lis3dh_driver.o(i.drv_lis2dh12_get_angle) refers to lis3dh_driver.o(i.LIS3DH_GetWHO_AM_I) for LIS3DH_GetWHO_AM_I
    lis3dh_driver.o(i.drv_lis2dh12_get_angle) refers to lis3dh_driver.o(i.LIS3DH_GetAccAxesRaw) for LIS3DH_GetAccAxesRaw
    lis3dh_driver.o(i.drv_lis2dh12_get_angle) refers to lis3dh_driver.o(i.delay_us) for delay_us
    lis3dh_driver.o(i.drv_lis2dh12_get_angle) refers to fflti.o(.text) for __aeabi_i2f
    lis3dh_driver.o(i.drv_lis2dh12_get_angle) refers to f2d.o(.text) for __aeabi_f2d
    lis3dh_driver.o(i.drv_lis2dh12_get_angle) refers to pow.o(i.pow) for pow
    lis3dh_driver.o(i.drv_lis2dh12_get_angle) refers to dadd.o(.text) for __aeabi_dadd
    lis3dh_driver.o(i.drv_lis2dh12_get_angle) refers to sqrt.o(i.sqrt) for sqrt
    lis3dh_driver.o(i.drv_lis2dh12_get_angle) refers to d2f.o(.text) for __aeabi_d2f
    lis3dh_driver.o(i.drv_lis2dh12_get_angle) refers to cfrcmple.o(.text) for __aeabi_cfrcmple
    lis3dh_driver.o(i.drv_lis2dh12_get_angle) refers to fdiv.o(.text) for __aeabi_fdiv
    lis3dh_driver.o(i.drv_lis2dh12_get_angle) refers to asin.o(i.asin) for asin
    lis3dh_driver.o(i.drv_lis2dh12_get_angle) refers to lis3dh_driver.o(.data) for .data
    dps310.o(i.dps310_config) refers to dps310.o(i.dps310_get_scaling_coef) for dps310_get_scaling_coef
    dps310.o(i.dps310_get_processed_data) refers to dps368_test.o(i.test_read_block) for test_read_block
    dps310.o(i.dps310_get_processed_data) refers to dfltui.o(.text) for __aeabi_ui2d
    dps310.o(i.dps310_get_processed_data) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
    dps310.o(i.dps310_get_processed_data) refers to dadd.o(.text) for __aeabi_dsub
    dps310.o(i.dps310_get_processed_data) refers to ddiv.o(.text) for __aeabi_ddiv
    dps310.o(i.dps310_get_processed_data) refers to dflti.o(.text) for __aeabi_i2d
    dps310.o(i.dps310_get_processed_data) refers to dmul.o(.text) for __aeabi_dmul
    dps310.o(i.dps310_get_processed_data) refers to fflti.o(.text) for __aeabi_i2f
    dps310.o(i.dps310_get_processed_data) refers to fscalb.o(.text) for __ARM_scalbnf
    dps310.o(i.dps310_get_processed_data) refers to f2d.o(.text) for __aeabi_f2d
    dps310.o(i.dps310_get_scaling_coef) refers to stm32l0xx_hal_dma.o(i.__ARM_common_switch8) for __ARM_common_switch8
    dps310.o(i.dps310_init) refers to dps310.o(i.dps310_read_calib_coeffs) for dps310_read_calib_coeffs
    dps310.o(i.dps310_init) refers to dps310.o(i.dps310_config) for dps310_config
    dps310.o(i.dps310_init) refers to dps310.o(i.dps310_resume) for dps310_resume
    dps310.o(i.dps310_init) refers to dps310.o(.data) for .data
    dps310.o(i.dps310_read_calib_coeffs) refers to memseta.o(.text) for __aeabi_memclr4
    dps368_test.o(i.BarInit) refers to dps310.o(i.dps310_init) for dps310_init
    dps368_test.o(i.BarInit) refers to dps310.o(i.dps310_get_processed_data) for dps310_get_processed_data
    dps368_test.o(i.BarInit) refers to dps368_test.o(i.GetPressAndHeight) for GetPressAndHeight
    dps368_test.o(i.BarInit) refers to dps368_test.o(i.test_read_byte) for test_read_byte
    dps368_test.o(i.BarInit) refers to dps368_test.o(i.test_read_block) for test_read_block
    dps368_test.o(i.BarInit) refers to dps368_test.o(i.test_write_byte) for test_write_byte
    dps368_test.o(i.BarInit) refers to dps368_test.o(i.test_wait_ms) for test_wait_ms
    dps368_test.o(i.BarInit) refers to dps368_test.o(.bss) for .bss
    dps368_test.o(i.BarInit) refers to dps368_test.o(.data) for .data
    dps368_test.o(i.GetPressAndHeight) refers to dps310.o(i.dps310_get_processed_data) for dps310_get_processed_data
    dps368_test.o(i.GetPressAndHeight) refers to ddiv.o(.text) for __aeabi_ddiv
    dps368_test.o(i.GetPressAndHeight) refers to pow.o(i.pow) for pow
    dps368_test.o(i.GetPressAndHeight) refers to dadd.o(.text) for __aeabi_drsub
    dps368_test.o(i.GetPressAndHeight) refers to dmul.o(.text) for __aeabi_dmul
    dps368_test.o(i.GetPressAndHeight) refers to d2f.o(.text) for __aeabi_d2f
    dps368_test.o(i.GetPressAndHeight) refers to cdcmple.o(.text) for __aeabi_cdcmpeq
    dps368_test.o(i.GetPressAndHeight) refers to dps368_test.o(.data) for .data
    dps368_test.o(i.GetPressAndHeight) refers to dps368_test.o(.bss) for .bss
    dps368_test.o(i.test_read_block) refers to dps368_test.o(i.test_read_byte) for test_read_byte
    dps368_test.o(i.test_read_byte) refers to lis3dh_driver.o(i.IIC2_Start) for IIC2_Start
    dps368_test.o(i.test_read_byte) refers to lis3dh_driver.o(i.IIC2_Send_Byte) for IIC2_Send_Byte
    dps368_test.o(i.test_read_byte) refers to lis3dh_driver.o(i.IIC2_Wait_Ack) for IIC2_Wait_Ack
    dps368_test.o(i.test_read_byte) refers to lis3dh_driver.o(i.IIC2_Read_Byte) for IIC2_Read_Byte
    dps368_test.o(i.test_read_byte) refers to lis3dh_driver.o(i.IIC2_Stop) for IIC2_Stop
    dps368_test.o(i.test_write_byte) refers to lis3dh_driver.o(i.IIC2_Start) for IIC2_Start
    dps368_test.o(i.test_write_byte) refers to lis3dh_driver.o(i.IIC2_Send_Byte) for IIC2_Send_Byte
    dps368_test.o(i.test_write_byte) refers to lis3dh_driver.o(i.IIC2_Wait_Ack) for IIC2_Wait_Ack
    dps368_test.o(i.test_write_byte) refers to lis3dh_driver.o(i.IIC2_Stop) for IIC2_Stop
    dps368_test.o(i.test_write_byte) refers to lis3dh_driver.o(i.delay_us) for delay_us
    crc.o(i.RadioComputeCRC) refers to crc.o(i.ComputeCrc) for ComputeCrc
    delay.o(i.Delay_Ms) refers to delay.o(i.Delay_Us) for Delay_Us
    delay.o(i.HAL_Delay_nMS) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    lora.o(i.LoraInit) refers to lora.o(i.SwitchLoraSettings) for SwitchLoraSettings
    lora.o(i.LoraInit) refers to lora.o(i.OnTxDone) for OnTxDone
    lora.o(i.LoraInit) refers to lora.o(.bss) for .bss
    lora.o(i.LoraInit) refers to lora.o(i.OnRxDone) for OnRxDone
    lora.o(i.LoraInit) refers to lora.o(i.OnTxTimeout) for OnTxTimeout
    lora.o(i.LoraInit) refers to lora.o(i.OnRxTimeout) for OnRxTimeout
    lora.o(i.LoraInit) refers to lora.o(i.OnRxError) for OnRxError
    lora.o(i.LoraInit) refers to radio.o(.constdata) for Radio
    lora.o(i.LoraInit) refers to global_param.o(.bss) for g_com_map
    lora.o(i.LoraRspWriteCommap) refers to memcpya.o(.text) for __aeabi_memcpy
    lora.o(i.LoraRspWriteCommap) refers to dw_app.o(i.Checksum_u16) for Checksum_u16
    lora.o(i.LoraRspWriteCommap) refers to dw_mbx_tag.o(.bss) for lora_sendbuffer
    lora.o(i.LoraRspWriteCommap) refers to global_param.o(.bss) for g_com_map
    lora.o(i.LoraRspWriteCommap) refers to dw_mbx_tag.o(.data) for wg_report_id
    lora.o(i.LoraRspWriteCommap) refers to radio.o(.constdata) for Radio
    lora.o(i.LoraSendComMap) refers to memcpya.o(.text) for __aeabi_memcpy
    lora.o(i.LoraSendComMap) refers to dw_app.o(i.Checksum_u16) for Checksum_u16
    lora.o(i.LoraSendComMap) refers to dw_mbx_tag.o(.bss) for lora_sendbuffer
    lora.o(i.LoraSendComMap) refers to global_param.o(.bss) for g_com_map
    lora.o(i.LoraSendComMap) refers to dw_mbx_tag.o(.data) for wg_report_id
    lora.o(i.LoraSendComMap) refers to radio.o(.constdata) for Radio
    lora.o(i.OnRxDone) refers to memcpya.o(.text) for __aeabi_memcpy
    lora.o(i.OnRxDone) refers to dw_app.o(i.UWB_Wkup) for UWB_Wkup
    lora.o(i.OnRxDone) refers to dw_mbx_tag.o(i.MbxTagUwbRec) for MbxTagUwbRec
    lora.o(i.OnRxDone) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    lora.o(i.OnRxDone) refers to lora.o(.data) for .data
    lora.o(i.OnRxDone) refers to lora.o(.bss) for .bss
    lora.o(i.OnRxDone) refers to radio.o(.constdata) for Radio
    lora.o(i.OnRxError) refers to lora.o(i.SwitchLoraSettings) for SwitchLoraSettings
    lora.o(i.OnRxError) refers to radio.o(.constdata) for Radio
    lora.o(i.OnRxError) refers to global_param.o(.bss) for g_com_map
    lora.o(i.OnRxTimeout) refers to lora.o(i.SwitchLoraSettings) for SwitchLoraSettings
    lora.o(i.OnRxTimeout) refers to radio.o(.constdata) for Radio
    lora.o(i.OnRxTimeout) refers to global_param.o(.bss) for g_com_map
    lora.o(i.OnTxDone) refers to radio.o(.constdata) for Radio
    lora.o(i.OnTxTimeout) refers to lora.o(i.SwitchLoraSettings) for SwitchLoraSettings
    lora.o(i.OnTxTimeout) refers to radio.o(.constdata) for Radio
    lora.o(i.OnTxTimeout) refers to global_param.o(.bss) for g_com_map
    lora.o(i.SwitchLoraSettings) refers to radio.o(.constdata) for Radio
    lora.o(i.SwitchLoraSettings) refers to lora.o(.data) for .data
    radio.o(i.RadioGetFskBandwidthRegValue) refers to radio.o(.constdata) for .constdata
    radio.o(i.RadioGetStatus) refers to sx126x.o(i.SX126xGetOperatingMode) for SX126xGetOperatingMode
    radio.o(i.RadioInit) refers to sx126x.o(i.SX126xInit) for SX126xInit
    radio.o(i.RadioInit) refers to sx126x.o(i.SX126xSetStandby) for SX126xSetStandby
    radio.o(i.RadioInit) refers to sx126x.o(i.SX126xSetRegulatorMode) for SX126xSetRegulatorMode
    radio.o(i.RadioInit) refers to sx126x.o(i.SX126xSetBufferBaseAddress) for SX126xSetBufferBaseAddress
    radio.o(i.RadioInit) refers to sx126x.o(i.SX126xSetTxParams) for SX126xSetTxParams
    radio.o(i.RadioInit) refers to sx126x.o(i.SX126xSetDioIrqParams) for SX126xSetDioIrqParams
    radio.o(i.RadioInit) refers to radio.o(.data) for .data
    radio.o(i.RadioInit) refers to radio.o(i.RadioOnDioIrq) for RadioOnDioIrq
    radio.o(i.RadioIrqProcess) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_ReadPin) for HAL_GPIO_ReadPin
    radio.o(i.RadioIrqProcess) refers to sx126x.o(i.SX126xGetIrqStatus) for SX126xGetIrqStatus
    radio.o(i.RadioIrqProcess) refers to sx126x.o(i.SX126xClearIrqStatus) for SX126xClearIrqStatus
    radio.o(i.RadioIrqProcess) refers to sx126x.o(i.SX126xGetPayload) for SX126xGetPayload
    radio.o(i.RadioIrqProcess) refers to sx126x.o(i.SX126xGetPacketStatus) for SX126xGetPacketStatus
    radio.o(i.RadioIrqProcess) refers to sx126x.o(i.SX126xGetOperatingMode) for SX126xGetOperatingMode
    radio.o(i.RadioIrqProcess) refers to radio.o(.data) for .data
    radio.o(i.RadioIrqProcess) refers to radio.o(.bss) for .bss
    radio.o(i.RadioIsChannelFree) refers to radio.o(i.RadioSetModem) for RadioSetModem
    radio.o(i.RadioIsChannelFree) refers to sx126x.o(i.SX126xSetRfFrequency) for SX126xSetRfFrequency
    radio.o(i.RadioIsChannelFree) refers to radio.o(i.RadioRx) for RadioRx
    radio.o(i.RadioIsChannelFree) refers to delay.o(i.HAL_Delay_nMS) for HAL_Delay_nMS
    radio.o(i.RadioIsChannelFree) refers to radio.o(i.RadioSleep) for RadioSleep
    radio.o(i.RadioOnDioIrq) refers to radio.o(.data) for .data
    radio.o(i.RadioOnRxTimeoutIrq) refers to radio.o(.data) for .data
    radio.o(i.RadioOnTxTimeoutIrq) refers to radio.o(.data) for .data
    radio.o(i.RadioRandom) refers to radio.o(i.RadioSetModem) for RadioSetModem
    radio.o(i.RadioRandom) refers to sx126x.o(i.SX126xSetRx) for SX126xSetRx
    radio.o(i.RadioRandom) refers to delay.o(i.HAL_Delay_nMS) for HAL_Delay_nMS
    radio.o(i.RadioRandom) refers to sx126x.o(i.SX126xGetRssiInst) for SX126xGetRssiInst
    radio.o(i.RadioRandom) refers to radio.o(i.RadioSleep) for RadioSleep
    radio.o(i.RadioRead) refers to sx126x-board.o(i.SX126xReadRegister) for SX126xReadRegister
    radio.o(i.RadioReadBuffer) refers to sx126x-board.o(i.SX126xReadRegisters) for SX126xReadRegisters
    radio.o(i.RadioReadFifo) refers to sx126x-board.o(i.SX126xReadBuffer) for SX126xReadBuffer
    radio.o(i.RadioRssi) refers to sx126x.o(i.SX126xGetRssiInst) for SX126xGetRssiInst
    radio.o(i.RadioRx) refers to sx126x.o(i.SX126xSetDioIrqParams) for SX126xSetDioIrqParams
    radio.o(i.RadioRx) refers to sx126x.o(i.SX126xSetRx) for SX126xSetRx
    radio.o(i.RadioRx) refers to radio.o(.data) for .data
    radio.o(i.RadioRxBoosted) refers to sx126x.o(i.SX126xSetDioIrqParams) for SX126xSetDioIrqParams
    radio.o(i.RadioRxBoosted) refers to sx126x.o(i.SX126xSetRxBoosted) for SX126xSetRxBoosted
    radio.o(i.RadioRxBoosted) refers to radio.o(.data) for .data
    radio.o(i.RadioSend) refers to sx126x.o(i.SX126xSetDioIrqParams) for SX126xSetDioIrqParams
    radio.o(i.RadioSend) refers to sx126x.o(i.SX126xGetPacketType) for SX126xGetPacketType
    radio.o(i.RadioSend) refers to sx126x.o(i.SX126xSetPacketParams) for SX126xSetPacketParams
    radio.o(i.RadioSend) refers to sx126x.o(i.SX126xSendPayload) for SX126xSendPayload
    radio.o(i.RadioSend) refers to radio.o(.bss) for .bss
    radio.o(i.RadioSetChannel) refers to sx126x.o(i.SX126xSetRfFrequency) for SX126xSetRfFrequency
    radio.o(i.RadioSetMaxPayloadLength) refers to sx126x.o(i.SX126xSetPacketParams) for SX126xSetPacketParams
    radio.o(i.RadioSetMaxPayloadLength) refers to radio.o(.data) for .data
    radio.o(i.RadioSetMaxPayloadLength) refers to radio.o(.bss) for .bss
    radio.o(i.RadioSetModem) refers to sx126x.o(i.SX126xSetPacketType) for SX126xSetPacketType
    radio.o(i.RadioSetModem) refers to radio.o(i.RadioSetPublicNetwork) for RadioSetPublicNetwork
    radio.o(i.RadioSetModem) refers to radio.o(.data) for .data
    radio.o(i.RadioSetPublicNetwork) refers to radio.o(i.RadioSetModem) for RadioSetModem
    radio.o(i.RadioSetPublicNetwork) refers to sx126x-board.o(i.SX126xWriteRegister) for SX126xWriteRegister
    radio.o(i.RadioSetPublicNetwork) refers to radio.o(.data) for .data
    radio.o(i.RadioSetRxConfig) refers to sx126x.o(i.SX126xSetStopRxTimerOnPreambleDetect) for SX126xSetStopRxTimerOnPreambleDetect
    radio.o(i.RadioSetRxConfig) refers to sx126x.o(i.SX126xSetLoRaSymbNumTimeout) for SX126xSetLoRaSymbNumTimeout
    radio.o(i.RadioSetRxConfig) refers to radio.o(i.RadioGetFskBandwidthRegValue) for RadioGetFskBandwidthRegValue
    radio.o(i.RadioSetRxConfig) refers to sx126x.o(i.SX126xSetStandby) for SX126xSetStandby
    radio.o(i.RadioSetRxConfig) refers to radio.o(i.RadioSetModem) for RadioSetModem
    radio.o(i.RadioSetRxConfig) refers to sx126x.o(i.SX126xSetModulationParams) for SX126xSetModulationParams
    radio.o(i.RadioSetRxConfig) refers to sx126x.o(i.SX126xSetPacketParams) for SX126xSetPacketParams
    radio.o(i.RadioSetRxConfig) refers to sx126x.o(i.SX126xSetSyncWord) for SX126xSetSyncWord
    radio.o(i.RadioSetRxConfig) refers to sx126x.o(i.SX126xSetWhiteningSeed) for SX126xSetWhiteningSeed
    radio.o(i.RadioSetRxConfig) refers to dfltui.o(.text) for __aeabi_ui2d
    radio.o(i.RadioSetRxConfig) refers to ddiv.o(.text) for __aeabi_ddiv
    radio.o(i.RadioSetRxConfig) refers to dscalb.o(.text) for __ARM_scalbn
    radio.o(i.RadioSetRxConfig) refers to dmul.o(.text) for __aeabi_dmul
    radio.o(i.RadioSetRxConfig) refers to dfixui.o(.text) for __aeabi_d2uiz
    radio.o(i.RadioSetRxConfig) refers to radio.o(.data) for .data
    radio.o(i.RadioSetRxConfig) refers to radio.o(.bss) for .bss
    radio.o(i.RadioSetRxConfig) refers to radio.o(.constdata) for .constdata
    radio.o(i.RadioSetRxDutyCycle) refers to sx126x.o(i.SX126xSetRxDutyCycle) for SX126xSetRxDutyCycle
    radio.o(i.RadioSetTxConfig) refers to radio.o(i.RadioGetFskBandwidthRegValue) for RadioGetFskBandwidthRegValue
    radio.o(i.RadioSetTxConfig) refers to sx126x.o(i.SX126xSetStandby) for SX126xSetStandby
    radio.o(i.RadioSetTxConfig) refers to radio.o(i.RadioSetModem) for RadioSetModem
    radio.o(i.RadioSetTxConfig) refers to sx126x.o(i.SX126xSetModulationParams) for SX126xSetModulationParams
    radio.o(i.RadioSetTxConfig) refers to sx126x.o(i.SX126xSetPacketParams) for SX126xSetPacketParams
    radio.o(i.RadioSetTxConfig) refers to sx126x.o(i.SX126xSetSyncWord) for SX126xSetSyncWord
    radio.o(i.RadioSetTxConfig) refers to sx126x.o(i.SX126xSetWhiteningSeed) for SX126xSetWhiteningSeed
    radio.o(i.RadioSetTxConfig) refers to sx126x-board.o(i.SX126xSetRfTxPower) for SX126xSetRfTxPower
    radio.o(i.RadioSetTxConfig) refers to radio.o(.bss) for .bss
    radio.o(i.RadioSetTxConfig) refers to radio.o(.constdata) for .constdata
    radio.o(i.RadioSetTxConfig) refers to radio.o(.data) for .data
    radio.o(i.RadioSetTxContinuousWave) refers to sx126x.o(i.SX126xSetRfFrequency) for SX126xSetRfFrequency
    radio.o(i.RadioSetTxContinuousWave) refers to sx126x-board.o(i.SX126xSetRfTxPower) for SX126xSetRfTxPower
    radio.o(i.RadioSetTxContinuousWave) refers to sx126x.o(i.SX126xSetTxContinuousWave) for SX126xSetTxContinuousWave
    radio.o(i.RadioSleep) refers to sx126x.o(i.SX126xSetSleep) for SX126xSetSleep
    radio.o(i.RadioSleep) refers to delay.o(i.HAL_Delay_nMS) for HAL_Delay_nMS
    radio.o(i.RadioStandby) refers to sx126x.o(i.SX126xSetStandby) for SX126xSetStandby
    radio.o(i.RadioStartCad) refers to sx126x.o(i.SX126xSetCad) for SX126xSetCad
    radio.o(i.RadioTimeOnAir) refers to dfltui.o(.text) for __aeabi_ui2d
    radio.o(i.RadioTimeOnAir) refers to dadd.o(.text) for __aeabi_dadd
    radio.o(i.RadioTimeOnAir) refers to dmul.o(.text) for __aeabi_dmul
    radio.o(i.RadioTimeOnAir) refers to dflti.o(.text) for __aeabi_i2d
    radio.o(i.RadioTimeOnAir) refers to ddiv.o(.text) for __aeabi_ddiv
    radio.o(i.RadioTimeOnAir) refers to ceil.o(i.ceil) for ceil
    radio.o(i.RadioTimeOnAir) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
    radio.o(i.RadioTimeOnAir) refers to dscalb.o(.text) for __ARM_scalbn
    radio.o(i.RadioTimeOnAir) refers to rint.o(i.rint) for rint
    radio.o(i.RadioTimeOnAir) refers to floor.o(i.floor) for floor
    radio.o(i.RadioTimeOnAir) refers to dfixui.o(.text) for __aeabi_d2uiz
    radio.o(i.RadioTimeOnAir) refers to radio.o(.bss) for .bss
    radio.o(i.RadioTimeOnAir) refers to radio.o(.data) for .data
    radio.o(i.RadioTx) refers to sx126x.o(i.SX126xSetTx) for SX126xSetTx
    radio.o(i.RadioWrite) refers to sx126x-board.o(i.SX126xWriteRegister) for SX126xWriteRegister
    radio.o(i.RadioWriteBuffer) refers to sx126x-board.o(i.SX126xWriteRegisters) for SX126xWriteRegisters
    radio.o(i.RadioWriteFifo) refers to sx126x-board.o(i.SX126xWriteBuffer) for SX126xWriteBuffer
    radio.o(.constdata) refers to radio.o(i.RadioInit) for RadioInit
    radio.o(.constdata) refers to radio.o(i.RadioGetStatus) for RadioGetStatus
    radio.o(.constdata) refers to radio.o(i.RadioSetModem) for RadioSetModem
    radio.o(.constdata) refers to radio.o(i.RadioSetChannel) for RadioSetChannel
    radio.o(.constdata) refers to radio.o(i.RadioIsChannelFree) for RadioIsChannelFree
    radio.o(.constdata) refers to radio.o(i.RadioRandom) for RadioRandom
    radio.o(.constdata) refers to radio.o(i.RadioSetRxConfig) for RadioSetRxConfig
    radio.o(.constdata) refers to radio.o(i.RadioSetTxConfig) for RadioSetTxConfig
    radio.o(.constdata) refers to radio.o(i.RadioCheckRfFrequency) for RadioCheckRfFrequency
    radio.o(.constdata) refers to radio.o(i.RadioTimeOnAir) for RadioTimeOnAir
    radio.o(.constdata) refers to radio.o(i.RadioSend) for RadioSend
    radio.o(.constdata) refers to radio.o(i.RadioSleep) for RadioSleep
    radio.o(.constdata) refers to radio.o(i.RadioStandby) for RadioStandby
    radio.o(.constdata) refers to radio.o(i.RadioRx) for RadioRx
    radio.o(.constdata) refers to radio.o(i.RadioStartCad) for RadioStartCad
    radio.o(.constdata) refers to radio.o(i.RadioSetTxContinuousWave) for RadioSetTxContinuousWave
    radio.o(.constdata) refers to radio.o(i.RadioRssi) for RadioRssi
    radio.o(.constdata) refers to radio.o(i.RadioWrite) for RadioWrite
    radio.o(.constdata) refers to radio.o(i.RadioRead) for RadioRead
    radio.o(.constdata) refers to radio.o(i.RadioWriteBuffer) for RadioWriteBuffer
    radio.o(.constdata) refers to radio.o(i.RadioReadBuffer) for RadioReadBuffer
    radio.o(.constdata) refers to radio.o(i.RadioSetMaxPayloadLength) for RadioSetMaxPayloadLength
    radio.o(.constdata) refers to radio.o(i.RadioSetPublicNetwork) for RadioSetPublicNetwork
    radio.o(.constdata) refers to radio.o(i.RadioGetWakeupTime) for RadioGetWakeupTime
    radio.o(.constdata) refers to radio.o(i.RadioIrqProcess) for RadioIrqProcess
    radio.o(.constdata) refers to radio.o(i.RadioRxBoosted) for RadioRxBoosted
    radio.o(.constdata) refers to radio.o(i.RadioSetRxDutyCycle) for RadioSetRxDutyCycle
    sx126x.o(i.SX126xCalibrate) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xCalibrateImage) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xCheckDeviceReady) refers to sx126x-board.o(i.SX126xWakeup) for SX126xWakeup
    sx126x.o(i.SX126xCheckDeviceReady) refers to sx126x-board.o(i.SX126xAntSwOn) for SX126xAntSwOn
    sx126x.o(i.SX126xCheckDeviceReady) refers to sx126x-board.o(i.SX126xWaitOnBusy) for SX126xWaitOnBusy
    sx126x.o(i.SX126xCheckDeviceReady) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xClearDeviceErrors) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xClearIrqStatus) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xGetDeviceErrors) refers to sx126x-board.o(i.SX126xReadCommand) for SX126xReadCommand
    sx126x.o(i.SX126xGetIrqStatus) refers to sx126x-board.o(i.SX126xReadCommand) for SX126xReadCommand
    sx126x.o(i.SX126xGetOperatingMode) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xGetPacketStatus) refers to sx126x-board.o(i.SX126xReadCommand) for SX126xReadCommand
    sx126x.o(i.SX126xGetPacketStatus) refers to memseta.o(.text) for __aeabi_memclr4
    sx126x.o(i.SX126xGetPacketStatus) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xGetPacketType) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xGetPayload) refers to sx126x.o(i.SX126xGetRxBufferStatus) for SX126xGetRxBufferStatus
    sx126x.o(i.SX126xGetPayload) refers to sx126x-board.o(i.SX126xReadBuffer) for SX126xReadBuffer
    sx126x.o(i.SX126xGetRandom) refers to sx126x.o(i.SX126xSetRx) for SX126xSetRx
    sx126x.o(i.SX126xGetRandom) refers to delay.o(i.HAL_Delay_nMS) for HAL_Delay_nMS
    sx126x.o(i.SX126xGetRandom) refers to sx126x-board.o(i.SX126xReadRegisters) for SX126xReadRegisters
    sx126x.o(i.SX126xGetRandom) refers to sx126x.o(i.SX126xSetStandby) for SX126xSetStandby
    sx126x.o(i.SX126xGetRssiInst) refers to sx126x-board.o(i.SX126xReadCommand) for SX126xReadCommand
    sx126x.o(i.SX126xGetRxBufferStatus) refers to sx126x-board.o(i.SX126xReadCommand) for SX126xReadCommand
    sx126x.o(i.SX126xGetRxBufferStatus) refers to sx126x-board.o(i.SX126xReadRegister) for SX126xReadRegister
    sx126x.o(i.SX126xGetRxBufferStatus) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xGetStatus) refers to sx126x-board.o(i.SX126xReadCommand) for SX126xReadCommand
    sx126x.o(i.SX126xInit) refers to sx126x-board.o(i.SX126xReset) for SX126xReset
    sx126x.o(i.SX126xInit) refers to sx126x-board.o(i.SX126xWakeup) for SX126xWakeup
    sx126x.o(i.SX126xInit) refers to sx126x.o(i.SX126xSetStandby) for SX126xSetStandby
    sx126x.o(i.SX126xInit) refers to sx126x.o(i.SX126xSetDio2AsRfSwitchCtrl) for SX126xSetDio2AsRfSwitchCtrl
    sx126x.o(i.SX126xInit) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSendPayload) refers to sx126x.o(i.SX126xSetPayload) for SX126xSetPayload
    sx126x.o(i.SX126xSendPayload) refers to sx126x.o(i.SX126xSetTx) for SX126xSetTx
    sx126x.o(i.SX126xSetBufferBaseAddress) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetCad) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetCad) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetCadParams) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetCadParams) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetCrcPolynomial) refers to sx126x-board.o(i.SX126xWriteRegisters) for SX126xWriteRegisters
    sx126x.o(i.SX126xSetCrcPolynomial) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetCrcSeed) refers to sx126x-board.o(i.SX126xWriteRegisters) for SX126xWriteRegisters
    sx126x.o(i.SX126xSetCrcSeed) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetDio2AsRfSwitchCtrl) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetDio3AsTcxoCtrl) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetDioIrqParams) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetFs) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetFs) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetLoRaSymbNumTimeout) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetModulationParams) refers to sx126x.o(i.SX126xSetPacketType) for SX126xSetPacketType
    sx126x.o(i.SX126xSetModulationParams) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetModulationParams) refers to dfltui.o(.text) for __aeabi_ui2d
    sx126x.o(i.SX126xSetModulationParams) refers to ddiv.o(.text) for __aeabi_ddiv
    sx126x.o(i.SX126xSetModulationParams) refers to dscalb.o(.text) for __ARM_scalbn
    sx126x.o(i.SX126xSetModulationParams) refers to dfixui.o(.text) for __aeabi_d2uiz
    sx126x.o(i.SX126xSetModulationParams) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetPaConfig) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetPacketParams) refers to sx126x.o(i.SX126xSetPacketType) for SX126xSetPacketType
    sx126x.o(i.SX126xSetPacketParams) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetPacketParams) refers to sx126x.o(i.SX126xSetCrcSeed) for SX126xSetCrcSeed
    sx126x.o(i.SX126xSetPacketParams) refers to sx126x.o(i.SX126xSetCrcPolynomial) for SX126xSetCrcPolynomial
    sx126x.o(i.SX126xSetPacketParams) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetPacketType) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetPacketType) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetPayload) refers to sx126x-board.o(i.SX126xWriteBuffer) for SX126xWriteBuffer
    sx126x.o(i.SX126xSetRegulatorMode) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetRfFrequency) refers to sx126x.o(i.SX126xCalibrateImage) for SX126xCalibrateImage
    sx126x.o(i.SX126xSetRfFrequency) refers to dfltui.o(.text) for __aeabi_ui2d
    sx126x.o(i.SX126xSetRfFrequency) refers to ddiv.o(.text) for __aeabi_ddiv
    sx126x.o(i.SX126xSetRfFrequency) refers to dfixui.o(.text) for __aeabi_d2uiz
    sx126x.o(i.SX126xSetRfFrequency) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetRfFrequency) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetRx) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetRx) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetRxBoosted) refers to sx126x-board.o(i.SX126xWriteRegister) for SX126xWriteRegister
    sx126x.o(i.SX126xSetRxBoosted) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetRxBoosted) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetRxDutyCycle) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetRxDutyCycle) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetRxTxFallbackMode) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetSleep) refers to sx126x-board.o(i.SX126xAntSwOff) for SX126xAntSwOff
    sx126x.o(i.SX126xSetSleep) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetSleep) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetStandby) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetStandby) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetStopRxTimerOnPreambleDetect) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetSyncWord) refers to sx126x-board.o(i.SX126xWriteRegisters) for SX126xWriteRegisters
    sx126x.o(i.SX126xSetTx) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetTx) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetTxContinuousWave) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetTxInfinitePreamble) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetTxParams) refers to sx126x-board.o(i.SX126xGetPaSelect) for SX126xGetPaSelect
    sx126x.o(i.SX126xSetTxParams) refers to sx126x.o(i.SX126xSetPaConfig) for SX126xSetPaConfig
    sx126x.o(i.SX126xSetTxParams) refers to sx126x-board.o(i.SX126xWriteRegister) for SX126xWriteRegister
    sx126x.o(i.SX126xSetTxParams) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetWhiteningSeed) refers to sx126x-board.o(i.SX126xReadRegister) for SX126xReadRegister
    sx126x.o(i.SX126xSetWhiteningSeed) refers to sx126x-board.o(i.SX126xWriteRegister) for SX126xWriteRegister
    sx126x.o(i.SX126xSetWhiteningSeed) refers to sx126x.o(.data) for .data
    sx126x-board.o(i.SX126xReadBuffer) refers to sx126x.o(i.SX126xCheckDeviceReady) for SX126xCheckDeviceReady
    sx126x-board.o(i.SX126xReadBuffer) refers to sx126x-board.o(i.SX126x_CS_Di) for SX126x_CS_Di
    sx126x-board.o(i.SX126xReadBuffer) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    sx126x-board.o(i.SX126xReadBuffer) refers to sx126x-board.o(i.SpiInOut) for SpiInOut
    sx126x-board.o(i.SX126xReadBuffer) refers to sx126x-board.o(i.SX126xWaitOnBusy) for SX126xWaitOnBusy
    sx126x-board.o(i.SX126xReadCommand) refers to sx126x.o(i.SX126xCheckDeviceReady) for SX126xCheckDeviceReady
    sx126x-board.o(i.SX126xReadCommand) refers to sx126x-board.o(i.SX126x_CS_Di) for SX126x_CS_Di
    sx126x-board.o(i.SX126xReadCommand) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    sx126x-board.o(i.SX126xReadCommand) refers to sx126x-board.o(i.SpiInOut) for SpiInOut
    sx126x-board.o(i.SX126xReadCommand) refers to sx126x-board.o(i.SX126xWaitOnBusy) for SX126xWaitOnBusy
    sx126x-board.o(i.SX126xReadRegister) refers to sx126x-board.o(i.SX126xReadRegisters) for SX126xReadRegisters
    sx126x-board.o(i.SX126xReadRegisters) refers to sx126x.o(i.SX126xCheckDeviceReady) for SX126xCheckDeviceReady
    sx126x-board.o(i.SX126xReadRegisters) refers to sx126x-board.o(i.SX126x_CS_Di) for SX126x_CS_Di
    sx126x-board.o(i.SX126xReadRegisters) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    sx126x-board.o(i.SX126xReadRegisters) refers to sx126x-board.o(i.SpiInOut) for SpiInOut
    sx126x-board.o(i.SX126xReadRegisters) refers to sx126x-board.o(i.SX126xWaitOnBusy) for SX126xWaitOnBusy
    sx126x-board.o(i.SX126xReset) refers to delay.o(i.HAL_Delay_nMS) for HAL_Delay_nMS
    sx126x-board.o(i.SX126xReset) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    sx126x-board.o(i.SX126xReset) refers to delay.o(i.Delay_Us) for Delay_Us
    sx126x-board.o(i.SX126xSetRfTxPower) refers to sx126x.o(i.SX126xSetTxParams) for SX126xSetTxParams
    sx126x-board.o(i.SX126xWaitOnBusy) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_ReadPin) for HAL_GPIO_ReadPin
    sx126x-board.o(i.SX126xWakeup) refers to sx126x-board.o(i.SX126x_CS_Di) for SX126x_CS_Di
    sx126x-board.o(i.SX126xWakeup) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    sx126x-board.o(i.SX126xWakeup) refers to sx126x-board.o(i.SpiInOut) for SpiInOut
    sx126x-board.o(i.SX126xWakeup) refers to sx126x-board.o(i.SX126xWaitOnBusy) for SX126xWaitOnBusy
    sx126x-board.o(i.SX126xWriteBuffer) refers to sx126x.o(i.SX126xCheckDeviceReady) for SX126xCheckDeviceReady
    sx126x-board.o(i.SX126xWriteBuffer) refers to sx126x-board.o(i.SX126x_CS_Di) for SX126x_CS_Di
    sx126x-board.o(i.SX126xWriteBuffer) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    sx126x-board.o(i.SX126xWriteBuffer) refers to sx126x-board.o(i.SpiInOut) for SpiInOut
    sx126x-board.o(i.SX126xWriteBuffer) refers to sx126x-board.o(i.SX126xWaitOnBusy) for SX126xWaitOnBusy
    sx126x-board.o(i.SX126xWriteCommand) refers to sx126x.o(i.SX126xCheckDeviceReady) for SX126xCheckDeviceReady
    sx126x-board.o(i.SX126xWriteCommand) refers to sx126x-board.o(i.SX126x_CS_Di) for SX126x_CS_Di
    sx126x-board.o(i.SX126xWriteCommand) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    sx126x-board.o(i.SX126xWriteCommand) refers to sx126x-board.o(i.SpiInOut) for SpiInOut
    sx126x-board.o(i.SX126xWriteCommand) refers to sx126x-board.o(i.SX126xWaitOnBusy) for SX126xWaitOnBusy
    sx126x-board.o(i.SX126xWriteRegister) refers to sx126x-board.o(i.SX126xWriteRegisters) for SX126xWriteRegisters
    sx126x-board.o(i.SX126xWriteRegisters) refers to sx126x.o(i.SX126xCheckDeviceReady) for SX126xCheckDeviceReady
    sx126x-board.o(i.SX126xWriteRegisters) refers to sx126x-board.o(i.SX126x_CS_Di) for SX126x_CS_Di
    sx126x-board.o(i.SX126xWriteRegisters) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    sx126x-board.o(i.SX126xWriteRegisters) refers to sx126x-board.o(i.SpiInOut) for SpiInOut
    sx126x-board.o(i.SX126xWriteRegisters) refers to sx126x-board.o(i.SX126xWaitOnBusy) for SX126xWaitOnBusy
    sx126x-board.o(i.SX126x_CS_Di) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_ReadPin) for HAL_GPIO_ReadPin
    sx126x-board.o(i.SX126x_CS_Di) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    sx126x-board.o(i.SX126x_CS_Di) refers to printfa.o(i.__0printf) for __2printf
    sx126x-board.o(i.SpiInOut) refers to stm32l0xx_hal_spi.o(i.HAL_SPI_TransmitReceive) for HAL_SPI_TransmitReceive
    sx126x-board.o(i.SpiInOut) refers to main.o(.bss) for hspi1
    deca_device.o(i._dwt_aonarrayupload) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i._dwt_aonconfigupload) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i._dwt_configlde) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i._dwt_configlde) refers to deca_device.o(i.dwt_write16bitoffsetreg) for dwt_write16bitoffsetreg
    deca_device.o(i._dwt_disablesequencing) refers to deca_device.o(i._dwt_enableclocks) for _dwt_enableclocks
    deca_device.o(i._dwt_disablesequencing) refers to deca_device.o(i.dwt_write16bitoffsetreg) for dwt_write16bitoffsetreg
    deca_device.o(i._dwt_enableclocks) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i._dwt_enableclocks) refers to stm32l0xx_hal_dma.o(i.__ARM_common_switch8) for __ARM_common_switch8
    deca_device.o(i._dwt_enableclocks) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i._dwt_loaducodefromrom) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i._dwt_loaducodefromrom) refers to deca_device.o(i.dwt_write16bitoffsetreg) for dwt_write16bitoffsetreg
    deca_device.o(i._dwt_loaducodefromrom) refers to dw_driver.o(i.delay_ms) for delay_ms
    deca_device.o(i._dwt_loaducodefromrom) refers to deca_device.o(i._dwt_enableclocks) for _dwt_enableclocks
    deca_device.o(i._dwt_otpprogword32) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i._dwt_otpprogword32) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i._dwt_otpprogword32) refers to dw_driver.o(i.delay_ms) for delay_ms
    deca_device.o(i._dwt_otpread) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i._dwt_otpread) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    deca_device.o(i._dwt_otpsetmrregs) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i._dwt_otpsetmrregs) refers to stm32l0xx_hal_dma.o(i.__ARM_common_switch8) for __ARM_common_switch8
    deca_device.o(i._dwt_otpsetmrregs) refers to dw_driver.o(i.delay_ms) for delay_ms
    deca_device.o(i._dwt_otpsetmrregs) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_calibratesleepcnt) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_calibratesleepcnt) refers to deca_device.o(i._dwt_aonconfigupload) for _dwt_aonconfigupload
    deca_device.o(i.dwt_calibratesleepcnt) refers to dw_driver.o(i.delay_ms) for delay_ms
    deca_device.o(i.dwt_calibratesleepcnt) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_checkIRQ) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_checkoverrun) refers to deca_device.o(i.dwt_read16bitoffsetreg) for dwt_read16bitoffsetreg
    deca_device.o(i.dwt_configcontinuousframemode) refers to deca_device.o(i._dwt_disablesequencing) for _dwt_disablesequencing
    deca_device.o(i.dwt_configcontinuousframemode) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    deca_device.o(i.dwt_configcontinuousframemode) refers to deca_device.o(i._dwt_enableclocks) for _dwt_enableclocks
    deca_device.o(i.dwt_configcontinuousframemode) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_configcwmode) refers to deca_device.o(i._dwt_disablesequencing) for _dwt_disablesequencing
    deca_device.o(i.dwt_configcwmode) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_configcwmode) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    deca_device.o(i.dwt_configcwmode) refers to deca_device.o(i.dwt_write16bitoffsetreg) for dwt_write16bitoffsetreg
    deca_device.o(i.dwt_configcwmode) refers to deca_params_init.o(.constdata) for chan_idx
    deca_device.o(i.dwt_configcwmode) refers to deca_params_init.o(.data) for pll2_config
    deca_device.o(i.dwt_configcwmode) refers to deca_params_init.o(.constdata) for tx_config
    deca_device.o(i.dwt_configeventcounters) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_configure) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    deca_device.o(i.dwt_configure) refers to deca_device.o(i.dwt_write16bitoffsetreg) for dwt_write16bitoffsetreg
    deca_device.o(i.dwt_configure) refers to deca_device.o(i._dwt_configlde) for _dwt_configlde
    deca_device.o(i.dwt_configure) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_configure) refers to deca_params_init.o(.constdata) for lde_replicaCoeff
    deca_device.o(i.dwt_configure) refers to deca_device.o(.bss) for .bss
    deca_device.o(i.dwt_configure) refers to deca_params_init.o(.constdata) for chan_idx
    deca_device.o(i.dwt_configure) refers to deca_params_init.o(.data) for pll2_config
    deca_device.o(i.dwt_configure) refers to deca_params_init.o(.data) for rx_config
    deca_device.o(i.dwt_configure) refers to deca_params_init.o(.constdata) for tx_config
    deca_device.o(i.dwt_configure) refers to deca_params_init.o(.constdata) for sftsh
    deca_device.o(i.dwt_configure) refers to deca_params_init.o(.constdata) for dtune1
    deca_device.o(i.dwt_configure) refers to deca_params_init.o(.constdata) for digital_bb_config
    deca_device.o(i.dwt_configure) refers to deca_params_init.o(.constdata) for agc_config
    deca_device.o(i.dwt_configure) refers to deca_params_init.o(.data) for dwnsSFDlen
    deca_device.o(i.dwt_configuresleep) refers to deca_device.o(i.dwt_write16bitoffsetreg) for dwt_write16bitoffsetreg
    deca_device.o(i.dwt_configuresleep) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_configuresleep) refers to deca_device.o(.bss) for .bss
    deca_device.o(i.dwt_configuresleepcnt) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_configuresleepcnt) refers to deca_device.o(i._dwt_aonconfigupload) for _dwt_aonconfigupload
    deca_device.o(i.dwt_configuretxrf) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_configuretxrf) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    deca_device.o(i.dwt_enableautoack) refers to deca_device.o(i.dwt_write16bitoffsetreg) for dwt_write16bitoffsetreg
    deca_device.o(i.dwt_enableautoack) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    deca_device.o(i.dwt_enableautoack) refers to deca_device.o(.bss) for .bss
    deca_device.o(i.dwt_enableframefilter) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    deca_device.o(i.dwt_enableframefilter) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    deca_device.o(i.dwt_enableframefilter) refers to deca_device.o(.bss) for .bss
    deca_device.o(i.dwt_entersleep) refers to deca_device.o(i._dwt_aonarrayupload) for _dwt_aonarrayupload
    deca_device.o(i.dwt_entersleepaftertx) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    deca_device.o(i.dwt_entersleepaftertx) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    deca_device.o(i.dwt_forcetrxoff) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    deca_device.o(i.dwt_forcetrxoff) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    deca_device.o(i.dwt_forcetrxoff) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_forcetrxoff) refers to deca_device.o(i.dwt_syncrxbufptrs) for dwt_syncrxbufptrs
    deca_device.o(i.dwt_forcetrxoff) refers to deca_device.o(.bss) for .bss
    deca_device.o(i.dwt_geteui) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_getlotid) refers to deca_device.o(.bss) for .bss
    deca_device.o(i.dwt_getpartid) refers to deca_device.o(.bss) for .bss
    deca_device.o(i.dwt_initialise) refers to deca_device.o(i.dwt_readdevid) for dwt_readdevid
    deca_device.o(i.dwt_initialise) refers to deca_device.o(i._dwt_enableclocks) for _dwt_enableclocks
    deca_device.o(i.dwt_initialise) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    deca_device.o(i.dwt_initialise) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_initialise) refers to deca_device.o(i._dwt_otpread) for _dwt_otpread
    deca_device.o(i.dwt_initialise) refers to deca_device.o(i.dwt_xtaltrim) for dwt_xtaltrim
    deca_device.o(i.dwt_initialise) refers to deca_device.o(i._dwt_loaducodefromrom) for _dwt_loaducodefromrom
    deca_device.o(i.dwt_initialise) refers to deca_device.o(i.dwt_read16bitoffsetreg) for dwt_read16bitoffsetreg
    deca_device.o(i.dwt_initialise) refers to deca_device.o(i.dwt_write16bitoffsetreg) for dwt_write16bitoffsetreg
    deca_device.o(i.dwt_initialise) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    deca_device.o(i.dwt_initialise) refers to deca_device.o(.bss) for .bss
    deca_device.o(i.dwt_initialise) refers to deca_device.o(.data) for .data
    deca_device.o(i.dwt_isr) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    deca_device.o(i.dwt_isr) refers to deca_device.o(i.dwt_forcetrxoff) for dwt_forcetrxoff
    deca_device.o(i.dwt_isr) refers to deca_device.o(i.dwt_rxreset) for dwt_rxreset
    deca_device.o(i.dwt_isr) refers to deca_device.o(i.dwt_write16bitoffsetreg) for dwt_write16bitoffsetreg
    deca_device.o(i.dwt_isr) refers to deca_device.o(i.dwt_read16bitoffsetreg) for dwt_read16bitoffsetreg
    deca_device.o(i.dwt_isr) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_isr) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    deca_device.o(i.dwt_isr) refers to deca_device.o(i.dwt_checkoverrun) for dwt_checkoverrun
    deca_device.o(i.dwt_isr) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_isr) refers to deca_device.o(.bss) for .bss
    deca_device.o(i.dwt_loadopsettabfromotp) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_loadopsettabfromotp) refers to deca_device.o(i.dwt_write16bitoffsetreg) for dwt_write16bitoffsetreg
    deca_device.o(i.dwt_loadopsettabfromotp) refers to deca_device.o(i._dwt_enableclocks) for _dwt_enableclocks
    deca_device.o(i.dwt_otpread) refers to deca_device.o(i._dwt_enableclocks) for _dwt_enableclocks
    deca_device.o(i.dwt_otpread) refers to deca_device.o(i._dwt_otpread) for _dwt_otpread
    deca_device.o(i.dwt_otprevision) refers to deca_device.o(.bss) for .bss
    deca_device.o(i.dwt_otpwriteandverify) refers to deca_device.o(i._dwt_enableclocks) for _dwt_enableclocks
    deca_device.o(i.dwt_otpwriteandverify) refers to deca_device.o(i._dwt_otpsetmrregs) for _dwt_otpsetmrregs
    deca_device.o(i.dwt_otpwriteandverify) refers to deca_device.o(i._dwt_otpprogword32) for _dwt_otpprogword32
    deca_device.o(i.dwt_otpwriteandverify) refers to deca_device.o(i._dwt_otpread) for _dwt_otpread
    deca_device.o(i.dwt_read16bitoffsetreg) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_read32bitoffsetreg) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_readaccdata) refers to deca_device.o(i._dwt_enableclocks) for _dwt_enableclocks
    deca_device.o(i.dwt_readaccdata) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_readcarrierintegrator) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_readdevid) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    deca_device.o(i.dwt_readdiagnostics) refers to deca_device.o(i.dwt_read16bitoffsetreg) for dwt_read16bitoffsetreg
    deca_device.o(i.dwt_readdiagnostics) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_readdiagnostics) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    deca_device.o(i.dwt_readeventcounters) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    deca_device.o(i.dwt_readfromdevice) refers to spi.o(i.readfromspi) for readfromspi
    deca_device.o(i.dwt_readrxdata) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_readrxtimestamp) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_readrxtimestamphi32) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    deca_device.o(i.dwt_readrxtimestamplo32) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    deca_device.o(i.dwt_readsystime) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_readsystimestamphi32) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    deca_device.o(i.dwt_readtempvbat) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_readtempvbat) refers to deca_device.o(i._dwt_enableclocks) for _dwt_enableclocks
    deca_device.o(i.dwt_readtempvbat) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_readtempvbat) refers to dw_driver.o(i.delay_ms) for delay_ms
    deca_device.o(i.dwt_readtxtimestamp) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_readtxtimestamphi32) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    deca_device.o(i.dwt_readtxtimestamplo32) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    deca_device.o(i.dwt_readwakeuptemp) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_readwakeupvbat) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_rxenable) refers to deca_device.o(i.dwt_syncrxbufptrs) for dwt_syncrxbufptrs
    deca_device.o(i.dwt_rxenable) refers to deca_device.o(i.dwt_write16bitoffsetreg) for dwt_write16bitoffsetreg
    deca_device.o(i.dwt_rxenable) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_rxenable) refers to deca_device.o(i.dwt_forcetrxoff) for dwt_forcetrxoff
    deca_device.o(i.dwt_rxreset) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_setGPIOdirection) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_setGPIOforEXTTRX) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_setGPIOforEXTTRX) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_setGPIOvalue) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_setaddress16) refers to deca_device.o(i.dwt_write16bitoffsetreg) for dwt_write16bitoffsetreg
    deca_device.o(i.dwt_setautorxreenable) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_setautorxreenable) refers to deca_device.o(.bss) for .bss
    deca_device.o(i.dwt_setcallbacks) refers to deca_device.o(.bss) for .bss
    deca_device.o(i.dwt_setdblrxbuffmode) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    deca_device.o(i.dwt_setdblrxbuffmode) refers to deca_device.o(.bss) for .bss
    deca_device.o(i.dwt_setdelayedtrxtime) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    deca_device.o(i.dwt_seteui) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_setinterrupt) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    deca_device.o(i.dwt_setinterrupt) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    deca_device.o(i.dwt_setleds) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_setleds) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_setpanid) refers to deca_device.o(i.dwt_write16bitoffsetreg) for dwt_write16bitoffsetreg
    deca_device.o(i.dwt_setpreambledetecttimeout) refers to deca_device.o(i.dwt_write16bitoffsetreg) for dwt_write16bitoffsetreg
    deca_device.o(i.dwt_setrxaftertxdelay) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    deca_device.o(i.dwt_setrxaftertxdelay) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    deca_device.o(i.dwt_setrxantennadelay) refers to deca_device.o(i.dwt_write16bitoffsetreg) for dwt_write16bitoffsetreg
    deca_device.o(i.dwt_setrxmode) refers to deca_device.o(i.dwt_write16bitoffsetreg) for dwt_write16bitoffsetreg
    deca_device.o(i.dwt_setrxtimeout) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_setrxtimeout) refers to deca_device.o(i.dwt_write16bitoffsetreg) for dwt_write16bitoffsetreg
    deca_device.o(i.dwt_setrxtimeout) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_setrxtimeout) refers to deca_device.o(.bss) for .bss
    deca_device.o(i.dwt_setsmarttxpower) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    deca_device.o(i.dwt_setsmarttxpower) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    deca_device.o(i.dwt_setsmarttxpower) refers to deca_device.o(.bss) for .bss
    deca_device.o(i.dwt_settxantennadelay) refers to deca_device.o(i.dwt_write16bitoffsetreg) for dwt_write16bitoffsetreg
    deca_device.o(i.dwt_softreset) refers to deca_device.o(i._dwt_disablesequencing) for _dwt_disablesequencing
    deca_device.o(i.dwt_softreset) refers to deca_device.o(i.dwt_write16bitoffsetreg) for dwt_write16bitoffsetreg
    deca_device.o(i.dwt_softreset) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_softreset) refers to deca_device.o(i._dwt_aonarrayupload) for _dwt_aonarrayupload
    deca_device.o(i.dwt_softreset) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_softreset) refers to dw_driver.o(i.delay_ms) for delay_ms
    deca_device.o(i.dwt_softreset) refers to deca_device.o(.bss) for .bss
    deca_device.o(i.dwt_spicswakeup) refers to deca_device.o(i.dwt_readdevid) for dwt_readdevid
    deca_device.o(i.dwt_spicswakeup) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_spicswakeup) refers to dw_driver.o(i.delay_ms) for delay_ms
    deca_device.o(i.dwt_starttx) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_starttx) refers to deca_device.o(i.dwt_read16bitoffsetreg) for dwt_read16bitoffsetreg
    deca_device.o(i.dwt_starttx) refers to deca_device.o(i.dwt_entersleepaftertx) for dwt_entersleepaftertx
    deca_device.o(i.dwt_starttx) refers to deca_device.o(.bss) for .bss
    deca_device.o(i.dwt_syncrxbufptrs) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_syncrxbufptrs) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_write16bitoffsetreg) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_write32bitoffsetreg) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_writetodevice) refers to spi.o(i.writetospi) for writetospi
    deca_device.o(i.dwt_writetxdata) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_device.o(i.dwt_writetxfctrl) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    deca_device.o(i.dwt_writetxfctrl) refers to deca_device.o(.bss) for .bss
    deca_device.o(i.dwt_xtaltrim) refers to deca_device.o(i.dwt_readfromdevice) for dwt_readfromdevice
    deca_device.o(i.dwt_xtaltrim) refers to deca_device.o(i.dwt_writetodevice) for dwt_writetodevice
    deca_range_tables.o(i.dwt_getrangebias) refers to f2d.o(.text) for __aeabi_f2d
    deca_range_tables.o(i.dwt_getrangebias) refers to dscalb.o(.text) for __ARM_scalbn
    deca_range_tables.o(i.dwt_getrangebias) refers to dfixi.o(.text) for __aeabi_d2iz
    deca_range_tables.o(i.dwt_getrangebias) refers to fflti.o(.text) for __aeabi_i2f
    deca_range_tables.o(i.dwt_getrangebias) refers to dmul.o(.text) for __aeabi_dmul
    deca_range_tables.o(i.dwt_getrangebias) refers to deca_range_tables.o(.constdata) for .constdata
    hido_fsm.o(i.FSM_GeneralTimerProc) refers to hido_fsm.o(i.HIDO_FSMEventExecute) for HIDO_FSMEventExecute
    hido_fsm.o(i.FSM_GeneralTimerProc) refers to hido_fsm.o(.data) for l_pstStatMachineList
    hido_fsm.o(i.HIDO_FSMEventExecute) refers to hido_fsm.o(i.FSM_Debug) for FSM_Debug
    hido_fsm.o(i.HIDO_FSMInit) refers to memseta.o(.text) for __aeabi_memclr4
    hido_fsm.o(i.HIDO_FSMInit) refers to hido_fsm.o(i.HIDO_FSMEventExecute) for HIDO_FSMEventExecute
    hido_fsm.o(i.HIDO_FSMInit) refers to hido_fsm.o(.data) for l_pstStatMachineList
    hido_fsm.o(i.HIDO_FSMRegister) refers to memseta.o(.text) for __aeabi_memclr4
    hido_fsm.o(i.HIDO_FSMRegister) refers to hido_fsm.o(i.HIDO_FSMEventExecute) for HIDO_FSMEventExecute
    hido_fsm.o(i.HIDO_FSMRegister) refers to hido_fsm.o(.data) for l_u16StatMachineCount
    hido_fsm.o(i.HIDO_FSMSchedule) refers to hido_fsm.o(i.HIDO_FSMEventExecute) for HIDO_FSMEventExecute
    hido_fsm.o(i.HIDO_FSMSchedule) refers to hido_fsm.o(.data) for l_pstStatMachineList
    hido_fsm.o(i.HIDO_FSMStartTimer) refers to hido_timer.o(i.HIDO_TimerStart) for HIDO_TimerStart
    hido_fsm.o(i.HIDO_FSMStartTimer) refers to hido_fsm.o(i.FSM_GeneralTimerProc) for FSM_GeneralTimerProc
    hido_fsm.o(i.HIDO_FSMStateChange) refers to hido_fsm.o(i.HIDO_FSMEventExecute) for HIDO_FSMEventExecute
    hido_fsm.o(i.HIDO_FSMStateChange) refers to memseta.o(.text) for __aeabi_memclr4
    hido_fsm.o(i.HIDO_FSMStateChange) refers to hido_fsm.o(i.FSM_FindState) for FSM_FindState
    hido_lock.o(i.HIDO_Lock) refers to hido_lock.o(.data) for l_u32LockNesting
    hido_lock.o(i.HIDO_UnLock) refers to hido_lock.o(.data) for l_u32LockNesting
    hido_timer.o(i.HIDO_TimerCancel) refers to hido_timer.o(.bss) for l_stTimerList
    hido_timer.o(i.HIDO_TimerCreate) refers to dbg.o(i.HIDO_Debug) for HIDO_Debug
    hido_timer.o(i.HIDO_TimerCreate) refers to hido_timer.o(.bss) for l_stTimerList
    hido_timer.o(i.HIDO_TimerDestroy) refers to hido_timer.o(.bss) for l_stTimerList
    hido_timer.o(i.HIDO_TimerGetTick) refers to hido_timer.o(.data) for g_u32TimerTick
    hido_timer.o(i.HIDO_TimerGetTick64) refers to hido_lock.o(i.HIDO_Lock) for HIDO_Lock
    hido_timer.o(i.HIDO_TimerGetTick64) refers to hido_lock.o(i.HIDO_UnLock) for HIDO_UnLock
    hido_timer.o(i.HIDO_TimerGetTick64) refers to hido_timer.o(.data) for g_u64TimerTick
    hido_timer.o(i.HIDO_TimerPoll) refers to hido_timer.o(.bss) for l_stTimerList
    hido_timer.o(i.HIDO_TimerPoll) refers to hido_timer.o(.data) for g_u32TimerTick
    hido_timer.o(i.HIDO_TimerSetTick64) refers to hido_lock.o(i.HIDO_Lock) for HIDO_Lock
    hido_timer.o(i.HIDO_TimerSetTick64) refers to hido_lock.o(i.HIDO_UnLock) for HIDO_UnLock
    hido_timer.o(i.HIDO_TimerSetTick64) refers to hido_timer.o(.data) for g_u64TimerTick
    hido_timer.o(i.HIDO_TimerStart) refers to hido_timer.o(.bss) for l_stTimerList
    hido_timer.o(i.HIDO_TimerStart) refers to hido_timer.o(.data) for g_u32TimerTick
    hido_timer.o(i.HIDO_TimerTick) refers to hido_timer.o(.data) for g_u32TimerTick
    hido_util.o(i.HIDO_UtilBase64Decode) refers to hido_util.o(.constdata) for L_au8Base64DecodeMap
    hido_util.o(i.HIDO_UtilBase64Encode) refers to uidiv.o(.text) for __aeabi_uidivmod
    hido_util.o(i.HIDO_UtilBase64Encode) refers to hido_util.o(.constdata) for g_au8Base64EncodeMap
    hido_util.o(i.HIDO_UtilBufToHex) refers to hido_util.o(i.HIDO_UtilCharToHex) for HIDO_UtilCharToHex
    hido_util.o(i.HIDO_UtilByteArrayToHexString) refers to hido_util.o(i.HIDO_UtilByteToChar) for HIDO_UtilByteToChar
    hido_util.o(i.HIDO_UtilByteToBcd) refers to idiv.o(.text) for __aeabi_idivmod
    hido_util.o(i.HIDO_UtilBzero) refers to memseta.o(.text) for __aeabi_memclr
    hido_util.o(i.HIDO_UtilEncode7To8) refers to uidiv.o(.text) for __aeabi_uidivmod
    hido_util.o(i.HIDO_UtilEncode7To8) refers to memseta.o(.text) for __aeabi_memset
    hido_util.o(i.HIDO_UtilGetMonthAndDay) refers to hido_util.o(.constdata) for MON2
    hido_util.o(i.HIDO_UtilHexStrBufToInt) refers to hido_util.o(i.HIDO_UtilCharToHex) for HIDO_UtilCharToHex
    hido_util.o(i.HIDO_UtilHexStrToInt) refers to hido_util.o(i.HIDO_UtilCharToHex) for HIDO_UtilCharToHex
    hido_util.o(i.HIDO_UtilHexStringToByteArray) refers to hido_util.o(i.HIDO_UtilCharToByte) for HIDO_UtilCharToByte
    hido_util.o(i.HIDO_UtilIPStringBufToInteger) refers to hido_util.o(i.HIDO_UtilParseFormat) for HIDO_UtilParseFormat
    hido_util.o(i.HIDO_UtilIPStringToByteArrary) refers to strlen.o(.text) for strlen
    hido_util.o(i.HIDO_UtilIPStringToByteArrary) refers to hido_util.o(i.HIDO_UtilParseFormat) for HIDO_UtilParseFormat
    hido_util.o(i.HIDO_UtilIPStringToInteger) refers to strlen.o(.text) for strlen
    hido_util.o(i.HIDO_UtilIPStringToInteger) refers to hido_util.o(i.HIDO_UtilParseFormat) for HIDO_UtilParseFormat
    hido_util.o(i.HIDO_UtilIntegerToIpString) refers to printfa.o(i.__0sprintf) for __2sprintf
    hido_util.o(i.HIDO_UtilIsIpString) refers to strlen.o(.text) for strlen
    hido_util.o(i.HIDO_UtilIsIpString) refers to hido_util.o(i.HIDO_UtilParseFormat) for HIDO_UtilParseFormat
    hido_util.o(i.HIDO_UtilMACStringToByteArrary) refers to memseta.o(.text) for __aeabi_memclr4
    hido_util.o(i.HIDO_UtilMACStringToByteArrary) refers to hido_util.o(i.HIDO_UtilStrSplit) for HIDO_UtilStrSplit
    hido_util.o(i.HIDO_UtilMACStringToByteArrary) refers to hido_util.o(i.HIDO_UtilHexStringToByteArray) for HIDO_UtilHexStringToByteArray
    hido_util.o(i.HIDO_UtilMKCalendar) refers to uidiv.o(.text) for __aeabi_uidivmod
    hido_util.o(i.HIDO_UtilMKCalendar) refers to idiv.o(.text) for __aeabi_idivmod
    hido_util.o(i.HIDO_UtilMKCalendar) refers to hido_util.o(i.HIDO_UtilGetMonthAndDay) for HIDO_UtilGetMonthAndDay
    hido_util.o(i.HIDO_UtilMakeTime) refers to uidiv.o(.text) for __aeabi_uidivmod
    hido_util.o(i.HIDO_UtilSnprintf) refers to printfa.o(i.__0vsnprintf) for vsnprintf
    hido_util.o(i.HIDO_UtilStrBufToInt) refers to hido_util.o(i.HIDO_UtilCharToHex) for HIDO_UtilCharToHex
    hido_util.o(i.HIDO_UtilStrStr) refers to strlen.o(.text) for strlen
    hido_util.o(i.HIDO_UtilStrStr) refers to memcmp.o(.text) for memcmp
    hido_util.o(i.HIDO_UtilStrToInt) refers to strchr.o(.text) for strchr
    hido_util.o(i.HIDO_UtilStrToInt) refers to hido_util.o(i.HIDO_UtilCharToHex) for HIDO_UtilCharToHex
    hido_util.o(i.HIDO_UtilStrToInt) refers to atoi.o(.text) for atoi
    hido_util.o(i.HIDO_UtilStrnstr) refers to strlen.o(.text) for strlen
    hido_util.o(i.HIDO_UtilStrnstr) refers to memcmp.o(.text) for memcmp
    hido_util.o(i.HIDO_UtilStrrnstr) refers to strlen.o(.text) for strlen
    hido_util.o(i.HIDO_UtilStrrnstr) refers to memcmp.o(.text) for memcmp
    hido_arraryqueue.o(i.HIDO_ArraryQueueIn) refers to hido_arraryqueue.o(i.HIDO_ArraryQueueIsFull) for HIDO_ArraryQueueIsFull
    hido_arraryqueue.o(i.HIDO_ArraryQueueIn) refers to uidiv.o(.text) for __aeabi_uidivmod
    hido_arraryqueue.o(i.HIDO_ArraryQueueIn) refers to memcpya.o(.text) for __aeabi_memcpy
    hido_arraryqueue.o(i.HIDO_ArraryQueueIsEmpty) refers to uidiv.o(.text) for __aeabi_uidivmod
    hido_arraryqueue.o(i.HIDO_ArraryQueueIsFull) refers to uidiv.o(.text) for __aeabi_uidivmod
    hido_arraryqueue.o(i.HIDO_ArraryQueueOut) refers to hido_arraryqueue.o(i.HIDO_ArraryQueueIsEmpty) for HIDO_ArraryQueueIsEmpty
    hido_arraryqueue.o(i.HIDO_ArraryQueueOut) refers to memcpya.o(.text) for __aeabi_memcpy
    hido_arraryqueue.o(i.HIDO_ArraryQueueOut) refers to uidiv.o(.text) for __aeabi_uidivmod
    hido_vlqueue.o(i.HIDO_VLQDequeue) refers to hido_basequeue.o(i.HIDO_BaseQueueDequeue) for HIDO_BaseQueueDequeue
    hido_vlqueue.o(i.HIDO_VLQEnqueue) refers to hido_basequeue.o(i.HIDO_BaseQueueEnqueue) for HIDO_BaseQueueEnqueue
    hido_vlqueue.o(i.HIDO_VLQGetDequeueMember) refers to hido_basequeue.o(i.HIDO_BaseQueueIsEmpty) for HIDO_BaseQueueIsEmpty
    hido_vlqueue.o(i.HIDO_VLQGetDequeueMember) refers to hido_basequeue.o(i.HIDO_BaseQueueGetFront) for HIDO_BaseQueueGetFront
    hido_vlqueue.o(i.HIDO_VLQGetEnqueueMember) refers to hido_basequeue.o(i.HIDO_BaseQueueIsFull) for HIDO_BaseQueueIsFull
    hido_vlqueue.o(i.HIDO_VLQGetEnqueueMember) refers to hido_basequeue.o(i.HIDO_BaseQueueGetContinuousSize) for HIDO_BaseQueueGetContinuousSize
    hido_vlqueue.o(i.HIDO_VLQGetEnqueueMember) refers to hido_basequeue.o(i.HIDO_BaseQueueGetRear) for HIDO_BaseQueueGetRear
    hido_vlqueue.o(i.HIDO_VLQInit) refers to hido_basequeue.o(i.HIDO_BaseQueueInit) for HIDO_BaseQueueInit
    hido_input.o(i.HIDO_InputDirKeyProc) refers to hido_input.o(i.HIDO_InputLoginFsm) for HIDO_InputLoginFsm
    hido_input.o(i.HIDO_InputDirKeyProc) refers to hido_input.o(i.HIDO_InputFsm) for HIDO_InputFsm
    hido_input.o(i.HIDO_InputDirectionKey) refers to hido_input.o(i.HIDO_InputDirKeyProc) for HIDO_InputDirKeyProc
    hido_input.o(i.HIDO_InputFsm) refers to stm32l0xx_hal_dma.o(i.__ARM_common_switch8) for __ARM_common_switch8
    hido_input.o(i.HIDO_InputFsm) refers to hido_input.o(i.HIDO_InputCmdBufMoveRight) for HIDO_InputCmdBufMoveRight
    hido_input.o(i.HIDO_InputFsm) refers to strcpy.o(.text) for strcpy
    hido_input.o(i.HIDO_InputFsm) refers to memcpya.o(.text) for __aeabi_memcpy4
    hido_input.o(i.HIDO_InputFsm) refers to uidiv.o(.text) for __aeabi_uidivmod
    hido_input.o(i.HIDO_InputFsm) refers to idiv.o(.text) for __aeabi_idivmod
    hido_input.o(i.HIDO_InputFsm) refers to hido_shell.o(i.HIDO_ShellSetInput) for HIDO_ShellSetInput
    hido_input.o(i.HIDO_InputFsm) refers to hido_shell.o(i.HIDO_ShellExecute) for HIDO_ShellExecute
    hido_input.o(i.HIDO_InputFsm) refers to strlen.o(.text) for strlen
    hido_input.o(i.HIDO_InputFsm) refers to hido_input.o(i.HIDO_InputCmdBufMoveLeft) for HIDO_InputCmdBufMoveLeft
    hido_input.o(i.HIDO_InputFsm) refers to hido_shell.o(i.HIDO_ShellGetCmdName) for HIDO_ShellGetCmdName
    hido_input.o(i.HIDO_InputFsm) refers to strncmp.o(.text) for strncmp
    hido_input.o(i.HIDO_InputFsm) refers to hido_shell.o(i.HIDO_ShellGetCmdCount) for HIDO_ShellGetCmdCount
    hido_input.o(i.HIDO_InputIsUserLogin) refers to hido_input.o(.data) for l_pstInputList
    hido_input.o(i.HIDO_InputLoginFsm) refers to stm32l0xx_hal_dma.o(i.__ARM_common_switch8) for __ARM_common_switch8
    hido_input.o(i.HIDO_InputLoginFsm) refers to hido_input.o(i.HIDO_InputCmdBufMoveRight) for HIDO_InputCmdBufMoveRight
    hido_input.o(i.HIDO_InputLoginFsm) refers to hido_util.o(i.HIDO_UtilSnprintf) for HIDO_UtilSnprintf
    hido_input.o(i.HIDO_InputLoginFsm) refers to hido_input.o(i.HIDO_InputUserVerify) for HIDO_InputUserVerify
    hido_input.o(i.HIDO_InputLoginFsm) refers to hido_input.o(i.HIDO_InputCmdBufMoveLeft) for HIDO_InputCmdBufMoveLeft
    hido_input.o(i.HIDO_InputPoll) refers to hido_timer.o(i.HIDO_TimerGetTick) for HIDO_TimerGetTick
    hido_input.o(i.HIDO_InputPoll) refers to hido_input.o(i.HIDO_InputDirectionKey) for HIDO_InputDirectionKey
    hido_input.o(i.HIDO_InputPoll) refers to hido_input.o(i.HIDO_InputLoginFsm) for HIDO_InputLoginFsm
    hido_input.o(i.HIDO_InputPoll) refers to hido_input.o(i.HIDO_InputFsm) for HIDO_InputFsm
    hido_input.o(i.HIDO_InputPoll) refers to hido_input.o(.data) for l_pstInputList
    hido_input.o(i.HIDO_InputRegister) refers to hido_input.o(.data) for l_pstInputList
    hido_shell.o(i.HIDO_ShellClear) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    hido_shell.o(i.HIDO_ShellCmdRegister) refers to hido_shell.o(.data) for l_astShellCmdList
    hido_shell.o(i.HIDO_ShellExecute) refers to strlen.o(.text) for strlen
    hido_shell.o(i.HIDO_ShellExecute) refers to hido_util.o(i.HIDO_UtilStrSplit) for HIDO_UtilStrSplit
    hido_shell.o(i.HIDO_ShellExecute) refers to strcmp.o(.text) for strcmp
    hido_shell.o(i.HIDO_ShellExecute) refers to hido_shell.o(i.HIDO_ShellGetCmdCount) for HIDO_ShellGetCmdCount
    hido_shell.o(i.HIDO_ShellExecute) refers to hido_shell.o(.data) for l_astShellCmdList
    hido_shell.o(i.HIDO_ShellGetCmdCount) refers to hido_shell.o(.data) for l_u32ShellCmdCount
    hido_shell.o(i.HIDO_ShellGetCmdName) refers to hido_shell.o(.data) for l_u32ShellCmdCount
    hido_shell.o(i.HIDO_ShellGetInput) refers to hido_shell.o(.data) for l_pstShellInput
    hido_shell.o(i.HIDO_ShellLs) refers to hido_shell.o(i.HIDO_ShellGetInput) for HIDO_ShellGetInput
    hido_shell.o(i.HIDO_ShellLs) refers to hido_shell.o(i.HIDO_ShellGetCmdCount) for HIDO_ShellGetCmdCount
    hido_shell.o(i.HIDO_ShellLs) refers to hido_shell.o(.data) for l_astShellCmdList
    hido_shell.o(i.HIDO_ShellSetInput) refers to hido_shell.o(.data) for l_pstShellInput
    hido_shell.o(.data) refers to hido_shell.o(.conststring) for .conststring
    hido_shell.o(.data) refers to hido_shell.o(i.HIDO_ShellClear) for HIDO_ShellClear
    hido_shell.o(.data) refers to hido_shell.o(i.HIDO_ShellLs) for HIDO_ShellLs
    hido_atlite.o(i.HIDO_ATLiteCmdSend) refers to printfa.o(i.__0vsnprintf) for vsnprintf
    hido_atlite.o(i.HIDO_ATLiteCmdSend) refers to dbg.o(i.HIDO_DebugString) for HIDO_DebugString
    hido_atlite.o(i.HIDO_ATLiteCmdSend) refers to hido_atlite.o(i.HIDO_ATLiteDataSend) for HIDO_ATLiteDataSend
    hido_atlite.o(i.HIDO_ATLiteCmdSend) refers to hido_atlite.o(.data) for l_bATDebugFlag
    hido_atlite.o(i.HIDO_ATLiteCmdSendOver) refers to hido_timer.o(i.HIDO_TimerCancel) for HIDO_TimerCancel
    hido_atlite.o(i.HIDO_ATLiteDataSend) refers to hido_atlite.o(i.HIDO_ATLiteCmdSendOver) for HIDO_ATLiteCmdSendOver
    hido_atlite.o(i.HIDO_ATLiteDataSend) refers to hido_timer.o(i.HIDO_TimerStart) for HIDO_TimerStart
    hido_atlite.o(i.HIDO_ATLiteDataSend) refers to hido_atlite.o(i.HIDO_ATLiteTimeout) for HIDO_ATLiteTimeout
    hido_atlite.o(i.HIDO_ATLiteDataSend) refers to hido_atlite.o(i.HIDO_ATLiteSendError) for HIDO_ATLiteSendError
    hido_atlite.o(i.HIDO_ATLiteDebugOff) refers to hido_atlite.o(.data) for l_bATDebugFlag
    hido_atlite.o(i.HIDO_ATLiteDebugOn) refers to hido_atlite.o(.data) for l_bATDebugFlag
    hido_atlite.o(i.HIDO_ATLiteDeviceInit) refers to hido_util.o(i.HIDO_UtilBzero) for HIDO_UtilBzero
    hido_atlite.o(i.HIDO_ATLiteDeviceInit) refers to hido_timer.o(i.HIDO_TimerCreate) for HIDO_TimerCreate
    hido_atlite.o(i.HIDO_ATLiteDeviceInit) refers to hido_atlite.o(i.HIDO_ATLiteDeviceRegister) for HIDO_ATLiteDeviceRegister
    hido_atlite.o(i.HIDO_ATLiteDeviceRegister) refers to hido_atlite.o(.data) for l_pstDeviceList
    hido_atlite.o(i.HIDO_ATLiteEvent) refers to hido_atlite.o(i.HIDO_ATLiteCmdSendOver) for HIDO_ATLiteCmdSendOver
    hido_atlite.o(i.HIDO_ATLiteEvent) refers to hido_fsm.o(i.HIDO_FSMEventExecute) for HIDO_FSMEventExecute
    hido_atlite.o(i.HIDO_ATLiteGetDebugFlag) refers to hido_atlite.o(.data) for l_bATDebugFlag
    hido_atlite.o(i.HIDO_ATLitePoll) refers to hido_util.o(i.HIDO_UtilIsAsciiString) for HIDO_UtilIsAsciiString
    hido_atlite.o(i.HIDO_ATLitePoll) refers to dbg.o(i.HIDO_Debug) for HIDO_Debug
    hido_atlite.o(i.HIDO_ATLitePoll) refers to dbg.o(i.HIDO_DebugHex) for HIDO_DebugHex
    hido_atlite.o(i.HIDO_ATLitePoll) refers to hido_atliteparse.o(i.HIDO_ATLiteCmdParse) for HIDO_ATLiteCmdParse
    hido_atlite.o(i.HIDO_ATLitePoll) refers to hido_atlite.o(.data) for l_pstDeviceList
    hido_atlite.o(i.HIDO_ATLiteSendError) refers to hido_atlite.o(i.HIDO_ATLiteEvent) for HIDO_ATLiteEvent
    hido_atlite.o(i.HIDO_ATLiteTimeout) refers to hido_atlite.o(i.HIDO_ATLiteEvent) for HIDO_ATLiteEvent
    hido_basequeue.o(i.HIDO_BaseQueueDequeue) refers to uidiv.o(.text) for __aeabi_uidivmod
    hido_basequeue.o(i.HIDO_BaseQueueEnqueue) refers to uidiv.o(.text) for __aeabi_uidivmod
    hido_basequeue.o(i.HIDO_BaseQueueGetContinuousSize) refers to uidiv.o(.text) for __aeabi_uidivmod
    hido_atliteparse.o(i.HIDO_ATLiteCmdParse) refers to hido_atliteparse.o(i.HIDO_ATLiteMatchFlagInit) for HIDO_ATLiteMatchFlagInit
    hido_atliteparse.o(i.HIDO_ATLiteCmdParse) refers to hido_atliteparse.o(i.HIDO_AtLiteMatch) for HIDO_AtLiteMatch
    hido_atliteparse.o(i.HIDO_ATLiteCmdParse) refers to hido_atlite.o(i.HIDO_ATLiteEvent) for HIDO_ATLiteEvent
    hido_atliteparse.o(i.HIDO_ATLiteMatchFlagInit) refers to memseta.o(.text) for __aeabi_memset
    asin.o(i.__softfp_asin) refers (Special) to iusefp.o(.text) for __I$use$fp
    asin.o(i.__softfp_asin) refers to asin.o(i.asin) for asin
    asin.o(i.asin) refers (Special) to iusefp.o(.text) for __I$use$fp
    asin.o(i.asin) refers to dunder.o(i.__mathlib_dbl_infnan) for __mathlib_dbl_infnan
    asin.o(i.asin) refers to dmul.o(.text) for __aeabi_dmul
    asin.o(i.asin) refers to errno.o(i.__set_errno) for __set_errno
    asin.o(i.asin) refers to dunder.o(i.__mathlib_dbl_invalid) for __mathlib_dbl_invalid
    asin.o(i.asin) refers to fpclassify.o(i.__ARM_fpclassify) for __ARM_fpclassify
    asin.o(i.asin) refers to dunder.o(i.__mathlib_dbl_underflow) for __mathlib_dbl_underflow
    asin.o(i.asin) refers to poly.o(i.__kernel_poly) for __kernel_poly
    asin.o(i.asin) refers to dadd.o(.text) for __aeabi_dadd
    asin.o(i.asin) refers to ddiv.o(.text) for __aeabi_ddiv
    asin.o(i.asin) refers to dscalb.o(.text) for __ARM_scalbn
    asin.o(i.asin) refers to sqrt.o(i.sqrt) for sqrt
    asin.o(i.asin) refers to asin.o(.constdata) for .constdata
    asin.o(.constdata) refers (Special) to iusefp.o(.text) for __I$use$fp
    asin_x.o(i.____softfp_asin$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp
    asin_x.o(i.____softfp_asin$lsc) refers to asin_x.o(i.__asin$lsc) for __asin$lsc
    asin_x.o(i.__asin$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp
    asin_x.o(i.__asin$lsc) refers to dunder.o(i.__mathlib_dbl_infnan) for __mathlib_dbl_infnan
    asin_x.o(i.__asin$lsc) refers to dmul.o(.text) for __aeabi_dmul
    asin_x.o(i.__asin$lsc) refers to errno.o(i.__set_errno) for __set_errno
    asin_x.o(i.__asin$lsc) refers to poly.o(i.__kernel_poly) for __kernel_poly
    asin_x.o(i.__asin$lsc) refers to dadd.o(.text) for __aeabi_dadd
    asin_x.o(i.__asin$lsc) refers to ddiv.o(.text) for __aeabi_ddiv
    asin_x.o(i.__asin$lsc) refers to dscalb.o(.text) for __ARM_scalbn
    asin_x.o(i.__asin$lsc) refers to sqrt.o(i.sqrt) for sqrt
    asin_x.o(i.__asin$lsc) refers to asin_x.o(.constdata) for .constdata
    asin_x.o(.constdata) refers (Special) to iusefp.o(.text) for __I$use$fp
    atof.o(i.__softfp_atof) refers (Special) to iusefp.o(.text) for __I$use$fp
    atof.o(i.__softfp_atof) refers to errno.o(i.__read_errno) for __read_errno
    atof.o(i.__softfp_atof) refers to strtod.o(.text) for __strtod_int
    atof.o(i.__softfp_atof) refers to errno.o(i.__set_errno) for __set_errno
    atof.o(i.atof) refers (Special) to iusefp.o(.text) for __I$use$fp
    atof.o(i.atof) refers to errno.o(i.__read_errno) for __read_errno
    atof.o(i.atof) refers to strtod.o(.text) for __strtod_int
    atof.o(i.atof) refers to errno.o(i.__set_errno) for __set_errno
    ceil.o(i.__softfp_ceil) refers (Special) to iusefp.o(.text) for __I$use$fp
    ceil.o(i.__softfp_ceil) refers to ceil.o(i.ceil) for ceil
    ceil.o(i.ceil) refers (Special) to iusefp.o(.text) for __I$use$fp
    ceil.o(i.ceil) refers to dadd.o(.text) for __aeabi_dadd
    ceil.o(i.ceil) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
    floor.o(i.__softfp_floor) refers (Special) to iusefp.o(.text) for __I$use$fp
    floor.o(i.__softfp_floor) refers to floor.o(i.floor) for floor
    floor.o(i.floor) refers (Special) to iusefp.o(.text) for __I$use$fp
    floor.o(i.floor) refers to dadd.o(.text) for __aeabi_dadd
    floor.o(i.floor) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
    pow.o(i.__softfp_pow) refers (Special) to iusefp.o(.text) for __I$use$fp
    pow.o(i.__softfp_pow) refers to pow.o(i.pow) for pow
    pow.o(i.pow) refers (Special) to iusefp.o(.text) for __I$use$fp
    pow.o(i.pow) refers to dunder.o(i.__mathlib_dbl_infnan2) for __mathlib_dbl_infnan2
    pow.o(i.pow) refers to errno.o(i.__set_errno) for __set_errno
    pow.o(i.pow) refers to dunder.o(i.__mathlib_dbl_divzero) for __mathlib_dbl_divzero
    pow.o(i.pow) refers to ddiv.o(.text) for __aeabi_ddiv
    pow.o(i.pow) refers to sqrt.o(i.sqrt) for sqrt
    pow.o(i.pow) refers to dflti.o(.text) for __aeabi_i2d
    pow.o(i.pow) refers to dunder.o(i.__mathlib_dbl_invalid) for __mathlib_dbl_invalid
    pow.o(i.pow) refers to dunder.o(i.__mathlib_dbl_overflow) for __mathlib_dbl_overflow
    pow.o(i.pow) refers to dmul.o(.text) for __aeabi_dmul
    pow.o(i.pow) refers to dunder.o(i.__mathlib_dbl_underflow) for __mathlib_dbl_underflow
    pow.o(i.pow) refers to dadd.o(.text) for __aeabi_dsub
    pow.o(i.pow) refers to dscalb.o(.text) for __ARM_scalbn
    pow.o(i.pow) refers to qnan.o(.constdata) for __mathlib_zero
    pow.o(i.pow) refers to poly.o(i.__kernel_poly) for __kernel_poly
    pow.o(i.pow) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
    pow.o(i.pow) refers to pow.o(.constdata) for .constdata
    pow.o(i.pow) refers to fpclassify.o(i.__ARM_fpclassify) for __ARM_fpclassify
    pow.o(.constdata) refers (Special) to iusefp.o(.text) for __I$use$fp
    pow_x.o(i.____softfp_pow$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp
    pow_x.o(i.____softfp_pow$lsc) refers to pow_x.o(i.__pow$lsc) for __pow$lsc
    pow_x.o(i.__pow$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp
    pow_x.o(i.__pow$lsc) refers to dunder.o(i.__mathlib_dbl_infnan2) for __mathlib_dbl_infnan2
    pow_x.o(i.__pow$lsc) refers to errno.o(i.__set_errno) for __set_errno
    pow_x.o(i.__pow$lsc) refers to ddiv.o(.text) for __aeabi_ddiv
    pow_x.o(i.__pow$lsc) refers to sqrt.o(i.sqrt) for sqrt
    pow_x.o(i.__pow$lsc) refers to dflti.o(.text) for __aeabi_i2d
    pow_x.o(i.__pow$lsc) refers to dmul.o(.text) for __aeabi_dmul
    pow_x.o(i.__pow$lsc) refers to dadd.o(.text) for __aeabi_dsub
    pow_x.o(i.__pow$lsc) refers to dscalb.o(.text) for __ARM_scalbn
    pow_x.o(i.__pow$lsc) refers to qnan.o(.constdata) for __mathlib_zero
    pow_x.o(i.__pow$lsc) refers to poly.o(i.__kernel_poly) for __kernel_poly
    pow_x.o(i.__pow$lsc) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
    pow_x.o(i.__pow$lsc) refers to pow_x.o(.constdata) for .constdata
    pow_x.o(.constdata) refers (Special) to iusefp.o(.text) for __I$use$fp
    rint.o(i.rint) refers (Special) to iusefp.o(.text) for __I$use$fp
    rint.o(i.rint) refers to drnd.o(.text) for _drnd
    sqrt.o(i.__softfp_sqrt) refers (Special) to iusefp.o(.text) for __I$use$fp
    sqrt.o(i.__softfp_sqrt) refers to dsqrt.o(.text) for _dsqrt
    sqrt.o(i.__softfp_sqrt) refers to errno.o(i.__set_errno) for __set_errno
    sqrt.o(i.sqrt) refers (Special) to iusefp.o(.text) for __I$use$fp
    sqrt.o(i.sqrt) refers to dsqrt.o(.text) for _dsqrt
    sqrt.o(i.sqrt) refers to errno.o(i.__set_errno) for __set_errno
    sqrt_x.o(i.____softfp_sqrt$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp
    sqrt_x.o(i.____softfp_sqrt$lsc) refers to cdcmple.o(.text) for __aeabi_cdcmple
    sqrt_x.o(i.____softfp_sqrt$lsc) refers to errno.o(i.__set_errno) for __set_errno
    sqrt_x.o(i.____softfp_sqrt$lsc) refers to dsqrt.o(.text) for _dsqrt
    sqrt_x.o(i.__sqrt$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp
    sqrt_x.o(i.__sqrt$lsc) refers to cdcmple.o(.text) for __aeabi_cdcmple
    sqrt_x.o(i.__sqrt$lsc) refers to errno.o(i.__set_errno) for __set_errno
    sqrt_x.o(i.__sqrt$lsc) refers to dsqrt.o(.text) for _dsqrt
    entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry10a.o(.ARM.Collect$$$$0000000D) for __rt_final_cpp
    entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry11a.o(.ARM.Collect$$$$0000000F) for __rt_final_exit
    entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry7b.o(.ARM.Collect$$$$00000008) for _main_clock
    entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry8b.o(.ARM.Collect$$$$0000000A) for _main_cpp_init
    entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry9a.o(.ARM.Collect$$$$0000000B) for _main_init
    entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry5.o(.ARM.Collect$$$$00000004) for _main_scatterload
    entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry2.o(.ARM.Collect$$$$00000001) for _main_stk
    idiv.o(.text) refers to uidiv.o(.text) for __aeabi_uidivmod
    uldiv.o(.text) refers to llushr.o(.text) for __aeabi_llsr
    uldiv.o(.text) refers to llshl.o(.text) for __aeabi_llsl
    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
    __0sscanf.o(.text) refers to scanf_char.o(.text) for __vfscanf_char
    __0sscanf.o(.text) refers to _sgetc.o(.text) for _sgetc
    _scanf_int.o(.text) refers to _chval.o(.text) for _chval
    atoi.o(.text) refers to errno.o(i.__aeabi_errno_addr) for __aeabi_errno_addr
    atoi.o(.text) refers to strtol.o(.text) for strtol
    fmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    fdiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    fdiv.o(.text) refers to fepilogue.o(.text) for _float_round
    fscalb.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    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
    dscalb.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    fflti.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    fflti.o(.text) refers to fepilogue.o(.text) for _float_epilogue
    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
    ffixui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    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
    dunder.o(i.__mathlib_dbl_divzero) refers to ddiv.o(.text) for __aeabi_ddiv
    dunder.o(i.__mathlib_dbl_infnan) refers to dscalb.o(.text) for __ARM_scalbn
    dunder.o(i.__mathlib_dbl_infnan2) refers to dadd.o(.text) for __aeabi_dadd
    dunder.o(i.__mathlib_dbl_invalid) refers to ddiv.o(.text) for __aeabi_ddiv
    dunder.o(i.__mathlib_dbl_overflow) refers to dscalb.o(.text) for __ARM_scalbn
    dunder.o(i.__mathlib_dbl_posinfnan) refers to dmul.o(.text) for __aeabi_dmul
    dunder.o(i.__mathlib_dbl_underflow) refers to dscalb.o(.text) for __ARM_scalbn
    fpclassify.o(i.__ARM_fpclassify) refers (Special) to iusefp.o(.text) for __I$use$fp
    poly.o(i.__kernel_poly) refers (Special) to iusefp.o(.text) for __I$use$fp
    poly.o(i.__kernel_poly) refers to dmul.o(.text) for __aeabi_dmul
    poly.o(i.__kernel_poly) refers to dadd.o(.text) for __aeabi_dadd
    qnan.o(.constdata) 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_stm32l071xx.o(STACK) for __initial_sp
    entry2.o(__vectab_stack_and_reset_area) refers to startup_stm32l071xx.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
    errno.o(i.__aeabi_errno_addr) refers to errno.o(.data) for .data
    errno.o(i.__read_errno) refers to errno.o(.data) for .data
    errno.o(i.__set_errno) refers to errno.o(.data) for .data
    scanf_char.o(.text) refers to _scanf.o(.text) for __vfscanf
    scanf_char.o(.text) refers to isspace_o.o(.text) for isspace
    strtod.o(.text) refers to scanf_fp.o(.text) for _scanf_real
    strtod.o(.text) refers to _sgetc.o(.text) for _sgetc
    strtod.o(.text) refers to isspace_o.o(.text) for isspace
    strtol.o(.text) refers to ctype_o.o(.text) for __rt_ctype_table
    strtol.o(.text) refers to _strtoul.o(.text) for _strtoul
    strtol.o(.text) refers to errno.o(i.__aeabi_errno_addr) for __aeabi_errno_addr
    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
    dsqrt.o(.text) refers to llushr.o(.text) for __aeabi_llsr
    dsqrt.o(.text) refers to depilogue.o(.text) for _double_round
    drnd.o(.text) refers to llshl.o(.text) for __aeabi_llsl
    drnd.o(.text) refers to llushr.o(.text) for __aeabi_llsr
    drnd.o(.text) refers to depilogue.o(.text) for _double_round
    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
    isspace_c.o(.text) refers to ctype_c.o(.text) for __ctype_lookup
    ctype_o.o(.text) refers to ctype_o.o(.constdata) for .constdata
    ctype_o.o(.constdata) refers to ctype_o.o(.constdata) for __ctype_table
    isalnum_o.o(.text) refers to ctype_o.o(.text) for __rt_ctype_table
    isalpha_o.o(.text) refers to ctype_o.o(.text) for __rt_ctype_table
    isblank_o.o(.text) refers to ctype_o.o(.constdata) for __ctype_table
    iscntrl_o.o(.text) refers to ctype_o.o(.text) for __rt_ctype_table
    isdigit_o.o(.text) refers to ctype_o.o(.text) for __rt_ctype_table
    isgraph_o.o(.text) refers to ctype_o.o(.text) for __rt_ctype_table
    islower_o.o(.text) refers to ctype_o.o(.text) for __rt_ctype_table
    isprint_o.o(.text) refers to ctype_o.o(.text) for __rt_ctype_table
    ispunct_o.o(.text) refers to ctype_o.o(.text) for __rt_ctype_table
    isspace_o.o(.text) refers to ctype_o.o(.text) for __rt_ctype_table
    isupper_o.o(.text) refers to ctype_o.o(.text) for __rt_ctype_table
    isxdigit_o.o(.text) refers to ctype_o.o(.text) for __rt_ctype_table
    _scanf.o(.text) refers (Weak) to scanf_fp.o(.text) for _scanf_real
    _scanf.o(.text) refers (Weak) to _scanf_int.o(.text) for _scanf_int
    scanf_fp.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    scanf_fp.o(.text) refers to llmul.o(.text) for __aeabi_lmul
    scanf_fp.o(.text) refers to dfltul.o(.text) for __aeabi_ul2d
    scanf_fp.o(.text) refers to dmul.o(.text) for __aeabi_dmul
    scanf_fp.o(.text) refers to ddiv.o(.text) for __aeabi_ddiv
    scanf_fp.o(.text) refers to scanf_fp.o(i._is_digit) for _is_digit
    scanf_fp.o(.text) refers to d2f.o(.text) for __aeabi_d2f
    _strtoul.o(.text) refers to _chval.o(.text) for _chval
    _strtoul.o(.text) refers to errno.o(i.__aeabi_errno_addr) for __aeabi_errno_addr
    llmul.o(.text) refers to llshl.o(.text) for __aeabi_llsl
    ctype_c.o(.text) refers to ctype_c.o(.constdata) for .constdata
    dfltul.o(.text) refers to depilogue.o(.text) for _double_epilogue
    scanf_fp.o(i._is_digit) refers (Special) to iusefp.o(.text) for __I$use$fp
 
 
==============================================================================
 
Removing Unused input sections from the image.
 
    Removing startup_stm32l071xx.o(HEAP), (512 bytes).
    Removing main.o(.rev16_text), (4 bytes).
    Removing main.o(.revsh_text), (4 bytes).
    Removing main.o(i.Beep_Off), (28 bytes).
    Removing main.o(i.Beep_On), (28 bytes).
    Removing main.o(i.MX_ADC1_Init), (8 bytes).
    Removing main.o(i.MX_ADC_DeInit), (20 bytes).
    Removing main.o(.data), (2 bytes).
    Removing main.o(.data), (2 bytes).
    Removing main.o(.data), (2 bytes).
    Removing main.o(.data), (2 bytes).
    Removing main.o(.data), (2 bytes).
    Removing main.o(.data), (2 bytes).
    Removing main.o(.data), (2 bytes).
    Removing stm32l0xx_it.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_it.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_msp.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_msp.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_msp.o(i.HAL_ADC_MspDeInit), (40 bytes).
    Removing stm32l0xx_hal_msp.o(i.HAL_LPTIM_MspDeInit), (36 bytes).
    Removing stm32l0xx_hal_msp.o(i.HAL_RTC_MspDeInit), (32 bytes).
    Removing stm32l0xx_hal_msp.o(i.HAL_SPI_MspDeInit), (40 bytes).
    Removing stm32l0xx_hal_msp.o(i.HAL_TIM_PWM_MspDeInit), (28 bytes).
    Removing stm32l0xx_hal_adc.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_adc.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_adc.o(i.ADC_ConversionStop), (90 bytes).
    Removing stm32l0xx_hal_adc.o(i.ADC_DMAConvCplt), (110 bytes).
    Removing stm32l0xx_hal_adc.o(i.ADC_DMAError), (26 bytes).
    Removing stm32l0xx_hal_adc.o(i.ADC_DMAHalfConvCplt), (10 bytes).
    Removing stm32l0xx_hal_adc.o(i.ADC_Disable), (104 bytes).
    Removing stm32l0xx_hal_adc.o(i.HAL_ADC_AnalogWDGConfig), (156 bytes).
    Removing stm32l0xx_hal_adc.o(i.HAL_ADC_ConvCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_adc.o(i.HAL_ADC_ConvHalfCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_adc.o(i.HAL_ADC_DeInit), (180 bytes).
    Removing stm32l0xx_hal_adc.o(i.HAL_ADC_ErrorCallback), (2 bytes).
    Removing stm32l0xx_hal_adc.o(i.HAL_ADC_GetError), (4 bytes).
    Removing stm32l0xx_hal_adc.o(i.HAL_ADC_IRQHandler), (202 bytes).
    Removing stm32l0xx_hal_adc.o(i.HAL_ADC_LevelOutOfWindowCallback), (2 bytes).
    Removing stm32l0xx_hal_adc.o(i.HAL_ADC_MspDeInit), (2 bytes).
    Removing stm32l0xx_hal_adc.o(i.HAL_ADC_MspInit), (2 bytes).
    Removing stm32l0xx_hal_adc.o(i.HAL_ADC_PollForEvent), (126 bytes).
    Removing stm32l0xx_hal_adc.o(i.HAL_ADC_Start_DMA), (160 bytes).
    Removing stm32l0xx_hal_adc.o(i.HAL_ADC_Start_IT), (124 bytes).
    Removing stm32l0xx_hal_adc.o(i.HAL_ADC_Stop), (62 bytes).
    Removing stm32l0xx_hal_adc.o(i.HAL_ADC_Stop_DMA), (120 bytes).
    Removing stm32l0xx_hal_adc.o(i.HAL_ADC_Stop_IT), (72 bytes).
    Removing stm32l0xx_hal_adc_ex.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_adc_ex.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_adc_ex.o(i.HAL_ADCEx_Calibration_GetValue), (12 bytes).
    Removing stm32l0xx_hal_adc_ex.o(i.HAL_ADCEx_Calibration_SetValue), (94 bytes).
    Removing stm32l0xx_hal_adc_ex.o(i.HAL_ADCEx_Calibration_Start), (178 bytes).
    Removing stm32l0xx_hal_adc_ex.o(i.HAL_ADCEx_DisableVREFINT), (16 bytes).
    Removing stm32l0xx_hal_adc_ex.o(i.HAL_ADCEx_DisableVREFINTTempSensor), (16 bytes).
    Removing stm32l0xx_hal_adc_ex.o(i.HAL_ADCEx_EnableVREFINT), (56 bytes).
    Removing stm32l0xx_hal_adc_ex.o(i.HAL_ADCEx_EnableVREFINTTempSensor), (56 bytes).
    Removing stm32l0xx_hal.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal.o(i.HAL_DBGMCU_DBG_DisableLowPowerConfig), (16 bytes).
    Removing stm32l0xx_hal.o(i.HAL_DBGMCU_DBG_EnableLowPowerConfig), (16 bytes).
    Removing stm32l0xx_hal.o(i.HAL_DBGMCU_DisableDBGSleepMode), (16 bytes).
    Removing stm32l0xx_hal.o(i.HAL_DBGMCU_DisableDBGStandbyMode), (16 bytes).
    Removing stm32l0xx_hal.o(i.HAL_DBGMCU_DisableDBGStopMode), (16 bytes).
    Removing stm32l0xx_hal.o(i.HAL_DBGMCU_EnableDBGSleepMode), (16 bytes).
    Removing stm32l0xx_hal.o(i.HAL_DBGMCU_EnableDBGStandbyMode), (16 bytes).
    Removing stm32l0xx_hal.o(i.HAL_DBGMCU_EnableDBGStopMode), (16 bytes).
    Removing stm32l0xx_hal.o(i.HAL_DeInit), (40 bytes).
    Removing stm32l0xx_hal.o(i.HAL_GetDEVID), (16 bytes).
    Removing stm32l0xx_hal.o(i.HAL_GetHalVersion), (8 bytes).
    Removing stm32l0xx_hal.o(i.HAL_GetREVID), (12 bytes).
    Removing stm32l0xx_hal.o(i.HAL_GetTickFreq), (12 bytes).
    Removing stm32l0xx_hal.o(i.HAL_GetTickPrio), (12 bytes).
    Removing stm32l0xx_hal.o(i.HAL_GetUIDw0), (12 bytes).
    Removing stm32l0xx_hal.o(i.HAL_GetUIDw1), (12 bytes).
    Removing stm32l0xx_hal.o(i.HAL_GetUIDw2), (12 bytes).
    Removing stm32l0xx_hal.o(i.HAL_MspDeInit), (2 bytes).
    Removing stm32l0xx_hal.o(i.HAL_MspInit), (2 bytes).
    Removing stm32l0xx_hal.o(i.HAL_ResumeTick), (16 bytes).
    Removing stm32l0xx_hal.o(i.HAL_SYSCFG_Disable_Lock_VREFINT), (16 bytes).
    Removing stm32l0xx_hal.o(i.HAL_SYSCFG_Enable_Lock_VREFINT), (16 bytes).
    Removing stm32l0xx_hal.o(i.HAL_SYSCFG_GetBootMode), (16 bytes).
    Removing stm32l0xx_hal.o(i.HAL_SYSCFG_VREFINT_OutputSelect), (24 bytes).
    Removing stm32l0xx_hal.o(i.HAL_SetTickFreq), (36 bytes).
    Removing stm32l0xx_hal.o(i.HAL_SuspendTick), (16 bytes).
    Removing stm32l0xx_hal_i2c.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_i2c.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_AbortCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_AddrCallback), (2 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_DeInit), (52 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_DisableListen_IT), (50 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_ER_IRQHandler), (94 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_EV_IRQHandler), (16 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_EnableListen_IT), (40 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_ErrorCallback), (2 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_GetError), (4 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_GetMode), (6 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_GetState), (6 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Init), (180 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_IsDeviceReady), (288 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_ListenCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_MasterRxCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_MasterTxCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Abort_IT), (112 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Receive), (272 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Receive_DMA), (280 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Receive_IT), (128 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Receive_DMA), (316 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Receive_IT), (156 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Transmit_DMA), (312 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Seq_Transmit_IT), (156 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit), (272 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit_DMA), (284 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit_IT), (128 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_MemRxCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_MemTxCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Read), (340 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_DMA), (252 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_IT), (156 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Write), (332 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_DMA), (248 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_IT), (156 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_MspDeInit), (2 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_MspInit), (2 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_SlaveRxCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_SlaveTxCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive), (294 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive_DMA), (200 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive_IT), (88 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Receive_DMA), (372 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Receive_IT), (212 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Transmit_DMA), (376 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Transmit_IT), (216 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit), (342 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit_DMA), (260 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit_IT), (124 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_ConvertOtherXferOptions), (28 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_DMAAbort), (28 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_DMAError), (24 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_DMAMasterReceiveCplt), (84 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_DMAMasterTransmitCplt), (84 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_DMASlaveReceiveCplt), (42 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_DMASlaveTransmitCplt), (36 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_Disable_IRQ), (82 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_Enable_IRQ), (128 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_Flush_TXDR), (34 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_ITAddrCplt), (124 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_ITError), (276 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_ITListenCplt), (104 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_ITMasterCplt), (216 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_ITMasterSeqCplt), (70 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_ITSlaveCplt), (316 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_ITSlaveSeqCplt), (106 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_IsErrorOccurred), (272 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_DMA), (268 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_Master_ISR_IT), (304 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_Mem_ISR_DMA), (272 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_Mem_ISR_IT), (288 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_RequestMemoryRead), (96 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_RequestMemoryWrite), (96 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_DMA), (274 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_Slave_ISR_IT), (304 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_TransferConfig), (44 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_TreatErrorCallback), (38 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_WaitOnFlagUntilTimeout), (98 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_WaitOnRXNEFlagUntilTimeout), (156 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_WaitOnSTOPFlagUntilTimeout), (86 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_WaitOnTXISFlagUntilTimeout), (90 bytes).
    Removing stm32l0xx_hal_i2c_ex.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_i2c_ex.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_i2c_ex.o(i.HAL_I2CEx_ConfigAnalogFilter), (74 bytes).
    Removing stm32l0xx_hal_i2c_ex.o(i.HAL_I2CEx_ConfigDigitalFilter), (72 bytes).
    Removing stm32l0xx_hal_i2c_ex.o(i.HAL_I2CEx_DisableFastModePlus), (28 bytes).
    Removing stm32l0xx_hal_i2c_ex.o(i.HAL_I2CEx_DisableWakeUp), (66 bytes).
    Removing stm32l0xx_hal_i2c_ex.o(i.HAL_I2CEx_EnableFastModePlus), (28 bytes).
    Removing stm32l0xx_hal_i2c_ex.o(i.HAL_I2CEx_EnableWakeUp), (66 bytes).
    Removing stm32l0xx_hal_rcc.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_rcc.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_rcc.o(i.HAL_RCC_CSSCallback), (2 bytes).
    Removing stm32l0xx_hal_rcc.o(i.HAL_RCC_DeInit), (212 bytes).
    Removing stm32l0xx_hal_rcc.o(i.HAL_RCC_EnableCSS), (20 bytes).
    Removing stm32l0xx_hal_rcc.o(i.HAL_RCC_GetClockConfig), (64 bytes).
    Removing stm32l0xx_hal_rcc.o(i.HAL_RCC_GetHCLKFreq), (12 bytes).
    Removing stm32l0xx_hal_rcc.o(i.HAL_RCC_GetOscConfig), (184 bytes).
    Removing stm32l0xx_hal_rcc.o(i.HAL_RCC_MCOConfig), (132 bytes).
    Removing stm32l0xx_hal_rcc.o(i.HAL_RCC_NMI_IRQHandler), (24 bytes).
    Removing stm32l0xx_hal_rcc_ex.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_rcc_ex.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_rcc_ex.o(i.HAL_RCCEx_DisableLSECSS), (32 bytes).
    Removing stm32l0xx_hal_rcc_ex.o(i.HAL_RCCEx_EnableLSECSS), (20 bytes).
    Removing stm32l0xx_hal_rcc_ex.o(i.HAL_RCCEx_EnableLSECSS_IT), (52 bytes).
    Removing stm32l0xx_hal_rcc_ex.o(i.HAL_RCCEx_GetPeriphCLKConfig), (100 bytes).
    Removing stm32l0xx_hal_rcc_ex.o(i.HAL_RCCEx_GetPeriphCLKFreq), (352 bytes).
    Removing stm32l0xx_hal_rcc_ex.o(i.HAL_RCCEx_LSECSS_Callback), (2 bytes).
    Removing stm32l0xx_hal_rcc_ex.o(i.HAL_RCCEx_LSECSS_IRQHandler), (24 bytes).
    Removing stm32l0xx_hal_flash_ramfunc.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_flash_ramfunc.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_flash_ramfunc.o(i.FLASHRAM_SetErrorCode), (144 bytes).
    Removing stm32l0xx_hal_flash_ramfunc.o(i.FLASHRAM_WaitForLastOperation), (96 bytes).
    Removing stm32l0xx_hal_flash_ramfunc.o(i.HAL_FLASHEx_DisableRunPowerDown), (36 bytes).
    Removing stm32l0xx_hal_flash_ramfunc.o(i.HAL_FLASHEx_EnableRunPowerDown), (36 bytes).
    Removing stm32l0xx_hal_flash_ramfunc.o(i.HAL_FLASHEx_EraseParallelPage), (88 bytes).
    Removing stm32l0xx_hal_flash_ramfunc.o(i.HAL_FLASHEx_GetError), (16 bytes).
    Removing stm32l0xx_hal_flash_ramfunc.o(i.HAL_FLASHEx_HalfPageProgram), (84 bytes).
    Removing stm32l0xx_hal_flash_ramfunc.o(i.HAL_FLASHEx_ProgramParallelHalfPage), (136 bytes).
    Removing stm32l0xx_hal_flash.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_flash.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_flash.o(i.HAL_FLASH_EndOfOperationCallback), (2 bytes).
    Removing stm32l0xx_hal_flash.o(i.HAL_FLASH_GetError), (12 bytes).
    Removing stm32l0xx_hal_flash.o(i.HAL_FLASH_IRQHandler), (220 bytes).
    Removing stm32l0xx_hal_flash.o(i.HAL_FLASH_OB_Launch), (32 bytes).
    Removing stm32l0xx_hal_flash.o(i.HAL_FLASH_OB_Lock), (20 bytes).
    Removing stm32l0xx_hal_flash.o(i.HAL_FLASH_OB_Unlock), (68 bytes).
    Removing stm32l0xx_hal_flash.o(i.HAL_FLASH_OperationErrorCallback), (2 bytes).
    Removing stm32l0xx_hal_flash.o(i.HAL_FLASH_Program_IT), (52 bytes).
    Removing stm32l0xx_hal_flash_ex.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_flash_ex.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_flash_ex.o(i.FLASH_OB_ProtectedSectorsConfig), (152 bytes).
    Removing stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_AdvOBGetConfig), (48 bytes).
    Removing stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_AdvOBProgram), (88 bytes).
    Removing stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_DATAEEPROM_DisableFixedTimeProgram), (16 bytes).
    Removing stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_DATAEEPROM_EnableFixedTimeProgram), (16 bytes).
    Removing stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_DATAEEPROM_Erase), (40 bytes).
    Removing stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_DATAEEPROM_Lock), (20 bytes).
    Removing stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_DATAEEPROM_Program), (88 bytes).
    Removing stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_DATAEEPROM_Unlock), (52 bytes).
    Removing stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase_IT), (92 bytes).
    Removing stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBGetConfig), (64 bytes).
    Removing stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBProgram), (292 bytes).
    Removing stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_OB_DeSelectPCROP), (52 bytes).
    Removing stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_OB_SelectPCROP), (56 bytes).
    Removing stm32l0xx_hal_gpio.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_gpio.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_gpio.o(i.HAL_GPIO_EXTI_Callback), (2 bytes).
    Removing stm32l0xx_hal_gpio.o(i.HAL_GPIO_LockPin), (36 bytes).
    Removing stm32l0xx_hal_gpio.o(i.HAL_GPIO_TogglePin), (16 bytes).
    Removing stm32l0xx_hal_dma.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_dma.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_dma.o(i.HAL_DMA_GetError), (4 bytes).
    Removing stm32l0xx_hal_dma.o(i.HAL_DMA_GetState), (6 bytes).
    Removing stm32l0xx_hal_dma.o(i.HAL_DMA_PollForTransfer), (190 bytes).
    Removing stm32l0xx_hal_dma.o(i.HAL_DMA_RegisterCallback), (72 bytes).
    Removing stm32l0xx_hal_dma.o(i.HAL_DMA_Start), (74 bytes).
    Removing stm32l0xx_hal_dma.o(i.HAL_DMA_UnRegisterCallback), (78 bytes).
    Removing stm32l0xx_hal_pwr.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_pwr.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_pwr.o(i.HAL_PWR_ConfigPVD), (104 bytes).
    Removing stm32l0xx_hal_pwr.o(i.HAL_PWR_DeInit), (24 bytes).
    Removing stm32l0xx_hal_pwr.o(i.HAL_PWR_DisableBkUpAccess), (16 bytes).
    Removing stm32l0xx_hal_pwr.o(i.HAL_PWR_DisablePVD), (16 bytes).
    Removing stm32l0xx_hal_pwr.o(i.HAL_PWR_DisableSEVOnPend), (16 bytes).
    Removing stm32l0xx_hal_pwr.o(i.HAL_PWR_DisableSleepOnExit), (16 bytes).
    Removing stm32l0xx_hal_pwr.o(i.HAL_PWR_DisableWakeUpPin), (16 bytes).
    Removing stm32l0xx_hal_pwr.o(i.HAL_PWR_EnablePVD), (16 bytes).
    Removing stm32l0xx_hal_pwr.o(i.HAL_PWR_EnableSEVOnPend), (16 bytes).
    Removing stm32l0xx_hal_pwr.o(i.HAL_PWR_EnableSleepOnExit), (16 bytes).
    Removing stm32l0xx_hal_pwr.o(i.HAL_PWR_EnableWakeUpPin), (16 bytes).
    Removing stm32l0xx_hal_pwr.o(i.HAL_PWR_EnterSLEEPMode), (96 bytes).
    Removing stm32l0xx_hal_pwr.o(i.HAL_PWR_EnterSTANDBYMode), (32 bytes).
    Removing stm32l0xx_hal_pwr.o(i.HAL_PWR_PVDCallback), (2 bytes).
    Removing stm32l0xx_hal_pwr.o(i.HAL_PWR_PVD_IRQHandler), (28 bytes).
    Removing stm32l0xx_hal_pwr_ex.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_pwr_ex.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_pwr_ex.o(i.HAL_PWREx_DisableFastWakeUp), (16 bytes).
    Removing stm32l0xx_hal_pwr_ex.o(i.HAL_PWREx_DisableLowPowerRunMode), (76 bytes).
    Removing stm32l0xx_hal_pwr_ex.o(i.HAL_PWREx_DisableUltraLowPower), (16 bytes).
    Removing stm32l0xx_hal_pwr_ex.o(i.HAL_PWREx_EnableFastWakeUp), (16 bytes).
    Removing stm32l0xx_hal_pwr_ex.o(i.HAL_PWREx_EnableLowPowerRunMode), (24 bytes).
    Removing stm32l0xx_hal_pwr_ex.o(i.HAL_PWREx_EnableUltraLowPower), (16 bytes).
    Removing stm32l0xx_hal_pwr_ex.o(i.HAL_PWREx_GetVoltageRange), (16 bytes).
    Removing stm32l0xx_hal_cortex.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_cortex.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_cortex.o(i.HAL_MPU_ConfigRegion), (84 bytes).
    Removing stm32l0xx_hal_cortex.o(i.HAL_MPU_Disable), (16 bytes).
    Removing stm32l0xx_hal_cortex.o(i.HAL_MPU_Enable), (24 bytes).
    Removing stm32l0xx_hal_cortex.o(i.HAL_NVIC_ClearPendingIRQ), (24 bytes).
    Removing stm32l0xx_hal_cortex.o(i.HAL_NVIC_GetPendingIRQ), (32 bytes).
    Removing stm32l0xx_hal_cortex.o(i.HAL_NVIC_GetPriority), (52 bytes).
    Removing stm32l0xx_hal_cortex.o(i.HAL_NVIC_SetPendingIRQ), (24 bytes).
    Removing stm32l0xx_hal_cortex.o(i.HAL_SYSTICK_CLKSourceConfig), (24 bytes).
    Removing stm32l0xx_hal_cortex.o(i.HAL_SYSTICK_Callback), (2 bytes).
    Removing stm32l0xx_hal_cortex.o(i.HAL_SYSTICK_IRQHandler), (8 bytes).
    Removing stm32l0xx_hal_exti.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_exti.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_exti.o(i.HAL_EXTI_ClearConfigLine), (100 bytes).
    Removing stm32l0xx_hal_exti.o(i.HAL_EXTI_ClearPending), (20 bytes).
    Removing stm32l0xx_hal_exti.o(i.HAL_EXTI_GenerateSWI), (20 bytes).
    Removing stm32l0xx_hal_exti.o(i.HAL_EXTI_GetConfigLine), (132 bytes).
    Removing stm32l0xx_hal_exti.o(i.HAL_EXTI_GetHandle), (14 bytes).
    Removing stm32l0xx_hal_exti.o(i.HAL_EXTI_GetPending), (24 bytes).
    Removing stm32l0xx_hal_exti.o(i.HAL_EXTI_IRQHandler), (36 bytes).
    Removing stm32l0xx_hal_exti.o(i.HAL_EXTI_RegisterCallback), (16 bytes).
    Removing stm32l0xx_hal_exti.o(i.HAL_EXTI_SetConfigLine), (148 bytes).
    Removing stm32l0xx_hal_iwdg.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_iwdg.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_lptim.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_lptim.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_CompareMatchCallback), (2 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_Counter_Start), (86 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_Counter_Start_IT), (140 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_Counter_Stop), (30 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_Counter_Stop_IT), (68 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_DeInit), (44 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_Encoder_Start), (86 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_Encoder_Start_IT), (126 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_Encoder_Stop), (44 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_Encoder_Stop_IT), (64 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_GetState), (6 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_MspDeInit), (2 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_MspInit), (2 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_OnePulse_Start), (92 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_OnePulse_Start_IT), (172 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_OnePulse_Stop), (30 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_OnePulse_Stop_IT), (92 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_PWM_Start), (96 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_PWM_Start_IT), (172 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_PWM_Stop), (30 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_PWM_Stop_IT), (92 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_ReadAutoReload), (6 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_ReadCapturedValue), (6 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_SetOnce_Start), (92 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_SetOnce_Start_IT), (172 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_SetOnce_Stop), (30 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_SetOnce_Stop_IT), (92 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_TimeOut_Start), (96 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_TimeOut_Stop), (44 bytes).
    Removing stm32l0xx_hal_lptim.o(i.HAL_LPTIM_TimeOut_Stop_IT), (72 bytes).
    Removing stm32l0xx_hal_rtc.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_rtc.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_rtc.o(i.HAL_RTC_AlarmAEventCallback), (2 bytes).
    Removing stm32l0xx_hal_rtc.o(i.HAL_RTC_AlarmIRQHandler), (92 bytes).
    Removing stm32l0xx_hal_rtc.o(i.HAL_RTC_DST_Add1Hour), (32 bytes).
    Removing stm32l0xx_hal_rtc.o(i.HAL_RTC_DST_ClearStoreOperation), (32 bytes).
    Removing stm32l0xx_hal_rtc.o(i.HAL_RTC_DST_ReadStoreOperation), (12 bytes).
    Removing stm32l0xx_hal_rtc.o(i.HAL_RTC_DST_SetStoreOperation), (32 bytes).
    Removing stm32l0xx_hal_rtc.o(i.HAL_RTC_DST_Sub1Hour), (32 bytes).
    Removing stm32l0xx_hal_rtc.o(i.HAL_RTC_DeInit), (144 bytes).
    Removing stm32l0xx_hal_rtc.o(i.HAL_RTC_DeactivateAlarm), (184 bytes).
    Removing stm32l0xx_hal_rtc.o(i.HAL_RTC_GetAlarm), (132 bytes).
    Removing stm32l0xx_hal_rtc.o(i.HAL_RTC_GetDate), (68 bytes).
    Removing stm32l0xx_hal_rtc.o(i.HAL_RTC_GetState), (6 bytes).
    Removing stm32l0xx_hal_rtc.o(i.HAL_RTC_GetTime), (88 bytes).
    Removing stm32l0xx_hal_rtc.o(i.HAL_RTC_MspDeInit), (2 bytes).
    Removing stm32l0xx_hal_rtc.o(i.HAL_RTC_MspInit), (2 bytes).
    Removing stm32l0xx_hal_rtc.o(i.HAL_RTC_PollForAlarmAEvent), (72 bytes).
    Removing stm32l0xx_hal_rtc.o(i.HAL_RTC_SetAlarm), (376 bytes).
    Removing stm32l0xx_hal_rtc.o(i.HAL_RTC_SetAlarm_IT), (408 bytes).
    Removing stm32l0xx_hal_rtc.o(i.HAL_RTC_SetDate), (156 bytes).
    Removing stm32l0xx_hal_rtc.o(i.HAL_RTC_SetTime), (192 bytes).
    Removing stm32l0xx_hal_rtc.o(i.RTC_Bcd2ToByte), (16 bytes).
    Removing stm32l0xx_hal_rtc.o(i.RTC_ByteToBcd2), (22 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_AlarmBEventCallback), (2 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_BKUPRead), (12 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_BKUPWrite), (12 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_DeactivateCalibrationOutPut), (60 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_DeactivateRefClock), (84 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_DeactivateTamper), (96 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_DeactivateTimeStamp), (76 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_DeactivateWakeUpTimer), (122 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_DisableBypassShadow), (60 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_EnableBypassShadow), (60 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_GetTimeStamp), (156 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_GetWakeUpTimer), (8 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_PollForAlarmBEvent), (76 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_PollForTamper1Event), (76 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_PollForTamper2Event), (76 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_PollForTamper3Event), (76 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_PollForTimeStampEvent), (92 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_PollForWakeUpTimerEvent), (76 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_SetCalibrationOutPut), (78 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_SetRefClock), (84 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_SetSmoothCalib), (126 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_SetSynchroShift), (152 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_SetTamper), (240 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_SetTamper_IT), (232 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_SetTimeStamp), (108 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_SetTimeStamp_IT), (140 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_SetWakeUpTimer), (216 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_SetWakeUpTimer_IT), (236 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_Tamper1EventCallback), (2 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_Tamper2EventCallback), (2 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_Tamper3EventCallback), (2 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_TamperTimeStampIRQHandler), (184 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_TimeStampEventCallback), (2 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_WakeUpTimerEventCallback), (2 bytes).
    Removing stm32l0xx_hal_rtc_ex.o(i.HAL_RTCEx_WakeUpTimerIRQHandler), (60 bytes).
    Removing stm32l0xx_hal_spi.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_spi.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_Abort), (292 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_AbortCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_Abort_IT), (308 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_DMAPause), (34 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_DMAResume), (34 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_DMAStop), (72 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_DeInit), (48 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_ErrorCallback), (2 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_GetError), (4 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_GetState), (6 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_IRQHandler), (248 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_MspDeInit), (2 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_MspInit), (2 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_Receive), (334 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_Receive_DMA), (228 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_Receive_IT), (180 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_RxCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_RxHalfCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_TransmitReceive_DMA), (284 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_TransmitReceive_IT), (176 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_Transmit_DMA), (204 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_Transmit_IT), (148 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_TxCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_TxHalfCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_TxRxCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_TxRxHalfCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_spi.o(i.SPI_2linesRxISR_16BIT), (50 bytes).
    Removing stm32l0xx_hal_spi.o(i.SPI_2linesRxISR_8BIT), (50 bytes).
    Removing stm32l0xx_hal_spi.o(i.SPI_2linesTxISR_16BIT), (50 bytes).
    Removing stm32l0xx_hal_spi.o(i.SPI_2linesTxISR_8BIT), (50 bytes).
    Removing stm32l0xx_hal_spi.o(i.SPI_AbortRx_ISR), (92 bytes).
    Removing stm32l0xx_hal_spi.o(i.SPI_AbortTx_ISR), (28 bytes).
    Removing stm32l0xx_hal_spi.o(i.SPI_CloseRxTx_ISR), (148 bytes).
    Removing stm32l0xx_hal_spi.o(i.SPI_CloseRx_ISR), (80 bytes).
    Removing stm32l0xx_hal_spi.o(i.SPI_CloseTx_ISR), (132 bytes).
    Removing stm32l0xx_hal_spi.o(i.SPI_DMAAbortOnError), (16 bytes).
    Removing stm32l0xx_hal_spi.o(i.SPI_DMAError), (34 bytes).
    Removing stm32l0xx_hal_spi.o(i.SPI_DMAHalfReceiveCplt), (10 bytes).
    Removing stm32l0xx_hal_spi.o(i.SPI_DMAHalfTransmitCplt), (10 bytes).
    Removing stm32l0xx_hal_spi.o(i.SPI_DMAHalfTransmitReceiveCplt), (10 bytes).
    Removing stm32l0xx_hal_spi.o(i.SPI_DMAReceiveCplt), (110 bytes).
    Removing stm32l0xx_hal_spi.o(i.SPI_DMARxAbortCallback), (104 bytes).
    Removing stm32l0xx_hal_spi.o(i.SPI_DMATransmitCplt), (104 bytes).
    Removing stm32l0xx_hal_spi.o(i.SPI_DMATransmitReceiveCplt), (92 bytes).
    Removing stm32l0xx_hal_spi.o(i.SPI_DMATxAbortCallback), (124 bytes).
    Removing stm32l0xx_hal_spi.o(i.SPI_EndRxTransaction), (92 bytes).
    Removing stm32l0xx_hal_spi.o(i.SPI_RxISR_16BIT), (34 bytes).
    Removing stm32l0xx_hal_spi.o(i.SPI_RxISR_8BIT), (34 bytes).
    Removing stm32l0xx_hal_spi.o(i.SPI_TxISR_16BIT), (34 bytes).
    Removing stm32l0xx_hal_spi.o(i.SPI_TxISR_8BIT), (34 bytes).
    Removing stm32l0xx_hal_tim.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_tim.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_Base_DeInit), (56 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_Base_GetState), (6 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_Base_Init), (62 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_Base_MspDeInit), (2 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_Base_MspInit), (2 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_Base_Start), (80 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_Base_Start_DMA), (160 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_Base_Start_IT), (88 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_Base_Stop), (32 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_Base_Stop_DMA), (56 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_Base_Stop_IT), (44 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_ConfigClockSource), (220 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_ConfigOCrefClear), (204 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_ConfigTI1Input), (16 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurstState), (6 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiReadStart), (296 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiWriteStart), (296 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_ReadStart), (18 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_ReadStop), (102 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_WriteStart), (18 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_WriteStop), (102 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_DeInit), (52 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_GetState), (6 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_Init), (164 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_MspDeInit), (2 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_MspInit), (2 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_Start), (94 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_Start_DMA), (356 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_Start_IT), (130 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_Stop), (84 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_Stop_DMA), (152 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_Encoder_Stop_IT), (128 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_ErrorCallback), (2 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_GenerateEvent), (36 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_GetActiveChannel), (4 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_GetChannelState), (30 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_IC_CaptureCallback), (2 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_IC_CaptureHalfCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_IC_ConfigChannel), (294 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_IC_DeInit), (56 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_IC_GetState), (6 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Init), (62 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_IC_MspDeInit), (2 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_IC_MspInit), (2 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Start), (140 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Start_DMA), (372 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Start_IT), (180 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Stop), (72 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Stop_DMA), (160 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Stop_IT), (128 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_IRQHandler), (294 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OC_ConfigChannel), (80 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OC_DeInit), (56 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OC_DelayElapsedCallback), (2 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OC_GetState), (6 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Init), (62 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OC_MspDeInit), (2 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OC_MspInit), (2 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Start), (136 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Start_DMA), (372 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Start_IT), (176 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Stop), (72 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Stop_DMA), (160 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Stop_IT), (128 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OnePulse_ConfigChannel), (210 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OnePulse_DeInit), (52 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OnePulse_GetState), (6 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OnePulse_Init), (78 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OnePulse_MspDeInit), (2 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OnePulse_MspInit), (2 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OnePulse_Start), (52 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OnePulse_Start_IT), (70 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OnePulse_Stop), (60 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OnePulse_Stop_IT), (80 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_DeInit), (56 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_GetState), (6 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_MspDeInit), (2 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_MspInit), (2 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_PulseFinishedCallback), (2 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_PulseFinishedHalfCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Start), (136 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Start_DMA), (372 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Start_IT), (176 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Stop), (72 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Stop_DMA), (160 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Stop_IT), (128 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_PeriodElapsedCallback), (2 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_PeriodElapsedHalfCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_ReadCapturedValue), (44 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_SlaveConfigSynchro), (76 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_SlaveConfigSynchro_IT), (76 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_TriggerCallback), (2 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_TriggerHalfCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_tim.o(i.TIM_CCxChannelCmd), (26 bytes).
    Removing stm32l0xx_hal_tim.o(i.TIM_DMACaptureCplt), (102 bytes).
    Removing stm32l0xx_hal_tim.o(i.TIM_DMACaptureHalfCplt), (56 bytes).
    Removing stm32l0xx_hal_tim.o(i.TIM_DMADelayPulseCplt), (102 bytes).
    Removing stm32l0xx_hal_tim.o(i.TIM_DMADelayPulseHalfCplt), (56 bytes).
    Removing stm32l0xx_hal_tim.o(i.TIM_DMAError), (84 bytes).
    Removing stm32l0xx_hal_tim.o(i.TIM_DMAPeriodElapsedCplt), (24 bytes).
    Removing stm32l0xx_hal_tim.o(i.TIM_DMAPeriodElapsedHalfCplt), (10 bytes).
    Removing stm32l0xx_hal_tim.o(i.TIM_DMATriggerCplt), (24 bytes).
    Removing stm32l0xx_hal_tim.o(i.TIM_DMATriggerHalfCplt), (10 bytes).
    Removing stm32l0xx_hal_tim.o(i.TIM_ETR_SetConfig), (22 bytes).
    Removing stm32l0xx_hal_tim.o(i.TIM_ITRx_SetConfig), (16 bytes).
    Removing stm32l0xx_hal_tim.o(i.TIM_SlaveTimer_SetConfig), (140 bytes).
    Removing stm32l0xx_hal_tim.o(i.TIM_TI1_ConfigInputStage), (34 bytes).
    Removing stm32l0xx_hal_tim.o(i.TIM_TI1_SetConfig), (88 bytes).
    Removing stm32l0xx_hal_tim.o(i.TIM_TI2_ConfigInputStage), (38 bytes).
    Removing stm32l0xx_hal_tim.o(i.TIM_TI2_SetConfig), (52 bytes).
    Removing stm32l0xx_hal_tim_ex.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_tim_ex.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_uart.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_uart.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_HalfDuplex_EnableReceiver), (78 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_HalfDuplex_EnableTransmitter), (78 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_HalfDuplex_Init), (116 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_LIN_Init), (146 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_LIN_SendBreak), (44 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_MultiProcessor_DisableMuteMode), (58 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_MultiProcessor_EnableMuteMode), (58 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_MultiProcessor_EnterMuteMode), (12 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_MultiProcessor_Init), (142 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_Abort), (252 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_AbortCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_AbortReceive), (186 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_AbortReceiveCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_AbortReceive_IT), (204 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_AbortTransmit), (112 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_AbortTransmitCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_AbortTransmit_IT), (116 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_Abort_IT), (292 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_DMAPause), (130 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_DMAResume), (126 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_DMAStop), (154 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_DisableReceiverTimeout), (68 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_EnableReceiverTimeout), (68 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_ErrorCallback), (2 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_GetError), (6 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_GetState), (10 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_MspDeInit), (2 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_MspInit), (2 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_Receive), (264 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_ReceiverTimeout_Config), (24 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_RxCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_TxCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_uart.o(i.UART_DMARxAbortCallback), (66 bytes).
    Removing stm32l0xx_hal_uart.o(i.UART_DMARxOnlyAbortCallback), (40 bytes).
    Removing stm32l0xx_hal_uart.o(i.UART_DMATxAbortCallback), (54 bytes).
    Removing stm32l0xx_hal_uart.o(i.UART_DMATxOnlyAbortCallback), (20 bytes).
    Removing stm32l0xx_hal_uart_ex.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_uart_ex.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_uart_ex.o(i.HAL_MultiProcessorEx_AddressLength_Set), (52 bytes).
    Removing stm32l0xx_hal_uart_ex.o(i.HAL_RS485Ex_Init), (136 bytes).
    Removing stm32l0xx_hal_uart_ex.o(i.HAL_UARTEx_DisableClockStopMode), (50 bytes).
    Removing stm32l0xx_hal_uart_ex.o(i.HAL_UARTEx_DisableStopMode), (48 bytes).
    Removing stm32l0xx_hal_uart_ex.o(i.HAL_UARTEx_EnableClockStopMode), (50 bytes).
    Removing stm32l0xx_hal_uart_ex.o(i.HAL_UARTEx_EnableStopMode), (48 bytes).
    Removing stm32l0xx_hal_uart_ex.o(i.HAL_UARTEx_GetRxEventType), (4 bytes).
    Removing stm32l0xx_hal_uart_ex.o(i.HAL_UARTEx_ReceiveToIdle), (332 bytes).
    Removing stm32l0xx_hal_uart_ex.o(i.HAL_UARTEx_ReceiveToIdle_DMA), (108 bytes).
    Removing stm32l0xx_hal_uart_ex.o(i.HAL_UARTEx_ReceiveToIdle_IT), (108 bytes).
    Removing stm32l0xx_hal_uart_ex.o(i.HAL_UARTEx_StopModeWakeUpSourceConfig), (152 bytes).
    Removing system_stm32l0xx.o(.rev16_text), (4 bytes).
    Removing system_stm32l0xx.o(.revsh_text), (4 bytes).
    Removing system_stm32l0xx.o(i.SystemCoreClockUpdate), (156 bytes).
    Removing air780edriver.o(.rev16_text), (4 bytes).
    Removing air780edriver.o(.revsh_text), (4 bytes).
    Removing air780edriver.o(i.AIR780EDriver_DebugOff), (12 bytes).
    Removing air780edriver.o(i.AIR780EDriver_DebugOn), (16 bytes).
    Removing air780edriver.o(i.AIR780EDriver_Reset), (20 bytes).
    Removing air780edriver.o(i.AIR780EDriver_SetConnectLen), (12 bytes).
    Removing air780edriver.o(i.AIR780EDriver_TimerPoll), (2 bytes).
    Removing air780efsm.o(i.AIR780EWaitReadyProc), (92 bytes).
    Removing air780efsm.o(i.AIR780E_IsIPIdle), (28 bytes).
    Removing air780efsm.o(.constdata), (16 bytes).
    Removing air780efsm.o(.conststring), (17 bytes).
    Removing air780esocket.o(.rev16_text), (4 bytes).
    Removing air780esocket.o(.revsh_text), (4 bytes).
    Removing internet.o(i.Internet_DebugOff), (10 bytes).
    Removing internet.o(i.Internet_DebugOn), (10 bytes).
    Removing module.o(i.Module_GetSignalIntensity), (12 bytes).
    Removing module.o(i.Module_GetSignalIntensityAsync), (20 bytes).
    Removing module.o(i.Module_NeedSleep), (16 bytes).
    Removing module.o(i.Module_NeedWakeUp), (16 bytes).
    Removing module.o(i.Module_SetPowerEventCallback), (16 bytes).
    Removing module.o(i.Module_Sleep), (20 bytes).
    Removing module.o(i.Module_WakeUp), (20 bytes).
    Removing socket.o(i.Socket_GetSocketRecvQueue), (28 bytes).
    Removing socket.o(i.Socket_HasRecvData), (28 bytes).
    Removing socket.o(i.Socket_HaveRecvData), (36 bytes).
    Removing socket.o(i.Socket_IsClosed), (60 bytes).
    Removing socket.o(i.Socket_IsConnected), (48 bytes).
    Removing socket.o(i.Socket_IsSendQueueEmpty), (48 bytes).
    Removing socket.o(i.Socket_NoRecvData), (36 bytes).
    Removing socket.o(i.Socket_RecvAll), (44 bytes).
    Removing gps.o(.rev16_text), (4 bytes).
    Removing gps.o(.revsh_text), (4 bytes).
    Removing gps.o(i.GPS_IsIdle), (20 bytes).
    Removing gps.o(i.GPS_SetEventCallback), (12 bytes).
    Removing gps.o(i.validate_gngga), (152 bytes).
    Removing spiflash.o(.rev16_text), (4 bytes).
    Removing spiflash.o(.revsh_text), (4 bytes).
    Removing spiflash.o(i.SPIFlash_PowerDown), (48 bytes).
    Removing spiflash.o(i.SPIFlash_Read), (124 bytes).
    Removing spiflash.o(i.SPIFlash_ReleasePowerDown), (48 bytes).
    Removing spiflash.o(i.SPIFlash_SPIRegister), (16 bytes).
    Removing spiflash.o(i.SPIFlash_UnInit), (52 bytes).
    Removing dbg.o(.rev16_text), (4 bytes).
    Removing dbg.o(.revsh_text), (4 bytes).
    Removing dbg.o(i.DBG_SetDebugFlag), (12 bytes).
    Removing dbg.o(i.HIDO_Debug2), (56 bytes).
    Removing bsp.o(.rev16_text), (4 bytes).
    Removing bsp.o(.revsh_text), (4 bytes).
    Removing bsp.o(i.EXTI2_IRQHandler), (10 bytes).
    Removing bsp.o(i.HAL_RTC_AlarmAEventCallback), (2 bytes).
    Removing uart.o(.rev16_text), (4 bytes).
    Removing uart.o(.revsh_text), (4 bytes).
    Removing spi_hal.o(.rev16_text), (4 bytes).
    Removing spi_hal.o(.revsh_text), (4 bytes).
    Removing spi.o(.rev16_text), (4 bytes).
    Removing spi.o(.revsh_text), (4 bytes).
    Removing spi.o(.data), (1 bytes).
    Removing adc.o(.rev16_text), (4 bytes).
    Removing adc.o(.revsh_text), (4 bytes).
    Removing adc.o(i.Get_VDDVlotage), (272 bytes).
    Removing flash.o(.rev16_text), (4 bytes).
    Removing flash.o(.revsh_text), (4 bytes).
    Removing flash.o(i.FLASH_Pages_Calculate), (18 bytes).
    Removing flash.o(i.STMFLASH_ReadHalfWord), (4 bytes).
    Removing udpclient.o(.rev16_text), (4 bytes).
    Removing udpclient.o(.revsh_text), (4 bytes).
    Removing udpclient.o(.data), (1 bytes).
    Removing global_param.o(.rev16_text), (4 bytes).
    Removing global_param.o(.revsh_text), (4 bytes).
    Removing global_param.o(.data), (11 bytes).
    Removing app.o(.rev16_text), (4 bytes).
    Removing app.o(.revsh_text), (4 bytes).
    Removing app.o(.data), (2 bytes).
    Removing app.o(.data), (1 bytes).
    Removing dw_app.o(.rev16_text), (4 bytes).
    Removing dw_app.o(.revsh_text), (4 bytes).
    Removing dw_app.o(i.UWB_Wkup), (52 bytes).
    Removing dw_app.o(i.tag_sleep_configuraion), (2 bytes).
    Removing dw_app.o(.bss), (50 bytes).
    Removing dw_app.o(.data), (4 bytes).
    Removing dw_app.o(.data), (300 bytes).
    Removing dw_app.o(.data), (1 bytes).
    Removing dw_app.o(.data), (1 bytes).
    Removing dw_mbx_tag.o(.rev16_text), (4 bytes).
    Removing dw_mbx_tag.o(.revsh_text), (4 bytes).
    Removing dw_mbx_tag.o(i.LoraHeartBeartPoll), (2 bytes).
    Removing dw_mbx_tag.o(i.LoraReportFreqPoll), (2 bytes).
    Removing dw_mbx_tag.o(i.LoraReportPoll), (2 bytes).
    Removing dw_mbx_tag.o(i.TagListUpdate), (128 bytes).
    Removing dw_mbx_tag.o(.bss), (200 bytes).
    Removing dw_mbx_tag.o(.data), (1 bytes).
    Removing dw_mbx_tag.o(.data), (1 bytes).
    Removing dw_mbx_tag.o(.data), (2 bytes).
    Removing dw_mbx_tag.o(.data), (2 bytes).
    Removing dw_mbx_tag.o(.data), (4 bytes).
    Removing dw_mbx_tag.o(.data), (4 bytes).
    Removing dw_mbx_tag.o(.data), (1 bytes).
    Removing dw_mbx_tag.o(.data), (2 bytes).
    Removing dw_mbx_tag.o(.data), (2 bytes).
    Removing dw_mbx_tag.o(.data), (1 bytes).
    Removing dw_mbx_tag.o(.data), (1 bytes).
    Removing dw_mbx_tag.o(.data), (1 bytes).
    Removing dw_mbx_tag.o(.data), (1 bytes).
    Removing dw_mbx_tag.o(.data), (8 bytes).
    Removing dw_mbx_tag.o(.data), (8 bytes).
    Removing dw_mbx_tag.o(.data), (4 bytes).
    Removing dw_mbx_tag.o(.data), (2 bytes).
    Removing dw_mbx_tag.o(.data), (2 bytes).
    Removing dw_mbx_tag.o(.data), (1 bytes).
    Removing dw_mbx_tag.o(.data), (2 bytes).
    Removing dw_driver.o(.rev16_text), (4 bytes).
    Removing dw_driver.o(.revsh_text), (4 bytes).
    Removing ws2812.o(.rev16_text), (4 bytes).
    Removing ws2812.o(.revsh_text), (4 bytes).
    Removing serial_at_cmd_app.o(.rev16_text), (4 bytes).
    Removing serial_at_cmd_app.o(.revsh_text), (4 bytes).
    Removing serial_at_cmd_app.o(.bss), (124 bytes).
    Removing shell.o(.rev16_text), (4 bytes).
    Removing shell.o(.revsh_text), (4 bytes).
    Removing lis3dh_driver.o(.rev16_text), (4 bytes).
    Removing lis3dh_driver.o(.revsh_text), (4 bytes).
    Removing lis3dh_driver.o(i.IIC2_Init), (72 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_ENTER_STY_Init), (40 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_FIFOModeEnable), (330 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_Get6DPosition), (60 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_GetAccAxesRaw), (102 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_GetAuxRaw), (122 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_GetClickResponse), (152 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_GetFifoSourceBit), (90 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_GetFifoSourceFSS), (32 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_GetFifoSourceReg), (18 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_GetInt1Src), (18 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_GetInt1SrcBit), (134 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_GetStatusAUX), (18 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_GetStatusAUXBit), (150 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_GetStatusBit), (156 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_GetStatusReg), (18 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_GetTempRaw), (38 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_HPFAOI1Enable), (44 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_HPFAOI2Enable), (48 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_HPFClickEnable), (48 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_Int1LatchEnable), (48 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_ReadLenByte), (38 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_ResetInt1Latch), (18 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetADCAux), (48 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetAxis), (48 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetBDU), (48 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetBLE), (48 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetClickCFG), (44 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetClickLATENCY), (18 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetClickLIMIT), (26 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetClickTHS), (26 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetClickWINDOW), (18 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetFilterDataSel), (48 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetFullScale), (48 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetHPFCutOFF), (56 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetHPFMode), (48 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetInt1Duration), (26 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetInt1Pin), (36 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetInt1Threshold), (26 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetInt2Pin), (36 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetInt6D4DConfiguration), (126 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetIntConfiguration), (44 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetIntMode), (48 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetMode), (156 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetODR), (48 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetSPIInterface), (44 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetSelfTest), (48 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetTemperature), (48 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetTriggerInt), (48 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_SetWaterMark), (52 bytes).
    Removing lis3dh_driver.o(i.LIS3DH_WriteLenByte), (38 bytes).
    Removing lis3dh_driver.o(i.drv_lis2dh12_get_angle), (216 bytes).
    Removing lis3dh_driver.o(.data), (1 bytes).
    Removing dps310.o(i.dps310_config), (132 bytes).
    Removing dps310.o(i.dps310_get_processed_data), (480 bytes).
    Removing dps310.o(i.dps310_get_scaling_coef), (68 bytes).
    Removing dps310.o(i.dps310_init), (168 bytes).
    Removing dps310.o(i.dps310_read_calib_coeffs), (336 bytes).
    Removing dps310.o(i.dps310_resume), (42 bytes).
    Removing dps310.o(i.dps310_standby), (40 bytes).
    Removing dps310.o(.data), (1 bytes).
    Removing dps368_test.o(.rev16_text), (4 bytes).
    Removing dps368_test.o(.revsh_text), (4 bytes).
    Removing dps368_test.o(i.BarInit), (72 bytes).
    Removing dps368_test.o(i.GetPressAndHeight), (112 bytes).
    Removing dps368_test.o(i.test_read_block), (36 bytes).
    Removing dps368_test.o(i.test_read_byte), (58 bytes).
    Removing dps368_test.o(i.test_wait_ms), (2 bytes).
    Removing dps368_test.o(i.test_write_byte), (52 bytes).
    Removing dps368_test.o(.bss), (44 bytes).
    Removing dps368_test.o(.data), (24 bytes).
    Removing crc.o(i.ComputeCrc), (44 bytes).
    Removing crc.o(i.RadioComputeCRC), (68 bytes).
    Removing delay.o(.rev16_text), (4 bytes).
    Removing delay.o(.revsh_text), (4 bytes).
    Removing delay.o(i.HAL_Delay_nMS), (22 bytes).
    Removing lora.o(.rev16_text), (4 bytes).
    Removing lora.o(.revsh_text), (4 bytes).
    Removing lora.o(i.LoraInit), (84 bytes).
    Removing lora.o(i.LoraRspWriteCommap), (112 bytes).
    Removing lora.o(i.LoraSendComMap), (108 bytes).
    Removing lora.o(i.OnRxDone), (88 bytes).
    Removing lora.o(i.OnRxError), (40 bytes).
    Removing lora.o(i.OnRxTimeout), (40 bytes).
    Removing lora.o(i.OnTxDone), (20 bytes).
    Removing lora.o(i.OnTxTimeout), (36 bytes).
    Removing lora.o(i.SwitchLoraSettings), (124 bytes).
    Removing lora.o(.bss), (283 bytes).
    Removing lora.o(.bss), (255 bytes).
    Removing lora.o(.bss), (200 bytes).
    Removing lora.o(.data), (4 bytes).
    Removing lora.o(.data), (4 bytes).
    Removing lora.o(.data), (1 bytes).
    Removing lora.o(.data), (1 bytes).
    Removing lora.o(.data), (1 bytes).
    Removing lora.o(.data), (4 bytes).
    Removing lora.o(.data), (1 bytes).
    Removing lora.o(.data), (2 bytes).
    Removing lora.o(.data), (2 bytes).
    Removing lora.o(.data), (2 bytes).
    Removing lora.o(.data), (1 bytes).
    Removing lora.o(.data), (1 bytes).
    Removing lora.o(.data), (4 bytes).
    Removing lora.o(.data), (2 bytes).
    Removing lora.o(.data), (2 bytes).
    Removing lora.o(.data), (2 bytes).
    Removing lora.o(.data), (2 bytes).
    Removing lora.o(.data), (1 bytes).
    Removing lora.o(.data), (2 bytes).
    Removing lora.o(.data), (1 bytes).
    Removing lora.o(.data), (1 bytes).
    Removing lora.o(.data), (1 bytes).
    Removing lora.o(.data), (1 bytes).
    Removing lora.o(.data), (1 bytes).
    Removing lora.o(.data), (2 bytes).
    Removing lora.o(.data), (2 bytes).
    Removing lora.o(.data), (2 bytes).
    Removing lora.o(.data), (2 bytes).
    Removing lora.o(.data), (1 bytes).
    Removing radio.o(.rev16_text), (4 bytes).
    Removing radio.o(.revsh_text), (4 bytes).
    Removing radio.o(i.RadioCheckRfFrequency), (4 bytes).
    Removing radio.o(i.RadioGetFskBandwidthRegValue), (52 bytes).
    Removing radio.o(i.RadioGetStatus), (30 bytes).
    Removing radio.o(i.RadioGetWakeupTime), (4 bytes).
    Removing radio.o(i.RadioInit), (72 bytes).
    Removing radio.o(i.RadioIrqProcess), (232 bytes).
    Removing radio.o(i.RadioIsChannelFree), (36 bytes).
    Removing radio.o(i.RadioOnDioIrq), (12 bytes).
    Removing radio.o(i.RadioOnRxTimeoutIrq), (24 bytes).
    Removing radio.o(i.RadioOnTxTimeoutIrq), (24 bytes).
    Removing radio.o(i.RadioRandom), (52 bytes).
    Removing radio.o(i.RadioRead), (8 bytes).
    Removing radio.o(i.RadioReadBuffer), (8 bytes).
    Removing radio.o(i.RadioReadFifo), (14 bytes).
    Removing radio.o(i.RadioRssi), (8 bytes).
    Removing radio.o(i.RadioRx), (52 bytes).
    Removing radio.o(i.RadioRxBoosted), (48 bytes).
    Removing radio.o(i.RadioSend), (64 bytes).
    Removing radio.o(i.RadioSetChannel), (8 bytes).
    Removing radio.o(i.RadioSetMaxPayloadLength), (44 bytes).
    Removing radio.o(i.RadioSetModem), (48 bytes).
    Removing radio.o(i.RadioSetPublicNetwork), (56 bytes).
    Removing radio.o(i.RadioSetRxConfig), (400 bytes).
    Removing radio.o(i.RadioSetRxDutyCycle), (8 bytes).
    Removing radio.o(i.RadioSetTxConfig), (304 bytes).
    Removing radio.o(i.RadioSetTxContinuousWave), (20 bytes).
    Removing radio.o(i.RadioSleep), (32 bytes).
    Removing radio.o(i.RadioStandby), (10 bytes).
    Removing radio.o(i.RadioStartCad), (8 bytes).
    Removing radio.o(i.RadioTimeOnAir), (388 bytes).
    Removing radio.o(i.RadioTx), (10 bytes).
    Removing radio.o(i.RadioWrite), (8 bytes).
    Removing radio.o(i.RadioWriteBuffer), (8 bytes).
    Removing radio.o(i.RadioWriteFifo), (14 bytes).
    Removing radio.o(.bss), (336 bytes).
    Removing radio.o(.constdata), (108 bytes).
    Removing radio.o(.constdata), (180 bytes).
    Removing radio.o(.data), (168 bytes).
    Removing sx126x.o(i.SX126xCalibrate), (14 bytes).
    Removing sx126x.o(i.SX126xCalibrateImage), (116 bytes).
    Removing sx126x.o(i.SX126xCheckDeviceReady), (32 bytes).
    Removing sx126x.o(i.SX126xClearDeviceErrors), (18 bytes).
    Removing sx126x.o(i.SX126xClearIrqStatus), (20 bytes).
    Removing sx126x.o(i.SX126xGetDeviceErrors), (18 bytes).
    Removing sx126x.o(i.SX126xGetIrqStatus), (20 bytes).
    Removing sx126x.o(i.SX126xGetOperatingMode), (12 bytes).
    Removing sx126x.o(i.SX126xGetPacketStatus), (124 bytes).
    Removing sx126x.o(i.SX126xGetPacketType), (12 bytes).
    Removing sx126x.o(i.SX126xGetPayload), (44 bytes).
    Removing sx126x.o(i.SX126xGetRandom), (52 bytes).
    Removing sx126x.o(i.SX126xGetRssiInst), (24 bytes).
    Removing sx126x.o(i.SX126xGetRxBufferStatus), (68 bytes).
    Removing sx126x.o(i.SX126xGetStatus), (22 bytes).
    Removing sx126x.o(i.SX126xInit), (36 bytes).
    Removing sx126x.o(i.SX126xSendPayload), (16 bytes).
    Removing sx126x.o(i.SX126xSetBufferBaseAddress), (20 bytes).
    Removing sx126x.o(i.SX126xSetCad), (24 bytes).
    Removing sx126x.o(i.SX126xSetCadParams), (48 bytes).
    Removing sx126x.o(i.SX126xSetCrcPolynomial), (36 bytes).
    Removing sx126x.o(i.SX126xSetCrcSeed), (36 bytes).
    Removing sx126x.o(i.SX126xSetDio2AsRfSwitchCtrl), (14 bytes).
    Removing sx126x.o(i.SX126xSetDio3AsTcxoCtrl), (32 bytes).
    Removing sx126x.o(i.SX126xSetDioIrqParams), (40 bytes).
    Removing sx126x.o(i.SX126xSetFs), (24 bytes).
    Removing sx126x.o(i.SX126xSetLoRaSymbNumTimeout), (14 bytes).
    Removing sx126x.o(i.SX126xSetModulationParams), (160 bytes).
    Removing sx126x.o(i.SX126xSetPaConfig), (24 bytes).
    Removing sx126x.o(i.SX126xSetPacketParams), (180 bytes).
    Removing sx126x.o(i.SX126xSetPacketType), (28 bytes).
    Removing sx126x.o(i.SX126xSetPayload), (14 bytes).
    Removing sx126x.o(i.SX126xSetRegulatorMode), (14 bytes).
    Removing sx126x.o(i.SX126xSetRfFrequency), (76 bytes).
    Removing sx126x.o(i.SX126xSetRx), (36 bytes).
    Removing sx126x.o(i.SX126xSetRxBoosted), (52 bytes).
    Removing sx126x.o(i.SX126xSetRxDutyCycle), (48 bytes).
    Removing sx126x.o(i.SX126xSetRxTxFallbackMode), (14 bytes).
    Removing sx126x.o(i.SX126xSetSleep), (28 bytes).
    Removing sx126x.o(i.SX126xSetStandby), (36 bytes).
    Removing sx126x.o(i.SX126xSetStopRxTimerOnPreambleDetect), (14 bytes).
    Removing sx126x.o(i.SX126xSetSyncWord), (18 bytes).
    Removing sx126x.o(i.SX126xSetTx), (36 bytes).
    Removing sx126x.o(i.SX126xSetTxContinuousWave), (14 bytes).
    Removing sx126x.o(i.SX126xSetTxInfinitePreamble), (14 bytes).
    Removing sx126x.o(i.SX126xSetTxParams), (128 bytes).
    Removing sx126x.o(i.SX126xSetWhiteningSeed), (52 bytes).
    Removing sx126x.o(.data), (8 bytes).
    Removing sx126x-board.o(.rev16_text), (4 bytes).
    Removing sx126x-board.o(.revsh_text), (4 bytes).
    Removing sx126x-board.o(i.SX126xAntSwOff), (2 bytes).
    Removing sx126x-board.o(i.SX126xAntSwOn), (2 bytes).
    Removing sx126x-board.o(i.SX126xCheckRfFrequency), (4 bytes).
    Removing sx126x-board.o(i.SX126xGetPaSelect), (4 bytes).
    Removing sx126x-board.o(i.SX126xReadBuffer), (88 bytes).
    Removing sx126x-board.o(i.SX126xReadCommand), (80 bytes).
    Removing sx126x-board.o(i.SX126xReadRegister), (16 bytes).
    Removing sx126x-board.o(i.SX126xReadRegisters), (92 bytes).
    Removing sx126x-board.o(i.SX126xReset), (52 bytes).
    Removing sx126x-board.o(i.SX126xSetRfTxPower), (10 bytes).
    Removing sx126x-board.o(i.SX126xWaitOnBusy), (28 bytes).
    Removing sx126x-board.o(i.SX126xWakeup), (52 bytes).
    Removing sx126x-board.o(i.SX126xWriteBuffer), (80 bytes).
    Removing sx126x-board.o(i.SX126xWriteCommand), (76 bytes).
    Removing sx126x-board.o(i.SX126xWriteRegister), (12 bytes).
    Removing sx126x-board.o(i.SX126xWriteRegisters), (84 bytes).
    Removing sx126x-board.o(i.SX126x_CS_Di), (52 bytes).
    Removing sx126x-board.o(i.SpiInOut), (40 bytes).
    Removing deca_device.o(.rev16_text), (4 bytes).
    Removing deca_device.o(.revsh_text), (4 bytes).
    Removing deca_device.o(i.ReadUniqueID), (26 bytes).
    Removing deca_device.o(i._dwt_aonconfigupload), (40 bytes).
    Removing deca_device.o(i._dwt_disablesequencing), (20 bytes).
    Removing deca_device.o(i._dwt_otpprogword32), (148 bytes).
    Removing deca_device.o(i._dwt_otpsetmrregs), (532 bytes).
    Removing deca_device.o(i.dwt_calibratesleepcnt), (242 bytes).
    Removing deca_device.o(i.dwt_checkIRQ), (24 bytes).
    Removing deca_device.o(i.dwt_checkoverrun), (16 bytes).
    Removing deca_device.o(i.dwt_configcontinuousframemode), (84 bytes).
    Removing deca_device.o(i.dwt_configcwmode), (152 bytes).
    Removing deca_device.o(i.dwt_configeventcounters), (46 bytes).
    Removing deca_device.o(i.dwt_configuresleepcnt), (122 bytes).
    Removing deca_device.o(i.dwt_configuretxrf), (28 bytes).
    Removing deca_device.o(i.dwt_enableautoack), (40 bytes).
    Removing deca_device.o(i.dwt_enableframefilter), (64 bytes).
    Removing deca_device.o(i.dwt_geteui), (16 bytes).
    Removing deca_device.o(i.dwt_getlotid), (12 bytes).
    Removing deca_device.o(i.dwt_getpartid), (12 bytes).
    Removing deca_device.o(i.dwt_isr), (564 bytes).
    Removing deca_device.o(i.dwt_loadopsettabfromotp), (48 bytes).
    Removing deca_device.o(i.dwt_otpread), (42 bytes).
    Removing deca_device.o(i.dwt_otprevision), (12 bytes).
    Removing deca_device.o(i.dwt_otpwriteandverify), (76 bytes).
    Removing deca_device.o(i.dwt_readaccdata), (34 bytes).
    Removing deca_device.o(i.dwt_readcarrierintegrator), (52 bytes).
    Removing deca_device.o(i.dwt_readdiagnostics), (60 bytes).
    Removing deca_device.o(i.dwt_readeventcounters), (126 bytes).
    Removing deca_device.o(i.dwt_readrxtimestamphi32), (12 bytes).
    Removing deca_device.o(i.dwt_readrxtimestamplo32), (12 bytes).
    Removing deca_device.o(i.dwt_readsystime), (16 bytes).
    Removing deca_device.o(i.dwt_readsystimestamphi32), (12 bytes).
    Removing deca_device.o(i.dwt_readtempvbat), (168 bytes).
    Removing deca_device.o(i.dwt_readtxtimestamp), (16 bytes).
    Removing deca_device.o(i.dwt_readtxtimestamphi32), (12 bytes).
    Removing deca_device.o(i.dwt_readtxtimestamplo32), (12 bytes).
    Removing deca_device.o(i.dwt_readwakeuptemp), (20 bytes).
    Removing deca_device.o(i.dwt_readwakeupvbat), (20 bytes).
    Removing deca_device.o(i.dwt_rxreset), (40 bytes).
    Removing deca_device.o(i.dwt_setGPIOdirection), (30 bytes).
    Removing deca_device.o(i.dwt_setGPIOforEXTTRX), (40 bytes).
    Removing deca_device.o(i.dwt_setGPIOvalue), (30 bytes).
    Removing deca_device.o(i.dwt_setaddress16), (14 bytes).
    Removing deca_device.o(i.dwt_setautorxreenable), (52 bytes).
    Removing deca_device.o(i.dwt_setcallbacks), (12 bytes).
    Removing deca_device.o(i.dwt_setdblrxbuffmode), (48 bytes).
    Removing deca_device.o(i.dwt_seteui), (16 bytes).
    Removing deca_device.o(i.dwt_setleds), (180 bytes).
    Removing deca_device.o(i.dwt_setpanid), (14 bytes).
    Removing deca_device.o(i.dwt_setpreambledetecttimeout), (14 bytes).
    Removing deca_device.o(i.dwt_setrxaftertxdelay), (32 bytes).
    Removing deca_device.o(i.dwt_setrxmode), (28 bytes).
    Removing deca_device.o(i.dwt_setsmarttxpower), (48 bytes).
    Removing deca_device.o(i.dwt_softreset), (112 bytes).
    Removing deca_device.o(i.dwt_spicswakeup), (56 bytes).
    Removing deca_device.o(.data), (1 bytes).
    Removing deca_range_tables.o(i.dwt_getrangebias), (200 bytes).
    Removing deca_range_tables.o(.constdata), (522 bytes).
    Removing hido_fsm.o(i.HIDO_FSMEventExecuteAsync), (58 bytes).
    Removing hido_fsm.o(i.HIDO_FSMInit), (96 bytes).
    Removing hido_fsm.o(i.HIDO_FSMSchedule), (68 bytes).
    Removing hido_lock.o(.rev16_text), (4 bytes).
    Removing hido_lock.o(.revsh_text), (4 bytes).
    Removing hido_timer.o(i.HIDO_TimerDestroy), (32 bytes).
    Removing hido_timer.o(i.HIDO_TimerGetTick64), (28 bytes).
    Removing hido_timer.o(i.HIDO_TimerSetTick64), (28 bytes).
    Removing hido_util.o(i.HIDO_UtilBase64Decode), (188 bytes).
    Removing hido_util.o(i.HIDO_UtilBase64Encode), (280 bytes).
    Removing hido_util.o(i.HIDO_UtilBcdToByte), (20 bytes).
    Removing hido_util.o(i.HIDO_UtilBufToHex), (50 bytes).
    Removing hido_util.o(i.HIDO_UtilByteToBcd), (28 bytes).
    Removing hido_util.o(i.HIDO_UtilCharToByte), (54 bytes).
    Removing hido_util.o(i.HIDO_UtilDecode8To7), (174 bytes).
    Removing hido_util.o(i.HIDO_UtilEncode7To8), (264 bytes).
    Removing hido_util.o(i.HIDO_UtilGetMonthAndDay), (72 bytes).
    Removing hido_util.o(i.HIDO_UtilHexStringToByteArray), (88 bytes).
    Removing hido_util.o(i.HIDO_UtilIPStringBufToInteger), (80 bytes).
    Removing hido_util.o(i.HIDO_UtilIPStringToInteger), (84 bytes).
    Removing hido_util.o(i.HIDO_UtilIntegerToIpString), (44 bytes).
    Removing hido_util.o(i.HIDO_UtilIsIpString), (56 bytes).
    Removing hido_util.o(i.HIDO_UtilMACStringToByteArrary), (70 bytes).
    Removing hido_util.o(i.HIDO_UtilMKCalendar), (212 bytes).
    Removing hido_util.o(i.HIDO_UtilMakeTime), (108 bytes).
    Removing hido_util.o(i.HIDO_UtilStrStr), (86 bytes).
    Removing hido_util.o(i.HIDO_UtilStringToInteger), (92 bytes).
    Removing hido_util.o(i.HIDO_UtilStrnstr), (64 bytes).
    Removing hido_util.o(i.HIDO_UtilStrrnstr), (66 bytes).
    Removing hido_util.o(.constdata), (420 bytes).
    Removing hido_arraryqueue.o(i.HIDO_ArraryQueueIsInited), (16 bytes).
    Removing hido_vlqueue.o(i.HIDO_VLQModfiyMemberSize), (40 bytes).
    Removing hido_input.o(i.HIDO_InputIsUserLogin), (36 bytes).
    Removing hido_atlite.o(i.HIDO_ATLiteClean), (26 bytes).
    Removing hido_atlite.o(i.HIDO_ATLiteDebugOff), (12 bytes).
    Removing hido_atlite.o(i.HIDO_ATLiteDebugOn), (12 bytes).
    Removing hido_atlite.o(i.HIDO_ATLiteRecvReset), (26 bytes).
    Removing fmul.o(.text), (122 bytes).
    Removing fscalb.o(.text), (24 bytes).
    Removing dscalb.o(.text), (44 bytes).
    Removing fflti.o(.text), (22 bytes).
    Removing dflti.o(.text), (40 bytes).
    Removing dfixi.o(.text), (72 bytes).
    Removing cdcmple.o(.text), (40 bytes).
    Removing cfrcmple.o(.text), (20 bytes).
    Removing dsqrt.o(.text), (162 bytes).
    Removing drnd.o(.text), (124 bytes).
 
1060 unused section(s) (total 68217 bytes) removed from the image.
 
==============================================================================
 
Image Symbol Table
 
    Local Symbols
 
    Symbol Name                              Value     Ov Type        Size  Object(Section)
 
    ../Core/Src/main.c                       0x00000000   Number         0  main.o ABSOLUTE
    ../Core/Src/stm32l0xx_hal_msp.c          0x00000000   Number         0  stm32l0xx_hal_msp.o ABSOLUTE
    ../Core/Src/stm32l0xx_it.c               0x00000000   Number         0  stm32l0xx_it.o ABSOLUTE
    ../Core/Src/system_stm32l0xx.c           0x00000000   Number         0  system_stm32l0xx.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.c 0x00000000   Number         0  stm32l0xx_hal.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_adc.c 0x00000000   Number         0  stm32l0xx_hal_adc.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_adc_ex.c 0x00000000   Number         0  stm32l0xx_hal_adc_ex.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.c 0x00000000   Number         0  stm32l0xx_hal_cortex.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.c 0x00000000   Number         0  stm32l0xx_hal_dma.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.c 0x00000000   Number         0  stm32l0xx_hal_exti.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.c 0x00000000   Number         0  stm32l0xx_hal_flash.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.c 0x00000000   Number         0  stm32l0xx_hal_flash_ex.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.c 0x00000000   Number         0  stm32l0xx_hal_flash_ramfunc.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.c 0x00000000   Number         0  stm32l0xx_hal_gpio.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.c 0x00000000   Number         0  stm32l0xx_hal_i2c.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.c 0x00000000   Number         0  stm32l0xx_hal_i2c_ex.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_iwdg.c 0x00000000   Number         0  stm32l0xx_hal_iwdg.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_lptim.c 0x00000000   Number         0  stm32l0xx_hal_lptim.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.c 0x00000000   Number         0  stm32l0xx_hal_pwr.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.c 0x00000000   Number         0  stm32l0xx_hal_pwr_ex.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.c 0x00000000   Number         0  stm32l0xx_hal_rcc.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.c 0x00000000   Number         0  stm32l0xx_hal_rcc_ex.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.c 0x00000000   Number         0  stm32l0xx_hal_rtc.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.c 0x00000000   Number         0  stm32l0xx_hal_rtc_ex.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_spi.c 0x00000000   Number         0  stm32l0xx_hal_spi.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.c 0x00000000   Number         0  stm32l0xx_hal_tim.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.c 0x00000000   Number         0  stm32l0xx_hal_tim_ex.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.c 0x00000000   Number         0  stm32l0xx_hal_uart.o ABSOLUTE
    ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.c 0x00000000   Number         0  stm32l0xx_hal_uart_ex.o ABSOLUTE
    ../clib/../cmprslib/zerorunl2.c          0x00000000   Number         0  __dczerorl2.o ABSOLUTE
    ../clib/microlib/ctype/ctype.c           0x00000000   Number         0  ctype_o.o ABSOLUTE
    ../clib/microlib/ctype/ctype.c           0x00000000   Number         0  ctype_c.o ABSOLUTE
    ../clib/microlib/ctype/ctype.c           0x00000000   Number         0  isspace_c.o ABSOLUTE
    ../clib/microlib/ctype/ctype.c           0x00000000   Number         0  isalpha_o.o ABSOLUTE
    ../clib/microlib/ctype/ctype.c           0x00000000   Number         0  isxdigit_o.o ABSOLUTE
    ../clib/microlib/ctype/ctype.c           0x00000000   Number         0  isupper_o.o ABSOLUTE
    ../clib/microlib/ctype/ctype.c           0x00000000   Number         0  isspace_o.o ABSOLUTE
    ../clib/microlib/ctype/ctype.c           0x00000000   Number         0  ispunct_o.o ABSOLUTE
    ../clib/microlib/ctype/ctype.c           0x00000000   Number         0  isprint_o.o ABSOLUTE
    ../clib/microlib/ctype/ctype.c           0x00000000   Number         0  islower_o.o ABSOLUTE
    ../clib/microlib/ctype/ctype.c           0x00000000   Number         0  isgraph_o.o ABSOLUTE
    ../clib/microlib/ctype/ctype.c           0x00000000   Number         0  iscntrl_o.o ABSOLUTE
    ../clib/microlib/ctype/ctype.c           0x00000000   Number         0  isblank_o.o ABSOLUTE
    ../clib/microlib/ctype/ctype.c           0x00000000   Number         0  isalnum_o.o ABSOLUTE
    ../clib/microlib/ctype/ctype.c           0x00000000   Number         0  isdigit_o.o ABSOLUTE
    ../clib/microlib/division.c              0x00000000   Number         0  uldiv.o ABSOLUTE
    ../clib/microlib/division.c              0x00000000   Number         0  idiv.o ABSOLUTE
    ../clib/microlib/division.c              0x00000000   Number         0  uidiv.o ABSOLUTE
    ../clib/microlib/errno.c                 0x00000000   Number         0  errno.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry10b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry9b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry10a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry5.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry11a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry7b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry8b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry8a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry2.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry9a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry7a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry11b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry.o ABSOLUTE
    ../clib/microlib/longlong.c              0x00000000   Number         0  llmul.o ABSOLUTE
    ../clib/microlib/longlong.c              0x00000000   Number         0  llsshr.o ABSOLUTE
    ../clib/microlib/longlong.c              0x00000000   Number         0  llshl.o ABSOLUTE
    ../clib/microlib/longlong.c              0x00000000   Number         0  llushr.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf6.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf7.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf8.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printfa.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf0.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printfb.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf1.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf2.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf3.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf4.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf5.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/memcmp.c         0x00000000   Number         0  memcmp.o ABSOLUTE
    ../clib/microlib/string/memcpy.c         0x00000000   Number         0  memcpya.o ABSOLUTE
    ../clib/microlib/string/memcpy.c         0x00000000   Number         0  memcpyb.o ABSOLUTE
    ../clib/microlib/string/memset.c         0x00000000   Number         0  memseta.o ABSOLUTE
    ../clib/microlib/string/strcat.c         0x00000000   Number         0  strcat.o ABSOLUTE
    ../clib/microlib/string/strchr.c         0x00000000   Number         0  strchr.o ABSOLUTE
    ../clib/microlib/string/strcmp.c         0x00000000   Number         0  strcmp.o ABSOLUTE
    ../clib/microlib/string/strcpy.c         0x00000000   Number         0  strcpy.o ABSOLUTE
    ../clib/microlib/string/strlen.c         0x00000000   Number         0  strlen.o ABSOLUTE
    ../clib/microlib/string/strncmp.c        0x00000000   Number         0  strncmp.o ABSOLUTE
    ../clib/microlib/string/strstr.c         0x00000000   Number         0  strstr.o ABSOLUTE
    ../clib/microlib/stubs.s                 0x00000000   Number         0  iusefp.o ABSOLUTE
    ../clib/scanf.c                          0x00000000   Number         0  scanf_fp.o ABSOLUTE
    ../clib/scanf.c                          0x00000000   Number         0  atoi.o ABSOLUTE
    ../clib/scanf.c                          0x00000000   Number         0  _scanf_int.o ABSOLUTE
    ../clib/scanf.c                          0x00000000   Number         0  strtod.o ABSOLUTE
    ../clib/scanf.c                          0x00000000   Number         0  strtol.o ABSOLUTE
    ../clib/scanf.c                          0x00000000   Number         0  _sgetc.o ABSOLUTE
    ../clib/scanf.c                          0x00000000   Number         0  _scanf.o ABSOLUTE
    ../clib/scanf.c                          0x00000000   Number         0  scanf_char.o ABSOLUTE
    ../clib/scanf.c                          0x00000000   Number         0  _strtoul.o ABSOLUTE
    ../clib/scanf.c                          0x00000000   Number         0  _chval.o ABSOLUTE
    ../clib/scanf.c                          0x00000000   Number         0  __0sscanf.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/fpdiv.c                0x00000000   Number         0  fdiv.o ABSOLUTE
    ../fplib/microlib/fpdiv.c                0x00000000   Number         0  ddiv.o ABSOLUTE
    ../fplib/microlib/fpepilogue.c           0x00000000   Number         0  fepilogue.o ABSOLUTE
    ../fplib/microlib/fpepilogue.c           0x00000000   Number         0  depilogue.o ABSOLUTE
    ../fplib/microlib/fpfix.c                0x00000000   Number         0  dfixui.o ABSOLUTE
    ../fplib/microlib/fpfix.c                0x00000000   Number         0  dfixul.o ABSOLUTE
    ../fplib/microlib/fpfix.c                0x00000000   Number         0  ffixui.o ABSOLUTE
    ../fplib/microlib/fpfix.c                0x00000000   Number         0  dfixi.o ABSOLUTE
    ../fplib/microlib/fpflt.c                0x00000000   Number         0  dfltui.o ABSOLUTE
    ../fplib/microlib/fpflt.c                0x00000000   Number         0  fflti.o ABSOLUTE
    ../fplib/microlib/fpflt.c                0x00000000   Number         0  ffltui.o ABSOLUTE
    ../fplib/microlib/fpflt.c                0x00000000   Number         0  dfltul.o ABSOLUTE
    ../fplib/microlib/fpflt.c                0x00000000   Number         0  dflti.o ABSOLUTE
    ../fplib/microlib/fpmul.c                0x00000000   Number         0  fmul.o ABSOLUTE
    ../fplib/microlib/fpmul.c                0x00000000   Number         0  dmul.o ABSOLUTE
    ../fplib/microlib/fprnd.c                0x00000000   Number         0  drnd.o ABSOLUTE
    ../fplib/microlib/fpscalb.c              0x00000000   Number         0  fscalb.o ABSOLUTE
    ../fplib/microlib/fpscalb.c              0x00000000   Number         0  dscalb.o ABSOLUTE
    ../fplib/microlib/fpsqrt.c               0x00000000   Number         0  dsqrt.o ABSOLUTE
    ../mathlib/asin.c                        0x00000000   Number         0  asin_x.o ABSOLUTE
    ../mathlib/asin.c                        0x00000000   Number         0  asin.o ABSOLUTE
    ../mathlib/atof.c                        0x00000000   Number         0  atof.o ABSOLUTE
    ../mathlib/ceil.c                        0x00000000   Number         0  ceil.o ABSOLUTE
    ../mathlib/dunder.c                      0x00000000   Number         0  dunder.o ABSOLUTE
    ../mathlib/floor.c                       0x00000000   Number         0  floor.o ABSOLUTE
    ../mathlib/fpclassify.c                  0x00000000   Number         0  fpclassify.o ABSOLUTE
    ../mathlib/poly.c                        0x00000000   Number         0  poly.o ABSOLUTE
    ../mathlib/pow.c                         0x00000000   Number         0  pow_x.o ABSOLUTE
    ../mathlib/pow.c                         0x00000000   Number         0  pow.o ABSOLUTE
    ../mathlib/qnan.c                        0x00000000   Number         0  qnan.o ABSOLUTE
    ../mathlib/rint.c                        0x00000000   Number         0  rint.o ABSOLUTE
    ../mathlib/sqrt.c                        0x00000000   Number         0  sqrt_x.o ABSOLUTE
    ../mathlib/sqrt.c                        0x00000000   Number         0  sqrt.o ABSOLUTE
    ..\APL\App.c                             0x00000000   Number         0  app.o ABSOLUTE
    ..\APL\Shell.c                           0x00000000   Number         0  shell.o ABSOLUTE
    ..\APL\UDPClient.c                       0x00000000   Number         0  udpclient.o ABSOLUTE
    ..\APL\WS2812.c                          0x00000000   Number         0  ws2812.o ABSOLUTE
    ..\APL\dps310.c                          0x00000000   Number         0  dps310.o ABSOLUTE
    ..\APL\dps368_test.c                     0x00000000   Number         0  dps368_test.o ABSOLUTE
    ..\APL\dw_app.c                          0x00000000   Number         0  dw_app.o ABSOLUTE
    ..\APL\dw_driver.c                       0x00000000   Number         0  dw_driver.o ABSOLUTE
    ..\APL\dw_mbx_tag.c                      0x00000000   Number         0  dw_mbx_tag.o ABSOLUTE
    ..\APL\global_param.c                    0x00000000   Number         0  global_param.o ABSOLUTE
    ..\APL\lis3dh_driver.c                   0x00000000   Number         0  lis3dh_driver.o ABSOLUTE
    ..\APL\serial_at_cmd_app.c               0x00000000   Number         0  serial_at_cmd_app.o ABSOLUTE
    ..\Core\Src\main.c                       0x00000000   Number         0  main.o ABSOLUTE
    ..\Core\Src\stm32l0xx_hal_msp.c          0x00000000   Number         0  stm32l0xx_hal_msp.o ABSOLUTE
    ..\Core\Src\stm32l0xx_it.c               0x00000000   Number         0  stm32l0xx_it.o ABSOLUTE
    ..\Core\Src\system_stm32l0xx.c           0x00000000   Number         0  system_stm32l0xx.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal.c 0x00000000   Number         0  stm32l0xx_hal.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal_adc.c 0x00000000   Number         0  stm32l0xx_hal_adc.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal_adc_ex.c 0x00000000   Number         0  stm32l0xx_hal_adc_ex.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal_cortex.c 0x00000000   Number         0  stm32l0xx_hal_cortex.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal_dma.c 0x00000000   Number         0  stm32l0xx_hal_dma.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal_exti.c 0x00000000   Number         0  stm32l0xx_hal_exti.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal_flash.c 0x00000000   Number         0  stm32l0xx_hal_flash.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal_flash_ex.c 0x00000000   Number         0  stm32l0xx_hal_flash_ex.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal_flash_ramfunc.c 0x00000000   Number         0  stm32l0xx_hal_flash_ramfunc.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal_gpio.c 0x00000000   Number         0  stm32l0xx_hal_gpio.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal_i2c.c 0x00000000   Number         0  stm32l0xx_hal_i2c.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal_i2c_ex.c 0x00000000   Number         0  stm32l0xx_hal_i2c_ex.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal_iwdg.c 0x00000000   Number         0  stm32l0xx_hal_iwdg.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal_lptim.c 0x00000000   Number         0  stm32l0xx_hal_lptim.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal_pwr.c 0x00000000   Number         0  stm32l0xx_hal_pwr.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal_pwr_ex.c 0x00000000   Number         0  stm32l0xx_hal_pwr_ex.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal_rcc.c 0x00000000   Number         0  stm32l0xx_hal_rcc.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal_rcc_ex.c 0x00000000   Number         0  stm32l0xx_hal_rcc_ex.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal_rtc.c 0x00000000   Number         0  stm32l0xx_hal_rtc.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal_rtc_ex.c 0x00000000   Number         0  stm32l0xx_hal_rtc_ex.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal_spi.c 0x00000000   Number         0  stm32l0xx_hal_spi.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal_tim.c 0x00000000   Number         0  stm32l0xx_hal_tim.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal_tim_ex.c 0x00000000   Number         0  stm32l0xx_hal_tim_ex.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal_uart.c 0x00000000   Number         0  stm32l0xx_hal_uart.o ABSOLUTE
    ..\Drivers\STM32L0xx_HAL_Driver\Src\stm32l0xx_hal_uart_ex.c 0x00000000   Number         0  stm32l0xx_hal_uart_ex.o ABSOLUTE
    ..\FML\DBG.c                             0x00000000   Number         0  dbg.o ABSOLUTE
    ..\FML\GPS.c                             0x00000000   Number         0  gps.o ABSOLUTE
    ..\FML\Internet\Internet.c               0x00000000   Number         0  internet.o ABSOLUTE
    ..\FML\Internet\Module.c                 0x00000000   Number         0  module.o ABSOLUTE
    ..\FML\Internet\Module\AIR780E\AIR780ECSQ.c 0x00000000   Number         0  air780ecsq.o ABSOLUTE
    ..\FML\Internet\Module\AIR780E\AIR780EDriver.c 0x00000000   Number         0  air780edriver.o ABSOLUTE
    ..\FML\Internet\Module\AIR780E\AIR780EFSM.c 0x00000000   Number         0  air780efsm.o ABSOLUTE
    ..\FML\Internet\Module\AIR780E\AIR780ELoc.c 0x00000000   Number         0  air780eloc.o ABSOLUTE
    ..\FML\Internet\Module\AIR780E\AIR780ESocket.c 0x00000000   Number         0  air780esocket.o ABSOLUTE
    ..\FML\Internet\Socket.c                 0x00000000   Number         0  socket.o ABSOLUTE
    ..\FML\SPIFlash.c                        0x00000000   Number         0  spiflash.o ABSOLUTE
    ..\HAL\ADC.c                             0x00000000   Number         0  adc.o ABSOLUTE
    ..\HAL\BSP.c                             0x00000000   Number         0  bsp.o ABSOLUTE
    ..\HAL\Flash.c                           0x00000000   Number         0  flash.o ABSOLUTE
    ..\HAL\SPI_hal.c                         0x00000000   Number         0  spi_hal.o ABSOLUTE
    ..\HAL\Spi.c                             0x00000000   Number         0  spi.o ABSOLUTE
    ..\HAL\UART.c                            0x00000000   Number         0  uart.o ABSOLUTE
    ..\Middlewares\HIDOLibrary\ATLiteCore\HIDO_ATLite.c 0x00000000   Number         0  hido_atlite.o ABSOLUTE
    ..\Middlewares\HIDOLibrary\ATLiteCore\HIDO_ATLiteParse.c 0x00000000   Number         0  hido_atliteparse.o ABSOLUTE
    ..\Middlewares\HIDOLibrary\Debug\HIDO_Input.c 0x00000000   Number         0  hido_input.o ABSOLUTE
    ..\Middlewares\HIDOLibrary\Debug\HIDO_Shell.c 0x00000000   Number         0  hido_shell.o ABSOLUTE
    ..\Middlewares\HIDOLibrary\Queue\HIDO_ArraryQueue.c 0x00000000   Number         0  hido_arraryqueue.o ABSOLUTE
    ..\Middlewares\HIDOLibrary\Queue\HIDO_BaseQueue.c 0x00000000   Number         0  hido_basequeue.o ABSOLUTE
    ..\Middlewares\HIDOLibrary\Queue\HIDO_VLQueue.c 0x00000000   Number         0  hido_vlqueue.o ABSOLUTE
    ..\Middlewares\HIDOLibrary\Util\HIDO_FSM.c 0x00000000   Number         0  hido_fsm.o ABSOLUTE
    ..\Middlewares\HIDOLibrary\Util\HIDO_Lock.c 0x00000000   Number         0  hido_lock.o ABSOLUTE
    ..\Middlewares\HIDOLibrary\Util\HIDO_Timer.c 0x00000000   Number         0  hido_timer.o ABSOLUTE
    ..\Middlewares\HIDOLibrary\Util\HIDO_Util.c 0x00000000   Number         0  hido_util.o ABSOLUTE
    ..\\APL\\App.c                           0x00000000   Number         0  app.o ABSOLUTE
    ..\\APL\\Shell.c                         0x00000000   Number         0  shell.o ABSOLUTE
    ..\\APL\\UDPClient.c                     0x00000000   Number         0  udpclient.o ABSOLUTE
    ..\\APL\\WS2812.c                        0x00000000   Number         0  ws2812.o ABSOLUTE
    ..\\APL\\dps368_test.c                   0x00000000   Number         0  dps368_test.o ABSOLUTE
    ..\\APL\\dw_app.c                        0x00000000   Number         0  dw_app.o ABSOLUTE
    ..\\APL\\dw_driver.c                     0x00000000   Number         0  dw_driver.o ABSOLUTE
    ..\\APL\\dw_mbx_tag.c                    0x00000000   Number         0  dw_mbx_tag.o ABSOLUTE
    ..\\APL\\global_param.c                  0x00000000   Number         0  global_param.o ABSOLUTE
    ..\\APL\\lis3dh_driver.c                 0x00000000   Number         0  lis3dh_driver.o ABSOLUTE
    ..\\APL\\serial_at_cmd_app.c             0x00000000   Number         0  serial_at_cmd_app.o ABSOLUTE
    ..\\FML\\DBG.c                           0x00000000   Number         0  dbg.o ABSOLUTE
    ..\\FML\\GPS.c                           0x00000000   Number         0  gps.o ABSOLUTE
    ..\\FML\\Internet\\Module\\AIR780E\\AIR780EDriver.c 0x00000000   Number         0  air780edriver.o ABSOLUTE
    ..\\FML\\Internet\\Module\\AIR780E\\AIR780ESocket.c 0x00000000   Number         0  air780esocket.o ABSOLUTE
    ..\\FML\\SPIFlash.c                      0x00000000   Number         0  spiflash.o ABSOLUTE
    ..\\HAL\\ADC.c                           0x00000000   Number         0  adc.o ABSOLUTE
    ..\\HAL\\BSP.c                           0x00000000   Number         0  bsp.o ABSOLUTE
    ..\\HAL\\Flash.c                         0x00000000   Number         0  flash.o ABSOLUTE
    ..\\HAL\\SPI_hal.c                       0x00000000   Number         0  spi_hal.o ABSOLUTE
    ..\\HAL\\Spi.c                           0x00000000   Number         0  spi.o ABSOLUTE
    ..\\HAL\\UART.c                          0x00000000   Number         0  uart.o ABSOLUTE
    ..\\Middlewares\\HIDOLibrary\\Util\\HIDO_Lock.c 0x00000000   Number         0  hido_lock.o ABSOLUTE
    ..\\decadriver\\deca_device.c            0x00000000   Number         0  deca_device.o ABSOLUTE
    ..\\radio\\Lora.c                        0x00000000   Number         0  lora.o ABSOLUTE
    ..\\radio\\delay.c                       0x00000000   Number         0  delay.o ABSOLUTE
    ..\\radio\\radio.c                       0x00000000   Number         0  radio.o ABSOLUTE
    ..\\radio\\sx126x-board.c                0x00000000   Number         0  sx126x-board.o ABSOLUTE
    ..\decadriver\deca_device.c              0x00000000   Number         0  deca_device.o ABSOLUTE
    ..\decadriver\deca_params_init.c         0x00000000   Number         0  deca_params_init.o ABSOLUTE
    ..\decadriver\deca_range_tables.c        0x00000000   Number         0  deca_range_tables.o ABSOLUTE
    ..\radio\Lora.c                          0x00000000   Number         0  lora.o ABSOLUTE
    ..\radio\crc.c                           0x00000000   Number         0  crc.o ABSOLUTE
    ..\radio\delay.c                         0x00000000   Number         0  delay.o ABSOLUTE
    ..\radio\radio.c                         0x00000000   Number         0  radio.o ABSOLUTE
    ..\radio\sx126x-board.c                  0x00000000   Number         0  sx126x-board.o ABSOLUTE
    ..\radio\sx126x.c                        0x00000000   Number         0  sx126x.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
    startup_stm32l071xx.s                    0x00000000   Number         0  startup_stm32l071xx.o ABSOLUTE
    RESET                                    0x08005000   Section      192  startup_stm32l071xx.o(RESET)
    .ARM.Collect$$$$00000000                 0x080050c0   Section        0  entry.o(.ARM.Collect$$$$00000000)
    .ARM.Collect$$$$00000001                 0x080050c0   Section        4  entry2.o(.ARM.Collect$$$$00000001)
    .ARM.Collect$$$$00000004                 0x080050c4   Section        4  entry5.o(.ARM.Collect$$$$00000004)
    .ARM.Collect$$$$00000008                 0x080050c8   Section        0  entry7b.o(.ARM.Collect$$$$00000008)
    .ARM.Collect$$$$0000000A                 0x080050c8   Section        0  entry8b.o(.ARM.Collect$$$$0000000A)
    .ARM.Collect$$$$0000000B                 0x080050c8   Section        8  entry9a.o(.ARM.Collect$$$$0000000B)
    .ARM.Collect$$$$0000000D                 0x080050d0   Section        0  entry10a.o(.ARM.Collect$$$$0000000D)
    .ARM.Collect$$$$0000000F                 0x080050d0   Section        0  entry11a.o(.ARM.Collect$$$$0000000F)
    .ARM.Collect$$$$00002712                 0x080050d0   Section        4  entry2.o(.ARM.Collect$$$$00002712)
    __lit__00000000                          0x080050d0   Data           4  entry2.o(.ARM.Collect$$$$00002712)
    .text                                    0x080050d4   Section       28  startup_stm32l071xx.o(.text)
    .text                                    0x080050f0   Section        0  uidiv.o(.text)
    .text                                    0x0800511c   Section        0  idiv.o(.text)
    .text                                    0x08005144   Section        0  uldiv.o(.text)
    .text                                    0x080051a4   Section        0  llushr.o(.text)
    .text                                    0x080051c6   Section        0  memcpya.o(.text)
    .text                                    0x080051ea   Section        0  memseta.o(.text)
    .text                                    0x0800520e   Section        0  strcat.o(.text)
    .text                                    0x08005226   Section        0  strstr.o(.text)
    .text                                    0x0800524e   Section        0  strchr.o(.text)
    .text                                    0x08005262   Section        0  strlen.o(.text)
    .text                                    0x08005270   Section        0  strcmp.o(.text)
    .text                                    0x0800528c   Section        0  memcmp.o(.text)
    .text                                    0x080052a6   Section        0  strcpy.o(.text)
    .text                                    0x080052b8   Section        0  strncmp.o(.text)
    .text                                    0x080052d6   Section        0  atoi.o(.text)
    .text                                    0x080052f0   Section        0  fdiv.o(.text)
    .text                                    0x0800536c   Section        0  dadd.o(.text)
    .text                                    0x080054d0   Section        0  dmul.o(.text)
    .text                                    0x080055a0   Section        0  ddiv.o(.text)
    .text                                    0x08005690   Section        0  ffltui.o(.text)
    .text                                    0x080056a0   Section        0  dfltui.o(.text)
    .text                                    0x080056bc   Section        0  ffixui.o(.text)
    .text                                    0x080056e4   Section        0  dfixui.o(.text)
    .text                                    0x08005720   Section        0  f2d.o(.text)
    .text                                    0x08005748   Section       40  cdrcmple.o(.text)
    .text                                    0x08005770   Section        0  d2f.o(.text)
    .text                                    0x080057a8   Section        0  llshl.o(.text)
    .text                                    0x080057c8   Section        0  llsshr.o(.text)
    .text                                    0x080057ee   Section        0  _chval.o(.text)
    .text                                    0x0800580c   Section        0  _sgetc.o(.text)
    .text                                    0x08005850   Section        0  strtod.o(.text)
    _local_sscanf                            0x08005851   Thumb Code    54  strtod.o(.text)
    .text                                    0x080058f4   Section        0  strtol.o(.text)
    .text                                    0x08005964   Section        0  iusefp.o(.text)
    .text                                    0x08005964   Section        0  fepilogue.o(.text)
    .text                                    0x080059e6   Section        0  depilogue.o(.text)
    .text                                    0x08005aa4   Section        0  dfixul.o(.text)
    .text                                    0x08005ae4   Section       36  init.o(.text)
    .text                                    0x08005b08   Section        0  ctype_o.o(.text)
    .text                                    0x08005b10   Section        0  isspace_o.o(.text)
    .text                                    0x08005b24   Section        0  scanf_fp.o(.text)
    _fp_value                                0x08005b25   Thumb Code   286  scanf_fp.o(.text)
    .text                                    0x08005e98   Section        0  _strtoul.o(.text)
    .text                                    0x08005f3e   Section        0  llmul.o(.text)
    .text                                    0x08005fb8   Section        0  dfltul.o(.text)
    .text                                    0x08005fd4   Section        0  __dczerorl2.o(.text)
    i.ADC_DelayMicroSecond                   0x0800602c   Section        0  stm32l0xx_hal_adc.o(i.ADC_DelayMicroSecond)
    ADC_DelayMicroSecond                     0x0800602d   Thumb Code    28  stm32l0xx_hal_adc.o(i.ADC_DelayMicroSecond)
    i.ADC_Enable                             0x08006050   Section        0  stm32l0xx_hal_adc.o(i.ADC_Enable)
    ADC_Enable                               0x08006051   Thumb Code   106  stm32l0xx_hal_adc.o(i.ADC_Enable)
    i.AIR780EATCmdInitProc                   0x080060c0   Section        0  air780efsm.o(i.AIR780EATCmdInitProc)
    i.AIR780EATCmdTestProc                   0x08006204   Section        0  air780efsm.o(i.AIR780EATCmdTestProc)
    i.AIR780ECSQProc                         0x08006320   Section        0  air780ecsq.o(i.AIR780ECSQProc)
    i.AIR780ECSQ_Get                         0x080063a4   Section        0  air780ecsq.o(i.AIR780ECSQ_Get)
    i.AIR780ECSQ_Poll                        0x080063cc   Section        0  air780ecsq.o(i.AIR780ECSQ_Poll)
    i.AIR780ECloseWirelessProc               0x080063e8   Section        0  air780efsm.o(i.AIR780ECloseWirelessProc)
    i.AIR780EDriver_FSMDebug                 0x0800643c   Section        0  air780edriver.o(i.AIR780EDriver_FSMDebug)
    i.AIR780EDriver_Init                     0x08006458   Section        0  air780edriver.o(i.AIR780EDriver_Init)
    i.AIR780EDriver_PWRKEYReset              0x0800652c   Section        0  air780edriver.o(i.AIR780EDriver_PWRKEYReset)
    i.AIR780EDriver_PWRKEYSet                0x08006548   Section        0  air780edriver.o(i.AIR780EDriver_PWRKEYSet)
    i.AIR780EDriver_PinRegister              0x08006564   Section        0  air780edriver.o(i.AIR780EDriver_PinRegister)
    i.AIR780EDriver_PowerOff                 0x08006578   Section        0  air780edriver.o(i.AIR780EDriver_PowerOff)
    i.AIR780EDriver_PowerOn                  0x08006594   Section        0  air780edriver.o(i.AIR780EDriver_PowerOn)
    i.AIR780EIPCheckProc                     0x080065b0   Section        0  air780efsm.o(i.AIR780EIPCheckProc)
    i.AIR780EIPInitProc                      0x08006630   Section        0  air780efsm.o(i.AIR780EIPInitProc)
    i.AIR780EIPPollProc                      0x080067f0   Section        0  air780efsm.o(i.AIR780EIPPollProc)
    i.AIR780EIPReadyProc                     0x0800682c   Section        0  air780efsm.o(i.AIR780EIPReadyProc)
    i.AIR780EIdleProc                        0x080068a4   Section        0  air780efsm.o(i.AIR780EIdleProc)
    i.AIR780EInitProc                        0x080068c0   Section        0  air780efsm.o(i.AIR780EInitProc)
    i.AIR780ELocProc                         0x080068e4   Section        0  air780eloc.o(i.AIR780ELocProc)
    i.AIR780ELoc_Get                         0x08006a0c   Section        0  air780eloc.o(i.AIR780ELoc_Get)
    i.AIR780ELoc_Poll                        0x08006a34   Section        0  air780eloc.o(i.AIR780ELoc_Poll)
    i.AIR780EOpenWirelessProc                0x08006a50   Section        0  air780efsm.o(i.AIR780EOpenWirelessProc)
    i.AIR780EPowerOffProc                    0x08006aa4   Section        0  air780efsm.o(i.AIR780EPowerOffProc)
    i.AIR780EPowerOnProc                     0x08006af4   Section        0  air780efsm.o(i.AIR780EPowerOnProc)
    i.AIR780EProc                            0x08006ba8   Section        0  air780efsm.o(i.AIR780EProc)
    i.AIR780EReadyProc                       0x08006c14   Section        0  air780efsm.o(i.AIR780EReadyProc)
    i.AIR780ERunATCmdProc                    0x08006c24   Section        0  air780efsm.o(i.AIR780ERunATCmdProc)
    i.AIR780ESearchingNetworkProc            0x08006c7c   Section        0  air780efsm.o(i.AIR780ESearchingNetworkProc)
    i.AIR780ESocketCloseProc                 0x08006dc8   Section        0  air780esocket.o(i.AIR780ESocketCloseProc)
    i.AIR780ESocketConnectProc               0x08006e8c   Section        0  air780esocket.o(i.AIR780ESocketConnectProc)
    i.AIR780ESocketSendDataProc              0x08007028   Section        0  air780esocket.o(i.AIR780ESocketSendDataProc)
    i.AIR780ESocket_Poll                     0x08007154   Section        0  air780esocket.o(i.AIR780ESocket_Poll)
    i.AIR780EWaitSimCardReadyProc            0x080071fc   Section        0  air780efsm.o(i.AIR780EWaitSimCardReadyProc)
    i.AIR780E_CloseWirelessPoll              0x080072bc   Section        0  air780efsm.o(i.AIR780E_CloseWirelessPoll)
    AIR780E_CloseWirelessPoll                0x080072bd   Thumb Code    54  air780efsm.o(i.AIR780E_CloseWirelessPoll)
    i.AIR780E_GetChar                        0x080072f8   Section        0  air780edriver.o(i.AIR780E_GetChar)
    AIR780E_GetChar                          0x080072f9   Thumb Code    10  air780edriver.o(i.AIR780E_GetChar)
    i.AIR780E_IsIPReady                      0x08007304   Section        0  air780efsm.o(i.AIR780E_IsIPReady)
    i.AIR780E_OpenWirelessPoll               0x08007324   Section        0  air780efsm.o(i.AIR780E_OpenWirelessPoll)
    AIR780E_OpenWirelessPoll                 0x08007325   Thumb Code    54  air780efsm.o(i.AIR780E_OpenWirelessPoll)
    i.AIR780E_Output                         0x08007360   Section        0  air780edriver.o(i.AIR780E_Output)
    AIR780E_Output                           0x08007361   Thumb Code    64  air780edriver.o(i.AIR780E_Output)
    i.AIR780E_Poll                           0x080073c0   Section        0  air780efsm.o(i.AIR780E_Poll)
    AIR780E_Poll                             0x080073c1   Thumb Code    58  air780efsm.o(i.AIR780E_Poll)
    i.AIR780E_PollOnIPReady                  0x080073fc   Section        0  air780efsm.o(i.AIR780E_PollOnIPReady)
    AIR780E_PollOnIPReady                    0x080073fd   Thumb Code   114  air780efsm.o(i.AIR780E_PollOnIPReady)
    i.AIR780E_PowerPoll                      0x08007480   Section        0  air780efsm.o(i.AIR780E_PowerPoll)
    AIR780E_PowerPoll                        0x08007481   Thumb Code    50  air780efsm.o(i.AIR780E_PowerPoll)
    i.AIR780E_ReadLine                       0x080074bc   Section        0  air780edriver.o(i.AIR780E_ReadLine)
    AIR780E_ReadLine                         0x080074bd   Thumb Code   340  air780edriver.o(i.AIR780E_ReadLine)
    i.AIR780E_RunATCmdPoll                   0x08007658   Section        0  air780efsm.o(i.AIR780E_RunATCmdPoll)
    AIR780E_RunATCmdPoll                     0x08007659   Thumb Code    52  air780efsm.o(i.AIR780E_RunATCmdPoll)
    i.Anchor_RecNearPoll                     0x08007690   Section        0  dw_mbx_tag.o(i.Anchor_RecNearPoll)
    i.Bat_Percent_Poll                       0x080077d8   Section        0  main.o(i.Bat_Percent_Poll)
    i.Checksum_u16                           0x080077f8   Section        0  dw_app.o(i.Checksum_u16)
    i.CmpTagInList                           0x08007814   Section        0  dw_mbx_tag.o(i.CmpTagInList)
    i.DBG_GetMode                            0x08007844   Section        0  dbg.o(i.DBG_GetMode)
    i.DBG_Init                               0x08007850   Section        0  dbg.o(i.DBG_Init)
    i.DBG_Poll                               0x080078b4   Section        0  dbg.o(i.DBG_Poll)
    i.DBG_SerialGetChar                      0x080079cc   Section        0  dbg.o(i.DBG_SerialGetChar)
    DBG_SerialGetChar                        0x080079cd   Thumb Code    12  dbg.o(i.DBG_SerialGetChar)
    i.DBG_SerialPrintf                       0x080079d8   Section        0  dbg.o(i.DBG_SerialPrintf)
    DBG_SerialPrintf                         0x080079d9   Thumb Code    48  dbg.o(i.DBG_SerialPrintf)
    i.DBG_SerialPutChar                      0x08007a08   Section        0  dbg.o(i.DBG_SerialPutChar)
    DBG_SerialPutChar                        0x08007a09   Thumb Code    14  dbg.o(i.DBG_SerialPutChar)
    i.DBG_SerialPutString                    0x08007a16   Section        0  dbg.o(i.DBG_SerialPutString)
    DBG_SerialPutString                      0x08007a17   Thumb Code    20  dbg.o(i.DBG_SerialPutString)
    i.DBG_SetMode                            0x08007a2c   Section        0  dbg.o(i.DBG_SetMode)
    i.DMA1_Channel2_3_IRQHandler             0x08007a38   Section        0  stm32l0xx_it.o(i.DMA1_Channel2_3_IRQHandler)
    i.DMA1_Channel4_5_6_7_IRQHandler         0x08007a48   Section        0  stm32l0xx_it.o(i.DMA1_Channel4_5_6_7_IRQHandler)
    i.DMA_SetConfig                          0x08007a60   Section        0  stm32l0xx_hal_dma.o(i.DMA_SetConfig)
    DMA_SetConfig                            0x08007a61   Thumb Code    44  stm32l0xx_hal_dma.o(i.DMA_SetConfig)
    i.Delay_Ms                               0x08007a8c   Section        0  delay.o(i.Delay_Ms)
    i.Delay_Us                               0x08007a9a   Section        0  delay.o(i.Delay_Us)
    i.Dw1000_Init                            0x08007b28   Section        0  dw_app.o(i.Dw1000_Init)
    i.EXTI0_1_IRQHandler                     0x08007b78   Section        0  stm32l0xx_it.o(i.EXTI0_1_IRQHandler)
    i.EXTI4_15_IRQHandler                    0x08007b82   Section        0  stm32l0xx_it.o(i.EXTI4_15_IRQHandler)
    i.Error_Handler                          0x08007b9e   Section        0  main.o(i.Error_Handler)
    i.FLASH_PageErase                        0x08007ba4   Section        0  stm32l0xx_hal_flash_ex.o(i.FLASH_PageErase)
    i.FLASH_Prepare                          0x08007bd0   Section        0  flash.o(i.FLASH_Prepare)
    i.FLASH_Read                             0x08007c10   Section        0  flash.o(i.FLASH_Read)
    i.FLASH_SetErrorCode                     0x08007c24   Section        0  stm32l0xx_hal_flash.o(i.FLASH_SetErrorCode)
    FLASH_SetErrorCode                       0x08007c25   Thumb Code   134  stm32l0xx_hal_flash.o(i.FLASH_SetErrorCode)
    i.FLASH_WaitForLastOperation             0x08007cb4   Section        0  stm32l0xx_hal_flash.o(i.FLASH_WaitForLastOperation)
    i.FLASH_Write                            0x08007d24   Section        0  flash.o(i.FLASH_Write)
    i.FSM_Debug                              0x08007d64   Section        0  hido_fsm.o(i.FSM_Debug)
    FSM_Debug                                0x08007d65   Thumb Code    58  hido_fsm.o(i.FSM_Debug)
    i.FSM_FindState                          0x08007d9e   Section        0  hido_fsm.o(i.FSM_FindState)
    FSM_FindState                            0x08007d9f   Thumb Code    62  hido_fsm.o(i.FSM_FindState)
    i.FSM_GeneralTimerProc                   0x08007ddc   Section        0  hido_fsm.o(i.FSM_GeneralTimerProc)
    FSM_GeneralTimerProc                     0x08007ddd   Thumb Code    46  hido_fsm.o(i.FSM_GeneralTimerProc)
    i.Fangchai_Panduan_Poll                  0x08007e10   Section        0  main.o(i.Fangchai_Panduan_Poll)
    i.GPS_AddHours                           0x08007e54   Section        0  gps.o(i.GPS_AddHours)
    GPS_AddHours                             0x08007e55   Thumb Code   112  gps.o(i.GPS_AddHours)
    i.GPS_Close_Init                         0x08007ec4   Section        0  main.o(i.GPS_Close_Init)
    i.GPS_DataCheck                          0x08007ee8   Section        0  gps.o(i.GPS_DataCheck)
    GPS_DataCheck                            0x08007ee9   Thumb Code    70  gps.o(i.GPS_DataCheck)
    i.GPS_Init                               0x08007f3c   Section        0  gps.o(i.GPS_Init)
    i.GPS_ParseGGA                           0x08007fac   Section        0  gps.o(i.GPS_ParseGGA)
    GPS_ParseGGA                             0x08007fad   Thumb Code   180  gps.o(i.GPS_ParseGGA)
    i.GPS_ParseLat                           0x080080cc   Section        0  gps.o(i.GPS_ParseLat)
    GPS_ParseLat                             0x080080cd   Thumb Code   150  gps.o(i.GPS_ParseLat)
    i.GPS_ParseLon                           0x0800816c   Section        0  gps.o(i.GPS_ParseLon)
    GPS_ParseLon                             0x0800816d   Thumb Code   150  gps.o(i.GPS_ParseLon)
    i.GPS_ParseRMC                           0x0800820c   Section        0  gps.o(i.GPS_ParseRMC)
    i.GPS_PinRegister                        0x080083c4   Section        0  gps.o(i.GPS_PinRegister)
    i.GPS_Poll                               0x080083d4   Section        0  gps.o(i.GPS_Poll)
    i.GPS_PowerOff                           0x080083f4   Section        0  gps.o(i.GPS_PowerOff)
    i.GPS_PowerOn                            0x08008410   Section        0  gps.o(i.GPS_PowerOn)
    i.GPS_RecvFsm                            0x0800842c   Section        0  gps.o(i.GPS_RecvFsm)
    GPS_RecvFsm                              0x0800842d   Thumb Code   138  gps.o(i.GPS_RecvFsm)
    i.Get_ADC_Value                          0x080084cc   Section        0  adc.o(i.Get_ADC_Value)
    i.Get_Battary                            0x080084f4   Section        0  adc.o(i.Get_Battary)
    i.Gps_Chongqi_Poll                       0x080085c0   Section        0  main.o(i.Gps_Chongqi_Poll)
    i.HAL_ADC_ConfigChannel                  0x0800860c   Section        0  stm32l0xx_hal_adc.o(i.HAL_ADC_ConfigChannel)
    i.HAL_ADC_GetState                       0x080086a0   Section        0  stm32l0xx_hal_adc.o(i.HAL_ADC_GetState)
    i.HAL_ADC_GetValue                       0x080086a4   Section        0  stm32l0xx_hal_adc.o(i.HAL_ADC_GetValue)
    i.HAL_ADC_Init                           0x080086ac   Section        0  stm32l0xx_hal_adc.o(i.HAL_ADC_Init)
    i.HAL_ADC_MspInit                        0x08008874   Section        0  stm32l0xx_hal_msp.o(i.HAL_ADC_MspInit)
    i.HAL_ADC_PollForConversion              0x080088c4   Section        0  stm32l0xx_hal_adc.o(i.HAL_ADC_PollForConversion)
    i.HAL_ADC_Start                          0x0800898c   Section        0  stm32l0xx_hal_adc.o(i.HAL_ADC_Start)
    i.HAL_DMA_Abort                          0x080089e8   Section        0  stm32l0xx_hal_dma.o(i.HAL_DMA_Abort)
    i.HAL_DMA_Abort_IT                       0x08008a2c   Section        0  stm32l0xx_hal_dma.o(i.HAL_DMA_Abort_IT)
    i.HAL_DMA_DeInit                         0x08008a78   Section        0  stm32l0xx_hal_dma.o(i.HAL_DMA_DeInit)
    i.HAL_DMA_IRQHandler                     0x08008ae0   Section        0  stm32l0xx_hal_dma.o(i.HAL_DMA_IRQHandler)
    i.HAL_DMA_Init                           0x08008b88   Section        0  stm32l0xx_hal_dma.o(i.HAL_DMA_Init)
    i.HAL_DMA_Start_IT                       0x08008c18   Section        0  stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT)
    i.HAL_Delay                              0x08008c80   Section        0  stm32l0xx_hal.o(i.HAL_Delay)
    i.HAL_FLASHEx_Erase                      0x08008ca4   Section        0  stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase)
    i.HAL_FLASH_Lock                         0x08008d1c   Section        0  stm32l0xx_hal_flash.o(i.HAL_FLASH_Lock)
    i.HAL_FLASH_Program                      0x08008d38   Section        0  stm32l0xx_hal_flash.o(i.HAL_FLASH_Program)
    i.HAL_FLASH_Unlock                       0x08008d74   Section        0  stm32l0xx_hal_flash.o(i.HAL_FLASH_Unlock)
    i.HAL_GPIO_DeInit                        0x08008dd0   Section        0  stm32l0xx_hal_gpio.o(i.HAL_GPIO_DeInit)
    i.HAL_GPIO_EXTI_Callback                 0x08008ec0   Section        0  main.o(i.HAL_GPIO_EXTI_Callback)
    i.HAL_GPIO_EXTI_IRQHandler               0x08008f18   Section        0  stm32l0xx_hal_gpio.o(i.HAL_GPIO_EXTI_IRQHandler)
    i.HAL_GPIO_Init                          0x08008f30   Section        0  stm32l0xx_hal_gpio.o(i.HAL_GPIO_Init)
    i.HAL_GPIO_ReadPin                       0x080090ec   Section        0  stm32l0xx_hal_gpio.o(i.HAL_GPIO_ReadPin)
    i.HAL_GPIO_WritePin                      0x080090f6   Section        0  stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin)
    i.HAL_GetTick                            0x08009104   Section        0  stm32l0xx_hal.o(i.HAL_GetTick)
    i.HAL_IWDG_Init                          0x08009110   Section        0  stm32l0xx_hal_iwdg.o(i.HAL_IWDG_Init)
    i.HAL_IWDG_Refresh                       0x0800917c   Section        0  stm32l0xx_hal_iwdg.o(i.HAL_IWDG_Refresh)
    i.HAL_IncTick                            0x0800918c   Section        0  stm32l0xx_hal.o(i.HAL_IncTick)
    i.HAL_Init                               0x0800919c   Section        0  stm32l0xx_hal.o(i.HAL_Init)
    i.HAL_InitTick                           0x080091c4   Section        0  stm32l0xx_hal.o(i.HAL_InitTick)
    i.HAL_LPTIM_AutoReloadMatchCallback      0x08009208   Section        0  stm32l0xx_hal_lptim.o(i.HAL_LPTIM_AutoReloadMatchCallback)
    i.HAL_LPTIM_AutoReloadWriteCallback      0x0800920a   Section        0  stm32l0xx_hal_lptim.o(i.HAL_LPTIM_AutoReloadWriteCallback)
    i.HAL_LPTIM_CompareMatchCallback         0x0800920c   Section        0  main.o(i.HAL_LPTIM_CompareMatchCallback)
    i.HAL_LPTIM_CompareWriteCallback         0x080092e0   Section        0  stm32l0xx_hal_lptim.o(i.HAL_LPTIM_CompareWriteCallback)
    i.HAL_LPTIM_DirectionDownCallback        0x080092e2   Section        0  stm32l0xx_hal_lptim.o(i.HAL_LPTIM_DirectionDownCallback)
    i.HAL_LPTIM_DirectionUpCallback          0x080092e4   Section        0  stm32l0xx_hal_lptim.o(i.HAL_LPTIM_DirectionUpCallback)
    i.HAL_LPTIM_IRQHandler                   0x080092e6   Section        0  stm32l0xx_hal_lptim.o(i.HAL_LPTIM_IRQHandler)
    i.HAL_LPTIM_Init                         0x080093b0   Section        0  stm32l0xx_hal_lptim.o(i.HAL_LPTIM_Init)
    i.HAL_LPTIM_MspInit                      0x08009460   Section        0  stm32l0xx_hal_msp.o(i.HAL_LPTIM_MspInit)
    i.HAL_LPTIM_ReadCounter                  0x08009490   Section        0  stm32l0xx_hal_lptim.o(i.HAL_LPTIM_ReadCounter)
    i.HAL_LPTIM_TimeOut_Start_IT             0x08009498   Section        0  stm32l0xx_hal_lptim.o(i.HAL_LPTIM_TimeOut_Start_IT)
    i.HAL_LPTIM_TriggerCallback              0x08009520   Section        0  stm32l0xx_hal_lptim.o(i.HAL_LPTIM_TriggerCallback)
    i.HAL_MspInit                            0x08009524   Section        0  stm32l0xx_hal_msp.o(i.HAL_MspInit)
    i.HAL_NVIC_DisableIRQ                    0x0800953c   Section        0  stm32l0xx_hal_cortex.o(i.HAL_NVIC_DisableIRQ)
    i.HAL_NVIC_EnableIRQ                     0x0800955c   Section        0  stm32l0xx_hal_cortex.o(i.HAL_NVIC_EnableIRQ)
    i.HAL_NVIC_SetPriority                   0x08009574   Section        0  stm32l0xx_hal_cortex.o(i.HAL_NVIC_SetPriority)
    i.HAL_NVIC_SystemReset                   0x0800957c   Section        0  stm32l0xx_hal_cortex.o(i.HAL_NVIC_SystemReset)
    i.HAL_PWR_EnableBkUpAccess               0x08009598   Section        0  stm32l0xx_hal_pwr.o(i.HAL_PWR_EnableBkUpAccess)
    i.HAL_PWR_EnterSTOPMode                  0x080095a8   Section        0  stm32l0xx_hal_pwr.o(i.HAL_PWR_EnterSTOPMode)
    i.HAL_RCCEx_PeriphCLKConfig              0x0800960c   Section        0  stm32l0xx_hal_rcc_ex.o(i.HAL_RCCEx_PeriphCLKConfig)
    i.HAL_RCC_ClockConfig                    0x08009788   Section        0  stm32l0xx_hal_rcc.o(i.HAL_RCC_ClockConfig)
    i.HAL_RCC_GetPCLK1Freq                   0x08009924   Section        0  stm32l0xx_hal_rcc.o(i.HAL_RCC_GetPCLK1Freq)
    i.HAL_RCC_GetPCLK2Freq                   0x08009944   Section        0  stm32l0xx_hal_rcc.o(i.HAL_RCC_GetPCLK2Freq)
    i.HAL_RCC_GetSysClockFreq                0x08009964   Section        0  stm32l0xx_hal_rcc.o(i.HAL_RCC_GetSysClockFreq)
    i.HAL_RCC_OscConfig                      0x080099dc   Section        0  stm32l0xx_hal_rcc.o(i.HAL_RCC_OscConfig)
    i.HAL_RTC_Init                           0x08009e10   Section        0  stm32l0xx_hal_rtc.o(i.HAL_RTC_Init)
    i.HAL_RTC_MspInit                        0x08009ebc   Section        0  stm32l0xx_hal_msp.o(i.HAL_RTC_MspInit)
    i.HAL_RTC_WaitForSynchro                 0x08009edc   Section        0  stm32l0xx_hal_rtc.o(i.HAL_RTC_WaitForSynchro)
    i.HAL_SPI_Init                           0x08009f10   Section        0  stm32l0xx_hal_spi.o(i.HAL_SPI_Init)
    i.HAL_SPI_MspInit                        0x08009fc8   Section        0  stm32l0xx_hal_msp.o(i.HAL_SPI_MspInit)
    i.HAL_SPI_Transmit                       0x0800a020   Section        0  stm32l0xx_hal_spi.o(i.HAL_SPI_Transmit)
    i.HAL_SPI_TransmitReceive                0x0800a180   Section        0  stm32l0xx_hal_spi.o(i.HAL_SPI_TransmitReceive)
    i.HAL_SYSTICK_Config                     0x0800a370   Section        0  stm32l0xx_hal_cortex.o(i.HAL_SYSTICK_Config)
    i.HAL_TIMEx_MasterConfigSynchronization  0x0800a3a0   Section        0  stm32l0xx_hal_tim_ex.o(i.HAL_TIMEx_MasterConfigSynchronization)
    i.HAL_TIMEx_RemapConfig                  0x0800a400   Section        0  stm32l0xx_hal_tim_ex.o(i.HAL_TIMEx_RemapConfig)
    i.HAL_TIM_MspPostInit                    0x0800a41c   Section        0  stm32l0xx_hal_msp.o(i.HAL_TIM_MspPostInit)
    i.HAL_TIM_PWM_ConfigChannel              0x0800a46c   Section        0  stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_ConfigChannel)
    i.HAL_TIM_PWM_Init                       0x0800a53c   Section        0  stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Init)
    i.HAL_TIM_PWM_MspInit                    0x0800a57c   Section        0  stm32l0xx_hal_msp.o(i.HAL_TIM_PWM_MspInit)
    i.HAL_UARTEx_RxEventCallback             0x0800a598   Section        0  stm32l0xx_hal_uart.o(i.HAL_UARTEx_RxEventCallback)
    i.HAL_UARTEx_WakeupCallback              0x0800a59a   Section        0  stm32l0xx_hal_uart_ex.o(i.HAL_UARTEx_WakeupCallback)
    i.HAL_UART_DeInit                        0x0800a59c   Section        0  stm32l0xx_hal_uart.o(i.HAL_UART_DeInit)
    i.HAL_UART_ErrorCallback                 0x0800a5de   Section        0  bsp.o(i.HAL_UART_ErrorCallback)
    i.HAL_UART_IRQHandler                    0x0800a5e8   Section        0  stm32l0xx_hal_uart.o(i.HAL_UART_IRQHandler)
    i.HAL_UART_Init                          0x0800a894   Section        0  stm32l0xx_hal_uart.o(i.HAL_UART_Init)
    i.HAL_UART_MspDeInit                     0x0800a900   Section        0  stm32l0xx_hal_msp.o(i.HAL_UART_MspDeInit)
    i.HAL_UART_MspInit                       0x0800a998   Section        0  stm32l0xx_hal_msp.o(i.HAL_UART_MspInit)
    i.HAL_UART_Receive_DMA                   0x0800ab5c   Section        0  stm32l0xx_hal_uart.o(i.HAL_UART_Receive_DMA)
    i.HAL_UART_Receive_IT                    0x0800abc0   Section        0  stm32l0xx_hal_uart.o(i.HAL_UART_Receive_IT)
    i.HAL_UART_RxCpltCallback                0x0800ac24   Section        0  bsp.o(i.HAL_UART_RxCpltCallback)
    i.HAL_UART_RxHalfCpltCallback            0x0800ac2c   Section        0  stm32l0xx_hal_uart.o(i.HAL_UART_RxHalfCpltCallback)
    i.HAL_UART_Transmit                      0x0800ac2e   Section        0  stm32l0xx_hal_uart.o(i.HAL_UART_Transmit)
    i.HAL_UART_Transmit_DMA                  0x0800acf0   Section        0  stm32l0xx_hal_uart.o(i.HAL_UART_Transmit_DMA)
    i.HAL_UART_Transmit_IT                   0x0800ad9c   Section        0  stm32l0xx_hal_uart.o(i.HAL_UART_Transmit_IT)
    i.HAL_UART_TxCpltCallback                0x0800ae14   Section        0  bsp.o(i.HAL_UART_TxCpltCallback)
    i.HAL_UART_TxHalfCpltCallback            0x0800ae1c   Section        0  stm32l0xx_hal_uart.o(i.HAL_UART_TxHalfCpltCallback)
    i.HIDO_ATLiteCmdParse                    0x0800ae1e   Section        0  hido_atliteparse.o(i.HIDO_ATLiteCmdParse)
    i.HIDO_ATLiteCmdSend                     0x0800aeb4   Section        0  hido_atlite.o(i.HIDO_ATLiteCmdSend)
    i.HIDO_ATLiteCmdSendOver                 0x0800aefc   Section        0  hido_atlite.o(i.HIDO_ATLiteCmdSendOver)
    i.HIDO_ATLiteDataSend                    0x0800af0c   Section        0  hido_atlite.o(i.HIDO_ATLiteDataSend)
    i.HIDO_ATLiteDeviceInit                  0x0800af54   Section        0  hido_atlite.o(i.HIDO_ATLiteDeviceInit)
    i.HIDO_ATLiteDeviceRegister              0x0800afb8   Section        0  hido_atlite.o(i.HIDO_ATLiteDeviceRegister)
    i.HIDO_ATLiteEvent                       0x0800afd4   Section        0  hido_atlite.o(i.HIDO_ATLiteEvent)
    i.HIDO_ATLiteGetDebugFlag                0x0800b00c   Section        0  hido_atlite.o(i.HIDO_ATLiteGetDebugFlag)
    i.HIDO_ATLiteMatchFlagInit               0x0800b018   Section        0  hido_atliteparse.o(i.HIDO_ATLiteMatchFlagInit)
    HIDO_ATLiteMatchFlagInit                 0x0800b019   Thumb Code    16  hido_atliteparse.o(i.HIDO_ATLiteMatchFlagInit)
    i.HIDO_ATLitePoll                        0x0800b028   Section        0  hido_atlite.o(i.HIDO_ATLitePoll)
    i.HIDO_ATLiteSendError                   0x0800b084   Section        0  hido_atlite.o(i.HIDO_ATLiteSendError)
    HIDO_ATLiteSendError                     0x0800b085   Thumb Code    16  hido_atlite.o(i.HIDO_ATLiteSendError)
    i.HIDO_ATLiteTimeout                     0x0800b094   Section        0  hido_atlite.o(i.HIDO_ATLiteTimeout)
    HIDO_ATLiteTimeout                       0x0800b095   Thumb Code    16  hido_atlite.o(i.HIDO_ATLiteTimeout)
    i.HIDO_ArraryQueueIn                     0x0800b0a4   Section        0  hido_arraryqueue.o(i.HIDO_ArraryQueueIn)
    i.HIDO_ArraryQueueInit                   0x0800b0da   Section        0  hido_arraryqueue.o(i.HIDO_ArraryQueueInit)
    i.HIDO_ArraryQueueIsEmpty                0x0800b0ec   Section        0  hido_arraryqueue.o(i.HIDO_ArraryQueueIsEmpty)
    i.HIDO_ArraryQueueIsFull                 0x0800b108   Section        0  hido_arraryqueue.o(i.HIDO_ArraryQueueIsFull)
    i.HIDO_ArraryQueueOut                    0x0800b124   Section        0  hido_arraryqueue.o(i.HIDO_ArraryQueueOut)
    i.HIDO_AtLiteMatch                       0x0800b15a   Section        0  hido_atliteparse.o(i.HIDO_AtLiteMatch)
    HIDO_AtLiteMatch                         0x0800b15b   Thumb Code    90  hido_atliteparse.o(i.HIDO_AtLiteMatch)
    i.HIDO_BaseQueueDequeue                  0x0800b1b4   Section        0  hido_basequeue.o(i.HIDO_BaseQueueDequeue)
    i.HIDO_BaseQueueEnqueue                  0x0800b1e0   Section        0  hido_basequeue.o(i.HIDO_BaseQueueEnqueue)
    i.HIDO_BaseQueueGetContinuousSize        0x0800b20e   Section        0  hido_basequeue.o(i.HIDO_BaseQueueGetContinuousSize)
    i.HIDO_BaseQueueGetFront                 0x0800b27c   Section        0  hido_basequeue.o(i.HIDO_BaseQueueGetFront)
    i.HIDO_BaseQueueGetRear                  0x0800b282   Section        0  hido_basequeue.o(i.HIDO_BaseQueueGetRear)
    i.HIDO_BaseQueueInit                     0x0800b288   Section        0  hido_basequeue.o(i.HIDO_BaseQueueInit)
    i.HIDO_BaseQueueIsEmpty                  0x0800b2a0   Section        0  hido_basequeue.o(i.HIDO_BaseQueueIsEmpty)
    i.HIDO_BaseQueueIsFull                   0x0800b2b8   Section        0  hido_basequeue.o(i.HIDO_BaseQueueIsFull)
    i.HIDO_Debug                             0x0800b2d4   Section        0  dbg.o(i.HIDO_Debug)
    i.HIDO_DebugEx                           0x0800b31c   Section        0  dbg.o(i.HIDO_DebugEx)
    i.HIDO_DebugHex                          0x0800b36c   Section        0  dbg.o(i.HIDO_DebugHex)
    i.HIDO_DebugString                       0x0800b3d4   Section        0  dbg.o(i.HIDO_DebugString)
    i.HIDO_FSMEventExecute                   0x0800b3f4   Section        0  hido_fsm.o(i.HIDO_FSMEventExecute)
    i.HIDO_FSMRegister                       0x0800b4bc   Section        0  hido_fsm.o(i.HIDO_FSMRegister)
    i.HIDO_FSMRegisterDebugFunc              0x0800b52c   Section        0  hido_fsm.o(i.HIDO_FSMRegisterDebugFunc)
    i.HIDO_FSMStartTimer                     0x0800b53c   Section        0  hido_fsm.o(i.HIDO_FSMStartTimer)
    i.HIDO_FSMStateChange                    0x0800b570   Section        0  hido_fsm.o(i.HIDO_FSMStateChange)
    i.HIDO_InputCmdBufMoveLeft               0x0800b5fa   Section        0  hido_input.o(i.HIDO_InputCmdBufMoveLeft)
    HIDO_InputCmdBufMoveLeft                 0x0800b5fb   Thumb Code    24  hido_input.o(i.HIDO_InputCmdBufMoveLeft)
    i.HIDO_InputCmdBufMoveRight              0x0800b612   Section        0  hido_input.o(i.HIDO_InputCmdBufMoveRight)
    HIDO_InputCmdBufMoveRight                0x0800b613   Thumb Code    28  hido_input.o(i.HIDO_InputCmdBufMoveRight)
    i.HIDO_InputDirKeyProc                   0x0800b62e   Section        0  hido_input.o(i.HIDO_InputDirKeyProc)
    HIDO_InputDirKeyProc                     0x0800b62f   Thumb Code   204  hido_input.o(i.HIDO_InputDirKeyProc)
    i.HIDO_InputDirectionKey                 0x0800b6fa   Section        0  hido_input.o(i.HIDO_InputDirectionKey)
    HIDO_InputDirectionKey                   0x0800b6fb   Thumb Code   196  hido_input.o(i.HIDO_InputDirectionKey)
    i.HIDO_InputFsm                          0x0800b7c0   Section        0  hido_input.o(i.HIDO_InputFsm)
    HIDO_InputFsm                            0x0800b7c1   Thumb Code  1316  hido_input.o(i.HIDO_InputFsm)
    i.HIDO_InputLoginFsm                     0x0800bce4   Section        0  hido_input.o(i.HIDO_InputLoginFsm)
    HIDO_InputLoginFsm                       0x0800bce5   Thumb Code   710  hido_input.o(i.HIDO_InputLoginFsm)
    i.HIDO_InputPoll                         0x0800bff4   Section        0  hido_input.o(i.HIDO_InputPoll)
    i.HIDO_InputRegister                     0x0800c10c   Section        0  hido_input.o(i.HIDO_InputRegister)
    i.HIDO_InputUserVerify                   0x0800c120   Section        0  hido_input.o(i.HIDO_InputUserVerify)
    i.HIDO_Lock                              0x0800c128   Section        0  hido_lock.o(i.HIDO_Lock)
    i.HIDO_ShellClear                        0x0800c158   Section        0  hido_shell.o(i.HIDO_ShellClear)
    HIDO_ShellClear                          0x0800c159   Thumb Code    50  hido_shell.o(i.HIDO_ShellClear)
    i.HIDO_ShellCmdRegister                  0x0800c194   Section        0  hido_shell.o(i.HIDO_ShellCmdRegister)
    i.HIDO_ShellExecute                      0x0800c1f4   Section        0  hido_shell.o(i.HIDO_ShellExecute)
    i.HIDO_ShellGetCmdCount                  0x0800c278   Section        0  hido_shell.o(i.HIDO_ShellGetCmdCount)
    i.HIDO_ShellGetCmdName                   0x0800c284   Section        0  hido_shell.o(i.HIDO_ShellGetCmdName)
    i.HIDO_ShellGetInput                     0x0800c2a8   Section        0  hido_shell.o(i.HIDO_ShellGetInput)
    i.HIDO_ShellLs                           0x0800c2b4   Section        0  hido_shell.o(i.HIDO_ShellLs)
    HIDO_ShellLs                             0x0800c2b5   Thumb Code   132  hido_shell.o(i.HIDO_ShellLs)
    i.HIDO_ShellSetInput                     0x0800c348   Section        0  hido_shell.o(i.HIDO_ShellSetInput)
    i.HIDO_TimerCancel                       0x0800c354   Section        0  hido_timer.o(i.HIDO_TimerCancel)
    i.HIDO_TimerCreate                       0x0800c37c   Section        0  hido_timer.o(i.HIDO_TimerCreate)
    i.HIDO_TimerGetTick                      0x0800c3dc   Section        0  hido_timer.o(i.HIDO_TimerGetTick)
    i.HIDO_TimerPoll                         0x0800c3e8   Section        0  hido_timer.o(i.HIDO_TimerPoll)
    i.HIDO_TimerStart                        0x0800c484   Section        0  hido_timer.o(i.HIDO_TimerStart)
    i.HIDO_TimerTick                         0x0800c4dc   Section        0  hido_timer.o(i.HIDO_TimerTick)
    i.HIDO_UnLock                            0x0800c504   Section        0  hido_lock.o(i.HIDO_UnLock)
    i.HIDO_UtilByteArrayToHexString          0x0800c53c   Section        0  hido_util.o(i.HIDO_UtilByteArrayToHexString)
    i.HIDO_UtilByteToChar                    0x0800c5ba   Section        0  hido_util.o(i.HIDO_UtilByteToChar)
    i.HIDO_UtilBzero                         0x0800c5dc   Section        0  hido_util.o(i.HIDO_UtilBzero)
    i.HIDO_UtilCharToHex                     0x0800c5ec   Section        0  hido_util.o(i.HIDO_UtilCharToHex)
    i.HIDO_UtilHexStrBufToInt                0x0800c61e   Section        0  hido_util.o(i.HIDO_UtilHexStrBufToInt)
    i.HIDO_UtilHexStrToInt                   0x0800c63e   Section        0  hido_util.o(i.HIDO_UtilHexStrToInt)
    i.HIDO_UtilIPStringToByteArrary          0x0800c65c   Section        0  hido_util.o(i.HIDO_UtilIPStringToByteArrary)
    i.HIDO_UtilIsAsciiString                 0x0800c6bc   Section        0  hido_util.o(i.HIDO_UtilIsAsciiString)
    i.HIDO_UtilParseFormat                   0x0800c6f0   Section        0  hido_util.o(i.HIDO_UtilParseFormat)
    i.HIDO_UtilSnprintf                      0x0800c8d6   Section        0  hido_util.o(i.HIDO_UtilSnprintf)
    i.HIDO_UtilStrBufToInt                   0x0800c906   Section        0  hido_util.o(i.HIDO_UtilStrBufToInt)
    i.HIDO_UtilStrSplit                      0x0800c928   Section        0  hido_util.o(i.HIDO_UtilStrSplit)
    i.HIDO_UtilStrToInt                      0x0800c974   Section        0  hido_util.o(i.HIDO_UtilStrToInt)
    i.HIDO_UtilStrnchr                       0x0800c9bc   Section        0  hido_util.o(i.HIDO_UtilStrnchr)
    i.HIDO_VLQDequeue                        0x0800c9dc   Section        0  hido_vlqueue.o(i.HIDO_VLQDequeue)
    i.HIDO_VLQEnqueue                        0x0800ca08   Section        0  hido_vlqueue.o(i.HIDO_VLQEnqueue)
    i.HIDO_VLQGetDequeueMember               0x0800ca34   Section        0  hido_vlqueue.o(i.HIDO_VLQGetDequeueMember)
    i.HIDO_VLQGetEnqueueMember               0x0800ca70   Section        0  hido_vlqueue.o(i.HIDO_VLQGetEnqueueMember)
    i.HIDO_VLQInit                           0x0800cacc   Section        0  hido_vlqueue.o(i.HIDO_VLQInit)
    i.HardFault_Handler                      0x0800cb16   Section        0  stm32l0xx_it.o(i.HardFault_Handler)
    i.HexToAsciiSendUDP                      0x0800cb18   Section        0  app.o(i.HexToAsciiSendUDP)
    i.IIC2_Ack                               0x0800cb6c   Section        0  lis3dh_driver.o(i.IIC2_Ack)
    i.IIC2_NAck                              0x0800cbb0   Section        0  lis3dh_driver.o(i.IIC2_NAck)
    i.IIC2_Read_Byte                         0x0800cbf4   Section        0  lis3dh_driver.o(i.IIC2_Read_Byte)
    i.IIC2_Send_Byte                         0x0800cc58   Section        0  lis3dh_driver.o(i.IIC2_Send_Byte)
    i.IIC2_Start                             0x0800ccbc   Section        0  lis3dh_driver.o(i.IIC2_Start)
    i.IIC2_Stop                              0x0800ccf8   Section        0  lis3dh_driver.o(i.IIC2_Stop)
    i.IIC2_Wait_Ack                          0x0800cd3c   Section        0  lis3dh_driver.o(i.IIC2_Wait_Ack)
    i.IdleTask                               0x0800cd98   Section        0  app.o(i.IdleTask)
    i.Internet_Init                          0x0800cdcc   Section        0  internet.o(i.Internet_Init)
    i.Internet_IsIPReady                     0x0800cddc   Section        0  internet.o(i.Internet_IsIPReady)
    i.Internet_Poll                          0x0800cde4   Section        0  internet.o(i.Internet_Poll)
    i.LBSLocationCallback                    0x0800cdf8   Section        0  app.o(i.LBSLocationCallback)
    LBSLocationCallback                      0x0800cdf9   Thumb Code   130  app.o(i.LBSLocationCallback)
    i.LIS3DH_Data_Init                       0x0800cec4   Section        0  lis3dh_driver.o(i.LIS3DH_Data_Init)
    i.LIS3DH_GetWHO_AM_I                     0x0800cf30   Section        0  lis3dh_driver.o(i.LIS3DH_GetWHO_AM_I)
    i.LIS3DH_ReadOneByte                     0x0800cf42   Section        0  lis3dh_driver.o(i.LIS3DH_ReadOneByte)
    i.LIS3DH_ReadReg                         0x0800cf7c   Section        0  lis3dh_driver.o(i.LIS3DH_ReadReg)
    i.LIS3DH_WriteOneByte                    0x0800cf8a   Section        0  lis3dh_driver.o(i.LIS3DH_WriteOneByte)
    i.LIS3DH_WriteReg                        0x0800cfbe   Section        0  lis3dh_driver.o(i.LIS3DH_WriteReg)
    i.LPTIM1_IRQHandler                      0x0800cfc8   Section        0  stm32l0xx_it.o(i.LPTIM1_IRQHandler)
    i.LPTIM_Disable                          0x0800cfd8   Section        0  stm32l0xx_hal_lptim.o(i.LPTIM_Disable)
    i.LPTIM_WaitForFlag                      0x0800d0c4   Section        0  stm32l0xx_hal_lptim.o(i.LPTIM_WaitForFlag)
    LPTIM_WaitForFlag                        0x0800d0c5   Thumb Code    48  stm32l0xx_hal_lptim.o(i.LPTIM_WaitForFlag)
    i.MX_ADC_Init                            0x0800d0fc   Section        0  main.o(i.MX_ADC_Init)
    MX_ADC_Init                              0x0800d0fd   Thumb Code   100  main.o(i.MX_ADC_Init)
    i.MX_GPIO_Init                           0x0800d16c   Section        0  main.o(i.MX_GPIO_Init)
    MX_GPIO_Init                             0x0800d16d   Thumb Code   440  main.o(i.MX_GPIO_Init)
    i.MX_SPI1_Init                           0x0800d33c   Section        0  main.o(i.MX_SPI1_Init)
    MX_SPI1_Init                             0x0800d33d   Thumb Code    56  main.o(i.MX_SPI1_Init)
    i.MX_TIM3_Init                           0x0800d37c   Section        0  main.o(i.MX_TIM3_Init)
    MX_TIM3_Init                             0x0800d37d   Thumb Code   126  main.o(i.MX_TIM3_Init)
    i.MX_USART1_UART_Init                    0x0800d404   Section        0  main.o(i.MX_USART1_UART_Init)
    MX_USART1_UART_Init                      0x0800d405   Thumb Code    48  main.o(i.MX_USART1_UART_Init)
    i.MX_USART2_UART_Init                    0x0800d43c   Section        0  main.o(i.MX_USART2_UART_Init)
    MX_USART2_UART_Init                      0x0800d43d   Thumb Code    48  main.o(i.MX_USART2_UART_Init)
    i.MX_USART5_UART_Init                    0x0800d474   Section        0  main.o(i.MX_USART5_UART_Init)
    MX_USART5_UART_Init                      0x0800d475   Thumb Code    48  main.o(i.MX_USART5_UART_Init)
    i.Main_Poll                              0x0800d4ac   Section        0  app.o(i.Main_Poll)
    i.MbxTagUwbRec                           0x0800d5b0   Section        0  dw_mbx_tag.o(i.MbxTagUwbRec)
    i.Module_GetCCID                         0x0800d724   Section        0  module.o(i.Module_GetCCID)
    i.Module_GetIMEI                         0x0800d72c   Section        0  module.o(i.Module_GetIMEI)
    i.Module_GetIMSI                         0x0800d734   Section        0  module.o(i.Module_GetIMSI)
    i.Module_GetLBSLocationAsync             0x0800d73c   Section        0  module.o(i.Module_GetLBSLocationAsync)
    i.Module_GetRunATCmd                     0x0800d750   Section        0  module.o(i.Module_GetRunATCmd)
    i.Module_LBSLocationNeedRequest          0x0800d758   Section        0  module.o(i.Module_LBSLocationNeedRequest)
    i.Module_LBSLocationResult               0x0800d768   Section        0  module.o(i.Module_LBSLocationResult)
    i.Module_NeedPowerOff                    0x0800d790   Section        0  module.o(i.Module_NeedPowerOff)
    i.Module_NeedPowerOn                     0x0800d7a0   Section        0  module.o(i.Module_NeedPowerOn)
    i.Module_PowerEvent                      0x0800d7b0   Section        0  module.o(i.Module_PowerEvent)
    i.Module_PowerOff                        0x0800d7c8   Section        0  module.o(i.Module_PowerOff)
    i.Module_PowerOn                         0x0800d7dc   Section        0  module.o(i.Module_PowerOn)
    i.Module_RunATCmd                        0x0800d7f0   Section        0  module.o(i.Module_RunATCmd)
    i.Module_RunATCmdEnable                  0x0800d818   Section        0  module.o(i.Module_RunATCmdEnable)
    i.Module_RunATCmdResult                  0x0800d828   Section        0  module.o(i.Module_RunATCmdResult)
    i.Module_SetCCID                         0x0800d82c   Section        0  module.o(i.Module_SetCCID)
    i.Module_SetIMEI                         0x0800d844   Section        0  module.o(i.Module_SetIMEI)
    i.Module_SetIMSI                         0x0800d870   Section        0  module.o(i.Module_SetIMSI)
    i.Module_SignalIntensityNeedRequest      0x0800d89c   Section        0  module.o(i.Module_SignalIntensityNeedRequest)
    i.Module_SignalIntensityResult           0x0800d8ac   Section        0  module.o(i.Module_SignalIntensityResult)
    i.NMI_Handler                            0x0800d8c8   Section        0  stm32l0xx_it.o(i.NMI_Handler)
    i.PendSV_Handler                         0x0800d8ca   Section        0  stm32l0xx_it.o(i.PendSV_Handler)
    i.PowerLedTask                           0x0800d8cc   Section        0  app.o(i.PowerLedTask)
    i.Powerled_Poll                          0x0800da4c   Section        0  main.o(i.Powerled_Poll)
    i.Program_Init                           0x0800da70   Section        0  app.o(i.Program_Init)
    i.RGB_Rst                                0x0800dbf4   Section        0  ws2812.o(i.RGB_Rst)
    i.RGB_Set                                0x0800dc0c   Section        0  ws2812.o(i.RGB_Set)
    i.RGB_Set_BLUE                           0x0800dc50   Section        0  ws2812.o(i.RGB_Set_BLUE)
    i.RGB_Set_Down                           0x0800dcb4   Section        0  ws2812.o(i.RGB_Set_Down)
    i.RGB_Set_GREEN                          0x0800dcd8   Section        0  ws2812.o(i.RGB_Set_GREEN)
    i.RGB_Set_LEDOFF                         0x0800dd3c   Section        0  ws2812.o(i.RGB_Set_LEDOFF)
    i.RGB_Set_RED                            0x0800dda0   Section        0  ws2812.o(i.RGB_Set_RED)
    i.RGB_Set_Up                             0x0800de04   Section        0  ws2812.o(i.RGB_Set_Up)
    i.RGB_Set_WHITE                          0x0800de3c   Section        0  ws2812.o(i.RGB_Set_WHITE)
    i.RTC_EnterInitMode                      0x0800dea0   Section        0  stm32l0xx_hal_rtc.o(i.RTC_EnterInitMode)
    i.RTC_ExitInitMode                       0x0800dee6   Section        0  stm32l0xx_hal_rtc.o(i.RTC_ExitInitMode)
    i.Reset_DW1000                           0x0800df14   Section        0  dw_driver.o(i.Reset_DW1000)
    i.SPIFlash_BulkErase                     0x0800df70   Section        0  spiflash.o(i.SPIFlash_BulkErase)
    i.SPIFlash_CSDisable                     0x0800dfb8   Section        0  spiflash.o(i.SPIFlash_CSDisable)
    SPIFlash_CSDisable                       0x0800dfb9   Thumb Code    22  spiflash.o(i.SPIFlash_CSDisable)
    i.SPIFlash_CSEnable                      0x0800dfd4   Section        0  spiflash.o(i.SPIFlash_CSEnable)
    SPIFlash_CSEnable                        0x0800dfd5   Thumb Code    22  spiflash.o(i.SPIFlash_CSEnable)
    i.SPIFlash_Erase                         0x0800dff0   Section        0  spiflash.o(i.SPIFlash_Erase)
    i.SPIFlash_Init                          0x0800e064   Section        0  spiflash.o(i.SPIFlash_Init)
    i.SPIFlash_PageProgram                   0x0800e0d8   Section        0  spiflash.o(i.SPIFlash_PageProgram)
    SPIFlash_PageProgram                     0x0800e0d9   Thumb Code   186  spiflash.o(i.SPIFlash_PageProgram)
    i.SPIFlash_PinRegister                   0x0800e194   Section        0  spiflash.o(i.SPIFlash_PinRegister)
    i.SPIFlash_ReadJedecID                   0x0800e1ac   Section        0  spiflash.o(i.SPIFlash_ReadJedecID)
    i.SPIFlash_SectorErase                   0x0800e1f4   Section        0  spiflash.o(i.SPIFlash_SectorErase)
    SPIFlash_SectorErase                     0x0800e1f5   Thumb Code   140  spiflash.o(i.SPIFlash_SectorErase)
    i.SPIFlash_SendByte                      0x0800e284   Section        0  spiflash.o(i.SPIFlash_SendByte)
    SPIFlash_SendByte                        0x0800e285   Thumb Code    22  spiflash.o(i.SPIFlash_SendByte)
    i.SPIFlash_WaitBusy                      0x0800e2a0   Section        0  spiflash.o(i.SPIFlash_WaitBusy)
    SPIFlash_WaitBusy                        0x0800e2a1   Thumb Code    64  spiflash.o(i.SPIFlash_WaitBusy)
    i.SPIFlash_Write                         0x0800e2e0   Section        0  spiflash.o(i.SPIFlash_Write)
    i.SPIFlash_WriteDisable                  0x0800e348   Section        0  spiflash.o(i.SPIFlash_WriteDisable)
    SPIFlash_WriteDisable                    0x0800e349   Thumb Code    30  spiflash.o(i.SPIFlash_WriteDisable)
    i.SPIFlash_WriteEnable                   0x0800e366   Section        0  spiflash.o(i.SPIFlash_WriteEnable)
    SPIFlash_WriteEnable                     0x0800e367   Thumb Code    30  spiflash.o(i.SPIFlash_WriteEnable)
    i.SPI_EndRxTxTransaction                 0x0800e384   Section        0  stm32l0xx_hal_spi.o(i.SPI_EndRxTxTransaction)
    SPI_EndRxTxTransaction                   0x0800e385   Thumb Code    88  stm32l0xx_hal_spi.o(i.SPI_EndRxTxTransaction)
    i.SPI_ReadWrite                          0x0800e3e4   Section        0  spi_hal.o(i.SPI_ReadWrite)
    i.SPI_Register                           0x0800e414   Section        0  spi_hal.o(i.SPI_Register)
    i.SPI_WaitFlagStateUntilTimeout          0x0800e424   Section        0  stm32l0xx_hal_spi.o(i.SPI_WaitFlagStateUntilTimeout)
    SPI_WaitFlagStateUntilTimeout            0x0800e425   Thumb Code   180  stm32l0xx_hal_spi.o(i.SPI_WaitFlagStateUntilTimeout)
    i.SPI_Write                              0x0800e4dc   Section        0  spi_hal.o(i.SPI_Write)
    i.SVC_Handler                            0x0800e4f8   Section        0  stm32l0xx_it.o(i.SVC_Handler)
    i.SendComMap                             0x0800e4fc   Section        0  serial_at_cmd_app.o(i.SendComMap)
    i.Set4LEDColor                           0x0800e57c   Section        0  ws2812.o(i.Set4LEDColor)
    i.Set4LEDColor_Off                       0x0800e5b8   Section        0  ws2812.o(i.Set4LEDColor_Off)
    i.Shell_ATCmd                            0x0800e5cc   Section        0  shell.o(i.Shell_ATCmd)
    Shell_ATCmd                              0x0800e5cd   Thumb Code    54  shell.o(i.Shell_ATCmd)
    i.Shell_AudioVolume                      0x0800e60c   Section        0  shell.o(i.Shell_AudioVolume)
    Shell_AudioVolume                        0x0800e60d   Thumb Code     4  shell.o(i.Shell_AudioVolume)
    i.Shell_CloseWireless                    0x0800e610   Section        0  shell.o(i.Shell_CloseWireless)
    Shell_CloseWireless                      0x0800e611   Thumb Code    48  shell.o(i.Shell_CloseWireless)
    i.Shell_DBGMode                          0x0800e648   Section        0  shell.o(i.Shell_DBGMode)
    Shell_DBGMode                            0x0800e649   Thumb Code   212  shell.o(i.Shell_DBGMode)
    i.Shell_DEVID                            0x0800e730   Section        0  shell.o(i.Shell_DEVID)
    Shell_DEVID                              0x0800e731   Thumb Code   114  shell.o(i.Shell_DEVID)
    i.Shell_DebugOff                         0x0800e7b4   Section        0  shell.o(i.Shell_DebugOff)
    Shell_DebugOff                           0x0800e7b5   Thumb Code    52  shell.o(i.Shell_DebugOff)
    i.Shell_DebugOn                          0x0800e7fc   Section        0  shell.o(i.Shell_DebugOn)
    Shell_DebugOn                            0x0800e7fd   Thumb Code    52  shell.o(i.Shell_DebugOn)
    i.Shell_GPSBaudRate                      0x0800e840   Section        0  shell.o(i.Shell_GPSBaudRate)
    Shell_GPSBaudRate                        0x0800e841   Thumb Code   110  shell.o(i.Shell_GPSBaudRate)
    i.Shell_Info                             0x0800e8c8   Section        0  shell.o(i.Shell_Info)
    Shell_Info                               0x0800e8c9   Thumb Code   164  shell.o(i.Shell_Info)
    i.Shell_Init                             0x0800e9d8   Section        0  shell.o(i.Shell_Init)
    i.Shell_Log                              0x0800e9ec   Section        0  shell.o(i.Shell_Log)
    Shell_Log                                0x0800e9ed   Thumb Code    84  shell.o(i.Shell_Log)
    i.Shell_LogClean                         0x0800ea5c   Section        0  shell.o(i.Shell_LogClean)
    Shell_LogClean                           0x0800ea5d   Thumb Code    42  shell.o(i.Shell_LogClean)
    i.Shell_LogPrint                         0x0800ea90   Section        0  shell.o(i.Shell_LogPrint)
    Shell_LogPrint                           0x0800ea91   Thumb Code    52  shell.o(i.Shell_LogPrint)
    i.Shell_LogUpload                        0x0800eae4   Section        0  shell.o(i.Shell_LogUpload)
    Shell_LogUpload                          0x0800eae5   Thumb Code     4  shell.o(i.Shell_LogUpload)
    i.Shell_OTA                              0x0800eae8   Section        0  shell.o(i.Shell_OTA)
    Shell_OTA                                0x0800eae9   Thumb Code     2  shell.o(i.Shell_OTA)
    i.Shell_OpenWireless                     0x0800eaec   Section        0  shell.o(i.Shell_OpenWireless)
    Shell_OpenWireless                       0x0800eaed   Thumb Code    48  shell.o(i.Shell_OpenWireless)
    i.Shell_PowerOff                         0x0800eb24   Section        0  shell.o(i.Shell_PowerOff)
    Shell_PowerOff                           0x0800eb25   Thumb Code    48  shell.o(i.Shell_PowerOff)
    i.Shell_PowerOn                          0x0800eb5c   Section        0  shell.o(i.Shell_PowerOn)
    Shell_PowerOn                            0x0800eb5d   Thumb Code    48  shell.o(i.Shell_PowerOn)
    i.Shell_RTCAlarm                         0x0800eb94   Section        0  shell.o(i.Shell_RTCAlarm)
    Shell_RTCAlarm                           0x0800eb95   Thumb Code    84  shell.o(i.Shell_RTCAlarm)
    i.Shell_RTCGet                           0x0800ec0c   Section        0  shell.o(i.Shell_RTCGet)
    Shell_RTCGet                             0x0800ec0d   Thumb Code     4  shell.o(i.Shell_RTCGet)
    i.Shell_RTCSet                           0x0800ec10   Section        0  shell.o(i.Shell_RTCSet)
    Shell_RTCSet                             0x0800ec11   Thumb Code    52  shell.o(i.Shell_RTCSet)
    i.Shell_Reboot                           0x0800ec6c   Section        0  shell.o(i.Shell_Reboot)
    Shell_Reboot                             0x0800ec6d   Thumb Code    10  shell.o(i.Shell_Reboot)
    i.Shell_SetDataRate                      0x0800ec78   Section        0  shell.o(i.Shell_SetDataRate)
    Shell_SetDataRate                        0x0800ec79   Thumb Code   170  shell.o(i.Shell_SetDataRate)
    i.Shell_SetGpsUpdateTime                 0x0800ed3c   Section        0  shell.o(i.Shell_SetGpsUpdateTime)
    Shell_SetGpsUpdateTime                   0x0800ed3d   Thumb Code    94  shell.o(i.Shell_SetGpsUpdateTime)
    i.Shell_SetNtrip                         0x0800edb4   Section        0  shell.o(i.Shell_SetNtrip)
    Shell_SetNtrip                           0x0800edb5   Thumb Code    94  shell.o(i.Shell_SetNtrip)
    i.Shell_SetQXWZ                          0x0800ee28   Section        0  shell.o(i.Shell_SetQXWZ)
    Shell_SetQXWZ                            0x0800ee29   Thumb Code    94  shell.o(i.Shell_SetQXWZ)
    i.Shell_SetRTCMMode                      0x0800ee9c   Section        0  shell.o(i.Shell_SetRTCMMode)
    Shell_SetRTCMMode                        0x0800ee9d   Thumb Code   124  shell.o(i.Shell_SetRTCMMode)
    i.Shell_SetRTCMTCPInfo                   0x0800ef2c   Section        0  shell.o(i.Shell_SetRTCMTCPInfo)
    Shell_SetRTCMTCPInfo                     0x0800ef2d   Thumb Code   184  shell.o(i.Shell_SetRTCMTCPInfo)
    i.Shell_SetServerInfo                    0x0800eff8   Section        0  shell.o(i.Shell_SetServerInfo)
    Shell_SetServerInfo                      0x0800eff9   Thumb Code   184  shell.o(i.Shell_SetServerInfo)
    i.Shell_SetUWBEnable                     0x0800f0c4   Section        0  shell.o(i.Shell_SetUWBEnable)
    Shell_SetUWBEnable                       0x0800f0c5   Thumb Code   124  shell.o(i.Shell_SetUWBEnable)
    i.Shell_Set_Chaichugps_S                 0x0800f154   Section        0  shell.o(i.Shell_Set_Chaichugps_S)
    Shell_Set_Chaichugps_S                   0x0800f155   Thumb Code    60  shell.o(i.Shell_Set_Chaichugps_S)
    i.Shell_Set_Gps_S                        0x0800f19c   Section        0  shell.o(i.Shell_Set_Gps_S)
    Shell_Set_Gps_S                          0x0800f19d   Thumb Code    60  shell.o(i.Shell_Set_Gps_S)
    i.Shell_Sleep                            0x0800f1e4   Section        0  shell.o(i.Shell_Sleep)
    Shell_Sleep                              0x0800f1e5   Thumb Code     4  shell.o(i.Shell_Sleep)
    i.Shell_SocketEventProc                  0x0800f1e8   Section        0  shell.o(i.Shell_SocketEventProc)
    Shell_SocketEventProc                    0x0800f1e9   Thumb Code    10  shell.o(i.Shell_SocketEventProc)
    i.Shell_TCPClose                         0x0800f200   Section        0  shell.o(i.Shell_TCPClose)
    Shell_TCPClose                           0x0800f201   Thumb Code   126  shell.o(i.Shell_TCPClose)
    i.Shell_TCPConnect                       0x0800f294   Section        0  shell.o(i.Shell_TCPConnect)
    Shell_TCPConnect                         0x0800f295   Thumb Code   142  shell.o(i.Shell_TCPConnect)
    i.Shell_TCPCreate                        0x0800f338   Section        0  shell.o(i.Shell_TCPCreate)
    Shell_TCPCreate                          0x0800f339   Thumb Code   128  shell.o(i.Shell_TCPCreate)
    i.Shell_TCPSend                          0x0800f3d8   Section        0  shell.o(i.Shell_TCPSend)
    Shell_TCPSend                            0x0800f3d9   Thumb Code   142  shell.o(i.Shell_TCPSend)
    i.Shell_TTSPlay                          0x0800f47c   Section        0  shell.o(i.Shell_TTSPlay)
    Shell_TTSPlay                            0x0800f47d   Thumb Code     4  shell.o(i.Shell_TTSPlay)
    i.Shell_Test                             0x0800f480   Section        0  shell.o(i.Shell_Test)
    Shell_Test                               0x0800f481   Thumb Code     4  shell.o(i.Shell_Test)
    i.Shell_Update                           0x0800f484   Section        0  shell.o(i.Shell_Update)
    Shell_Update                             0x0800f485   Thumb Code    82  shell.o(i.Shell_Update)
    i.Sleep_Panduan_Poll                     0x0800f4ec   Section        0  main.o(i.Sleep_Panduan_Poll)
    i.Socket_Close                           0x0800f520   Section        0  socket.o(i.Socket_Close)
    i.Socket_ClosedAll                       0x0800f550   Section        0  socket.o(i.Socket_ClosedAll)
    i.Socket_Connect                         0x0800f594   Section        0  socket.o(i.Socket_Connect)
    i.Socket_Create                          0x0800f5d4   Section        0  socket.o(i.Socket_Create)
    i.Socket_Destroy                         0x0800f65c   Section        0  socket.o(i.Socket_Destroy)
    i.Socket_GetRemoteAddr                   0x0800f680   Section        0  socket.o(i.Socket_GetRemoteAddr)
    i.Socket_GetRemotePort                   0x0800f6a0   Section        0  socket.o(i.Socket_GetRemotePort)
    i.Socket_GetSocketSendQueue              0x0800f6bc   Section        0  socket.o(i.Socket_GetSocketSendQueue)
    i.Socket_GetSocketState                  0x0800f6d8   Section        0  socket.o(i.Socket_GetSocketState)
    i.Socket_GetType                         0x0800f6f4   Section        0  socket.o(i.Socket_GetType)
    i.Socket_OnClosed                        0x0800f710   Section        0  socket.o(i.Socket_OnClosed)
    i.Socket_OnConnectFailed                 0x0800f74c   Section        0  socket.o(i.Socket_OnConnectFailed)
    i.Socket_OnConnected                     0x0800f780   Section        0  socket.o(i.Socket_OnConnected)
    i.Socket_OnRecv                          0x0800f7f8   Section        0  socket.o(i.Socket_OnRecv)
    i.Socket_Recv                            0x0800f828   Section        0  socket.o(i.Socket_Recv)
    i.Socket_RecvData                        0x0800f8b4   Section        0  socket.o(i.Socket_RecvData)
    i.Socket_Send                            0x0800f94c   Section        0  socket.o(i.Socket_Send)
    i.Socket_SetSocketState                  0x0800f9c4   Section        0  socket.o(i.Socket_SetSocketState)
    i.Spi_ChangePrescaler                    0x0800f9e4   Section        0  spi.o(i.Spi_ChangePrescaler)
    i.Stop_Mode_Poll                         0x0800f9f8   Section        0  app.o(i.Stop_Mode_Poll)
    i.Stop_chongdian_Mode_Poll               0x0800fa60   Section        0  app.o(i.Stop_chongdian_Mode_Poll)
    i.SysTick_Handler                        0x0800fac8   Section        0  stm32l0xx_it.o(i.SysTick_Handler)
    i.SystemClock_Config                     0x0800fad4   Section        0  main.o(i.SystemClock_Config)
    i.SystemInit                             0x0800fb8c   Section        0  system_stm32l0xx.o(i.SystemInit)
    i.TIM_Base_SetConfig                     0x0800fb9c   Section        0  stm32l0xx_hal_tim.o(i.TIM_Base_SetConfig)
    TIM_Base_SetConfig                       0x0800fb9d   Thumb Code    90  stm32l0xx_hal_tim.o(i.TIM_Base_SetConfig)
    i.TIM_OC1_SetConfig                      0x0800fc04   Section        0  stm32l0xx_hal_tim.o(i.TIM_OC1_SetConfig)
    TIM_OC1_SetConfig                        0x0800fc05   Thumb Code    48  stm32l0xx_hal_tim.o(i.TIM_OC1_SetConfig)
    i.TIM_OC2_SetConfig                      0x0800fc34   Section        0  stm32l0xx_hal_tim.o(i.TIM_OC2_SetConfig)
    TIM_OC2_SetConfig                        0x0800fc35   Thumb Code    50  stm32l0xx_hal_tim.o(i.TIM_OC2_SetConfig)
    i.TIM_OC3_SetConfig                      0x0800fc66   Section        0  stm32l0xx_hal_tim.o(i.TIM_OC3_SetConfig)
    TIM_OC3_SetConfig                        0x0800fc67   Thumb Code    54  stm32l0xx_hal_tim.o(i.TIM_OC3_SetConfig)
    i.TIM_OC4_SetConfig                      0x0800fc9c   Section        0  stm32l0xx_hal_tim.o(i.TIM_OC4_SetConfig)
    TIM_OC4_SetConfig                        0x0800fc9d   Thumb Code    54  stm32l0xx_hal_tim.o(i.TIM_OC4_SetConfig)
    i.UART_AdvFeatureConfig                  0x0800fcd2   Section        0  stm32l0xx_hal_uart.o(i.UART_AdvFeatureConfig)
    i.UART_CheckIdleState                    0x0800fd9c   Section        0  stm32l0xx_hal_uart.o(i.UART_CheckIdleState)
    i.UART_DMAAbortOnError                   0x0800fe60   Section        0  stm32l0xx_hal_uart.o(i.UART_DMAAbortOnError)
    UART_DMAAbortOnError                     0x0800fe61   Thumb Code    20  stm32l0xx_hal_uart.o(i.UART_DMAAbortOnError)
    i.UART_DMAError                          0x0800fe74   Section        0  stm32l0xx_hal_uart.o(i.UART_DMAError)
    UART_DMAError                            0x0800fe75   Thumb Code    76  stm32l0xx_hal_uart.o(i.UART_DMAError)
    i.UART_DMAReceiveCplt                    0x0800fec0   Section        0  stm32l0xx_hal_uart.o(i.UART_DMAReceiveCplt)
    UART_DMAReceiveCplt                      0x0800fec1   Thumb Code   156  stm32l0xx_hal_uart.o(i.UART_DMAReceiveCplt)
    i.UART_DMARxHalfCplt                     0x0800ff5c   Section        0  stm32l0xx_hal_uart.o(i.UART_DMARxHalfCplt)
    UART_DMARxHalfCplt                       0x0800ff5d   Thumb Code    32  stm32l0xx_hal_uart.o(i.UART_DMARxHalfCplt)
    i.UART_DMATransmitCplt                   0x0800ff7c   Section        0  stm32l0xx_hal_uart.o(i.UART_DMATransmitCplt)
    UART_DMATransmitCplt                     0x0800ff7d   Thumb Code    76  stm32l0xx_hal_uart.o(i.UART_DMATransmitCplt)
    i.UART_DMATxHalfCplt                     0x0800ffc8   Section        0  stm32l0xx_hal_uart.o(i.UART_DMATxHalfCplt)
    UART_DMATxHalfCplt                       0x0800ffc9   Thumb Code    10  stm32l0xx_hal_uart.o(i.UART_DMATxHalfCplt)
    i.UART_EndRxTransfer                     0x0800ffd2   Section        0  stm32l0xx_hal_uart.o(i.UART_EndRxTransfer)
    UART_EndRxTransfer                       0x0800ffd3   Thumb Code    96  stm32l0xx_hal_uart.o(i.UART_EndRxTransfer)
    i.UART_EndTxTransfer                     0x08010032   Section        0  stm32l0xx_hal_uart.o(i.UART_EndTxTransfer)
    UART_EndTxTransfer                       0x08010033   Thumb Code    32  stm32l0xx_hal_uart.o(i.UART_EndTxTransfer)
    i.UART_RxISR_16BIT                       0x08010054   Section        0  stm32l0xx_hal_uart.o(i.UART_RxISR_16BIT)
    UART_RxISR_16BIT                         0x08010055   Thumb Code   212  stm32l0xx_hal_uart.o(i.UART_RxISR_16BIT)
    i.UART_RxISR_8BIT                        0x0801012c   Section        0  stm32l0xx_hal_uart.o(i.UART_RxISR_8BIT)
    UART_RxISR_8BIT                          0x0801012d   Thumb Code   212  stm32l0xx_hal_uart.o(i.UART_RxISR_8BIT)
    i.UART_SetConfig                         0x08010204   Section        0  stm32l0xx_hal_uart.o(i.UART_SetConfig)
    i.UART_Start_Receive_DMA                 0x08010418   Section        0  stm32l0xx_hal_uart.o(i.UART_Start_Receive_DMA)
    i.UART_Start_Receive_IT                  0x080104c4   Section        0  stm32l0xx_hal_uart.o(i.UART_Start_Receive_IT)
    i.UART_TxISR_16BIT                       0x0801058c   Section        0  stm32l0xx_hal_uart.o(i.UART_TxISR_16BIT)
    UART_TxISR_16BIT                         0x0801058d   Thumb Code    94  stm32l0xx_hal_uart.o(i.UART_TxISR_16BIT)
    i.UART_TxISR_8BIT                        0x080105ea   Section        0  stm32l0xx_hal_uart.o(i.UART_TxISR_8BIT)
    UART_TxISR_8BIT                          0x080105eb   Thumb Code    90  stm32l0xx_hal_uart.o(i.UART_TxISR_8BIT)
    i.UART_WaitOnFlagUntilTimeout            0x08010644   Section        0  stm32l0xx_hal_uart.o(i.UART_WaitOnFlagUntilTimeout)
    i.UDPClient_CmdParse                     0x080106d0   Section        0  udpclient.o(i.UDPClient_CmdParse)
    UDPClient_CmdParse                       0x080106d1   Thumb Code  1256  udpclient.o(i.UDPClient_CmdParse)
    i.UDPClient_Heartbeat                    0x08010bb8   Section        0  udpclient.o(i.UDPClient_Heartbeat)
    i.UDPClient_Init                         0x08010c7c   Section        0  udpclient.o(i.UDPClient_Init)
    i.UDPClient_Poll                         0x08010c98   Section        0  udpclient.o(i.UDPClient_Poll)
    i.UDPClient_SocketEventProc              0x08010d24   Section        0  udpclient.o(i.UDPClient_SocketEventProc)
    UDPClient_SocketEventProc                0x08010d25   Thumb Code    72  udpclient.o(i.UDPClient_SocketEventProc)
    i.UDPClient_UploadGPS                    0x08010d78   Section        0  udpclient.o(i.UDPClient_UploadGPS)
    i.UDPClient_Uploadhex                    0x08010db8   Section        0  udpclient.o(i.UDPClient_Uploadhex)
    i.USART1_IRQHandler                      0x08010e08   Section        0  stm32l0xx_it.o(i.USART1_IRQHandler)
    i.USART2_IRQHandler                      0x08010e18   Section        0  stm32l0xx_it.o(i.USART2_IRQHandler)
    i.USART4_5_IRQHandler                    0x08010e28   Section        0  stm32l0xx_it.o(i.USART4_5_IRQHandler)
    i.Uart_GetChar                           0x08010e38   Section        0  uart.o(i.Uart_GetChar)
    i.Uart_GetHandle                         0x08010eb8   Section        0  uart.o(i.Uart_GetHandle)
    i.Uart_Init                              0x08010edc   Section        0  uart.o(i.Uart_Init)
    i.Uart_RXDMAEnable                       0x08010f7c   Section        0  uart.o(i.Uart_RXDMAEnable)
    Uart_RXDMAEnable                         0x08010f7d   Thumb Code    52  uart.o(i.Uart_RXDMAEnable)
    i.Uart_RXINTEnable                       0x08010fb4   Section        0  uart.o(i.Uart_RXINTEnable)
    Uart_RXINTEnable                         0x08010fb5   Thumb Code    24  uart.o(i.Uart_RXINTEnable)
    i.Uart_ReConfigBaudRate                  0x08010fd0   Section        0  uart.o(i.Uart_ReConfigBaudRate)
    i.Uart_ReInit                            0x08011008   Section        0  uart.o(i.Uart_ReInit)
    i.Uart_Register                          0x0801107c   Section        0  uart.o(i.Uart_Register)
    i.Uart_RxErrorFromISR                    0x080110a8   Section        0  uart.o(i.Uart_RxErrorFromISR)
    i.Uart_RxOverFromISR                     0x080110ec   Section        0  uart.o(i.Uart_RxOverFromISR)
    i.Uart_Send                              0x08011144   Section        0  uart.o(i.Uart_Send)
    i.Uart_TxOverFromISR                     0x0801121c   Section        0  uart.o(i.Uart_TxOverFromISR)
    i.UpdateProcess                          0x080112a0   Section        0  serial_at_cmd_app.o(i.UpdateProcess)
    i.UsartParseDataHandler                  0x0801131c   Section        0  serial_at_cmd_app.o(i.UsartParseDataHandler)
    i.Uwb_CS_di                              0x08011438   Section        0  spi.o(i.Uwb_CS_di)
    i.Uwb_Zubao_Poll                         0x08011470   Section        0  app.o(i.Uwb_Zubao_Poll)
    i.__0printf                              0x080115ac   Section        0  printfa.o(i.__0printf)
    i.__0snprintf                            0x080115cc   Section        0  printfa.o(i.__0snprintf)
    i.__0sprintf                             0x08011600   Section        0  printfa.o(i.__0sprintf)
    i.__0vsnprintf                           0x08011628   Section        0  printfa.o(i.__0vsnprintf)
    i.__ARM_clz                              0x08011654   Section        0  depilogue.o(i.__ARM_clz)
    i.__ARM_common_ll_muluu                  0x08011682   Section        0  stm32l0xx_hal_rcc.o(i.__ARM_common_ll_muluu)
    i.__ARM_common_switch8                   0x080116b2   Section        0  stm32l0xx_hal_dma.o(i.__ARM_common_switch8)
    i.__NVIC_SetPriority                     0x080116cc   Section        0  stm32l0xx_hal_cortex.o(i.__NVIC_SetPriority)
    __NVIC_SetPriority                       0x080116cd   Thumb Code    60  stm32l0xx_hal_cortex.o(i.__NVIC_SetPriority)
    i.__aeabi_errno_addr                     0x08011710   Section        0  errno.o(i.__aeabi_errno_addr)
    i.__read_errno                           0x08011718   Section        0  errno.o(i.__read_errno)
    i.__scatterload_copy                     0x08011724   Section       14  handlers.o(i.__scatterload_copy)
    i.__scatterload_null                     0x08011732   Section        2  handlers.o(i.__scatterload_null)
    i.__scatterload_zeroinit                 0x08011734   Section       14  handlers.o(i.__scatterload_zeroinit)
    i.__set_errno                            0x08011744   Section        0  errno.o(i.__set_errno)
    i._dwt_aonarrayupload                    0x08011750   Section        0  deca_device.o(i._dwt_aonarrayupload)
    i._dwt_configlde                         0x08011778   Section        0  deca_device.o(i._dwt_configlde)
    i._dwt_enableclocks                      0x080117b4   Section        0  deca_device.o(i._dwt_enableclocks)
    i._dwt_loaducodefromrom                  0x0801186a   Section        0  deca_device.o(i._dwt_loaducodefromrom)
    i._dwt_otpread                           0x0801189c   Section        0  deca_device.o(i._dwt_otpread)
    i._fp_digits                             0x080118e0   Section        0  printfa.o(i._fp_digits)
    _fp_digits                               0x080118e1   Thumb Code   344  printfa.o(i._fp_digits)
    i._is_digit                              0x08011a54   Section        0  scanf_fp.o(i._is_digit)
    i._printf_core                           0x08011a64   Section        0  printfa.o(i._printf_core)
    _printf_core                             0x08011a65   Thumb Code  1754  printfa.o(i._printf_core)
    i._printf_post_padding                   0x08012150   Section        0  printfa.o(i._printf_post_padding)
    _printf_post_padding                     0x08012151   Thumb Code    32  printfa.o(i._printf_post_padding)
    i._printf_pre_padding                    0x08012170   Section        0  printfa.o(i._printf_pre_padding)
    _printf_pre_padding                      0x08012171   Thumb Code    44  printfa.o(i._printf_pre_padding)
    i._snputc                                0x0801219c   Section        0  printfa.o(i._snputc)
    _snputc                                  0x0801219d   Thumb Code    22  printfa.o(i._snputc)
    i._sputc                                 0x080121b2   Section        0  printfa.o(i._sputc)
    _sputc                                   0x080121b3   Thumb Code    10  printfa.o(i._sputc)
    i.atof                                   0x080121bc   Section        0  atof.o(i.atof)
    i.delay_ms                               0x080121e6   Section        0  dw_driver.o(i.delay_ms)
    i.delay_us                               0x080121f4   Section        0  lis3dh_driver.o(i.delay_us)
    i.dwt_configure                          0x08012280   Section        0  deca_device.o(i.dwt_configure)
    i.dwt_configuresleep                     0x08012490   Section        0  deca_device.o(i.dwt_configuresleep)
    i.dwt_entersleep                         0x080124b8   Section        0  deca_device.o(i.dwt_entersleep)
    i.dwt_entersleepaftertx                  0x080124c0   Section        0  deca_device.o(i.dwt_entersleepaftertx)
    i.dwt_forcetrxoff                        0x080124e8   Section        0  deca_device.o(i.dwt_forcetrxoff)
    i.dwt_initialise                         0x08012538   Section        0  deca_device.o(i.dwt_initialise)
    i.dwt_read16bitoffsetreg                 0x08012664   Section        0  deca_device.o(i.dwt_read16bitoffsetreg)
    i.dwt_read32bitoffsetreg                 0x08012690   Section        0  deca_device.o(i.dwt_read32bitoffsetreg)
    i.dwt_readdevid                          0x080126b8   Section        0  deca_device.o(i.dwt_readdevid)
    i.dwt_readfromdevice                     0x080126c4   Section        0  deca_device.o(i.dwt_readfromdevice)
    i.dwt_readrxdata                         0x080126fc   Section        0  deca_device.o(i.dwt_readrxdata)
    i.dwt_readrxtimestamp                    0x0801270e   Section        0  deca_device.o(i.dwt_readrxtimestamp)
    i.dwt_rxenable                           0x0801271e   Section        0  deca_device.o(i.dwt_rxenable)
    i.dwt_setdelayedtrxtime                  0x08012772   Section        0  deca_device.o(i.dwt_setdelayedtrxtime)
    i.dwt_setinterrupt                       0x08012780   Section        0  deca_device.o(i.dwt_setinterrupt)
    i.dwt_setrxantennadelay                  0x080127a4   Section        0  deca_device.o(i.dwt_setrxantennadelay)
    i.dwt_setrxtimeout                       0x080127b8   Section        0  deca_device.o(i.dwt_setrxtimeout)
    i.dwt_settxantennadelay                  0x08012814   Section        0  deca_device.o(i.dwt_settxantennadelay)
    i.dwt_starttx                            0x08012824   Section        0  deca_device.o(i.dwt_starttx)
    i.dwt_syncrxbufptrs                      0x080128b8   Section        0  deca_device.o(i.dwt_syncrxbufptrs)
    i.dwt_write16bitoffsetreg                0x080128ec   Section        0  deca_device.o(i.dwt_write16bitoffsetreg)
    i.dwt_write32bitoffsetreg                0x08012902   Section        0  deca_device.o(i.dwt_write32bitoffsetreg)
    i.dwt_writetodevice                      0x08012920   Section        0  deca_device.o(i.dwt_writetodevice)
    i.dwt_writetxdata                        0x08012958   Section        0  deca_device.o(i.dwt_writetxdata)
    i.dwt_writetxfctrl                       0x0801297c   Section        0  deca_device.o(i.dwt_writetxfctrl)
    i.dwt_xtaltrim                           0x08012998   Section        0  deca_device.o(i.dwt_xtaltrim)
    i.fputc                                  0x080129c8   Section        0  uart.o(i.fputc)
    i.main                                   0x080129e0   Section        0  main.o(i.main)
    i.parameter_init                         0x08012bbc   Section        0  global_param.o(i.parameter_init)
    i.readfromspi                            0x08012c8c   Section        0  spi.o(i.readfromspi)
    i.resp_msg_set_ts                        0x08012ce4   Section        0  dw_mbx_tag.o(i.resp_msg_set_ts)
    resp_msg_set_ts                          0x08012ce5   Thumb Code    30  dw_mbx_tag.o(i.resp_msg_set_ts)
    i.save_com_map_to_flash                  0x08012d04   Section        0  global_param.o(i.save_com_map_to_flash)
    i.w28delay                               0x08012d44   Section        0  ws2812.o(i.w28delay)
    i.writetospi                             0x08012d50   Section        0  spi.o(i.writetospi)
    .constdata                               0x08012da4   Section       25  system_stm32l0xx.o(.constdata)
    .constdata                               0x08012dbd   Section        8  system_stm32l0xx.o(.constdata)
    .constdata                               0x08012dc8   Section      712  air780edriver.o(.constdata)
    l_astATCmdSetList                        0x08012dc8   Data         456  air780edriver.o(.constdata)
    l_apcEventName                           0x08012f90   Data         256  air780edriver.o(.constdata)
    .constdata                               0x08013090   Section      316  air780efsm.o(.constdata)
    .constdata                               0x080131cc   Section       16  air780efsm.o(.constdata)
    .constdata                               0x080131dc   Section       48  air780esocket.o(.constdata)
    .constdata                               0x0801320c   Section       16  spiflash.o(.constdata)
    l_au8SPIFlashSectorEraseCmd              0x0801320c   Data           3  spiflash.o(.constdata)
    l_au32SPIFlashSectorEraseSize            0x08013210   Data          12  spiflash.o(.constdata)
    .constdata                               0x0801321c   Section      312  shell.o(.constdata)
    l_astShellCmdList                        0x0801321c   Data         312  shell.o(.constdata)
    .constdata                               0x08013354   Section        8  deca_params_init.o(.constdata)
    .constdata                               0x0801335c   Section       24  deca_params_init.o(.constdata)
    .constdata                               0x08013374   Section        8  deca_params_init.o(.constdata)
    .constdata                               0x0801337c   Section       12  deca_params_init.o(.constdata)
    .constdata                               0x08013388   Section        4  deca_params_init.o(.constdata)
    .constdata                               0x0801338c   Section       32  deca_params_init.o(.constdata)
    .constdata                               0x080133ac   Section       50  deca_params_init.o(.constdata)
    .constdata                               0x080133de   Section      129  ctype_o.o(.constdata)
    .constdata                               0x08013460   Section        4  ctype_o.o(.constdata)
    table                                    0x08013460   Data           4  ctype_o.o(.constdata)
    .conststring                             0x08013464   Section     1968  air780edriver.o(.conststring)
    .conststring                             0x08013c14   Section      392  air780efsm.o(.conststring)
    .conststring                             0x08013d9c   Section       24  air780efsm.o(.conststring)
    .conststring                             0x08013db4   Section       65  air780esocket.o(.conststring)
    .conststring                             0x08013df8   Section       11  air780ecsq.o(.conststring)
    .conststring                             0x08013e04   Section       11  air780eloc.o(.conststring)
    .conststring                             0x08013e10   Section      465  shell.o(.conststring)
    .conststring                             0x08013fe4   Section       11  hido_shell.o(.conststring)
    .data                                    0x20000000   Section      144  main.o(.data)
    .data                                    0x20000090   Section        4  main.o(.data)
    .data                                    0x20000094   Section        1  main.o(.data)
    .data                                    0x20000098   Section       12  stm32l0xx_hal.o(.data)
    .data                                    0x200000a4   Section        4  system_stm32l0xx.o(.data)
    .data                                    0x200000a8   Section       24  air780edriver.o(.data)
    l_u8Mode                                 0x200000a8   Data           1  air780edriver.o(.data)
    l_u32ConnectLen                          0x200000ac   Data           4  air780edriver.o(.data)
    l_u32ExpectedLen                         0x200000b0   Data           4  air780edriver.o(.data)
    l_u32LastTick                            0x200000b4   Data           4  air780edriver.o(.data)
    l_stDriverData                           0x200000b8   Data           8  air780edriver.o(.data)
    .data                                    0x200000c0   Section      116  air780efsm.o(.data)
    l_bDeact                                 0x200000c0   Data           1  air780efsm.o(.data)
    l_eAIR780ESubState                       0x200000c1   Data           1  air780efsm.o(.data)
    l_bConfigBaudRate                        0x200000c2   Data           1  air780efsm.o(.data)
    bReady                                   0x200000c3   Data           1  air780efsm.o(.data)
    l_eAIR780ESubState                       0x200000c4   Data           1  air780efsm.o(.data)
    l_bATBusy                                0x200000c5   Data           1  air780efsm.o(.data)
    l_u32IPCheckTick                         0x200000c8   Data           4  air780efsm.o(.data)
    l_u32ReadyCnt                            0x200000cc   Data           4  air780efsm.o(.data)
    l_u32TimeoutCnt                          0x200000d0   Data           4  air780efsm.o(.data)
    l_u32BaudRate                            0x200000d4   Data           4  air780efsm.o(.data)
    u32RetryCnt                              0x200000d8   Data           4  air780efsm.o(.data)
    l_u32CmdIndex                            0x200000dc   Data           4  air780efsm.o(.data)
    l_u32RetryCnt                            0x200000e0   Data           4  air780efsm.o(.data)
    l_u32RespCode                            0x200000e4   Data           4  air780efsm.o(.data)
    l_u32Cnt                                 0x200000e8   Data           4  air780efsm.o(.data)
    l_u32ReadyCnt                            0x200000ec   Data           4  air780efsm.o(.data)
    l_u32CmdIndex                            0x200000f0   Data           4  air780efsm.o(.data)
    l_u32RetryCnt                            0x200000f4   Data           4  air780efsm.o(.data)
    l_u32CGATT                               0x200000f8   Data           4  air780efsm.o(.data)
    l_stStateArg                             0x200000fc   Data           8  air780efsm.o(.data)
    .data                                    0x20000134   Section       24  air780esocket.o(.data)
    l_i32SocketID                            0x20000134   Data           4  air780esocket.o(.data)
    l_u32FailedCnt                           0x20000138   Data           4  air780esocket.o(.data)
    l_i32SocketID                            0x2000013c   Data           4  air780esocket.o(.data)
    l_i32SocketID                            0x20000140   Data           4  air780esocket.o(.data)
    l_pstMember                              0x20000144   Data           4  air780esocket.o(.data)
    i32LastSocketIndex                       0x20000148   Data           4  air780esocket.o(.data)
    .data                                    0x2000014c   Section       20  air780ecsq.o(.data)
    l_pstAfterState                          0x2000014c   Data           4  air780ecsq.o(.data)
    .data                                    0x20000160   Section       44  module.o(.data)
    l_bSignalIntensityNeedRequest            0x20000160   Data           1  module.o(.data)
    l_bLBSLocationNeedRequest                0x20000161   Data           1  module.o(.data)
    l_bRunATCmd                              0x20000162   Data           1  module.o(.data)
    l_abModuleNeedSleep                      0x20000163   Data           3  module.o(.data)
    l_abModuleNeedWakeUp                     0x20000166   Data           3  module.o(.data)
    l_abModuleNeedPowerOff                   0x20000169   Data           3  module.o(.data)
    l_abModuleNeedPowerOn                    0x2000016c   Data           3  module.o(.data)
    l_u32SignalIntensity                     0x20000170   Data           4  module.o(.data)
    l_pSignalIntensityArg                    0x20000174   Data           4  module.o(.data)
    l_fnSignalIntensityCallback              0x20000178   Data           4  module.o(.data)
    l_pLBSLocationArg                        0x2000017c   Data           4  module.o(.data)
    l_fnLBSLocationCallback                  0x20000180   Data           4  module.o(.data)
    l_fnPowerEventCallback                   0x20000184   Data           4  module.o(.data)
    l_pPowerEventArg                         0x20000188   Data           4  module.o(.data)
    .data                                    0x2000018c   Section       20  air780eloc.o(.data)
    l_pstAfterState                          0x2000018c   Data           4  air780eloc.o(.data)
    .data                                    0x200001a0   Section       20  gps.o(.data)
    l_bIsPowerOn                             0x200001a0   Data           1  gps.o(.data)
    l_u8PosState                             0x200001a1   Data           1  gps.o(.data)
    l_au8GPSUartTxBuf                        0x200001ac   Data           4  gps.o(.data)
    l_fnGPSEventCallback                     0x200001b0   Data           4  gps.o(.data)
    .data                                    0x200001b4   Section       16  dbg.o(.data)
    l_u8DBGFlag                              0x200001b4   Data           1  dbg.o(.data)
    l_eDBGMode                               0x200001b5   Data           1  dbg.o(.data)
    l_u32ModeTick                            0x200001b8   Data           4  dbg.o(.data)
    l_u32ModeTick                            0x200001bc   Data           4  dbg.o(.data)
    l_u32ModeTick                            0x200001c0   Data           4  dbg.o(.data)
    .data                                    0x200001c4   Section        8  spi_hal.o(.data)
    l_apstSPIHandle                          0x200001c4   Data           8  spi_hal.o(.data)
    .data                                    0x200001cc   Section       20  adc.o(.data)
    first                                    0x200001cc   Data           1  adc.o(.data)
    first                                    0x200001cd   Data           1  adc.o(.data)
    bat_count                                0x200001ce   Data           2  adc.o(.data)
    last_value                               0x200001d4   Data           4  adc.o(.data)
    last_value                               0x200001d8   Data           4  adc.o(.data)
    .data                                    0x200001e0   Section        4  flash.o(.data)
    .data                                    0x200001e4   Section       32  udpclient.o(.data)
    l_eUDPCLientState                        0x200001e4   Data           1  udpclient.o(.data)
    l_i32UDPCLientID                         0x200001f0   Data           4  udpclient.o(.data)
    l_u32HeartBeatTick                       0x200001f4   Data           4  udpclient.o(.data)
    l_u32UdpsendTick                         0x200001f8   Data           4  udpclient.o(.data)
    l_u32UploadBuffLen                       0x200001fc   Data           4  udpclient.o(.data)
    l_u32UdpsendTick                         0x20000200   Data           4  udpclient.o(.data)
    .data                                    0x20000204   Section      310  app.o(.data)
    .data                                    0x2000033a   Section        1  app.o(.data)
    .data                                    0x2000033c   Section       15  dw_app.o(.data)
    config                                   0x20000340   Data          11  dw_app.o(.data)
    .data                                    0x20000350   Section       56  dw_mbx_tag.o(.data)
    frame_len                                0x20000350   Data           1  dw_mbx_tag.o(.data)
    timeout                                  0x20000351   Data           1  dw_mbx_tag.o(.data)
    result                                   0x20000352   Data           1  dw_mbx_tag.o(.data)
    rec_nearbase_num                         0x20000353   Data           1  dw_mbx_tag.o(.data)
    frame_seq_nb2                            0x20000354   Data           1  dw_mbx_tag.o(.data)
    battary                                  0x20000355   Data           1  dw_mbx_tag.o(.data)
    button                                   0x20000356   Data           1  dw_mbx_tag.o(.data)
    uwb_losttimer                            0x20000357   Data           1  dw_mbx_tag.o(.data)
    taglist_pos                              0x20000358   Data           1  dw_mbx_tag.o(.data)
    current_time                             0x2000035c   Data           2  dw_mbx_tag.o(.data)
    start_time                               0x2000035e   Data           2  dw_mbx_tag.o(.data)
    end_time                                 0x20000360   Data           2  dw_mbx_tag.o(.data)
    anc_id_recv                              0x20000362   Data           2  dw_mbx_tag.o(.data)
    tag_id_recv                              0x20000364   Data           2  dw_mbx_tag.o(.data)
    status_reg                               0x20000368   Data           4  dw_mbx_tag.o(.data)
    resp_tx_time                             0x2000036c   Data           4  dw_mbx_tag.o(.data)
    poll_rx_ts                               0x20000378   Data           8  dw_mbx_tag.o(.data)
    resp_tx_ts                               0x20000380   Data           8  dw_mbx_tag.o(.data)
    .data                                    0x20000388   Section        7  serial_at_cmd_app.o(.data)
    usart_receive_state                      0x20000388   Data           1  serial_at_cmd_app.o(.data)
    pack_datalen                             0x20000389   Data           1  serial_at_cmd_app.o(.data)
    pack_length                              0x2000038a   Data           1  serial_at_cmd_app.o(.data)
    pack_index                               0x2000038b   Data           1  serial_at_cmd_app.o(.data)
    pack_msgtype                             0x2000038c   Data           1  serial_at_cmd_app.o(.data)
    pack_cmd                                 0x2000038d   Data           1  serial_at_cmd_app.o(.data)
    index                                    0x2000038e   Data           1  serial_at_cmd_app.o(.data)
    .data                                    0x20000390   Section       10  lis3dh_driver.o(.data)
    ODR_old_value                            0x20000390   Data           1  lis3dh_driver.o(.data)
    .data                                    0x2000039a   Section        8  lora.o(.data)
    .data                                    0x200003a2   Section        1  deca_device.o(.data)
    .data                                    0x200003a3   Section       30  deca_params_init.o(.data)
    .data                                    0x200003c1   Section        2  deca_params_init.o(.data)
    .data                                    0x200003c3   Section        3  deca_params_init.o(.data)
    .data                                    0x200003c8   Section        6  hido_fsm.o(.data)
    l_pstStatMachineList                     0x200003c8   Data           4  hido_fsm.o(.data)
    l_u16StatMachineCount                    0x200003cc   Data           2  hido_fsm.o(.data)
    .data                                    0x200003d0   Section        4  hido_lock.o(.data)
    l_u32LockNesting                         0x200003d0   Data           4  hido_lock.o(.data)
    .data                                    0x200003d8   Section       16  hido_timer.o(.data)
    .data                                    0x200003e8   Section        4  hido_input.o(.data)
    l_pstInputList                           0x200003e8   Data           4  hido_input.o(.data)
    .data                                    0x200003ec   Section      648  hido_shell.o(.data)
    l_pstShellInput                          0x200003ec   Data           4  hido_shell.o(.data)
    l_u32ShellCmdCount                       0x200003f0   Data           4  hido_shell.o(.data)
    l_astShellCmdList                        0x200003f4   Data         640  hido_shell.o(.data)
    .data                                    0x20000674   Section        5  hido_atlite.o(.data)
    l_pstDeviceList                          0x20000674   Data           4  hido_atlite.o(.data)
    l_bATDebugFlag                           0x20000678   Data           1  hido_atlite.o(.data)
    .data                                    0x2000067c   Section        4  stdout.o(.data)
    .data                                    0x20000680   Section        4  errno.o(.data)
    _errno                                   0x20000680   Data           4  errno.o(.data)
    .bss                                     0x20000684   Section      752  main.o(.bss)
    .bss                                     0x20000974   Section       72  main.o(.bss)
    .bss                                     0x200009bc   Section       72  main.o(.bss)
    .bss                                     0x20000a04   Section       72  main.o(.bss)
    .bss                                     0x20000a4c   Section       24  stm32l0xx_hal_flash.o(.bss)
    .bss                                     0x20000a64   Section     1532  air780edriver.o(.bss)
    l_au8AIR780EUartRxBuf                    0x20000a64   Data        1024  air780edriver.o(.bss)
    l_au8AIR780EUartTxBuf                    0x20000e64   Data         100  air780edriver.o(.bss)
    l_au8ATSendBuf                           0x20000ec8   Data         128  air780edriver.o(.bss)
    l_au8ATRecvBuf                           0x20000f48   Data         128  air780edriver.o(.bss)
    l_stAIR780EDevice                        0x20000fc8   Data         128  air780edriver.o(.bss)
    l_stAIR780EPin                           0x20001048   Data          24  air780edriver.o(.bss)
    .bss                                     0x20001060   Section       48  air780efsm.o(.bss)
    .bss                                     0x20001090   Section      216  module.o(.bss)
    l_acIMEI                                 0x20001090   Data          16  module.o(.bss)
    l_acIMSI                                 0x200010a0   Data          16  module.o(.bss)
    l_acCCID                                 0x200010b0   Data          25  module.o(.bss)
    l_stLBSLocation                          0x200010d0   Data          24  module.o(.bss)
    l_acRunATCmdBuff                         0x200010e8   Data         128  module.o(.bss)
    .bss                                     0x20001168   Section     3660  socket.o(.bss)
    l_astSocketData                          0x20001168   Data        3660  socket.o(.bss)
    .bss                                     0x20001fb8   Section     1472  gps.o(.bss)
    l_au8GPSUartRxBuf                        0x20001fb8   Data        1024  gps.o(.bss)
    l_astGPSPin                              0x200023b8   Data          16  gps.o(.bss)
    l_stGPSRecv                              0x200023c8   Data         136  gps.o(.bss)
    .bss                                     0x20002578   Section       40  spiflash.o(.bss)
    l_astSPIFlashResourse                    0x20002578   Data          40  spiflash.o(.bss)
    .bss                                     0x200025a0   Section     1696  dbg.o(.bss)
    l_stSerialInput                          0x200025a0   Data        1440  dbg.o(.bss)
    l_au8DBGUartRxBuf                        0x20002b40   Data         256  dbg.o(.bss)
    .bss                                     0x20002c40   Section      464  uart.o(.bss)
    l_astUartInfo                            0x20002c40   Data         464  uart.o(.bss)
    .bss                                     0x20002e10   Section     2048  udpclient.o(.bss)
    l_acUploadBuff                           0x20002e10   Data        1024  udpclient.o(.bss)
    l_au8CmdBuff                             0x20003210   Data        1024  udpclient.o(.bss)
    .bss                                     0x20003610   Section      512  global_param.o(.bss)
    .bss                                     0x20003810   Section      300  app.o(.bss)
    .bss                                     0x2000393c   Section      900  dw_mbx_tag.o(.bss)
    rx_buffer                                0x2000393c   Data         200  dw_mbx_tag.o(.bss)
    send_buffer                              0x20003a04   Data         200  dw_mbx_tag.o(.bss)
    rec_ancidlist                            0x20003acc   Data          50  dw_mbx_tag.o(.bss)
    rec_ancdistlist                          0x20003afe   Data          50  dw_mbx_tag.o(.bss)
    tagofflinetime                           0x20003b30   Data          40  dw_mbx_tag.o(.bss)
    .bss                                     0x20003cc0   Section      200  serial_at_cmd_app.o(.bss)
    send_frame                               0x20003d24   Data         100  serial_at_cmd_app.o(.bss)
    .bss                                     0x20003d88   Section       60  deca_device.o(.bss)
    dw1000local                              0x20003d88   Data          60  deca_device.o(.bss)
    .bss                                     0x20003dc4   Section      768  hido_timer.o(.bss)
    l_stTimerList                            0x20003dc4   Data         768  hido_timer.o(.bss)
    STACK                                    0x200040c8   Section     2048  startup_stm32l071xx.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$IEEEX$EBA8$MICROLIB$REQ8$PRES8$EABIv2 0x00000000   Number         0  anon$$obj.o ABSOLUTE
    __ARM_use_no_argv                        0x00000000   Number         0  main.o ABSOLUTE
    _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
    __cpp_initialize__aeabi_                  - Undefined Weak Reference
    __cxa_finalize                            - Undefined Weak Reference
    _clock_init                               - Undefined Weak Reference
    _microlib_exit                            - Undefined Weak Reference
    _scanf_longlong                           - Undefined Weak Reference
    _scanf_string                             - Undefined Weak Reference
    __Vectors_Size                           0x000000c0   Number         0  startup_stm32l071xx.o ABSOLUTE
    __Vectors                                0x08005000   Data           4  startup_stm32l071xx.o(RESET)
    __Vectors_End                            0x080050c0   Data           0  startup_stm32l071xx.o(RESET)
    __main                                   0x080050c1   Thumb Code     0  entry.o(.ARM.Collect$$$$00000000)
    _main_stk                                0x080050c1   Thumb Code     0  entry2.o(.ARM.Collect$$$$00000001)
    _main_scatterload                        0x080050c5   Thumb Code     0  entry5.o(.ARM.Collect$$$$00000004)
    __main_after_scatterload                 0x080050c9   Thumb Code     0  entry5.o(.ARM.Collect$$$$00000004)
    _main_clock                              0x080050c9   Thumb Code     0  entry7b.o(.ARM.Collect$$$$00000008)
    _main_cpp_init                           0x080050c9   Thumb Code     0  entry8b.o(.ARM.Collect$$$$0000000A)
    _main_init                               0x080050c9   Thumb Code     0  entry9a.o(.ARM.Collect$$$$0000000B)
    __rt_final_cpp                           0x080050d1   Thumb Code     0  entry10a.o(.ARM.Collect$$$$0000000D)
    __rt_final_exit                          0x080050d1   Thumb Code     0  entry11a.o(.ARM.Collect$$$$0000000F)
    Reset_Handler                            0x080050d5   Thumb Code     8  startup_stm32l071xx.o(.text)
    ADC1_COMP_IRQHandler                     0x080050e7   Thumb Code     0  startup_stm32l071xx.o(.text)
    DMA1_Channel1_IRQHandler                 0x080050e7   Thumb Code     0  startup_stm32l071xx.o(.text)
    EXTI2_3_IRQHandler                       0x080050e7   Thumb Code     0  startup_stm32l071xx.o(.text)
    FLASH_IRQHandler                         0x080050e7   Thumb Code     0  startup_stm32l071xx.o(.text)
    I2C1_IRQHandler                          0x080050e7   Thumb Code     0  startup_stm32l071xx.o(.text)
    I2C2_IRQHandler                          0x080050e7   Thumb Code     0  startup_stm32l071xx.o(.text)
    I2C3_IRQHandler                          0x080050e7   Thumb Code     0  startup_stm32l071xx.o(.text)
    LPUART1_IRQHandler                       0x080050e7   Thumb Code     0  startup_stm32l071xx.o(.text)
    PVD_IRQHandler                           0x080050e7   Thumb Code     0  startup_stm32l071xx.o(.text)
    RCC_IRQHandler                           0x080050e7   Thumb Code     0  startup_stm32l071xx.o(.text)
    RTC_IRQHandler                           0x080050e7   Thumb Code     0  startup_stm32l071xx.o(.text)
    SPI1_IRQHandler                          0x080050e7   Thumb Code     0  startup_stm32l071xx.o(.text)
    SPI2_IRQHandler                          0x080050e7   Thumb Code     0  startup_stm32l071xx.o(.text)
    TIM21_IRQHandler                         0x080050e7   Thumb Code     0  startup_stm32l071xx.o(.text)
    TIM22_IRQHandler                         0x080050e7   Thumb Code     0  startup_stm32l071xx.o(.text)
    TIM2_IRQHandler                          0x080050e7   Thumb Code     0  startup_stm32l071xx.o(.text)
    TIM3_IRQHandler                          0x080050e7   Thumb Code     0  startup_stm32l071xx.o(.text)
    TIM6_IRQHandler                          0x080050e7   Thumb Code     0  startup_stm32l071xx.o(.text)
    TIM7_IRQHandler                          0x080050e7   Thumb Code     0  startup_stm32l071xx.o(.text)
    WWDG_IRQHandler                          0x080050e7   Thumb Code     0  startup_stm32l071xx.o(.text)
    __aeabi_uidiv                            0x080050f1   Thumb Code     0  uidiv.o(.text)
    __aeabi_uidivmod                         0x080050f1   Thumb Code    44  uidiv.o(.text)
    __aeabi_idiv                             0x0800511d   Thumb Code     0  idiv.o(.text)
    __aeabi_idivmod                          0x0800511d   Thumb Code    40  idiv.o(.text)
    __aeabi_uldivmod                         0x08005145   Thumb Code    96  uldiv.o(.text)
    __aeabi_llsr                             0x080051a5   Thumb Code    34  llushr.o(.text)
    _ll_ushift_r                             0x080051a5   Thumb Code     0  llushr.o(.text)
    __aeabi_memcpy                           0x080051c7   Thumb Code    36  memcpya.o(.text)
    __aeabi_memcpy4                          0x080051c7   Thumb Code     0  memcpya.o(.text)
    __aeabi_memcpy8                          0x080051c7   Thumb Code     0  memcpya.o(.text)
    __aeabi_memset                           0x080051eb   Thumb Code    14  memseta.o(.text)
    __aeabi_memset4                          0x080051eb   Thumb Code     0  memseta.o(.text)
    __aeabi_memset8                          0x080051eb   Thumb Code     0  memseta.o(.text)
    __aeabi_memclr                           0x080051f9   Thumb Code     4  memseta.o(.text)
    __aeabi_memclr4                          0x080051f9   Thumb Code     0  memseta.o(.text)
    __aeabi_memclr8                          0x080051f9   Thumb Code     0  memseta.o(.text)
    _memset$wrapper                          0x080051fd   Thumb Code    18  memseta.o(.text)
    strcat                                   0x0800520f   Thumb Code    24  strcat.o(.text)
    strstr                                   0x08005227   Thumb Code    40  strstr.o(.text)
    strchr                                   0x0800524f   Thumb Code    20  strchr.o(.text)
    strlen                                   0x08005263   Thumb Code    14  strlen.o(.text)
    strcmp                                   0x08005271   Thumb Code    28  strcmp.o(.text)
    memcmp                                   0x0800528d   Thumb Code    26  memcmp.o(.text)
    strcpy                                   0x080052a7   Thumb Code    18  strcpy.o(.text)
    strncmp                                  0x080052b9   Thumb Code    30  strncmp.o(.text)
    atoi                                     0x080052d7   Thumb Code    26  atoi.o(.text)
    __aeabi_fdiv                             0x080052f1   Thumb Code   124  fdiv.o(.text)
    __aeabi_dadd                             0x0800536d   Thumb Code   328  dadd.o(.text)
    __aeabi_dsub                             0x080054b5   Thumb Code    12  dadd.o(.text)
    __aeabi_drsub                            0x080054c1   Thumb Code    12  dadd.o(.text)
    __aeabi_dmul                             0x080054d1   Thumb Code   202  dmul.o(.text)
    __aeabi_ddiv                             0x080055a1   Thumb Code   234  ddiv.o(.text)
    __aeabi_ui2f                             0x08005691   Thumb Code    14  ffltui.o(.text)
    __aeabi_ui2d                             0x080056a1   Thumb Code    24  dfltui.o(.text)
    __aeabi_f2uiz                            0x080056bd   Thumb Code    40  ffixui.o(.text)
    __aeabi_d2uiz                            0x080056e5   Thumb Code    50  dfixui.o(.text)
    __aeabi_f2d                              0x08005721   Thumb Code    40  f2d.o(.text)
    __aeabi_cdrcmple                         0x08005749   Thumb Code    38  cdrcmple.o(.text)
    __aeabi_d2f                              0x08005771   Thumb Code    56  d2f.o(.text)
    __aeabi_llsl                             0x080057a9   Thumb Code    32  llshl.o(.text)
    _ll_shift_l                              0x080057a9   Thumb Code     0  llshl.o(.text)
    __aeabi_lasr                             0x080057c9   Thumb Code    38  llsshr.o(.text)
    _ll_sshift_r                             0x080057c9   Thumb Code     0  llsshr.o(.text)
    _chval                                   0x080057ef   Thumb Code    30  _chval.o(.text)
    _sgetc                                   0x0800580d   Thumb Code    32  _sgetc.o(.text)
    _sbackspace                              0x0800582d   Thumb Code    36  _sgetc.o(.text)
    __strtod_int                             0x08005887   Thumb Code    94  strtod.o(.text)
    strtol                                   0x080058f5   Thumb Code   108  strtol.o(.text)
    __I$use$fp                               0x08005965   Thumb Code     0  iusefp.o(.text)
    _float_round                             0x08005965   Thumb Code    16  fepilogue.o(.text)
    _float_epilogue                          0x08005975   Thumb Code   114  fepilogue.o(.text)
    _double_round                            0x080059e7   Thumb Code    26  depilogue.o(.text)
    _double_epilogue                         0x08005a01   Thumb Code   164  depilogue.o(.text)
    __aeabi_d2ulz                            0x08005aa5   Thumb Code    54  dfixul.o(.text)
    __scatterload                            0x08005ae5   Thumb Code    28  init.o(.text)
    __scatterload_rt2                        0x08005ae5   Thumb Code     0  init.o(.text)
    __rt_ctype_table                         0x08005b09   Thumb Code     4  ctype_o.o(.text)
    isspace                                  0x08005b11   Thumb Code    18  isspace_o.o(.text)
    _scanf_real                              0x08005c43   Thumb Code     0  scanf_fp.o(.text)
    _scanf_really_real                       0x08005c43   Thumb Code   586  scanf_fp.o(.text)
    _strtoul                                 0x08005e99   Thumb Code   166  _strtoul.o(.text)
    __aeabi_lmul                             0x08005f3f   Thumb Code   122  llmul.o(.text)
    _ll_mul                                  0x08005f3f   Thumb Code     0  llmul.o(.text)
    __aeabi_ul2d                             0x08005fb9   Thumb Code    22  dfltul.o(.text)
    __decompress                             0x08005fd5   Thumb Code     0  __dczerorl2.o(.text)
    __decompress1                            0x08005fd5   Thumb Code    86  __dczerorl2.o(.text)
    AIR780EATCmdInitProc                     0x080060c1   Thumb Code   308  air780efsm.o(i.AIR780EATCmdInitProc)
    AIR780EATCmdTestProc                     0x08006205   Thumb Code   236  air780efsm.o(i.AIR780EATCmdTestProc)
    AIR780ECSQProc                           0x08006321   Thumb Code    96  air780ecsq.o(i.AIR780ECSQProc)
    AIR780ECSQ_Get                           0x080063a5   Thumb Code    36  air780ecsq.o(i.AIR780ECSQ_Get)
    AIR780ECSQ_Poll                          0x080063cd   Thumb Code    28  air780ecsq.o(i.AIR780ECSQ_Poll)
    AIR780ECloseWirelessProc                 0x080063e9   Thumb Code    64  air780efsm.o(i.AIR780ECloseWirelessProc)
    AIR780EDriver_FSMDebug                   0x0800643d   Thumb Code    26  air780edriver.o(i.AIR780EDriver_FSMDebug)
    AIR780EDriver_Init                       0x08006459   Thumb Code   154  air780edriver.o(i.AIR780EDriver_Init)
    AIR780EDriver_PWRKEYReset                0x0800652d   Thumb Code    22  air780edriver.o(i.AIR780EDriver_PWRKEYReset)
    AIR780EDriver_PWRKEYSet                  0x08006549   Thumb Code    22  air780edriver.o(i.AIR780EDriver_PWRKEYSet)
    AIR780EDriver_PinRegister                0x08006565   Thumb Code    14  air780edriver.o(i.AIR780EDriver_PinRegister)
    AIR780EDriver_PowerOff                   0x08006579   Thumb Code    22  air780edriver.o(i.AIR780EDriver_PowerOff)
    AIR780EDriver_PowerOn                    0x08006595   Thumb Code    22  air780edriver.o(i.AIR780EDriver_PowerOn)
    AIR780EIPCheckProc                       0x080065b1   Thumb Code    90  air780efsm.o(i.AIR780EIPCheckProc)
    AIR780EIPInitProc                        0x08006631   Thumb Code   366  air780efsm.o(i.AIR780EIPInitProc)
    AIR780EIPPollProc                        0x080067f1   Thumb Code    50  air780efsm.o(i.AIR780EIPPollProc)
    AIR780EIPReadyProc                       0x0800682d   Thumb Code    86  air780efsm.o(i.AIR780EIPReadyProc)
    AIR780EIdleProc                          0x080068a5   Thumb Code    28  air780efsm.o(i.AIR780EIdleProc)
    AIR780EInitProc                          0x080068c1   Thumb Code    30  air780efsm.o(i.AIR780EInitProc)
    AIR780ELocProc                           0x080068e5   Thumb Code   208  air780eloc.o(i.AIR780ELocProc)
    AIR780ELoc_Get                           0x08006a0d   Thumb Code    36  air780eloc.o(i.AIR780ELoc_Get)
    AIR780ELoc_Poll                          0x08006a35   Thumb Code    28  air780eloc.o(i.AIR780ELoc_Poll)
    AIR780EOpenWirelessProc                  0x08006a51   Thumb Code    64  air780efsm.o(i.AIR780EOpenWirelessProc)
    AIR780EPowerOffProc                      0x08006aa5   Thumb Code    76  air780efsm.o(i.AIR780EPowerOffProc)
    AIR780EPowerOnProc                       0x08006af5   Thumb Code   166  air780efsm.o(i.AIR780EPowerOnProc)
    AIR780EProc                              0x08006ba9   Thumb Code    84  air780efsm.o(i.AIR780EProc)
    AIR780EReadyProc                         0x08006c15   Thumb Code    16  air780efsm.o(i.AIR780EReadyProc)
    AIR780ERunATCmdProc                      0x08006c25   Thumb Code    72  air780efsm.o(i.AIR780ERunATCmdProc)
    AIR780ESearchingNetworkProc              0x08006c7d   Thumb Code   262  air780efsm.o(i.AIR780ESearchingNetworkProc)
    AIR780ESocketCloseProc                   0x08006dc9   Thumb Code   140  air780esocket.o(i.AIR780ESocketCloseProc)
    AIR780ESocketConnectProc                 0x08006e8d   Thumb Code   294  air780esocket.o(i.AIR780ESocketConnectProc)
    AIR780ESocketSendDataProc                0x08007029   Thumb Code   232  air780esocket.o(i.AIR780ESocketSendDataProc)
    AIR780ESocket_Poll                       0x08007155   Thumb Code   158  air780esocket.o(i.AIR780ESocket_Poll)
    AIR780EWaitSimCardReadyProc              0x080071fd   Thumb Code   162  air780efsm.o(i.AIR780EWaitSimCardReadyProc)
    AIR780E_IsIPReady                        0x08007305   Thumb Code    24  air780efsm.o(i.AIR780E_IsIPReady)
    Anchor_RecNearPoll                       0x08007691   Thumb Code   294  dw_mbx_tag.o(i.Anchor_RecNearPoll)
    Bat_Percent_Poll                         0x080077d9   Thumb Code    28  main.o(i.Bat_Percent_Poll)
    Checksum_u16                             0x080077f9   Thumb Code    26  dw_app.o(i.Checksum_u16)
    CmpTagInList                             0x08007815   Thumb Code    40  dw_mbx_tag.o(i.CmpTagInList)
    DBG_GetMode                              0x08007845   Thumb Code     6  dbg.o(i.DBG_GetMode)
    DBG_Init                                 0x08007851   Thumb Code    76  dbg.o(i.DBG_Init)
    DBG_Poll                                 0x080078b5   Thumb Code   274  dbg.o(i.DBG_Poll)
    DBG_SetMode                              0x08007a2d   Thumb Code     8  dbg.o(i.DBG_SetMode)
    DMA1_Channel2_3_IRQHandler               0x08007a39   Thumb Code    10  stm32l0xx_it.o(i.DMA1_Channel2_3_IRQHandler)
    DMA1_Channel4_5_6_7_IRQHandler           0x08007a49   Thumb Code    16  stm32l0xx_it.o(i.DMA1_Channel4_5_6_7_IRQHandler)
    Delay_Ms                                 0x08007a8d   Thumb Code    14  delay.o(i.Delay_Ms)
    Delay_Us                                 0x08007a9b   Thumb Code   140  delay.o(i.Delay_Us)
    Dw1000_Init                              0x08007b29   Thumb Code    66  dw_app.o(i.Dw1000_Init)
    EXTI0_1_IRQHandler                       0x08007b79   Thumb Code    10  stm32l0xx_it.o(i.EXTI0_1_IRQHandler)
    EXTI4_15_IRQHandler                      0x08007b83   Thumb Code    28  stm32l0xx_it.o(i.EXTI4_15_IRQHandler)
    Error_Handler                            0x08007b9f   Thumb Code     4  main.o(i.Error_Handler)
    FLASH_PageErase                          0x08007ba5   Thumb Code    34  stm32l0xx_hal_flash_ex.o(i.FLASH_PageErase)
    FLASH_Prepare                            0x08007bd1   Thumb Code    60  flash.o(i.FLASH_Prepare)
    FLASH_Read                               0x08007c11   Thumb Code    18  flash.o(i.FLASH_Read)
    FLASH_WaitForLastOperation               0x08007cb5   Thumb Code   106  stm32l0xx_hal_flash.o(i.FLASH_WaitForLastOperation)
    FLASH_Write                              0x08007d25   Thumb Code    60  flash.o(i.FLASH_Write)
    Fangchai_Panduan_Poll                    0x08007e11   Thumb Code    52  main.o(i.Fangchai_Panduan_Poll)
    GPS_Close_Init                           0x08007ec5   Thumb Code    22  main.o(i.GPS_Close_Init)
    GPS_Init                                 0x08007f3d   Thumb Code   100  gps.o(i.GPS_Init)
    GPS_ParseRMC                             0x0800820d   Thumb Code   384  gps.o(i.GPS_ParseRMC)
    GPS_PinRegister                          0x080083c5   Thumb Code    12  gps.o(i.GPS_PinRegister)
    GPS_Poll                                 0x080083d5   Thumb Code    32  gps.o(i.GPS_Poll)
    GPS_PowerOff                             0x080083f5   Thumb Code    22  gps.o(i.GPS_PowerOff)
    GPS_PowerOn                              0x08008411   Thumb Code    22  gps.o(i.GPS_PowerOn)
    Get_ADC_Value                            0x080084cd   Thumb Code    36  adc.o(i.Get_ADC_Value)
    Get_Battary                              0x080084f5   Thumb Code   168  adc.o(i.Get_Battary)
    Gps_Chongqi_Poll                         0x080085c1   Thumb Code    62  main.o(i.Gps_Chongqi_Poll)
    HAL_ADC_ConfigChannel                    0x0800860d   Thumb Code   140  stm32l0xx_hal_adc.o(i.HAL_ADC_ConfigChannel)
    HAL_ADC_GetState                         0x080086a1   Thumb Code     4  stm32l0xx_hal_adc.o(i.HAL_ADC_GetState)
    HAL_ADC_GetValue                         0x080086a5   Thumb Code     6  stm32l0xx_hal_adc.o(i.HAL_ADC_GetValue)
    HAL_ADC_Init                             0x080086ad   Thumb Code   446  stm32l0xx_hal_adc.o(i.HAL_ADC_Init)
    HAL_ADC_MspInit                          0x08008875   Thumb Code    72  stm32l0xx_hal_msp.o(i.HAL_ADC_MspInit)
    HAL_ADC_PollForConversion                0x080088c5   Thumb Code   200  stm32l0xx_hal_adc.o(i.HAL_ADC_PollForConversion)
    HAL_ADC_Start                            0x0800898d   Thumb Code    86  stm32l0xx_hal_adc.o(i.HAL_ADC_Start)
    HAL_DMA_Abort                            0x080089e9   Thumb Code    68  stm32l0xx_hal_dma.o(i.HAL_DMA_Abort)
    HAL_DMA_Abort_IT                         0x08008a2d   Thumb Code    76  stm32l0xx_hal_dma.o(i.HAL_DMA_Abort_IT)
    HAL_DMA_DeInit                           0x08008a79   Thumb Code    94  stm32l0xx_hal_dma.o(i.HAL_DMA_DeInit)
    HAL_DMA_IRQHandler                       0x08008ae1   Thumb Code   168  stm32l0xx_hal_dma.o(i.HAL_DMA_IRQHandler)
    HAL_DMA_Init                             0x08008b89   Thumb Code   132  stm32l0xx_hal_dma.o(i.HAL_DMA_Init)
    HAL_DMA_Start_IT                         0x08008c19   Thumb Code   104  stm32l0xx_hal_dma.o(i.HAL_DMA_Start_IT)
    HAL_Delay                                0x08008c81   Thumb Code    32  stm32l0xx_hal.o(i.HAL_Delay)
    HAL_FLASHEx_Erase                        0x08008ca5   Thumb Code   106  stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase)
    HAL_FLASH_Lock                           0x08008d1d   Thumb Code    22  stm32l0xx_hal_flash.o(i.HAL_FLASH_Lock)
    HAL_FLASH_Program                        0x08008d39   Thumb Code    50  stm32l0xx_hal_flash.o(i.HAL_FLASH_Program)
    HAL_FLASH_Unlock                         0x08008d75   Thumb Code    70  stm32l0xx_hal_flash.o(i.HAL_FLASH_Unlock)
    HAL_GPIO_DeInit                          0x08008dd1   Thumb Code   212  stm32l0xx_hal_gpio.o(i.HAL_GPIO_DeInit)
    HAL_GPIO_EXTI_Callback                   0x08008ec1   Thumb Code    82  main.o(i.HAL_GPIO_EXTI_Callback)
    HAL_GPIO_EXTI_IRQHandler                 0x08008f19   Thumb Code    18  stm32l0xx_hal_gpio.o(i.HAL_GPIO_EXTI_IRQHandler)
    HAL_GPIO_Init                            0x08008f31   Thumb Code   412  stm32l0xx_hal_gpio.o(i.HAL_GPIO_Init)
    HAL_GPIO_ReadPin                         0x080090ed   Thumb Code    10  stm32l0xx_hal_gpio.o(i.HAL_GPIO_ReadPin)
    HAL_GPIO_WritePin                        0x080090f7   Thumb Code    12  stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin)
    HAL_GetTick                              0x08009105   Thumb Code     6  stm32l0xx_hal.o(i.HAL_GetTick)
    HAL_IWDG_Init                            0x08009111   Thumb Code    94  stm32l0xx_hal_iwdg.o(i.HAL_IWDG_Init)
    HAL_IWDG_Refresh                         0x0800917d   Thumb Code    10  stm32l0xx_hal_iwdg.o(i.HAL_IWDG_Refresh)
    HAL_IncTick                              0x0800918d   Thumb Code    12  stm32l0xx_hal.o(i.HAL_IncTick)
    HAL_Init                                 0x0800919d   Thumb Code    36  stm32l0xx_hal.o(i.HAL_Init)
    HAL_InitTick                             0x080091c5   Thumb Code    58  stm32l0xx_hal.o(i.HAL_InitTick)
    HAL_LPTIM_AutoReloadMatchCallback        0x08009209   Thumb Code     2  stm32l0xx_hal_lptim.o(i.HAL_LPTIM_AutoReloadMatchCallback)
    HAL_LPTIM_AutoReloadWriteCallback        0x0800920b   Thumb Code     2  stm32l0xx_hal_lptim.o(i.HAL_LPTIM_AutoReloadWriteCallback)
    HAL_LPTIM_CompareMatchCallback           0x0800920d   Thumb Code   200  main.o(i.HAL_LPTIM_CompareMatchCallback)
    HAL_LPTIM_CompareWriteCallback           0x080092e1   Thumb Code     2  stm32l0xx_hal_lptim.o(i.HAL_LPTIM_CompareWriteCallback)
    HAL_LPTIM_DirectionDownCallback          0x080092e3   Thumb Code     2  stm32l0xx_hal_lptim.o(i.HAL_LPTIM_DirectionDownCallback)
    HAL_LPTIM_DirectionUpCallback            0x080092e5   Thumb Code     2  stm32l0xx_hal_lptim.o(i.HAL_LPTIM_DirectionUpCallback)
    HAL_LPTIM_IRQHandler                     0x080092e7   Thumb Code   202  stm32l0xx_hal_lptim.o(i.HAL_LPTIM_IRQHandler)
    HAL_LPTIM_Init                           0x080093b1   Thumb Code   162  stm32l0xx_hal_lptim.o(i.HAL_LPTIM_Init)
    HAL_LPTIM_MspInit                        0x08009461   Thumb Code    38  stm32l0xx_hal_msp.o(i.HAL_LPTIM_MspInit)
    HAL_LPTIM_ReadCounter                    0x08009491   Thumb Code     6  stm32l0xx_hal_lptim.o(i.HAL_LPTIM_ReadCounter)
    HAL_LPTIM_TimeOut_Start_IT               0x08009499   Thumb Code   132  stm32l0xx_hal_lptim.o(i.HAL_LPTIM_TimeOut_Start_IT)
    HAL_LPTIM_TriggerCallback                0x08009521   Thumb Code     2  stm32l0xx_hal_lptim.o(i.HAL_LPTIM_TriggerCallback)
    HAL_MspInit                              0x08009525   Thumb Code    20  stm32l0xx_hal_msp.o(i.HAL_MspInit)
    HAL_NVIC_DisableIRQ                      0x0800953d   Thumb Code    26  stm32l0xx_hal_cortex.o(i.HAL_NVIC_DisableIRQ)
    HAL_NVIC_EnableIRQ                       0x0800955d   Thumb Code    18  stm32l0xx_hal_cortex.o(i.HAL_NVIC_EnableIRQ)
    HAL_NVIC_SetPriority                     0x08009575   Thumb Code     8  stm32l0xx_hal_cortex.o(i.HAL_NVIC_SetPriority)
    HAL_NVIC_SystemReset                     0x0800957d   Thumb Code    18  stm32l0xx_hal_cortex.o(i.HAL_NVIC_SystemReset)
    HAL_PWR_EnableBkUpAccess                 0x08009599   Thumb Code    12  stm32l0xx_hal_pwr.o(i.HAL_PWR_EnableBkUpAccess)
    HAL_PWR_EnterSTOPMode                    0x080095a9   Thumb Code    88  stm32l0xx_hal_pwr.o(i.HAL_PWR_EnterSTOPMode)
    HAL_RCCEx_PeriphCLKConfig                0x0800960d   Thumb Code   368  stm32l0xx_hal_rcc_ex.o(i.HAL_RCCEx_PeriphCLKConfig)
    HAL_RCC_ClockConfig                      0x08009789   Thumb Code   386  stm32l0xx_hal_rcc.o(i.HAL_RCC_ClockConfig)
    HAL_RCC_GetPCLK1Freq                     0x08009925   Thumb Code    20  stm32l0xx_hal_rcc.o(i.HAL_RCC_GetPCLK1Freq)
    HAL_RCC_GetPCLK2Freq                     0x08009945   Thumb Code    20  stm32l0xx_hal_rcc.o(i.HAL_RCC_GetPCLK2Freq)
    HAL_RCC_GetSysClockFreq                  0x08009965   Thumb Code   108  stm32l0xx_hal_rcc.o(i.HAL_RCC_GetSysClockFreq)
    HAL_RCC_OscConfig                        0x080099dd   Thumb Code  1074  stm32l0xx_hal_rcc.o(i.HAL_RCC_OscConfig)
    HAL_RTC_Init                             0x08009e11   Thumb Code   166  stm32l0xx_hal_rtc.o(i.HAL_RTC_Init)
    HAL_RTC_MspInit                          0x08009ebd   Thumb Code    22  stm32l0xx_hal_msp.o(i.HAL_RTC_MspInit)
    HAL_RTC_WaitForSynchro                   0x08009edd   Thumb Code    48  stm32l0xx_hal_rtc.o(i.HAL_RTC_WaitForSynchro)
    HAL_SPI_Init                             0x08009f11   Thumb Code   182  stm32l0xx_hal_spi.o(i.HAL_SPI_Init)
    HAL_SPI_MspInit                          0x08009fc9   Thumb Code    78  stm32l0xx_hal_msp.o(i.HAL_SPI_MspInit)
    HAL_SPI_Transmit                         0x0800a021   Thumb Code   352  stm32l0xx_hal_spi.o(i.HAL_SPI_Transmit)
    HAL_SPI_TransmitReceive                  0x0800a181   Thumb Code   496  stm32l0xx_hal_spi.o(i.HAL_SPI_TransmitReceive)
    HAL_SYSTICK_Config                       0x0800a371   Thumb Code    38  stm32l0xx_hal_cortex.o(i.HAL_SYSTICK_Config)
    HAL_TIMEx_MasterConfigSynchronization    0x0800a3a1   Thumb Code    84  stm32l0xx_hal_tim_ex.o(i.HAL_TIMEx_MasterConfigSynchronization)
    HAL_TIMEx_RemapConfig                    0x0800a401   Thumb Code    28  stm32l0xx_hal_tim_ex.o(i.HAL_TIMEx_RemapConfig)
    HAL_TIM_MspPostInit                      0x0800a41d   Thumb Code    66  stm32l0xx_hal_msp.o(i.HAL_TIM_MspPostInit)
    HAL_TIM_PWM_ConfigChannel                0x0800a46d   Thumb Code   208  stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_ConfigChannel)
    HAL_TIM_PWM_Init                         0x0800a53d   Thumb Code    62  stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Init)
    HAL_TIM_PWM_MspInit                      0x0800a57d   Thumb Code    20  stm32l0xx_hal_msp.o(i.HAL_TIM_PWM_MspInit)
    HAL_UARTEx_RxEventCallback               0x0800a599   Thumb Code     2  stm32l0xx_hal_uart.o(i.HAL_UARTEx_RxEventCallback)
    HAL_UARTEx_WakeupCallback                0x0800a59b   Thumb Code     2  stm32l0xx_hal_uart_ex.o(i.HAL_UARTEx_WakeupCallback)
    HAL_UART_DeInit                          0x0800a59d   Thumb Code    66  stm32l0xx_hal_uart.o(i.HAL_UART_DeInit)
    HAL_UART_ErrorCallback                   0x0800a5df   Thumb Code     8  bsp.o(i.HAL_UART_ErrorCallback)
    HAL_UART_IRQHandler                      0x0800a5e9   Thumb Code   672  stm32l0xx_hal_uart.o(i.HAL_UART_IRQHandler)
    HAL_UART_Init                            0x0800a895   Thumb Code   106  stm32l0xx_hal_uart.o(i.HAL_UART_Init)
    HAL_UART_MspDeInit                       0x0800a901   Thumb Code   128  stm32l0xx_hal_msp.o(i.HAL_UART_MspDeInit)
    HAL_UART_MspInit                         0x0800a999   Thumb Code   410  stm32l0xx_hal_msp.o(i.HAL_UART_MspInit)
    HAL_UART_Receive_DMA                     0x0800ab5d   Thumb Code    94  stm32l0xx_hal_uart.o(i.HAL_UART_Receive_DMA)
    HAL_UART_Receive_IT                      0x0800abc1   Thumb Code    94  stm32l0xx_hal_uart.o(i.HAL_UART_Receive_IT)
    HAL_UART_RxCpltCallback                  0x0800ac25   Thumb Code     8  bsp.o(i.HAL_UART_RxCpltCallback)
    HAL_UART_RxHalfCpltCallback              0x0800ac2d   Thumb Code     2  stm32l0xx_hal_uart.o(i.HAL_UART_RxHalfCpltCallback)
    HAL_UART_Transmit                        0x0800ac2f   Thumb Code   192  stm32l0xx_hal_uart.o(i.HAL_UART_Transmit)
    HAL_UART_Transmit_DMA                    0x0800acf1   Thumb Code   158  stm32l0xx_hal_uart.o(i.HAL_UART_Transmit_DMA)
    HAL_UART_Transmit_IT                     0x0800ad9d   Thumb Code   112  stm32l0xx_hal_uart.o(i.HAL_UART_Transmit_IT)
    HAL_UART_TxCpltCallback                  0x0800ae15   Thumb Code     8  bsp.o(i.HAL_UART_TxCpltCallback)
    HAL_UART_TxHalfCpltCallback              0x0800ae1d   Thumb Code     2  stm32l0xx_hal_uart.o(i.HAL_UART_TxHalfCpltCallback)
    HIDO_ATLiteCmdParse                      0x0800ae1f   Thumb Code   150  hido_atliteparse.o(i.HIDO_ATLiteCmdParse)
    HIDO_ATLiteCmdSend                       0x0800aeb5   Thumb Code    66  hido_atlite.o(i.HIDO_ATLiteCmdSend)
    HIDO_ATLiteCmdSendOver                   0x0800aefd   Thumb Code    14  hido_atlite.o(i.HIDO_ATLiteCmdSendOver)
    HIDO_ATLiteDataSend                      0x0800af0d   Thumb Code    64  hido_atlite.o(i.HIDO_ATLiteDataSend)
    HIDO_ATLiteDeviceInit                    0x0800af55   Thumb Code    98  hido_atlite.o(i.HIDO_ATLiteDeviceInit)
    HIDO_ATLiteDeviceRegister                0x0800afb9   Thumb Code    24  hido_atlite.o(i.HIDO_ATLiteDeviceRegister)
    HIDO_ATLiteEvent                         0x0800afd5   Thumb Code    56  hido_atlite.o(i.HIDO_ATLiteEvent)
    HIDO_ATLiteGetDebugFlag                  0x0800b00d   Thumb Code     6  hido_atlite.o(i.HIDO_ATLiteGetDebugFlag)
    HIDO_ATLitePoll                          0x0800b029   Thumb Code    80  hido_atlite.o(i.HIDO_ATLitePoll)
    HIDO_ArraryQueueIn                       0x0800b0a5   Thumb Code    54  hido_arraryqueue.o(i.HIDO_ArraryQueueIn)
    HIDO_ArraryQueueInit                     0x0800b0db   Thumb Code    18  hido_arraryqueue.o(i.HIDO_ArraryQueueInit)
    HIDO_ArraryQueueIsEmpty                  0x0800b0ed   Thumb Code    28  hido_arraryqueue.o(i.HIDO_ArraryQueueIsEmpty)
    HIDO_ArraryQueueIsFull                   0x0800b109   Thumb Code    28  hido_arraryqueue.o(i.HIDO_ArraryQueueIsFull)
    HIDO_ArraryQueueOut                      0x0800b125   Thumb Code    54  hido_arraryqueue.o(i.HIDO_ArraryQueueOut)
    HIDO_BaseQueueDequeue                    0x0800b1b5   Thumb Code    44  hido_basequeue.o(i.HIDO_BaseQueueDequeue)
    HIDO_BaseQueueEnqueue                    0x0800b1e1   Thumb Code    46  hido_basequeue.o(i.HIDO_BaseQueueEnqueue)
    HIDO_BaseQueueGetContinuousSize          0x0800b20f   Thumb Code   110  hido_basequeue.o(i.HIDO_BaseQueueGetContinuousSize)
    HIDO_BaseQueueGetFront                   0x0800b27d   Thumb Code     6  hido_basequeue.o(i.HIDO_BaseQueueGetFront)
    HIDO_BaseQueueGetRear                    0x0800b283   Thumb Code     6  hido_basequeue.o(i.HIDO_BaseQueueGetRear)
    HIDO_BaseQueueInit                       0x0800b289   Thumb Code    24  hido_basequeue.o(i.HIDO_BaseQueueInit)
    HIDO_BaseQueueIsEmpty                    0x0800b2a1   Thumb Code    24  hido_basequeue.o(i.HIDO_BaseQueueIsEmpty)
    HIDO_BaseQueueIsFull                     0x0800b2b9   Thumb Code    26  hido_basequeue.o(i.HIDO_BaseQueueIsFull)
    HIDO_Debug                               0x0800b2d5   Thumb Code    62  dbg.o(i.HIDO_Debug)
    HIDO_DebugEx                             0x0800b31d   Thumb Code    72  dbg.o(i.HIDO_DebugEx)
    HIDO_DebugHex                            0x0800b36d   Thumb Code    94  dbg.o(i.HIDO_DebugHex)
    HIDO_DebugString                         0x0800b3d5   Thumb Code    26  dbg.o(i.HIDO_DebugString)
    HIDO_FSMEventExecute                     0x0800b3f5   Thumb Code   136  hido_fsm.o(i.HIDO_FSMEventExecute)
    HIDO_FSMRegister                         0x0800b4bd   Thumb Code   102  hido_fsm.o(i.HIDO_FSMRegister)
    HIDO_FSMRegisterDebugFunc                0x0800b52d   Thumb Code    16  hido_fsm.o(i.HIDO_FSMRegisterDebugFunc)
    HIDO_FSMStartTimer                       0x0800b53d   Thumb Code    46  hido_fsm.o(i.HIDO_FSMStartTimer)
    HIDO_FSMStateChange                      0x0800b571   Thumb Code   138  hido_fsm.o(i.HIDO_FSMStateChange)
    HIDO_InputPoll                           0x0800bff5   Thumb Code   270  hido_input.o(i.HIDO_InputPoll)
    HIDO_InputRegister                       0x0800c10d   Thumb Code    16  hido_input.o(i.HIDO_InputRegister)
    HIDO_InputUserVerify                     0x0800c121   Thumb Code     6  hido_input.o(i.HIDO_InputUserVerify)
    HIDO_Lock                                0x0800c129   Thumb Code    44  hido_lock.o(i.HIDO_Lock)
    HIDO_ShellCmdRegister                    0x0800c195   Thumb Code    88  hido_shell.o(i.HIDO_ShellCmdRegister)
    HIDO_ShellExecute                        0x0800c1f5   Thumb Code   128  hido_shell.o(i.HIDO_ShellExecute)
    HIDO_ShellGetCmdCount                    0x0800c279   Thumb Code     6  hido_shell.o(i.HIDO_ShellGetCmdCount)
    HIDO_ShellGetCmdName                     0x0800c285   Thumb Code    22  hido_shell.o(i.HIDO_ShellGetCmdName)
    HIDO_ShellGetInput                       0x0800c2a9   Thumb Code     6  hido_shell.o(i.HIDO_ShellGetInput)
    HIDO_ShellSetInput                       0x0800c349   Thumb Code     6  hido_shell.o(i.HIDO_ShellSetInput)
    HIDO_TimerCancel                         0x0800c355   Thumb Code    36  hido_timer.o(i.HIDO_TimerCancel)
    HIDO_TimerCreate                         0x0800c37d   Thumb Code    72  hido_timer.o(i.HIDO_TimerCreate)
    HIDO_TimerGetTick                        0x0800c3dd   Thumb Code     6  hido_timer.o(i.HIDO_TimerGetTick)
    HIDO_TimerPoll                           0x0800c3e9   Thumb Code   146  hido_timer.o(i.HIDO_TimerPoll)
    HIDO_TimerStart                          0x0800c485   Thumb Code    78  hido_timer.o(i.HIDO_TimerStart)
    HIDO_TimerTick                           0x0800c4dd   Thumb Code    30  hido_timer.o(i.HIDO_TimerTick)
    HIDO_UnLock                              0x0800c505   Thumb Code    52  hido_lock.o(i.HIDO_UnLock)
    HIDO_UtilByteArrayToHexString            0x0800c53d   Thumb Code   126  hido_util.o(i.HIDO_UtilByteArrayToHexString)
    HIDO_UtilByteToChar                      0x0800c5bb   Thumb Code    34  hido_util.o(i.HIDO_UtilByteToChar)
    HIDO_UtilBzero                           0x0800c5dd   Thumb Code    16  hido_util.o(i.HIDO_UtilBzero)
    HIDO_UtilCharToHex                       0x0800c5ed   Thumb Code    50  hido_util.o(i.HIDO_UtilCharToHex)
    HIDO_UtilHexStrBufToInt                  0x0800c61f   Thumb Code    32  hido_util.o(i.HIDO_UtilHexStrBufToInt)
    HIDO_UtilHexStrToInt                     0x0800c63f   Thumb Code    30  hido_util.o(i.HIDO_UtilHexStrToInt)
    HIDO_UtilIPStringToByteArrary            0x0800c65d   Thumb Code    82  hido_util.o(i.HIDO_UtilIPStringToByteArrary)
    HIDO_UtilIsAsciiString                   0x0800c6bd   Thumb Code    52  hido_util.o(i.HIDO_UtilIsAsciiString)
    HIDO_UtilParseFormat                     0x0800c6f1   Thumb Code   486  hido_util.o(i.HIDO_UtilParseFormat)
    HIDO_UtilSnprintf                        0x0800c8d7   Thumb Code    48  hido_util.o(i.HIDO_UtilSnprintf)
    HIDO_UtilStrBufToInt                     0x0800c907   Thumb Code    34  hido_util.o(i.HIDO_UtilStrBufToInt)
    HIDO_UtilStrSplit                        0x0800c929   Thumb Code    76  hido_util.o(i.HIDO_UtilStrSplit)
    HIDO_UtilStrToInt                        0x0800c975   Thumb Code    72  hido_util.o(i.HIDO_UtilStrToInt)
    HIDO_UtilStrnchr                         0x0800c9bd   Thumb Code    32  hido_util.o(i.HIDO_UtilStrnchr)
    HIDO_VLQDequeue                          0x0800c9dd   Thumb Code    44  hido_vlqueue.o(i.HIDO_VLQDequeue)
    HIDO_VLQEnqueue                          0x0800ca09   Thumb Code    44  hido_vlqueue.o(i.HIDO_VLQEnqueue)
    HIDO_VLQGetDequeueMember                 0x0800ca35   Thumb Code    60  hido_vlqueue.o(i.HIDO_VLQGetDequeueMember)
    HIDO_VLQGetEnqueueMember                 0x0800ca71   Thumb Code    92  hido_vlqueue.o(i.HIDO_VLQGetEnqueueMember)
    HIDO_VLQInit                             0x0800cacd   Thumb Code    74  hido_vlqueue.o(i.HIDO_VLQInit)
    HardFault_Handler                        0x0800cb17   Thumb Code     2  stm32l0xx_it.o(i.HardFault_Handler)
    HexToAsciiSendUDP                        0x0800cb19   Thumb Code    76  app.o(i.HexToAsciiSendUDP)
    IIC2_Ack                                 0x0800cb6d   Thumb Code    62  lis3dh_driver.o(i.IIC2_Ack)
    IIC2_NAck                                0x0800cbb1   Thumb Code    62  lis3dh_driver.o(i.IIC2_NAck)
    IIC2_Read_Byte                           0x0800cbf5   Thumb Code    94  lis3dh_driver.o(i.IIC2_Read_Byte)
    IIC2_Send_Byte                           0x0800cc59   Thumb Code    94  lis3dh_driver.o(i.IIC2_Send_Byte)
    IIC2_Start                               0x0800ccbd   Thumb Code    56  lis3dh_driver.o(i.IIC2_Start)
    IIC2_Stop                                0x0800ccf9   Thumb Code    64  lis3dh_driver.o(i.IIC2_Stop)
    IIC2_Wait_Ack                            0x0800cd3d   Thumb Code    86  lis3dh_driver.o(i.IIC2_Wait_Ack)
    IdleTask                                 0x0800cd99   Thumb Code    42  app.o(i.IdleTask)
    Internet_Init                            0x0800cdcd   Thumb Code    16  internet.o(i.Internet_Init)
    Internet_IsIPReady                       0x0800cddd   Thumb Code     8  internet.o(i.Internet_IsIPReady)
    Internet_Poll                            0x0800cde5   Thumb Code    16  internet.o(i.Internet_Poll)
    LIS3DH_Data_Init                         0x0800cec5   Thumb Code    98  lis3dh_driver.o(i.LIS3DH_Data_Init)
    LIS3DH_GetWHO_AM_I                       0x0800cf31   Thumb Code    18  lis3dh_driver.o(i.LIS3DH_GetWHO_AM_I)
    LIS3DH_ReadOneByte                       0x0800cf43   Thumb Code    58  lis3dh_driver.o(i.LIS3DH_ReadOneByte)
    LIS3DH_ReadReg                           0x0800cf7d   Thumb Code    14  lis3dh_driver.o(i.LIS3DH_ReadReg)
    LIS3DH_WriteOneByte                      0x0800cf8b   Thumb Code    52  lis3dh_driver.o(i.LIS3DH_WriteOneByte)
    LIS3DH_WriteReg                          0x0800cfbf   Thumb Code    10  lis3dh_driver.o(i.LIS3DH_WriteReg)
    LPTIM1_IRQHandler                        0x0800cfc9   Thumb Code    10  stm32l0xx_it.o(i.LPTIM1_IRQHandler)
    LPTIM_Disable                            0x0800cfd9   Thumb Code   228  stm32l0xx_hal_lptim.o(i.LPTIM_Disable)
    Main_Poll                                0x0800d4ad   Thumb Code   218  app.o(i.Main_Poll)
    MbxTagUwbRec                             0x0800d5b1   Thumb Code   336  dw_mbx_tag.o(i.MbxTagUwbRec)
    Module_GetCCID                           0x0800d725   Thumb Code     4  module.o(i.Module_GetCCID)
    Module_GetIMEI                           0x0800d72d   Thumb Code     4  module.o(i.Module_GetIMEI)
    Module_GetIMSI                           0x0800d735   Thumb Code     4  module.o(i.Module_GetIMSI)
    Module_GetLBSLocationAsync               0x0800d73d   Thumb Code    14  module.o(i.Module_GetLBSLocationAsync)
    Module_GetRunATCmd                       0x0800d751   Thumb Code     4  module.o(i.Module_GetRunATCmd)
    Module_LBSLocationNeedRequest            0x0800d759   Thumb Code    10  module.o(i.Module_LBSLocationNeedRequest)
    Module_LBSLocationResult                 0x0800d769   Thumb Code    30  module.o(i.Module_LBSLocationResult)
    Module_NeedPowerOff                      0x0800d791   Thumb Code    12  module.o(i.Module_NeedPowerOff)
    Module_NeedPowerOn                       0x0800d7a1   Thumb Code    12  module.o(i.Module_NeedPowerOn)
    Module_PowerEvent                        0x0800d7b1   Thumb Code    18  module.o(i.Module_PowerEvent)
    Module_PowerOff                          0x0800d7c9   Thumb Code    16  module.o(i.Module_PowerOff)
    Module_PowerOn                           0x0800d7dd   Thumb Code    16  module.o(i.Module_PowerOn)
    Module_RunATCmd                          0x0800d7f1   Thumb Code    32  module.o(i.Module_RunATCmd)
    Module_RunATCmdEnable                    0x0800d819   Thumb Code    10  module.o(i.Module_RunATCmdEnable)
    Module_RunATCmdResult                    0x0800d829   Thumb Code     4  module.o(i.Module_RunATCmdResult)
    Module_SetCCID                           0x0800d82d   Thumb Code    20  module.o(i.Module_SetCCID)
    Module_SetIMEI                           0x0800d845   Thumb Code    38  module.o(i.Module_SetIMEI)
    Module_SetIMSI                           0x0800d871   Thumb Code    38  module.o(i.Module_SetIMSI)
    Module_SignalIntensityNeedRequest        0x0800d89d   Thumb Code    10  module.o(i.Module_SignalIntensityNeedRequest)
    Module_SignalIntensityResult             0x0800d8ad   Thumb Code    22  module.o(i.Module_SignalIntensityResult)
    NMI_Handler                              0x0800d8c9   Thumb Code     2  stm32l0xx_it.o(i.NMI_Handler)
    PendSV_Handler                           0x0800d8cb   Thumb Code     2  stm32l0xx_it.o(i.PendSV_Handler)
    PowerLedTask                             0x0800d8cd   Thumb Code   318  app.o(i.PowerLedTask)
    Powerled_Poll                            0x0800da4d   Thumb Code    26  main.o(i.Powerled_Poll)
    Program_Init                             0x0800da71   Thumb Code   212  app.o(i.Program_Init)
    RGB_Rst                                  0x0800dbf5   Thumb Code    18  ws2812.o(i.RGB_Rst)
    RGB_Set                                  0x0800dc0d   Thumb Code    62  ws2812.o(i.RGB_Set)
    RGB_Set_BLUE                             0x0800dc51   Thumb Code   100  ws2812.o(i.RGB_Set_BLUE)
    RGB_Set_Down                             0x0800dcb5   Thumb Code    32  ws2812.o(i.RGB_Set_Down)
    RGB_Set_GREEN                            0x0800dcd9   Thumb Code   100  ws2812.o(i.RGB_Set_GREEN)
    RGB_Set_LEDOFF                           0x0800dd3d   Thumb Code   100  ws2812.o(i.RGB_Set_LEDOFF)
    RGB_Set_RED                              0x0800dda1   Thumb Code   100  ws2812.o(i.RGB_Set_RED)
    RGB_Set_Up                               0x0800de05   Thumb Code    50  ws2812.o(i.RGB_Set_Up)
    RGB_Set_WHITE                            0x0800de3d   Thumb Code   100  ws2812.o(i.RGB_Set_WHITE)
    RTC_EnterInitMode                        0x0800dea1   Thumb Code    70  stm32l0xx_hal_rtc.o(i.RTC_EnterInitMode)
    RTC_ExitInitMode                         0x0800dee7   Thumb Code    46  stm32l0xx_hal_rtc.o(i.RTC_ExitInitMode)
    Reset_DW1000                             0x0800df15   Thumb Code    88  dw_driver.o(i.Reset_DW1000)
    SPIFlash_BulkErase                       0x0800df71   Thumb Code    72  spiflash.o(i.SPIFlash_BulkErase)
    SPIFlash_Erase                           0x0800dff1   Thumb Code   106  spiflash.o(i.SPIFlash_Erase)
    SPIFlash_Init                            0x0800e065   Thumb Code   112  spiflash.o(i.SPIFlash_Init)
    SPIFlash_PinRegister                     0x0800e195   Thumb Code    20  spiflash.o(i.SPIFlash_PinRegister)
    SPIFlash_ReadJedecID                     0x0800e1ad   Thumb Code    72  spiflash.o(i.SPIFlash_ReadJedecID)
    SPIFlash_Write                           0x0800e2e1   Thumb Code    98  spiflash.o(i.SPIFlash_Write)
    SPI_ReadWrite                            0x0800e3e5   Thumb Code    44  spi_hal.o(i.SPI_ReadWrite)
    SPI_Register                             0x0800e415   Thumb Code    10  spi_hal.o(i.SPI_Register)
    SPI_Write                                0x0800e4dd   Thumb Code    24  spi_hal.o(i.SPI_Write)
    SVC_Handler                              0x0800e4f9   Thumb Code     2  stm32l0xx_it.o(i.SVC_Handler)
    SendComMap                               0x0800e4fd   Thumb Code   116  serial_at_cmd_app.o(i.SendComMap)
    Set4LEDColor                             0x0800e57d   Thumb Code    54  ws2812.o(i.Set4LEDColor)
    Set4LEDColor_Off                         0x0800e5b9   Thumb Code    14  ws2812.o(i.Set4LEDColor_Off)
    Shell_Init                               0x0800e9d9   Thumb Code    14  shell.o(i.Shell_Init)
    Sleep_Panduan_Poll                       0x0800f4ed   Thumb Code    38  main.o(i.Sleep_Panduan_Poll)
    Socket_Close                             0x0800f521   Thumb Code    40  socket.o(i.Socket_Close)
    Socket_ClosedAll                         0x0800f551   Thumb Code    58  socket.o(i.Socket_ClosedAll)
    Socket_Connect                           0x0800f595   Thumb Code    50  socket.o(i.Socket_Connect)
    Socket_Create                            0x0800f5d5   Thumb Code   126  socket.o(i.Socket_Create)
    Socket_Destroy                           0x0800f65d   Thumb Code    28  socket.o(i.Socket_Destroy)
    Socket_GetRemoteAddr                     0x0800f681   Thumb Code    20  socket.o(i.Socket_GetRemoteAddr)
    Socket_GetRemotePort                     0x0800f6a1   Thumb Code    20  socket.o(i.Socket_GetRemotePort)
    Socket_GetSocketSendQueue                0x0800f6bd   Thumb Code    20  socket.o(i.Socket_GetSocketSendQueue)
    Socket_GetSocketState                    0x0800f6d9   Thumb Code    18  socket.o(i.Socket_GetSocketState)
    Socket_GetType                           0x0800f6f5   Thumb Code    20  socket.o(i.Socket_GetType)
    Socket_OnClosed                          0x0800f711   Thumb Code    52  socket.o(i.Socket_OnClosed)
    Socket_OnConnectFailed                   0x0800f74d   Thumb Code    44  socket.o(i.Socket_OnConnectFailed)
    Socket_OnConnected                       0x0800f781   Thumb Code   112  socket.o(i.Socket_OnConnected)
    Socket_OnRecv                            0x0800f7f9   Thumb Code    40  socket.o(i.Socket_OnRecv)
    Socket_Recv                              0x0800f829   Thumb Code   130  socket.o(i.Socket_Recv)
    Socket_RecvData                          0x0800f8b5   Thumb Code   110  socket.o(i.Socket_RecvData)
    Socket_Send                              0x0800f94d   Thumb Code    84  socket.o(i.Socket_Send)
    Socket_SetSocketState                    0x0800f9c5   Thumb Code    22  socket.o(i.Socket_SetSocketState)
    Spi_ChangePrescaler                      0x0800f9e5   Thumb Code    16  spi.o(i.Spi_ChangePrescaler)
    Stop_Mode_Poll                           0x0800f9f9   Thumb Code    86  app.o(i.Stop_Mode_Poll)
    Stop_chongdian_Mode_Poll                 0x0800fa61   Thumb Code    86  app.o(i.Stop_chongdian_Mode_Poll)
    SysTick_Handler                          0x0800fac9   Thumb Code    12  stm32l0xx_it.o(i.SysTick_Handler)
    SystemClock_Config                       0x0800fad5   Thumb Code   174  main.o(i.SystemClock_Config)
    SystemInit                               0x0800fb8d   Thumb Code     8  system_stm32l0xx.o(i.SystemInit)
    UART_AdvFeatureConfig                    0x0800fcd3   Thumb Code   202  stm32l0xx_hal_uart.o(i.UART_AdvFeatureConfig)
    UART_CheckIdleState                      0x0800fd9d   Thumb Code   190  stm32l0xx_hal_uart.o(i.UART_CheckIdleState)
    UART_SetConfig                           0x08010205   Thumb Code   492  stm32l0xx_hal_uart.o(i.UART_SetConfig)
    UART_Start_Receive_DMA                   0x08010419   Thumb Code   160  stm32l0xx_hal_uart.o(i.UART_Start_Receive_DMA)
    UART_Start_Receive_IT                    0x080104c5   Thumb Code   188  stm32l0xx_hal_uart.o(i.UART_Start_Receive_IT)
    UART_WaitOnFlagUntilTimeout              0x08010645   Thumb Code   138  stm32l0xx_hal_uart.o(i.UART_WaitOnFlagUntilTimeout)
    UDPClient_Heartbeat                      0x08010bb9   Thumb Code   120  udpclient.o(i.UDPClient_Heartbeat)
    UDPClient_Init                           0x08010c7d   Thumb Code    18  udpclient.o(i.UDPClient_Init)
    UDPClient_Poll                           0x08010c99   Thumb Code   108  udpclient.o(i.UDPClient_Poll)
    UDPClient_UploadGPS                      0x08010d79   Thumb Code    50  udpclient.o(i.UDPClient_UploadGPS)
    UDPClient_Uploadhex                      0x08010db9   Thumb Code    70  udpclient.o(i.UDPClient_Uploadhex)
    USART1_IRQHandler                        0x08010e09   Thumb Code    10  stm32l0xx_it.o(i.USART1_IRQHandler)
    USART2_IRQHandler                        0x08010e19   Thumb Code    10  stm32l0xx_it.o(i.USART2_IRQHandler)
    USART4_5_IRQHandler                      0x08010e29   Thumb Code    10  stm32l0xx_it.o(i.USART4_5_IRQHandler)
    Uart_GetChar                             0x08010e39   Thumb Code   118  uart.o(i.Uart_GetChar)
    Uart_GetHandle                           0x08010eb9   Thumb Code    30  uart.o(i.Uart_GetHandle)
    Uart_Init                                0x08010edd   Thumb Code   154  uart.o(i.Uart_Init)
    Uart_ReConfigBaudRate                    0x08010fd1   Thumb Code    50  uart.o(i.Uart_ReConfigBaudRate)
    Uart_ReInit                              0x08011009   Thumb Code   110  uart.o(i.Uart_ReInit)
    Uart_Register                            0x0801107d   Thumb Code    38  uart.o(i.Uart_Register)
    Uart_RxErrorFromISR                      0x080110a9   Thumb Code    62  uart.o(i.Uart_RxErrorFromISR)
    Uart_RxOverFromISR                       0x080110ed   Thumb Code    82  uart.o(i.Uart_RxOverFromISR)
    Uart_Send                                0x08011145   Thumb Code   212  uart.o(i.Uart_Send)
    Uart_TxOverFromISR                       0x0801121d   Thumb Code   128  uart.o(i.Uart_TxOverFromISR)
    UpdateProcess                            0x080112a1   Thumb Code   104  serial_at_cmd_app.o(i.UpdateProcess)
    UsartParseDataHandler                    0x0801131d   Thumb Code   264  serial_at_cmd_app.o(i.UsartParseDataHandler)
    Uwb_CS_di                                0x08011439   Thumb Code    34  spi.o(i.Uwb_CS_di)
    Uwb_Zubao_Poll                           0x08011471   Thumb Code   282  app.o(i.Uwb_Zubao_Poll)
    __0printf                                0x080115ad   Thumb Code    24  printfa.o(i.__0printf)
    __1printf                                0x080115ad   Thumb Code     0  printfa.o(i.__0printf)
    __2printf                                0x080115ad   Thumb Code     0  printfa.o(i.__0printf)
    __c89printf                              0x080115ad   Thumb Code     0  printfa.o(i.__0printf)
    printf                                   0x080115ad   Thumb Code     0  printfa.o(i.__0printf)
    __0snprintf                              0x080115cd   Thumb Code    46  printfa.o(i.__0snprintf)
    __1snprintf                              0x080115cd   Thumb Code     0  printfa.o(i.__0snprintf)
    __2snprintf                              0x080115cd   Thumb Code     0  printfa.o(i.__0snprintf)
    __c89snprintf                            0x080115cd   Thumb Code     0  printfa.o(i.__0snprintf)
    snprintf                                 0x080115cd   Thumb Code     0  printfa.o(i.__0snprintf)
    __0sprintf                               0x08011601   Thumb Code    36  printfa.o(i.__0sprintf)
    __1sprintf                               0x08011601   Thumb Code     0  printfa.o(i.__0sprintf)
    __2sprintf                               0x08011601   Thumb Code     0  printfa.o(i.__0sprintf)
    __c89sprintf                             0x08011601   Thumb Code     0  printfa.o(i.__0sprintf)
    sprintf                                  0x08011601   Thumb Code     0  printfa.o(i.__0sprintf)
    __0vsnprintf                             0x08011629   Thumb Code    40  printfa.o(i.__0vsnprintf)
    __1vsnprintf                             0x08011629   Thumb Code     0  printfa.o(i.__0vsnprintf)
    __2vsnprintf                             0x08011629   Thumb Code     0  printfa.o(i.__0vsnprintf)
    __c89vsnprintf                           0x08011629   Thumb Code     0  printfa.o(i.__0vsnprintf)
    vsnprintf                                0x08011629   Thumb Code     0  printfa.o(i.__0vsnprintf)
    __ARM_clz                                0x08011655   Thumb Code    46  depilogue.o(i.__ARM_clz)
    __ARM_common_ll_muluu                    0x08011683   Thumb Code    48  stm32l0xx_hal_rcc.o(i.__ARM_common_ll_muluu)
    __ARM_common_switch8                     0x080116b3   Thumb Code    26  stm32l0xx_hal_dma.o(i.__ARM_common_switch8)
    __aeabi_errno_addr                       0x08011711   Thumb Code     4  errno.o(i.__aeabi_errno_addr)
    __rt_errno_addr                          0x08011711   Thumb Code     0  errno.o(i.__aeabi_errno_addr)
    __read_errno                             0x08011719   Thumb Code     6  errno.o(i.__read_errno)
    __scatterload_copy                       0x08011725   Thumb Code    14  handlers.o(i.__scatterload_copy)
    __scatterload_null                       0x08011733   Thumb Code     2  handlers.o(i.__scatterload_null)
    __scatterload_zeroinit                   0x08011735   Thumb Code    14  handlers.o(i.__scatterload_zeroinit)
    __set_errno                              0x08011745   Thumb Code     6  errno.o(i.__set_errno)
    _dwt_aonarrayupload                      0x08011751   Thumb Code    38  deca_device.o(i._dwt_aonarrayupload)
    _dwt_configlde                           0x08011779   Thumb Code    42  deca_device.o(i._dwt_configlde)
    _dwt_enableclocks                        0x080117b5   Thumb Code   182  deca_device.o(i._dwt_enableclocks)
    _dwt_loaducodefromrom                    0x0801186b   Thumb Code    50  deca_device.o(i._dwt_loaducodefromrom)
    _dwt_otpread                             0x0801189d   Thumb Code    68  deca_device.o(i._dwt_otpread)
    _is_digit                                0x08011a55   Thumb Code    14  scanf_fp.o(i._is_digit)
    atof                                     0x080121bd   Thumb Code    42  atof.o(i.atof)
    delay_ms                                 0x080121e7   Thumb Code    14  dw_driver.o(i.delay_ms)
    delay_us                                 0x080121f5   Thumb Code   140  lis3dh_driver.o(i.delay_us)
    dwt_configure                            0x08012281   Thumb Code   474  deca_device.o(i.dwt_configure)
    dwt_configuresleep                       0x08012491   Thumb Code    36  deca_device.o(i.dwt_configuresleep)
    dwt_entersleep                           0x080124b9   Thumb Code     8  deca_device.o(i.dwt_entersleep)
    dwt_entersleepaftertx                    0x080124c1   Thumb Code    38  deca_device.o(i.dwt_entersleepaftertx)
    dwt_forcetrxoff                          0x080124e9   Thumb Code    72  deca_device.o(i.dwt_forcetrxoff)
    dwt_initialise                           0x08012539   Thumb Code   280  deca_device.o(i.dwt_initialise)
    dwt_read16bitoffsetreg                   0x08012665   Thumb Code    38  deca_device.o(i.dwt_read16bitoffsetreg)
    dwt_read32bitoffsetreg                   0x08012691   Thumb Code    40  deca_device.o(i.dwt_read32bitoffsetreg)
    dwt_readdevid                            0x080126b9   Thumb Code    12  deca_device.o(i.dwt_readdevid)
    dwt_readfromdevice                       0x080126c5   Thumb Code    56  deca_device.o(i.dwt_readfromdevice)
    dwt_readrxdata                           0x080126fd   Thumb Code    18  deca_device.o(i.dwt_readrxdata)
    dwt_readrxtimestamp                      0x0801270f   Thumb Code    16  deca_device.o(i.dwt_readrxtimestamp)
    dwt_rxenable                             0x0801271f   Thumb Code    84  deca_device.o(i.dwt_rxenable)
    dwt_setdelayedtrxtime                    0x08012773   Thumb Code    14  deca_device.o(i.dwt_setdelayedtrxtime)
    dwt_setinterrupt                         0x08012781   Thumb Code    36  deca_device.o(i.dwt_setinterrupt)
    dwt_setrxantennadelay                    0x080127a5   Thumb Code    14  deca_device.o(i.dwt_setrxantennadelay)
    dwt_setrxtimeout                         0x080127b9   Thumb Code    86  deca_device.o(i.dwt_setrxtimeout)
    dwt_settxantennadelay                    0x08012815   Thumb Code    14  deca_device.o(i.dwt_settxantennadelay)
    dwt_starttx                              0x08012825   Thumb Code   142  deca_device.o(i.dwt_starttx)
    dwt_syncrxbufptrs                        0x080128b9   Thumb Code    52  deca_device.o(i.dwt_syncrxbufptrs)
    dwt_write16bitoffsetreg                  0x080128ed   Thumb Code    22  deca_device.o(i.dwt_write16bitoffsetreg)
    dwt_write32bitoffsetreg                  0x08012903   Thumb Code    30  deca_device.o(i.dwt_write32bitoffsetreg)
    dwt_writetodevice                        0x08012921   Thumb Code    56  deca_device.o(i.dwt_writetodevice)
    dwt_writetxdata                          0x08012959   Thumb Code    36  deca_device.o(i.dwt_writetxdata)
    dwt_writetxfctrl                         0x0801297d   Thumb Code    24  deca_device.o(i.dwt_writetxfctrl)
    dwt_xtaltrim                             0x08012999   Thumb Code    48  deca_device.o(i.dwt_xtaltrim)
    fputc                                    0x080129c9   Thumb Code    18  uart.o(i.fputc)
    main                                     0x080129e1   Thumb Code   428  main.o(i.main)
    parameter_init                           0x08012bbd   Thumb Code   178  global_param.o(i.parameter_init)
    readfromspi                              0x08012c8d   Thumb Code    82  spi.o(i.readfromspi)
    save_com_map_to_flash                    0x08012d05   Thumb Code    56  global_param.o(i.save_com_map_to_flash)
    w28delay                                 0x08012d45   Thumb Code    12  ws2812.o(i.w28delay)
    writetospi                               0x08012d51   Thumb Code    78  spi.o(i.writetospi)
    AHBPrescTable                            0x08012da4   Data          16  system_stm32l0xx.o(.constdata)
    PLLMulTable                              0x08012db4   Data           9  system_stm32l0xx.o(.constdata)
    APBPrescTable                            0x08012dbd   Data           8  system_stm32l0xx.o(.constdata)
    g_stStateAIR780E                         0x08013090   Data          16  air780efsm.o(.constdata)
    g_stStateAIR780EInit                     0x080130a0   Data          16  air780efsm.o(.constdata)
    g_stStateAIR780EPowerOff                 0x080130b0   Data          16  air780efsm.o(.constdata)
    g_stStateAIR780EPowerOn                  0x080130c0   Data          16  air780efsm.o(.constdata)
    g_stStateAIR780EATCmdTest                0x080130d0   Data          16  air780efsm.o(.constdata)
    g_stStateAIR780EWaitSimCardReady         0x080130e0   Data          16  air780efsm.o(.constdata)
    g_stStateAIR780EATCmdInit                0x080130f0   Data          16  air780efsm.o(.constdata)
    g_stStateAIR780EIdle                     0x08013100   Data          16  air780efsm.o(.constdata)
    g_stStateAIR780EReady                    0x08013110   Data          16  air780efsm.o(.constdata)
    g_stStateAIR780EIPInit                   0x08013120   Data          16  air780efsm.o(.constdata)
    g_stStateAIR780EIPReady                  0x08013130   Data          16  air780efsm.o(.constdata)
    g_stStateAIR780EIPPoll                   0x08013140   Data          16  air780efsm.o(.constdata)
    g_stStateAIR780EIPCheck                  0x08013150   Data          16  air780efsm.o(.constdata)
    g_stStateAIR780ESearchingNetwork         0x080131cc   Data          16  air780efsm.o(.constdata)
    g_stStateAIR780ESocketConnect            0x080131dc   Data          16  air780esocket.o(.constdata)
    g_stStateAIR780ESocketClose              0x080131ec   Data          16  air780esocket.o(.constdata)
    g_stStateAIR780ESocketSendData           0x080131fc   Data          16  air780esocket.o(.constdata)
    chan_idx                                 0x08013354   Data           8  deca_params_init.o(.constdata)
    tx_config                                0x0801335c   Data          24  deca_params_init.o(.constdata)
    agc_config                               0x08013374   Data           8  deca_params_init.o(.constdata)
    sftsh                                    0x0801337c   Data          12  deca_params_init.o(.constdata)
    dtune1                                   0x08013388   Data           4  deca_params_init.o(.constdata)
    digital_bb_config                        0x0801338c   Data          32  deca_params_init.o(.constdata)
    lde_replicaCoeff                         0x080133ac   Data          50  deca_params_init.o(.constdata)
    __ctype_table                            0x080133de   Data         129  ctype_o.o(.constdata)
    Region$$Table$$Base                      0x08013ff0   Number         0  anon$$obj.o(Region$$Table)
    Region$$Table$$Limit                     0x08014010   Number         0  anon$$obj.o(Region$$Table)
    input5vtime                              0x20000000   Data           1  main.o(.data)
    bat_percent                              0x20000001   Data           1  main.o(.data)
    nomove_flag                              0x20000002   Data           1  main.o(.data)
    beep_state                               0x20000003   Data           1  main.o(.data)
    bat_time                                 0x20000004   Data           1  main.o(.data)
    gpslednum                                0x20000005   Data           1  main.o(.data)
    jinru_parsegga_flag                      0x20000006   Data           1  main.o(.data)
    input_5v_flag                            0x20000007   Data           1  main.o(.data)
    num                                      0x20000008   Data           1  main.o(.data)
    heart_time                               0x2000000a   Data           2  main.o(.data)
    nomove_count                             0x2000000c   Data           2  main.o(.data)
    debug1                                   0x2000000e   Data           2  main.o(.data)
    debug2                                   0x20000010   Data           2  main.o(.data)
    debug3                                   0x20000012   Data           2  main.o(.data)
    fangchai_time                            0x20000014   Data           2  main.o(.data)
    sleep_time                               0x20000016   Data           2  main.o(.data)
    chongdian_time                           0x20000018   Data           2  main.o(.data)
    work_time                                0x2000001a   Data           2  main.o(.data)
    uwbled                                   0x2000001c   Data           4  main.o(.data)
    gpsled                                   0x20000020   Data           4  main.o(.data)
    loraled                                  0x20000024   Data           4  main.o(.data)
    powerled                                 0x20000028   Data           4  main.o(.data)
    Close_RMC                                0x2000002c   Data         100  main.o(.data)
    dev_id                                   0x20000090   Data           4  main.o(.data)
    group_id                                 0x20000094   Data           1  main.o(.data)
    uwTickFreq                               0x20000098   Data           1  stm32l0xx_hal.o(.data)
    uwTickPrio                               0x2000009c   Data           4  stm32l0xx_hal.o(.data)
    uwTick                                   0x200000a0   Data           4  stm32l0xx_hal.o(.data)
    SystemCoreClock                          0x200000a4   Data           4  system_stm32l0xx.o(.data)
    g_stStateAIR780ERunATCmd                 0x20000104   Data          16  air780efsm.o(.data)
    g_stStateAIR780ECloseWireless            0x20000114   Data          16  air780efsm.o(.data)
    g_stStateAIR780EOpenWireless             0x20000124   Data          16  air780efsm.o(.data)
    g_stStateAIR780ECSQ                      0x20000150   Data          16  air780ecsq.o(.data)
    g_stStateAIR780ELoc                      0x20000190   Data          16  air780eloc.o(.data)
    GPS_ParseGGA_changdu                     0x200001a2   Data           1  gps.o(.data)
    gpsbaoxu                                 0x200001a3   Data           1  gps.o(.data)
    error1                                   0x200001a4   Data           2  gps.o(.data)
    error2                                   0x200001a6   Data           2  gps.o(.data)
    error3                                   0x200001a8   Data           2  gps.o(.data)
    error4                                   0x200001aa   Data           2  gps.o(.data)
    chargedbg_flag                           0x200001b6   Data           1  dbg.o(.data)
    verfint_cal                              0x200001d0   Data           2  adc.o(.data)
    adc_val                                  0x200001d2   Data           2  adc.o(.data)
    bat_volt                                 0x200001dc   Data           4  adc.o(.data)
    testflag                                 0x200001e0   Data           2  flash.o(.data)
    test111                                  0x200001e2   Data           2  flash.o(.data)
    heartbeasend_flag                        0x200001e5   Data           1  udpclient.o(.data)
    receive1_gotosleep_flag                  0x200001e6   Data           1  udpclient.o(.data)
    receive2_gotosleep_flag                  0x200001e7   Data           1  udpclient.o(.data)
    receive3_gotosleep_flag                  0x200001e8   Data           1  udpclient.o(.data)
    userkey_state4g                          0x200001e9   Data           1  udpclient.o(.data)
    xintiaobaoxu                             0x200001ea   Data           1  udpclient.o(.data)
    beepontime                               0x200001ec   Data           2  udpclient.o(.data)
    power_state                              0x20000204   Data           1  app.o(.data)
    chargeon                                 0x20000205   Data           1  app.o(.data)
    chongdian_only_one_flag                  0x20000206   Data           1  app.o(.data)
    only_one_flag                            0x20000207   Data           1  app.o(.data)
    chongman_flag                            0x20000208   Data           1  app.o(.data)
    GPS_successful_flag                      0x20000209   Data           1  app.o(.data)
    fangchai_flag                            0x2000020a   Data           1  app.o(.data)
    imu_enable                               0x2000020b   Data           1  app.o(.data)
    tagseq                                   0x2000020c   Data           2  app.o(.data)
    uwb_send                                 0x2000020e   Data         200  app.o(.data)
    LBS_data                                 0x200002d6   Data         100  app.o(.data)
    fangchai_state                           0x2000033a   Data           1  app.o(.data)
    id                                       0x2000033c   Data           4  dw_app.o(.data)
    taglist_num                              0x20000359   Data           1  dw_mbx_tag.o(.data)
    report_ancnum                            0x2000035a   Data           1  dw_mbx_tag.o(.data)
    pclk1                                    0x20000370   Data           4  dw_mbx_tag.o(.data)
    lisidtemp                                0x20000391   Data           1  lis3dh_driver.o(.data)
    lisid                                    0x20000392   Data           1  lis3dh_driver.o(.data)
    lis2dhdata                               0x20000394   Data           6  lis3dh_driver.o(.data)
    RssiValue                                0x2000039a   Data           1  lora.o(.data)
    SnrValue                                 0x2000039b   Data           1  lora.o(.data)
    BufferSize                               0x2000039c   Data           2  lora.o(.data)
    testlorarecve                            0x2000039e   Data           2  lora.o(.data)
    freq_test                                0x200003a0   Data           2  lora.o(.data)
    module_power                             0x200003a2   Data           1  deca_device.o(.data)
    pll2_config                              0x200003a3   Data          30  deca_params_init.o(.data)
    rx_config                                0x200003c1   Data           2  deca_params_init.o(.data)
    dwnsSFDlen                               0x200003c3   Data           3  deca_params_init.o(.data)
    g_u32TimerTick                           0x200003d8   Data           4  hido_timer.o(.data)
    g_u64TimerTick                           0x200003e0   Data           8  hido_timer.o(.data)
    __stdout                                 0x2000067c   Data           4  stdout.o(.data)
    hadc                                     0x20000684   Data          92  main.o(.bss)
    hiwdg                                    0x200006e0   Data          16  main.o(.bss)
    hlptim1                                  0x200006f0   Data          48  main.o(.bss)
    hrtc                                     0x20000720   Data          36  main.o(.bss)
    hspi1                                    0x20000744   Data          88  main.o(.bss)
    htim3                                    0x2000079c   Data          64  main.o(.bss)
    huart1                                   0x200007dc   Data         136  main.o(.bss)
    huart2                                   0x20000864   Data         136  main.o(.bss)
    huart5                                   0x200008ec   Data         136  main.o(.bss)
    hdma_usart2_rx                           0x20000974   Data          72  main.o(.bss)
    hdma_usart2_tx                           0x200009bc   Data          72  main.o(.bss)
    hdma_usart5_rx                           0x20000a04   Data          72  main.o(.bss)
    pFlash                                   0x20000a4c   Data          24  stm32l0xx_hal_flash.o(.bss)
    g_stFSMAIR780E                           0x20001060   Data          48  air780efsm.o(.bss)
    l_stGPS                                  0x20002450   Data          40  gps.o(.bss)
    GPS_ParseGGA_data                        0x20002478   Data         256  gps.o(.bss)
    g_com_map                                0x20003610   Data         512  global_param.o(.bss)
    senddata                                 0x20003810   Data         100  app.o(.bss)
    GPS_data                                 0x20003874   Data         200  app.o(.bss)
    tagid_list                               0x20003b58   Data          80  dw_mbx_tag.o(.bss)
    tagdist_list                             0x20003ba8   Data          80  dw_mbx_tag.o(.bss)
    tagbat_list                              0x20003bf8   Data          40  dw_mbx_tag.o(.bss)
    report_ancdist                           0x20003c20   Data          80  dw_mbx_tag.o(.bss)
    report_ancid                             0x20003c70   Data          80  dw_mbx_tag.o(.bss)
    mUsartReceivePack                        0x20003cc0   Data         100  serial_at_cmd_app.o(.bss)
    __initial_sp                             0x200048c8   Data           0  startup_stm32l071xx.o(STACK)
 
 
 
==============================================================================
 
Memory Map of the image
 
  Image Entry point : 0x080050c1
 
  Load Region LR_IROM1 (Base: 0x08005000, Size: 0x0000f694, Max: 0x0001b000, ABSOLUTE, COMPRESSED[0x0000f0e4])
 
    Execution Region ER_IROM1 (Exec base: 0x08005000, Load base: 0x08005000, Size: 0x0000f010, Max: 0x0001b000, ABSOLUTE)
 
    Exec Addr    Load Addr    Size         Type   Attr      Idx    E Section Name        Object
 
    0x08005000   0x08005000   0x000000c0   Data   RO            3    RESET               startup_stm32l071xx.o
    0x080050c0   0x080050c0   0x00000000   Code   RO         9796  * .ARM.Collect$$$$00000000  mc_p.l(entry.o)
    0x080050c0   0x080050c0   0x00000004   Code   RO        10153    .ARM.Collect$$$$00000001  mc_p.l(entry2.o)
    0x080050c4   0x080050c4   0x00000004   Code   RO        10156    .ARM.Collect$$$$00000004  mc_p.l(entry5.o)
    0x080050c8   0x080050c8   0x00000000   Code   RO        10158    .ARM.Collect$$$$00000008  mc_p.l(entry7b.o)
    0x080050c8   0x080050c8   0x00000000   Code   RO        10160    .ARM.Collect$$$$0000000A  mc_p.l(entry8b.o)
    0x080050c8   0x080050c8   0x00000008   Code   RO        10161    .ARM.Collect$$$$0000000B  mc_p.l(entry9a.o)
    0x080050d0   0x080050d0   0x00000000   Code   RO        10163    .ARM.Collect$$$$0000000D  mc_p.l(entry10a.o)
    0x080050d0   0x080050d0   0x00000000   Code   RO        10165    .ARM.Collect$$$$0000000F  mc_p.l(entry11a.o)
    0x080050d0   0x080050d0   0x00000004   Code   RO        10154    .ARM.Collect$$$$00002712  mc_p.l(entry2.o)
    0x080050d4   0x080050d4   0x0000001c   Code   RO            4    .text               startup_stm32l071xx.o
    0x080050f0   0x080050f0   0x0000002c   Code   RO         9799    .text               mc_p.l(uidiv.o)
    0x0800511c   0x0800511c   0x00000028   Code   RO         9801    .text               mc_p.l(idiv.o)
    0x08005144   0x08005144   0x00000060   Code   RO         9803    .text               mc_p.l(uldiv.o)
    0x080051a4   0x080051a4   0x00000022   Code   RO         9805    .text               mc_p.l(llushr.o)
    0x080051c6   0x080051c6   0x00000024   Code   RO         9807    .text               mc_p.l(memcpya.o)
    0x080051ea   0x080051ea   0x00000024   Code   RO         9809    .text               mc_p.l(memseta.o)
    0x0800520e   0x0800520e   0x00000018   Code   RO         9811    .text               mc_p.l(strcat.o)
    0x08005226   0x08005226   0x00000028   Code   RO         9813    .text               mc_p.l(strstr.o)
    0x0800524e   0x0800524e   0x00000014   Code   RO         9815    .text               mc_p.l(strchr.o)
    0x08005262   0x08005262   0x0000000e   Code   RO         9817    .text               mc_p.l(strlen.o)
    0x08005270   0x08005270   0x0000001c   Code   RO         9819    .text               mc_p.l(strcmp.o)
    0x0800528c   0x0800528c   0x0000001a   Code   RO         9821    .text               mc_p.l(memcmp.o)
    0x080052a6   0x080052a6   0x00000012   Code   RO         9823    .text               mc_p.l(strcpy.o)
    0x080052b8   0x080052b8   0x0000001e   Code   RO         9825    .text               mc_p.l(strncmp.o)
    0x080052d6   0x080052d6   0x0000001a   Code   RO        10094    .text               mc_p.l(atoi.o)
    0x080052f0   0x080052f0   0x0000007c   Code   RO        10098    .text               mf_p.l(fdiv.o)
    0x0800536c   0x0800536c   0x00000164   Code   RO        10102    .text               mf_p.l(dadd.o)
    0x080054d0   0x080054d0   0x000000d0   Code   RO        10104    .text               mf_p.l(dmul.o)
    0x080055a0   0x080055a0   0x000000f0   Code   RO        10106    .text               mf_p.l(ddiv.o)
    0x08005690   0x08005690   0x0000000e   Code   RO        10112    .text               mf_p.l(ffltui.o)
    0x0800569e   0x0800569e   0x00000002   PAD
    0x080056a0   0x080056a0   0x0000001c   Code   RO        10116    .text               mf_p.l(dfltui.o)
    0x080056bc   0x080056bc   0x00000028   Code   RO        10118    .text               mf_p.l(ffixui.o)
    0x080056e4   0x080056e4   0x0000003c   Code   RO        10122    .text               mf_p.l(dfixui.o)
    0x08005720   0x08005720   0x00000028   Code   RO        10124    .text               mf_p.l(f2d.o)
    0x08005748   0x08005748   0x00000028   Code   RO        10128    .text               mf_p.l(cdrcmple.o)
    0x08005770   0x08005770   0x00000038   Code   RO        10130    .text               mf_p.l(d2f.o)
    0x080057a8   0x080057a8   0x00000020   Code   RO        10168    .text               mc_p.l(llshl.o)
    0x080057c8   0x080057c8   0x00000026   Code   RO        10170    .text               mc_p.l(llsshr.o)
    0x080057ee   0x080057ee   0x0000001e   Code   RO        10179    .text               mc_p.l(_chval.o)
    0x0800580c   0x0800580c   0x00000044   Code   RO        10183    .text               mc_p.l(_sgetc.o)
    0x08005850   0x08005850   0x000000a4   Code   RO        10185    .text               mc_p.l(strtod.o)
    0x080058f4   0x080058f4   0x00000070   Code   RO        10187    .text               mc_p.l(strtol.o)
    0x08005964   0x08005964   0x00000000   Code   RO        10189    .text               mc_p.l(iusefp.o)
    0x08005964   0x08005964   0x00000082   Code   RO        10190    .text               mf_p.l(fepilogue.o)
    0x080059e6   0x080059e6   0x000000be   Code   RO        10192    .text               mf_p.l(depilogue.o)
    0x08005aa4   0x08005aa4   0x00000040   Code   RO        10200    .text               mf_p.l(dfixul.o)
    0x08005ae4   0x08005ae4   0x00000024   Code   RO        10202    .text               mc_p.l(init.o)
    0x08005b08   0x08005b08   0x00000008   Code   RO        10206    .text               mc_p.l(ctype_o.o)
    0x08005b10   0x08005b10   0x00000012   Code   RO        10228    .text               mc_p.l(isspace_o.o)
    0x08005b22   0x08005b22   0x00000002   PAD
    0x08005b24   0x08005b24   0x00000374   Code   RO        10236    .text               mc_p.l(scanf_fp.o)
    0x08005e98   0x08005e98   0x000000a6   Code   RO        10240    .text               mc_p.l(_strtoul.o)
    0x08005f3e   0x08005f3e   0x0000007a   Code   RO        10242    .text               mc_p.l(llmul.o)
    0x08005fb8   0x08005fb8   0x0000001c   Code   RO        10247    .text               mf_p.l(dfltul.o)
    0x08005fd4   0x08005fd4   0x00000056   Code   RO        10257    .text               mc_p.l(__dczerorl2.o)
    0x0800602a   0x0800602a   0x00000002   PAD
    0x0800602c   0x0800602c   0x00000024   Code   RO          600    i.ADC_DelayMicroSecond  stm32l0xx_hal_adc.o
    0x08006050   0x08006050   0x00000070   Code   RO          602    i.ADC_Enable        stm32l0xx_hal_adc.o
    0x080060c0   0x080060c0   0x00000144   Code   RO         4875    i.AIR780EATCmdInitProc  air780efsm.o
    0x08006204   0x08006204   0x0000011c   Code   RO         4876    i.AIR780EATCmdTestProc  air780efsm.o
    0x08006320   0x08006320   0x00000084   Code   RO         5120    i.AIR780ECSQProc    air780ecsq.o
    0x080063a4   0x080063a4   0x00000028   Code   RO         5121    i.AIR780ECSQ_Get    air780ecsq.o
    0x080063cc   0x080063cc   0x0000001c   Code   RO         5122    i.AIR780ECSQ_Poll   air780ecsq.o
    0x080063e8   0x080063e8   0x00000054   Code   RO         4877    i.AIR780ECloseWirelessProc  air780efsm.o
    0x0800643c   0x0800643c   0x0000001a   Code   RO         4724    i.AIR780EDriver_FSMDebug  air780edriver.o
    0x08006456   0x08006456   0x00000002   PAD
    0x08006458   0x08006458   0x000000d4   Code   RO         4725    i.AIR780EDriver_Init  air780edriver.o
    0x0800652c   0x0800652c   0x0000001c   Code   RO         4726    i.AIR780EDriver_PWRKEYReset  air780edriver.o
    0x08006548   0x08006548   0x0000001c   Code   RO         4727    i.AIR780EDriver_PWRKEYSet  air780edriver.o
    0x08006564   0x08006564   0x00000014   Code   RO         4728    i.AIR780EDriver_PinRegister  air780edriver.o
    0x08006578   0x08006578   0x0000001c   Code   RO         4729    i.AIR780EDriver_PowerOff  air780edriver.o
    0x08006594   0x08006594   0x0000001c   Code   RO         4730    i.AIR780EDriver_PowerOn  air780edriver.o
    0x080065b0   0x080065b0   0x00000080   Code   RO         4878    i.AIR780EIPCheckProc  air780efsm.o
    0x08006630   0x08006630   0x000001c0   Code   RO         4879    i.AIR780EIPInitProc  air780efsm.o
    0x080067f0   0x080067f0   0x0000003c   Code   RO         4880    i.AIR780EIPPollProc  air780efsm.o
    0x0800682c   0x0800682c   0x00000078   Code   RO         4881    i.AIR780EIPReadyProc  air780efsm.o
    0x080068a4   0x080068a4   0x0000001c   Code   RO         4882    i.AIR780EIdleProc   air780efsm.o
    0x080068c0   0x080068c0   0x00000024   Code   RO         4883    i.AIR780EInitProc   air780efsm.o
    0x080068e4   0x080068e4   0x00000128   Code   RO         5547    i.AIR780ELocProc    air780eloc.o
    0x08006a0c   0x08006a0c   0x00000028   Code   RO         5548    i.AIR780ELoc_Get    air780eloc.o
    0x08006a34   0x08006a34   0x0000001c   Code   RO         5549    i.AIR780ELoc_Poll   air780eloc.o
    0x08006a50   0x08006a50   0x00000054   Code   RO         4884    i.AIR780EOpenWirelessProc  air780efsm.o
    0x08006aa4   0x08006aa4   0x00000050   Code   RO         4885    i.AIR780EPowerOffProc  air780efsm.o
    0x08006af4   0x08006af4   0x000000b4   Code   RO         4886    i.AIR780EPowerOnProc  air780efsm.o
    0x08006ba8   0x08006ba8   0x0000006c   Code   RO         4887    i.AIR780EProc       air780efsm.o
    0x08006c14   0x08006c14   0x00000010   Code   RO         4888    i.AIR780EReadyProc  air780efsm.o
    0x08006c24   0x08006c24   0x00000058   Code   RO         4889    i.AIR780ERunATCmdProc  air780efsm.o
    0x08006c7c   0x08006c7c   0x0000014c   Code   RO         4890    i.AIR780ESearchingNetworkProc  air780efsm.o
    0x08006dc8   0x08006dc8   0x000000c4   Code   RO         5072    i.AIR780ESocketCloseProc  air780esocket.o
    0x08006e8c   0x08006e8c   0x0000019c   Code   RO         5073    i.AIR780ESocketConnectProc  air780esocket.o
    0x08007028   0x08007028   0x0000012c   Code   RO         5074    i.AIR780ESocketSendDataProc  air780esocket.o
    0x08007154   0x08007154   0x000000a8   Code   RO         5075    i.AIR780ESocket_Poll  air780esocket.o
    0x080071fc   0x080071fc   0x000000c0   Code   RO         4892    i.AIR780EWaitSimCardReadyProc  air780efsm.o
    0x080072bc   0x080072bc   0x0000003c   Code   RO         4893    i.AIR780E_CloseWirelessPoll  air780efsm.o
    0x080072f8   0x080072f8   0x0000000a   Code   RO         4734    i.AIR780E_GetChar   air780edriver.o
    0x08007302   0x08007302   0x00000002   PAD
    0x08007304   0x08007304   0x00000020   Code   RO         4895    i.AIR780E_IsIPReady  air780efsm.o
    0x08007324   0x08007324   0x0000003c   Code   RO         4896    i.AIR780E_OpenWirelessPoll  air780efsm.o
    0x08007360   0x08007360   0x00000060   Code   RO         4735    i.AIR780E_Output    air780edriver.o
    0x080073c0   0x080073c0   0x0000003a   Code   RO         4897    i.AIR780E_Poll      air780efsm.o
    0x080073fa   0x080073fa   0x00000002   PAD
    0x080073fc   0x080073fc   0x00000084   Code   RO         4898    i.AIR780E_PollOnIPReady  air780efsm.o
    0x08007480   0x08007480   0x0000003c   Code   RO         4899    i.AIR780E_PowerPoll  air780efsm.o
    0x080074bc   0x080074bc   0x0000019c   Code   RO         4736    i.AIR780E_ReadLine  air780edriver.o
    0x08007658   0x08007658   0x00000038   Code   RO         4900    i.AIR780E_RunATCmdPoll  air780efsm.o
    0x08007690   0x08007690   0x00000148   Code   RO         6565    i.Anchor_RecNearPoll  dw_mbx_tag.o
    0x080077d8   0x080077d8   0x00000020   Code   RO           12    i.Bat_Percent_Poll  main.o
    0x080077f8   0x080077f8   0x0000001a   Code   RO         6507    i.Checksum_u16      dw_app.o
    0x08007812   0x08007812   0x00000002   PAD
    0x08007814   0x08007814   0x00000030   Code   RO         6566    i.CmpTagInList      dw_mbx_tag.o
    0x08007844   0x08007844   0x0000000c   Code   RO         5827    i.DBG_GetMode       dbg.o
    0x08007850   0x08007850   0x00000064   Code   RO         5828    i.DBG_Init          dbg.o
    0x080078b4   0x080078b4   0x00000118   Code   RO         5829    i.DBG_Poll          dbg.o
    0x080079cc   0x080079cc   0x0000000c   Code   RO         5830    i.DBG_SerialGetChar  dbg.o
    0x080079d8   0x080079d8   0x00000030   Code   RO         5831    i.DBG_SerialPrintf  dbg.o
    0x08007a08   0x08007a08   0x0000000e   Code   RO         5832    i.DBG_SerialPutChar  dbg.o
    0x08007a16   0x08007a16   0x00000014   Code   RO         5833    i.DBG_SerialPutString  dbg.o
    0x08007a2a   0x08007a2a   0x00000002   PAD
    0x08007a2c   0x08007a2c   0x0000000c   Code   RO         5835    i.DBG_SetMode       dbg.o
    0x08007a38   0x08007a38   0x00000010   Code   RO          397    i.DMA1_Channel2_3_IRQHandler  stm32l0xx_it.o
    0x08007a48   0x08007a48   0x00000018   Code   RO          398    i.DMA1_Channel4_5_6_7_IRQHandler  stm32l0xx_it.o
    0x08007a60   0x08007a60   0x0000002c   Code   RO         2044    i.DMA_SetConfig     stm32l0xx_hal_dma.o
    0x08007a8c   0x08007a8c   0x0000000e   Code   RO         7602    i.Delay_Ms          delay.o
    0x08007a9a   0x08007a9a   0x0000008c   Code   RO         7603    i.Delay_Us          delay.o
    0x08007b26   0x08007b26   0x00000002   PAD
    0x08007b28   0x08007b28   0x00000050   Code   RO         6508    i.Dw1000_Init       dw_app.o
    0x08007b78   0x08007b78   0x0000000a   Code   RO          399    i.EXTI0_1_IRQHandler  stm32l0xx_it.o
    0x08007b82   0x08007b82   0x0000001c   Code   RO          400    i.EXTI4_15_IRQHandler  stm32l0xx_it.o
    0x08007b9e   0x08007b9e   0x00000004   Code   RO           15    i.Error_Handler     main.o
    0x08007ba2   0x08007ba2   0x00000002   PAD
    0x08007ba4   0x08007ba4   0x0000002c   Code   RO         1874    i.FLASH_PageErase   stm32l0xx_hal_flash_ex.o
    0x08007bd0   0x08007bd0   0x00000040   Code   RO         6219    i.FLASH_Prepare     flash.o
    0x08007c10   0x08007c10   0x00000012   Code   RO         6220    i.FLASH_Read        flash.o
    0x08007c22   0x08007c22   0x00000002   PAD
    0x08007c24   0x08007c24   0x00000090   Code   RO         1773    i.FLASH_SetErrorCode  stm32l0xx_hal_flash.o
    0x08007cb4   0x08007cb4   0x00000070   Code   RO         1774    i.FLASH_WaitForLastOperation  stm32l0xx_hal_flash.o
    0x08007d24   0x08007d24   0x00000040   Code   RO         6221    i.FLASH_Write       flash.o
    0x08007d64   0x08007d64   0x0000003a   Code   RO         8959    i.FSM_Debug         HIDOLibrary.lib(hido_fsm.o)
    0x08007d9e   0x08007d9e   0x0000003e   Code   RO         8960    i.FSM_FindState     HIDOLibrary.lib(hido_fsm.o)
    0x08007ddc   0x08007ddc   0x00000034   Code   RO         8961    i.FSM_GeneralTimerProc  HIDOLibrary.lib(hido_fsm.o)
    0x08007e10   0x08007e10   0x00000044   Code   RO           16    i.Fangchai_Panduan_Poll  main.o
    0x08007e54   0x08007e54   0x00000070   Code   RO         5577    i.GPS_AddHours      gps.o
    0x08007ec4   0x08007ec4   0x00000024   Code   RO           17    i.GPS_Close_Init    main.o
    0x08007ee8   0x08007ee8   0x00000054   Code   RO         5578    i.GPS_DataCheck     gps.o
    0x08007f3c   0x08007f3c   0x00000070   Code   RO         5579    i.GPS_Init          gps.o
    0x08007fac   0x08007fac   0x00000120   Code   RO         5581    i.GPS_ParseGGA      gps.o
    0x080080cc   0x080080cc   0x000000a0   Code   RO         5582    i.GPS_ParseLat      gps.o
    0x0800816c   0x0800816c   0x000000a0   Code   RO         5583    i.GPS_ParseLon      gps.o
    0x0800820c   0x0800820c   0x000001b8   Code   RO         5584    i.GPS_ParseRMC      gps.o
    0x080083c4   0x080083c4   0x00000010   Code   RO         5585    i.GPS_PinRegister   gps.o
    0x080083d4   0x080083d4   0x00000020   Code   RO         5586    i.GPS_Poll          gps.o
    0x080083f4   0x080083f4   0x0000001c   Code   RO         5587    i.GPS_PowerOff      gps.o
    0x08008410   0x08008410   0x0000001c   Code   RO         5588    i.GPS_PowerOn       gps.o
    0x0800842c   0x0800842c   0x000000a0   Code   RO         5589    i.GPS_RecvFsm       gps.o
    0x080084cc   0x080084cc   0x00000028   Code   RO         6180    i.Get_ADC_Value     adc.o
    0x080084f4   0x080084f4   0x000000cc   Code   RO         6181    i.Get_Battary       adc.o
    0x080085c0   0x080085c0   0x0000004c   Code   RO           18    i.Gps_Chongqi_Poll  main.o
    0x0800860c   0x0800860c   0x00000094   Code   RO          604    i.HAL_ADC_ConfigChannel  stm32l0xx_hal_adc.o
    0x080086a0   0x080086a0   0x00000004   Code   RO          610    i.HAL_ADC_GetState  stm32l0xx_hal_adc.o
    0x080086a4   0x080086a4   0x00000006   Code   RO          611    i.HAL_ADC_GetValue  stm32l0xx_hal_adc.o
    0x080086aa   0x080086aa   0x00000002   PAD
    0x080086ac   0x080086ac   0x000001c8   Code   RO          613    i.HAL_ADC_Init      stm32l0xx_hal_adc.o
    0x08008874   0x08008874   0x00000050   Code   RO          498    i.HAL_ADC_MspInit   stm32l0xx_hal_msp.o
    0x080088c4   0x080088c4   0x000000c8   Code   RO          617    i.HAL_ADC_PollForConversion  stm32l0xx_hal_adc.o
    0x0800898c   0x0800898c   0x0000005c   Code   RO          619    i.HAL_ADC_Start     stm32l0xx_hal_adc.o
    0x080089e8   0x080089e8   0x00000044   Code   RO         2045    i.HAL_DMA_Abort     stm32l0xx_hal_dma.o
    0x08008a2c   0x08008a2c   0x0000004c   Code   RO         2046    i.HAL_DMA_Abort_IT  stm32l0xx_hal_dma.o
    0x08008a78   0x08008a78   0x00000068   Code   RO         2047    i.HAL_DMA_DeInit    stm32l0xx_hal_dma.o
    0x08008ae0   0x08008ae0   0x000000a8   Code   RO         2050    i.HAL_DMA_IRQHandler  stm32l0xx_hal_dma.o
    0x08008b88   0x08008b88   0x00000090   Code   RO         2051    i.HAL_DMA_Init      stm32l0xx_hal_dma.o
    0x08008c18   0x08008c18   0x00000068   Code   RO         2055    i.HAL_DMA_Start_IT  stm32l0xx_hal_dma.o
    0x08008c80   0x08008c80   0x00000024   Code   RO          842    i.HAL_Delay         stm32l0xx_hal.o
    0x08008ca4   0x08008ca4   0x00000078   Code   RO         1883    i.HAL_FLASHEx_Erase  stm32l0xx_hal_flash_ex.o
    0x08008d1c   0x08008d1c   0x0000001c   Code   RO         1778    i.HAL_FLASH_Lock    stm32l0xx_hal_flash.o
    0x08008d38   0x08008d38   0x0000003c   Code   RO         1783    i.HAL_FLASH_Program  stm32l0xx_hal_flash.o
    0x08008d74   0x08008d74   0x0000005c   Code   RO         1785    i.HAL_FLASH_Unlock  stm32l0xx_hal_flash.o
    0x08008dd0   0x08008dd0   0x000000f0   Code   RO         1982    i.HAL_GPIO_DeInit   stm32l0xx_hal_gpio.o
    0x08008ec0   0x08008ec0   0x00000058   Code   RO           19    i.HAL_GPIO_EXTI_Callback  main.o
    0x08008f18   0x08008f18   0x00000018   Code   RO         1984    i.HAL_GPIO_EXTI_IRQHandler  stm32l0xx_hal_gpio.o
    0x08008f30   0x08008f30   0x000001bc   Code   RO         1985    i.HAL_GPIO_Init     stm32l0xx_hal_gpio.o
    0x080090ec   0x080090ec   0x0000000a   Code   RO         1987    i.HAL_GPIO_ReadPin  stm32l0xx_hal_gpio.o
    0x080090f6   0x080090f6   0x0000000c   Code   RO         1989    i.HAL_GPIO_WritePin  stm32l0xx_hal_gpio.o
    0x08009102   0x08009102   0x00000002   PAD
    0x08009104   0x08009104   0x0000000c   Code   RO          846    i.HAL_GetTick       stm32l0xx_hal.o
    0x08009110   0x08009110   0x0000006c   Code   RO         2489    i.HAL_IWDG_Init     stm32l0xx_hal_iwdg.o
    0x0800917c   0x0800917c   0x00000010   Code   RO         2490    i.HAL_IWDG_Refresh  stm32l0xx_hal_iwdg.o
    0x0800918c   0x0800918c   0x00000010   Code   RO          852    i.HAL_IncTick       stm32l0xx_hal.o
    0x0800919c   0x0800919c   0x00000028   Code   RO          853    i.HAL_Init          stm32l0xx_hal.o
    0x080091c4   0x080091c4   0x00000044   Code   RO          854    i.HAL_InitTick      stm32l0xx_hal.o
    0x08009208   0x08009208   0x00000002   Code   RO         2515    i.HAL_LPTIM_AutoReloadMatchCallback  stm32l0xx_hal_lptim.o
    0x0800920a   0x0800920a   0x00000002   Code   RO         2516    i.HAL_LPTIM_AutoReloadWriteCallback  stm32l0xx_hal_lptim.o
    0x0800920c   0x0800920c   0x000000d4   Code   RO           20    i.HAL_LPTIM_CompareMatchCallback  main.o
    0x080092e0   0x080092e0   0x00000002   Code   RO         2518    i.HAL_LPTIM_CompareWriteCallback  stm32l0xx_hal_lptim.o
    0x080092e2   0x080092e2   0x00000002   Code   RO         2524    i.HAL_LPTIM_DirectionDownCallback  stm32l0xx_hal_lptim.o
    0x080092e4   0x080092e4   0x00000002   Code   RO         2525    i.HAL_LPTIM_DirectionUpCallback  stm32l0xx_hal_lptim.o
    0x080092e6   0x080092e6   0x000000ca   Code   RO         2531    i.HAL_LPTIM_IRQHandler  stm32l0xx_hal_lptim.o
    0x080093b0   0x080093b0   0x000000b0   Code   RO         2532    i.HAL_LPTIM_Init    stm32l0xx_hal_lptim.o
    0x08009460   0x08009460   0x00000030   Code   RO          500    i.HAL_LPTIM_MspInit  stm32l0xx_hal_msp.o
    0x08009490   0x08009490   0x00000006   Code   RO         2545    i.HAL_LPTIM_ReadCounter  stm32l0xx_hal_lptim.o
    0x08009496   0x08009496   0x00000002   PAD
    0x08009498   0x08009498   0x00000088   Code   RO         2551    i.HAL_LPTIM_TimeOut_Start_IT  stm32l0xx_hal_lptim.o
    0x08009520   0x08009520   0x00000002   Code   RO         2554    i.HAL_LPTIM_TriggerCallback  stm32l0xx_hal_lptim.o
    0x08009522   0x08009522   0x00000002   PAD
    0x08009524   0x08009524   0x00000018   Code   RO          501    i.HAL_MspInit       stm32l0xx_hal_msp.o
    0x0800953c   0x0800953c   0x00000020   Code   RO         2313    i.HAL_NVIC_DisableIRQ  stm32l0xx_hal_cortex.o
    0x0800955c   0x0800955c   0x00000018   Code   RO         2314    i.HAL_NVIC_EnableIRQ  stm32l0xx_hal_cortex.o
    0x08009574   0x08009574   0x00000008   Code   RO         2318    i.HAL_NVIC_SetPriority  stm32l0xx_hal_cortex.o
    0x0800957c   0x0800957c   0x0000001c   Code   RO         2319    i.HAL_NVIC_SystemReset  stm32l0xx_hal_cortex.o
    0x08009598   0x08009598   0x00000010   Code   RO         2144    i.HAL_PWR_EnableBkUpAccess  stm32l0xx_hal_pwr.o
    0x080095a8   0x080095a8   0x00000064   Code   RO         2151    i.HAL_PWR_EnterSTOPMode  stm32l0xx_hal_pwr.o
    0x0800960c   0x0800960c   0x0000017c   Code   RO         1658    i.HAL_RCCEx_PeriphCLKConfig  stm32l0xx_hal_rcc_ex.o
    0x08009788   0x08009788   0x0000019c   Code   RO         1558    i.HAL_RCC_ClockConfig  stm32l0xx_hal_rcc.o
    0x08009924   0x08009924   0x00000020   Code   RO         1564    i.HAL_RCC_GetPCLK1Freq  stm32l0xx_hal_rcc.o
    0x08009944   0x08009944   0x00000020   Code   RO         1565    i.HAL_RCC_GetPCLK2Freq  stm32l0xx_hal_rcc.o
    0x08009964   0x08009964   0x00000078   Code   RO         1566    i.HAL_RCC_GetSysClockFreq  stm32l0xx_hal_rcc.o
    0x080099dc   0x080099dc   0x00000432   Code   RO         1569    i.HAL_RCC_OscConfig  stm32l0xx_hal_rcc.o
    0x08009e0e   0x08009e0e   0x00000002   PAD
    0x08009e10   0x08009e10   0x000000ac   Code   RO         2793    i.HAL_RTC_Init      stm32l0xx_hal_rtc.o
    0x08009ebc   0x08009ebc   0x00000020   Code   RO          503    i.HAL_RTC_MspInit   stm32l0xx_hal_msp.o
    0x08009edc   0x08009edc   0x00000034   Code   RO         2801    i.HAL_RTC_WaitForSynchro  stm32l0xx_hal_rtc.o
    0x08009f10   0x08009f10   0x000000b6   Code   RO         3184    i.HAL_SPI_Init      stm32l0xx_hal_spi.o
    0x08009fc6   0x08009fc6   0x00000002   PAD
    0x08009fc8   0x08009fc8   0x00000058   Code   RO          505    i.HAL_SPI_MspInit   stm32l0xx_hal_msp.o
    0x0800a020   0x0800a020   0x00000160   Code   RO         3192    i.HAL_SPI_Transmit  stm32l0xx_hal_spi.o
    0x0800a180   0x0800a180   0x000001f0   Code   RO         3193    i.HAL_SPI_TransmitReceive  stm32l0xx_hal_spi.o
    0x0800a370   0x0800a370   0x00000030   Code   RO         2322    i.HAL_SYSTICK_Config  stm32l0xx_hal_cortex.o
    0x0800a3a0   0x0800a3a0   0x00000060   Code   RO         4188    i.HAL_TIMEx_MasterConfigSynchronization  stm32l0xx_hal_tim_ex.o
    0x0800a400   0x0800a400   0x0000001c   Code   RO         4189    i.HAL_TIMEx_RemapConfig  stm32l0xx_hal_tim_ex.o
    0x0800a41c   0x0800a41c   0x00000050   Code   RO          506    i.HAL_TIM_MspPostInit  stm32l0xx_hal_msp.o
    0x0800a46c   0x0800a46c   0x000000d0   Code   RO         3565    i.HAL_TIM_PWM_ConfigChannel  stm32l0xx_hal_tim.o
    0x0800a53c   0x0800a53c   0x0000003e   Code   RO         3568    i.HAL_TIM_PWM_Init  stm32l0xx_hal_tim.o
    0x0800a57a   0x0800a57a   0x00000002   PAD
    0x0800a57c   0x0800a57c   0x0000001c   Code   RO          508    i.HAL_TIM_PWM_MspInit  stm32l0xx_hal_msp.o
    0x0800a598   0x0800a598   0x00000002   Code   RO         4223    i.HAL_UARTEx_RxEventCallback  stm32l0xx_hal_uart.o
    0x0800a59a   0x0800a59a   0x00000002   Code   RO         4613    i.HAL_UARTEx_WakeupCallback  stm32l0xx_hal_uart_ex.o
    0x0800a59c   0x0800a59c   0x00000042   Code   RO         4236    i.HAL_UART_DeInit   stm32l0xx_hal_uart.o
    0x0800a5de   0x0800a5de   0x00000008   Code   RO         5943    i.HAL_UART_ErrorCallback  bsp.o
    0x0800a5e6   0x0800a5e6   0x00000002   PAD
    0x0800a5e8   0x0800a5e8   0x000002ac   Code   RO         4242    i.HAL_UART_IRQHandler  stm32l0xx_hal_uart.o
    0x0800a894   0x0800a894   0x0000006a   Code   RO         4243    i.HAL_UART_Init     stm32l0xx_hal_uart.o
    0x0800a8fe   0x0800a8fe   0x00000002   PAD
    0x0800a900   0x0800a900   0x00000098   Code   RO          509    i.HAL_UART_MspDeInit  stm32l0xx_hal_msp.o
    0x0800a998   0x0800a998   0x000001c4   Code   RO          510    i.HAL_UART_MspInit  stm32l0xx_hal_msp.o
    0x0800ab5c   0x0800ab5c   0x00000064   Code   RO         4247    i.HAL_UART_Receive_DMA  stm32l0xx_hal_uart.o
    0x0800abc0   0x0800abc0   0x00000064   Code   RO         4248    i.HAL_UART_Receive_IT  stm32l0xx_hal_uart.o
    0x0800ac24   0x0800ac24   0x00000008   Code   RO         5944    i.HAL_UART_RxCpltCallback  bsp.o
    0x0800ac2c   0x0800ac2c   0x00000002   Code   RO         4251    i.HAL_UART_RxHalfCpltCallback  stm32l0xx_hal_uart.o
    0x0800ac2e   0x0800ac2e   0x000000c0   Code   RO         4252    i.HAL_UART_Transmit  stm32l0xx_hal_uart.o
    0x0800acee   0x0800acee   0x00000002   PAD
    0x0800acf0   0x0800acf0   0x000000ac   Code   RO         4253    i.HAL_UART_Transmit_DMA  stm32l0xx_hal_uart.o
    0x0800ad9c   0x0800ad9c   0x00000078   Code   RO         4254    i.HAL_UART_Transmit_IT  stm32l0xx_hal_uart.o
    0x0800ae14   0x0800ae14   0x00000008   Code   RO         5945    i.HAL_UART_TxCpltCallback  bsp.o
    0x0800ae1c   0x0800ae1c   0x00000002   Code   RO         4256    i.HAL_UART_TxHalfCpltCallback  stm32l0xx_hal_uart.o
    0x0800ae1e   0x0800ae1e   0x00000096   Code   RO         9732    i.HIDO_ATLiteCmdParse  HIDOLibrary.lib(hido_atliteparse.o)
    0x0800aeb4   0x0800aeb4   0x00000048   Code   RO         9583    i.HIDO_ATLiteCmdSend  HIDOLibrary.lib(hido_atlite.o)
    0x0800aefc   0x0800aefc   0x0000000e   Code   RO         9584    i.HIDO_ATLiteCmdSendOver  HIDOLibrary.lib(hido_atlite.o)
    0x0800af0a   0x0800af0a   0x00000002   PAD
    0x0800af0c   0x0800af0c   0x00000048   Code   RO         9585    i.HIDO_ATLiteDataSend  HIDOLibrary.lib(hido_atlite.o)
    0x0800af54   0x0800af54   0x00000062   Code   RO         9588    i.HIDO_ATLiteDeviceInit  HIDOLibrary.lib(hido_atlite.o)
    0x0800afb6   0x0800afb6   0x00000002   PAD
    0x0800afb8   0x0800afb8   0x0000001c   Code   RO         9589    i.HIDO_ATLiteDeviceRegister  HIDOLibrary.lib(hido_atlite.o)
    0x0800afd4   0x0800afd4   0x00000038   Code   RO         9590    i.HIDO_ATLiteEvent  HIDOLibrary.lib(hido_atlite.o)
    0x0800b00c   0x0800b00c   0x0000000c   Code   RO         9591    i.HIDO_ATLiteGetDebugFlag  HIDOLibrary.lib(hido_atlite.o)
    0x0800b018   0x0800b018   0x00000010   Code   RO         9733    i.HIDO_ATLiteMatchFlagInit  HIDOLibrary.lib(hido_atliteparse.o)
    0x0800b028   0x0800b028   0x0000005c   Code   RO         9592    i.HIDO_ATLitePoll   HIDOLibrary.lib(hido_atlite.o)
    0x0800b084   0x0800b084   0x00000010   Code   RO         9594    i.HIDO_ATLiteSendError  HIDOLibrary.lib(hido_atlite.o)
    0x0800b094   0x0800b094   0x00000010   Code   RO         9595    i.HIDO_ATLiteTimeout  HIDOLibrary.lib(hido_atlite.o)
    0x0800b0a4   0x0800b0a4   0x00000036   Code   RO         9363    i.HIDO_ArraryQueueIn  HIDOLibrary.lib(hido_arraryqueue.o)
    0x0800b0da   0x0800b0da   0x00000012   Code   RO         9364    i.HIDO_ArraryQueueInit  HIDOLibrary.lib(hido_arraryqueue.o)
    0x0800b0ec   0x0800b0ec   0x0000001c   Code   RO         9365    i.HIDO_ArraryQueueIsEmpty  HIDOLibrary.lib(hido_arraryqueue.o)
    0x0800b108   0x0800b108   0x0000001c   Code   RO         9366    i.HIDO_ArraryQueueIsFull  HIDOLibrary.lib(hido_arraryqueue.o)
    0x0800b124   0x0800b124   0x00000036   Code   RO         9368    i.HIDO_ArraryQueueOut  HIDOLibrary.lib(hido_arraryqueue.o)
    0x0800b15a   0x0800b15a   0x0000005a   Code   RO         9734    i.HIDO_AtLiteMatch  HIDOLibrary.lib(hido_atliteparse.o)
    0x0800b1b4   0x0800b1b4   0x0000002c   Code   RO         9678    i.HIDO_BaseQueueDequeue  HIDOLibrary.lib(hido_basequeue.o)
    0x0800b1e0   0x0800b1e0   0x0000002e   Code   RO         9679    i.HIDO_BaseQueueEnqueue  HIDOLibrary.lib(hido_basequeue.o)
    0x0800b20e   0x0800b20e   0x0000006e   Code   RO         9680    i.HIDO_BaseQueueGetContinuousSize  HIDOLibrary.lib(hido_basequeue.o)
    0x0800b27c   0x0800b27c   0x00000006   Code   RO         9681    i.HIDO_BaseQueueGetFront  HIDOLibrary.lib(hido_basequeue.o)
    0x0800b282   0x0800b282   0x00000006   Code   RO         9682    i.HIDO_BaseQueueGetRear  HIDOLibrary.lib(hido_basequeue.o)
    0x0800b288   0x0800b288   0x00000018   Code   RO         9683    i.HIDO_BaseQueueInit  HIDOLibrary.lib(hido_basequeue.o)
    0x0800b2a0   0x0800b2a0   0x00000018   Code   RO         9684    i.HIDO_BaseQueueIsEmpty  HIDOLibrary.lib(hido_basequeue.o)
    0x0800b2b8   0x0800b2b8   0x0000001a   Code   RO         9685    i.HIDO_BaseQueueIsFull  HIDOLibrary.lib(hido_basequeue.o)
    0x0800b2d2   0x0800b2d2   0x00000002   PAD
    0x0800b2d4   0x0800b2d4   0x00000048   Code   RO         5836    i.HIDO_Debug        dbg.o
    0x0800b31c   0x0800b31c   0x00000050   Code   RO         5838    i.HIDO_DebugEx      dbg.o
    0x0800b36c   0x0800b36c   0x00000068   Code   RO         5839    i.HIDO_DebugHex     dbg.o
    0x0800b3d4   0x0800b3d4   0x00000020   Code   RO         5840    i.HIDO_DebugString  dbg.o
    0x0800b3f4   0x0800b3f4   0x000000c8   Code   RO         8962    i.HIDO_FSMEventExecute  HIDOLibrary.lib(hido_fsm.o)
    0x0800b4bc   0x0800b4bc   0x00000070   Code   RO         8965    i.HIDO_FSMRegister  HIDOLibrary.lib(hido_fsm.o)
    0x0800b52c   0x0800b52c   0x00000010   Code   RO         8966    i.HIDO_FSMRegisterDebugFunc  HIDOLibrary.lib(hido_fsm.o)
    0x0800b53c   0x0800b53c   0x00000034   Code   RO         8968    i.HIDO_FSMStartTimer  HIDOLibrary.lib(hido_fsm.o)
    0x0800b570   0x0800b570   0x0000008a   Code   RO         8969    i.HIDO_FSMStateChange  HIDOLibrary.lib(hido_fsm.o)
    0x0800b5fa   0x0800b5fa   0x00000018   Code   RO         9459    i.HIDO_InputCmdBufMoveLeft  HIDOLibrary.lib(hido_input.o)
    0x0800b612   0x0800b612   0x0000001c   Code   RO         9460    i.HIDO_InputCmdBufMoveRight  HIDOLibrary.lib(hido_input.o)
    0x0800b62e   0x0800b62e   0x000000cc   Code   RO         9461    i.HIDO_InputDirKeyProc  HIDOLibrary.lib(hido_input.o)
    0x0800b6fa   0x0800b6fa   0x000000c4   Code   RO         9462    i.HIDO_InputDirectionKey  HIDOLibrary.lib(hido_input.o)
    0x0800b7be   0x0800b7be   0x00000002   PAD
    0x0800b7c0   0x0800b7c0   0x00000524   Code   RO         9463    i.HIDO_InputFsm     HIDOLibrary.lib(hido_input.o)
    0x0800bce4   0x0800bce4   0x00000310   Code   RO         9465    i.HIDO_InputLoginFsm  HIDOLibrary.lib(hido_input.o)
    0x0800bff4   0x0800bff4   0x00000118   Code   RO         9466    i.HIDO_InputPoll    HIDOLibrary.lib(hido_input.o)
    0x0800c10c   0x0800c10c   0x00000014   Code   RO         9467    i.HIDO_InputRegister  HIDOLibrary.lib(hido_input.o)
    0x0800c120   0x0800c120   0x00000006   Code   RO         9468    i.HIDO_InputUserVerify  HIDOLibrary.lib(hido_input.o)
    0x0800c126   0x0800c126   0x00000002   PAD
    0x0800c128   0x0800c128   0x00000030   Code   RO         9044    i.HIDO_Lock         HIDOLibrary.lib(hido_lock.o)
    0x0800c158   0x0800c158   0x0000003c   Code   RO         9527    i.HIDO_ShellClear   HIDOLibrary.lib(hido_shell.o)
    0x0800c194   0x0800c194   0x00000060   Code   RO         9528    i.HIDO_ShellCmdRegister  HIDOLibrary.lib(hido_shell.o)
    0x0800c1f4   0x0800c1f4   0x00000084   Code   RO         9529    i.HIDO_ShellExecute  HIDOLibrary.lib(hido_shell.o)
    0x0800c278   0x0800c278   0x0000000c   Code   RO         9530    i.HIDO_ShellGetCmdCount  HIDOLibrary.lib(hido_shell.o)
    0x0800c284   0x0800c284   0x00000024   Code   RO         9531    i.HIDO_ShellGetCmdName  HIDOLibrary.lib(hido_shell.o)
    0x0800c2a8   0x0800c2a8   0x0000000c   Code   RO         9532    i.HIDO_ShellGetInput  HIDOLibrary.lib(hido_shell.o)
    0x0800c2b4   0x0800c2b4   0x00000094   Code   RO         9533    i.HIDO_ShellLs      HIDOLibrary.lib(hido_shell.o)
    0x0800c348   0x0800c348   0x0000000c   Code   RO         9534    i.HIDO_ShellSetInput  HIDOLibrary.lib(hido_shell.o)
    0x0800c354   0x0800c354   0x00000028   Code   RO         9079    i.HIDO_TimerCancel  HIDOLibrary.lib(hido_timer.o)
    0x0800c37c   0x0800c37c   0x00000060   Code   RO         9080    i.HIDO_TimerCreate  HIDOLibrary.lib(hido_timer.o)
    0x0800c3dc   0x0800c3dc   0x0000000c   Code   RO         9082    i.HIDO_TimerGetTick  HIDOLibrary.lib(hido_timer.o)
    0x0800c3e8   0x0800c3e8   0x0000009c   Code   RO         9084    i.HIDO_TimerPoll    HIDOLibrary.lib(hido_timer.o)
    0x0800c484   0x0800c484   0x00000058   Code   RO         9086    i.HIDO_TimerStart   HIDOLibrary.lib(hido_timer.o)
    0x0800c4dc   0x0800c4dc   0x00000028   Code   RO         9087    i.HIDO_TimerTick    HIDOLibrary.lib(hido_timer.o)
    0x0800c504   0x0800c504   0x00000038   Code   RO         9045    i.HIDO_UnLock       HIDOLibrary.lib(hido_lock.o)
    0x0800c53c   0x0800c53c   0x0000007e   Code   RO         9147    i.HIDO_UtilByteArrayToHexString  HIDOLibrary.lib(hido_util.o)
    0x0800c5ba   0x0800c5ba   0x00000022   Code   RO         9149    i.HIDO_UtilByteToChar  HIDOLibrary.lib(hido_util.o)
    0x0800c5dc   0x0800c5dc   0x00000010   Code   RO         9150    i.HIDO_UtilBzero    HIDOLibrary.lib(hido_util.o)
    0x0800c5ec   0x0800c5ec   0x00000032   Code   RO         9152    i.HIDO_UtilCharToHex  HIDOLibrary.lib(hido_util.o)
    0x0800c61e   0x0800c61e   0x00000020   Code   RO         9156    i.HIDO_UtilHexStrBufToInt  HIDOLibrary.lib(hido_util.o)
    0x0800c63e   0x0800c63e   0x0000001e   Code   RO         9157    i.HIDO_UtilHexStrToInt  HIDOLibrary.lib(hido_util.o)
    0x0800c65c   0x0800c65c   0x00000060   Code   RO         9160    i.HIDO_UtilIPStringToByteArrary  HIDOLibrary.lib(hido_util.o)
    0x0800c6bc   0x0800c6bc   0x00000034   Code   RO         9163    i.HIDO_UtilIsAsciiString  HIDOLibrary.lib(hido_util.o)
    0x0800c6f0   0x0800c6f0   0x000001e6   Code   RO         9168    i.HIDO_UtilParseFormat  HIDOLibrary.lib(hido_util.o)
    0x0800c8d6   0x0800c8d6   0x00000030   Code   RO         9169    i.HIDO_UtilSnprintf  HIDOLibrary.lib(hido_util.o)
    0x0800c906   0x0800c906   0x00000022   Code   RO         9170    i.HIDO_UtilStrBufToInt  HIDOLibrary.lib(hido_util.o)
    0x0800c928   0x0800c928   0x0000004c   Code   RO         9171    i.HIDO_UtilStrSplit  HIDOLibrary.lib(hido_util.o)
    0x0800c974   0x0800c974   0x00000048   Code   RO         9173    i.HIDO_UtilStrToInt  HIDOLibrary.lib(hido_util.o)
    0x0800c9bc   0x0800c9bc   0x00000020   Code   RO         9175    i.HIDO_UtilStrnchr  HIDOLibrary.lib(hido_util.o)
    0x0800c9dc   0x0800c9dc   0x0000002c   Code   RO         9411    i.HIDO_VLQDequeue   HIDOLibrary.lib(hido_vlqueue.o)
    0x0800ca08   0x0800ca08   0x0000002c   Code   RO         9412    i.HIDO_VLQEnqueue   HIDOLibrary.lib(hido_vlqueue.o)
    0x0800ca34   0x0800ca34   0x0000003c   Code   RO         9413    i.HIDO_VLQGetDequeueMember  HIDOLibrary.lib(hido_vlqueue.o)
    0x0800ca70   0x0800ca70   0x0000005c   Code   RO         9414    i.HIDO_VLQGetEnqueueMember  HIDOLibrary.lib(hido_vlqueue.o)
    0x0800cacc   0x0800cacc   0x0000004a   Code   RO         9415    i.HIDO_VLQInit      HIDOLibrary.lib(hido_vlqueue.o)
    0x0800cb16   0x0800cb16   0x00000002   Code   RO          401    i.HardFault_Handler  stm32l0xx_it.o
    0x0800cb18   0x0800cb18   0x00000054   Code   RO         6404    i.HexToAsciiSendUDP  app.o
    0x0800cb6c   0x0800cb6c   0x00000044   Code   RO         7049    i.IIC2_Ack          lis3dh_driver.o
    0x0800cbb0   0x0800cbb0   0x00000044   Code   RO         7051    i.IIC2_NAck         lis3dh_driver.o
    0x0800cbf4   0x0800cbf4   0x00000064   Code   RO         7052    i.IIC2_Read_Byte    lis3dh_driver.o
    0x0800cc58   0x0800cc58   0x00000064   Code   RO         7053    i.IIC2_Send_Byte    lis3dh_driver.o
    0x0800ccbc   0x0800ccbc   0x0000003c   Code   RO         7054    i.IIC2_Start        lis3dh_driver.o
    0x0800ccf8   0x0800ccf8   0x00000044   Code   RO         7055    i.IIC2_Stop         lis3dh_driver.o
    0x0800cd3c   0x0800cd3c   0x0000005c   Code   RO         7056    i.IIC2_Wait_Ack     lis3dh_driver.o
    0x0800cd98   0x0800cd98   0x00000034   Code   RO         6405    i.IdleTask          app.o
    0x0800cdcc   0x0800cdcc   0x00000010   Code   RO         5153    i.Internet_Init     internet.o
    0x0800cddc   0x0800cddc   0x00000008   Code   RO         5154    i.Internet_IsIPReady  internet.o
    0x0800cde4   0x0800cde4   0x00000014   Code   RO         5155    i.Internet_Poll     internet.o
    0x0800cdf8   0x0800cdf8   0x000000cc   Code   RO         6406    i.LBSLocationCallback  app.o
    0x0800cec4   0x0800cec4   0x0000006c   Code   RO         7057    i.LIS3DH_Data_Init  lis3dh_driver.o
    0x0800cf30   0x0800cf30   0x00000012   Code   RO         7074    i.LIS3DH_GetWHO_AM_I  lis3dh_driver.o
    0x0800cf42   0x0800cf42   0x0000003a   Code   RO         7080    i.LIS3DH_ReadOneByte  lis3dh_driver.o
    0x0800cf7c   0x0800cf7c   0x0000000e   Code   RO         7081    i.LIS3DH_ReadReg    lis3dh_driver.o
    0x0800cf8a   0x0800cf8a   0x00000034   Code   RO         7111    i.LIS3DH_WriteOneByte  lis3dh_driver.o
    0x0800cfbe   0x0800cfbe   0x0000000a   Code   RO         7112    i.LIS3DH_WriteReg   lis3dh_driver.o
    0x0800cfc8   0x0800cfc8   0x00000010   Code   RO          402    i.LPTIM1_IRQHandler  stm32l0xx_it.o
    0x0800cfd8   0x0800cfd8   0x000000ec   Code   RO         2555    i.LPTIM_Disable     stm32l0xx_hal_lptim.o
    0x0800d0c4   0x0800d0c4   0x00000038   Code   RO         2556    i.LPTIM_WaitForFlag  stm32l0xx_hal_lptim.o
    0x0800d0fc   0x0800d0fc   0x00000070   Code   RO           23    i.MX_ADC_Init       main.o
    0x0800d16c   0x0800d16c   0x000001d0   Code   RO           24    i.MX_GPIO_Init      main.o
    0x0800d33c   0x0800d33c   0x00000040   Code   RO           25    i.MX_SPI1_Init      main.o
    0x0800d37c   0x0800d37c   0x00000088   Code   RO           26    i.MX_TIM3_Init      main.o
    0x0800d404   0x0800d404   0x00000038   Code   RO           27    i.MX_USART1_UART_Init  main.o
    0x0800d43c   0x0800d43c   0x00000038   Code   RO           28    i.MX_USART2_UART_Init  main.o
    0x0800d474   0x0800d474   0x00000038   Code   RO           29    i.MX_USART5_UART_Init  main.o
    0x0800d4ac   0x0800d4ac   0x00000104   Code   RO         6407    i.Main_Poll         app.o
    0x0800d5b0   0x0800d5b0   0x00000174   Code   RO         6570    i.MbxTagUwbRec      dw_mbx_tag.o
    0x0800d724   0x0800d724   0x00000008   Code   RO         5203    i.Module_GetCCID    module.o
    0x0800d72c   0x0800d72c   0x00000008   Code   RO         5204    i.Module_GetIMEI    module.o
    0x0800d734   0x0800d734   0x00000008   Code   RO         5205    i.Module_GetIMSI    module.o
    0x0800d73c   0x0800d73c   0x00000014   Code   RO         5206    i.Module_GetLBSLocationAsync  module.o
    0x0800d750   0x0800d750   0x00000008   Code   RO         5207    i.Module_GetRunATCmd  module.o
    0x0800d758   0x0800d758   0x00000010   Code   RO         5210    i.Module_LBSLocationNeedRequest  module.o
    0x0800d768   0x0800d768   0x00000028   Code   RO         5211    i.Module_LBSLocationResult  module.o
    0x0800d790   0x0800d790   0x00000010   Code   RO         5212    i.Module_NeedPowerOff  module.o
    0x0800d7a0   0x0800d7a0   0x00000010   Code   RO         5213    i.Module_NeedPowerOn  module.o
    0x0800d7b0   0x0800d7b0   0x00000018   Code   RO         5216    i.Module_PowerEvent  module.o
    0x0800d7c8   0x0800d7c8   0x00000014   Code   RO         5217    i.Module_PowerOff   module.o
    0x0800d7dc   0x0800d7dc   0x00000014   Code   RO         5218    i.Module_PowerOn    module.o
    0x0800d7f0   0x0800d7f0   0x00000028   Code   RO         5219    i.Module_RunATCmd   module.o
    0x0800d818   0x0800d818   0x00000010   Code   RO         5220    i.Module_RunATCmdEnable  module.o
    0x0800d828   0x0800d828   0x00000004   Code   RO         5221    i.Module_RunATCmdResult  module.o
    0x0800d82c   0x0800d82c   0x00000018   Code   RO         5222    i.Module_SetCCID    module.o
    0x0800d844   0x0800d844   0x0000002c   Code   RO         5223    i.Module_SetIMEI    module.o
    0x0800d870   0x0800d870   0x0000002c   Code   RO         5224    i.Module_SetIMSI    module.o
    0x0800d89c   0x0800d89c   0x00000010   Code   RO         5226    i.Module_SignalIntensityNeedRequest  module.o
    0x0800d8ac   0x0800d8ac   0x0000001c   Code   RO         5227    i.Module_SignalIntensityResult  module.o
    0x0800d8c8   0x0800d8c8   0x00000002   Code   RO          403    i.NMI_Handler       stm32l0xx_it.o
    0x0800d8ca   0x0800d8ca   0x00000002   Code   RO          404    i.PendSV_Handler    stm32l0xx_it.o
    0x0800d8cc   0x0800d8cc   0x00000180   Code   RO         6408    i.PowerLedTask      app.o
    0x0800da4c   0x0800da4c   0x00000024   Code   RO           30    i.Powerled_Poll     main.o
    0x0800da70   0x0800da70   0x00000184   Code   RO         6409    i.Program_Init      app.o
    0x0800dbf4   0x0800dbf4   0x00000018   Code   RO         6681    i.RGB_Rst           ws2812.o
    0x0800dc0c   0x0800dc0c   0x00000044   Code   RO         6682    i.RGB_Set           ws2812.o
    0x0800dc50   0x0800dc50   0x00000064   Code   RO         6683    i.RGB_Set_BLUE      ws2812.o
    0x0800dcb4   0x0800dcb4   0x00000024   Code   RO         6684    i.RGB_Set_Down      ws2812.o
    0x0800dcd8   0x0800dcd8   0x00000064   Code   RO         6685    i.RGB_Set_GREEN     ws2812.o
    0x0800dd3c   0x0800dd3c   0x00000064   Code   RO         6686    i.RGB_Set_LEDOFF    ws2812.o
    0x0800dda0   0x0800dda0   0x00000064   Code   RO         6687    i.RGB_Set_RED       ws2812.o
    0x0800de04   0x0800de04   0x00000038   Code   RO         6688    i.RGB_Set_Up        ws2812.o
    0x0800de3c   0x0800de3c   0x00000064   Code   RO         6689    i.RGB_Set_WHITE     ws2812.o
    0x0800dea0   0x0800dea0   0x00000046   Code   RO         2804    i.RTC_EnterInitMode  stm32l0xx_hal_rtc.o
    0x0800dee6   0x0800dee6   0x0000002e   Code   RO         2805    i.RTC_ExitInitMode  stm32l0xx_hal_rtc.o
    0x0800df14   0x0800df14   0x0000005c   Code   RO         6655    i.Reset_DW1000      dw_driver.o
    0x0800df70   0x0800df70   0x00000048   Code   RO         5698    i.SPIFlash_BulkErase  spiflash.o
    0x0800dfb8   0x0800dfb8   0x0000001c   Code   RO         5699    i.SPIFlash_CSDisable  spiflash.o
    0x0800dfd4   0x0800dfd4   0x0000001c   Code   RO         5700    i.SPIFlash_CSEnable  spiflash.o
    0x0800dff0   0x0800dff0   0x00000074   Code   RO         5701    i.SPIFlash_Erase    spiflash.o
    0x0800e064   0x0800e064   0x00000074   Code   RO         5702    i.SPIFlash_Init     spiflash.o
    0x0800e0d8   0x0800e0d8   0x000000ba   Code   RO         5703    i.SPIFlash_PageProgram  spiflash.o
    0x0800e192   0x0800e192   0x00000002   PAD
    0x0800e194   0x0800e194   0x00000018   Code   RO         5704    i.SPIFlash_PinRegister  spiflash.o
    0x0800e1ac   0x0800e1ac   0x00000048   Code   RO         5707    i.SPIFlash_ReadJedecID  spiflash.o
    0x0800e1f4   0x0800e1f4   0x00000090   Code   RO         5710    i.SPIFlash_SectorErase  spiflash.o
    0x0800e284   0x0800e284   0x0000001c   Code   RO         5711    i.SPIFlash_SendByte  spiflash.o
    0x0800e2a0   0x0800e2a0   0x00000040   Code   RO         5713    i.SPIFlash_WaitBusy  spiflash.o
    0x0800e2e0   0x0800e2e0   0x00000068   Code   RO         5714    i.SPIFlash_Write    spiflash.o
    0x0800e348   0x0800e348   0x0000001e   Code   RO         5715    i.SPIFlash_WriteDisable  spiflash.o
    0x0800e366   0x0800e366   0x0000001e   Code   RO         5716    i.SPIFlash_WriteEnable  spiflash.o
    0x0800e384   0x0800e384   0x00000060   Code   RO         3222    i.SPI_EndRxTxTransaction  stm32l0xx_hal_spi.o
    0x0800e3e4   0x0800e3e4   0x00000030   Code   RO         6099    i.SPI_ReadWrite     spi_hal.o
    0x0800e414   0x0800e414   0x00000010   Code   RO         6100    i.SPI_Register      spi_hal.o
    0x0800e424   0x0800e424   0x000000b8   Code   RO         3227    i.SPI_WaitFlagStateUntilTimeout  stm32l0xx_hal_spi.o
    0x0800e4dc   0x0800e4dc   0x0000001c   Code   RO         6101    i.SPI_Write         spi_hal.o
    0x0800e4f8   0x0800e4f8   0x00000002   Code   RO          405    i.SVC_Handler       stm32l0xx_it.o
    0x0800e4fa   0x0800e4fa   0x00000002   PAD
    0x0800e4fc   0x0800e4fc   0x00000080   Code   RO         6765    i.SendComMap        serial_at_cmd_app.o
    0x0800e57c   0x0800e57c   0x0000003c   Code   RO         6690    i.Set4LEDColor      ws2812.o
    0x0800e5b8   0x0800e5b8   0x00000014   Code   RO         6691    i.Set4LEDColor_Off  ws2812.o
    0x0800e5cc   0x0800e5cc   0x00000040   Code   RO         6813    i.Shell_ATCmd       shell.o
    0x0800e60c   0x0800e60c   0x00000004   Code   RO         6814    i.Shell_AudioVolume  shell.o
    0x0800e610   0x0800e610   0x00000038   Code   RO         6815    i.Shell_CloseWireless  shell.o
    0x0800e648   0x0800e648   0x000000e8   Code   RO         6816    i.Shell_DBGMode     shell.o
    0x0800e730   0x0800e730   0x00000084   Code   RO         6817    i.Shell_DEVID       shell.o
    0x0800e7b4   0x0800e7b4   0x00000048   Code   RO         6818    i.Shell_DebugOff    shell.o
    0x0800e7fc   0x0800e7fc   0x00000044   Code   RO         6819    i.Shell_DebugOn     shell.o
    0x0800e840   0x0800e840   0x00000088   Code   RO         6820    i.Shell_GPSBaudRate  shell.o
    0x0800e8c8   0x0800e8c8   0x00000110   Code   RO         6821    i.Shell_Info        shell.o
    0x0800e9d8   0x0800e9d8   0x00000014   Code   RO         6822    i.Shell_Init        shell.o
    0x0800e9ec   0x0800e9ec   0x00000070   Code   RO         6823    i.Shell_Log         shell.o
    0x0800ea5c   0x0800ea5c   0x00000034   Code   RO         6824    i.Shell_LogClean    shell.o
    0x0800ea90   0x0800ea90   0x00000054   Code   RO         6825    i.Shell_LogPrint    shell.o
    0x0800eae4   0x0800eae4   0x00000004   Code   RO         6826    i.Shell_LogUpload   shell.o
    0x0800eae8   0x0800eae8   0x00000002   Code   RO         6827    i.Shell_OTA         shell.o
    0x0800eaea   0x0800eaea   0x00000002   PAD
    0x0800eaec   0x0800eaec   0x00000038   Code   RO         6828    i.Shell_OpenWireless  shell.o
    0x0800eb24   0x0800eb24   0x00000038   Code   RO         6829    i.Shell_PowerOff    shell.o
    0x0800eb5c   0x0800eb5c   0x00000038   Code   RO         6830    i.Shell_PowerOn     shell.o
    0x0800eb94   0x0800eb94   0x00000078   Code   RO         6831    i.Shell_RTCAlarm    shell.o
    0x0800ec0c   0x0800ec0c   0x00000004   Code   RO         6832    i.Shell_RTCGet      shell.o
    0x0800ec10   0x0800ec10   0x0000005c   Code   RO         6833    i.Shell_RTCSet      shell.o
    0x0800ec6c   0x0800ec6c   0x0000000a   Code   RO         6834    i.Shell_Reboot      shell.o
    0x0800ec76   0x0800ec76   0x00000002   PAD
    0x0800ec78   0x0800ec78   0x000000c4   Code   RO         6835    i.Shell_SetDataRate  shell.o
    0x0800ed3c   0x0800ed3c   0x00000078   Code   RO         6836    i.Shell_SetGpsUpdateTime  shell.o
    0x0800edb4   0x0800edb4   0x00000074   Code   RO         6837    i.Shell_SetNtrip    shell.o
    0x0800ee28   0x0800ee28   0x00000074   Code   RO         6838    i.Shell_SetQXWZ     shell.o
    0x0800ee9c   0x0800ee9c   0x00000090   Code   RO         6839    i.Shell_SetRTCMMode  shell.o
    0x0800ef2c   0x0800ef2c   0x000000cc   Code   RO         6840    i.Shell_SetRTCMTCPInfo  shell.o
    0x0800eff8   0x0800eff8   0x000000cc   Code   RO         6841    i.Shell_SetServerInfo  shell.o
    0x0800f0c4   0x0800f0c4   0x00000090   Code   RO         6842    i.Shell_SetUWBEnable  shell.o
    0x0800f154   0x0800f154   0x00000048   Code   RO         6843    i.Shell_Set_Chaichugps_S  shell.o
    0x0800f19c   0x0800f19c   0x00000048   Code   RO         6844    i.Shell_Set_Gps_S   shell.o
    0x0800f1e4   0x0800f1e4   0x00000004   Code   RO         6845    i.Shell_Sleep       shell.o
    0x0800f1e8   0x0800f1e8   0x00000018   Code   RO         6846    i.Shell_SocketEventProc  shell.o
    0x0800f200   0x0800f200   0x00000094   Code   RO         6847    i.Shell_TCPClose    shell.o
    0x0800f294   0x0800f294   0x000000a4   Code   RO         6848    i.Shell_TCPConnect  shell.o
    0x0800f338   0x0800f338   0x000000a0   Code   RO         6849    i.Shell_TCPCreate   shell.o
    0x0800f3d8   0x0800f3d8   0x000000a4   Code   RO         6850    i.Shell_TCPSend     shell.o
    0x0800f47c   0x0800f47c   0x00000004   Code   RO         6851    i.Shell_TTSPlay     shell.o
    0x0800f480   0x0800f480   0x00000004   Code   RO         6852    i.Shell_Test        shell.o
    0x0800f484   0x0800f484   0x00000068   Code   RO         6853    i.Shell_Update      shell.o
    0x0800f4ec   0x0800f4ec   0x00000034   Code   RO           31    i.Sleep_Panduan_Poll  main.o
    0x0800f520   0x0800f520   0x00000030   Code   RO         5377    i.Socket_Close      socket.o
    0x0800f550   0x0800f550   0x00000044   Code   RO         5378    i.Socket_ClosedAll  socket.o
    0x0800f594   0x0800f594   0x00000040   Code   RO         5379    i.Socket_Connect    socket.o
    0x0800f5d4   0x0800f5d4   0x00000088   Code   RO         5380    i.Socket_Create     socket.o
    0x0800f65c   0x0800f65c   0x00000024   Code   RO         5381    i.Socket_Destroy    socket.o
    0x0800f680   0x0800f680   0x00000020   Code   RO         5382    i.Socket_GetRemoteAddr  socket.o
    0x0800f6a0   0x0800f6a0   0x0000001c   Code   RO         5383    i.Socket_GetRemotePort  socket.o
    0x0800f6bc   0x0800f6bc   0x0000001c   Code   RO         5385    i.Socket_GetSocketSendQueue  socket.o
    0x0800f6d8   0x0800f6d8   0x0000001c   Code   RO         5386    i.Socket_GetSocketState  socket.o
    0x0800f6f4   0x0800f6f4   0x0000001c   Code   RO         5387    i.Socket_GetType    socket.o
    0x0800f710   0x0800f710   0x0000003c   Code   RO         5394    i.Socket_OnClosed   socket.o
    0x0800f74c   0x0800f74c   0x00000034   Code   RO         5395    i.Socket_OnConnectFailed  socket.o
    0x0800f780   0x0800f780   0x00000078   Code   RO         5396    i.Socket_OnConnected  socket.o
    0x0800f7f8   0x0800f7f8   0x00000030   Code   RO         5397    i.Socket_OnRecv     socket.o
    0x0800f828   0x0800f828   0x0000008c   Code   RO         5398    i.Socket_Recv       socket.o
    0x0800f8b4   0x0800f8b4   0x00000098   Code   RO         5400    i.Socket_RecvData   socket.o
    0x0800f94c   0x0800f94c   0x00000078   Code   RO         5401    i.Socket_Send       socket.o
    0x0800f9c4   0x0800f9c4   0x00000020   Code   RO         5402    i.Socket_SetSocketState  socket.o
    0x0800f9e4   0x0800f9e4   0x00000014   Code   RO         6136    i.Spi_ChangePrescaler  spi.o
    0x0800f9f8   0x0800f9f8   0x00000068   Code   RO         6410    i.Stop_Mode_Poll    app.o
    0x0800fa60   0x0800fa60   0x00000068   Code   RO         6411    i.Stop_chongdian_Mode_Poll  app.o
    0x0800fac8   0x0800fac8   0x0000000c   Code   RO          406    i.SysTick_Handler   stm32l0xx_it.o
    0x0800fad4   0x0800fad4   0x000000b8   Code   RO           32    i.SystemClock_Config  main.o
    0x0800fb8c   0x0800fb8c   0x00000010   Code   RO         4689    i.SystemInit        system_stm32l0xx.o
    0x0800fb9c   0x0800fb9c   0x00000068   Code   RO         3586    i.TIM_Base_SetConfig  stm32l0xx_hal_tim.o
    0x0800fc04   0x0800fc04   0x00000030   Code   RO         3599    i.TIM_OC1_SetConfig  stm32l0xx_hal_tim.o
    0x0800fc34   0x0800fc34   0x00000032   Code   RO         3600    i.TIM_OC2_SetConfig  stm32l0xx_hal_tim.o
    0x0800fc66   0x0800fc66   0x00000036   Code   RO         3601    i.TIM_OC3_SetConfig  stm32l0xx_hal_tim.o
    0x0800fc9c   0x0800fc9c   0x00000036   Code   RO         3602    i.TIM_OC4_SetConfig  stm32l0xx_hal_tim.o
    0x0800fcd2   0x0800fcd2   0x000000ca   Code   RO         4257    i.UART_AdvFeatureConfig  stm32l0xx_hal_uart.o
    0x0800fd9c   0x0800fd9c   0x000000c4   Code   RO         4258    i.UART_CheckIdleState  stm32l0xx_hal_uart.o
    0x0800fe60   0x0800fe60   0x00000014   Code   RO         4259    i.UART_DMAAbortOnError  stm32l0xx_hal_uart.o
    0x0800fe74   0x0800fe74   0x0000004c   Code   RO         4260    i.UART_DMAError     stm32l0xx_hal_uart.o
    0x0800fec0   0x0800fec0   0x0000009c   Code   RO         4261    i.UART_DMAReceiveCplt  stm32l0xx_hal_uart.o
    0x0800ff5c   0x0800ff5c   0x00000020   Code   RO         4263    i.UART_DMARxHalfCplt  stm32l0xx_hal_uart.o
    0x0800ff7c   0x0800ff7c   0x0000004c   Code   RO         4265    i.UART_DMATransmitCplt  stm32l0xx_hal_uart.o
    0x0800ffc8   0x0800ffc8   0x0000000a   Code   RO         4267    i.UART_DMATxHalfCplt  stm32l0xx_hal_uart.o
    0x0800ffd2   0x0800ffd2   0x00000060   Code   RO         4269    i.UART_EndRxTransfer  stm32l0xx_hal_uart.o
    0x08010032   0x08010032   0x00000020   Code   RO         4270    i.UART_EndTxTransfer  stm32l0xx_hal_uart.o
    0x08010052   0x08010052   0x00000002   PAD
    0x08010054   0x08010054   0x000000d8   Code   RO         4271    i.UART_RxISR_16BIT  stm32l0xx_hal_uart.o
    0x0801012c   0x0801012c   0x000000d8   Code   RO         4272    i.UART_RxISR_8BIT   stm32l0xx_hal_uart.o
    0x08010204   0x08010204   0x00000214   Code   RO         4273    i.UART_SetConfig    stm32l0xx_hal_uart.o
    0x08010418   0x08010418   0x000000ac   Code   RO         4274    i.UART_Start_Receive_DMA  stm32l0xx_hal_uart.o
    0x080104c4   0x080104c4   0x000000c8   Code   RO         4275    i.UART_Start_Receive_IT  stm32l0xx_hal_uart.o
    0x0801058c   0x0801058c   0x0000005e   Code   RO         4276    i.UART_TxISR_16BIT  stm32l0xx_hal_uart.o
    0x080105ea   0x080105ea   0x0000005a   Code   RO         4277    i.UART_TxISR_8BIT   stm32l0xx_hal_uart.o
    0x08010644   0x08010644   0x0000008a   Code   RO         4278    i.UART_WaitOnFlagUntilTimeout  stm32l0xx_hal_uart.o
    0x080106ce   0x080106ce   0x00000002   PAD
    0x080106d0   0x080106d0   0x000004e8   Code   RO         6268    i.UDPClient_CmdParse  udpclient.o
    0x08010bb8   0x08010bb8   0x000000c4   Code   RO         6269    i.UDPClient_Heartbeat  udpclient.o
    0x08010c7c   0x08010c7c   0x0000001c   Code   RO         6270    i.UDPClient_Init    udpclient.o
    0x08010c98   0x08010c98   0x0000008c   Code   RO         6271    i.UDPClient_Poll    udpclient.o
    0x08010d24   0x08010d24   0x00000054   Code   RO         6272    i.UDPClient_SocketEventProc  udpclient.o
    0x08010d78   0x08010d78   0x00000040   Code   RO         6273    i.UDPClient_UploadGPS  udpclient.o
    0x08010db8   0x08010db8   0x00000050   Code   RO         6274    i.UDPClient_Uploadhex  udpclient.o
    0x08010e08   0x08010e08   0x00000010   Code   RO          407    i.USART1_IRQHandler  stm32l0xx_it.o
    0x08010e18   0x08010e18   0x00000010   Code   RO          408    i.USART2_IRQHandler  stm32l0xx_it.o
    0x08010e28   0x08010e28   0x00000010   Code   RO          409    i.USART4_5_IRQHandler  stm32l0xx_it.o
    0x08010e38   0x08010e38   0x00000080   Code   RO         5996    i.Uart_GetChar      uart.o
    0x08010eb8   0x08010eb8   0x00000024   Code   RO         5997    i.Uart_GetHandle    uart.o
    0x08010edc   0x08010edc   0x000000a0   Code   RO         5998    i.Uart_Init         uart.o
    0x08010f7c   0x08010f7c   0x00000038   Code   RO         5999    i.Uart_RXDMAEnable  uart.o
    0x08010fb4   0x08010fb4   0x0000001c   Code   RO         6000    i.Uart_RXINTEnable  uart.o
    0x08010fd0   0x08010fd0   0x00000038   Code   RO         6001    i.Uart_ReConfigBaudRate  uart.o
    0x08011008   0x08011008   0x00000074   Code   RO         6002    i.Uart_ReInit       uart.o
    0x0801107c   0x0801107c   0x0000002c   Code   RO         6003    i.Uart_Register     uart.o
    0x080110a8   0x080110a8   0x00000044   Code   RO         6004    i.Uart_RxErrorFromISR  uart.o
    0x080110ec   0x080110ec   0x00000058   Code   RO         6005    i.Uart_RxOverFromISR  uart.o
    0x08011144   0x08011144   0x000000d8   Code   RO         6006    i.Uart_Send         uart.o
    0x0801121c   0x0801121c   0x00000084   Code   RO         6007    i.Uart_TxOverFromISR  uart.o
    0x080112a0   0x080112a0   0x0000007c   Code   RO         6766    i.UpdateProcess     serial_at_cmd_app.o
    0x0801131c   0x0801131c   0x0000011c   Code   RO         6767    i.UsartParseDataHandler  serial_at_cmd_app.o
    0x08011438   0x08011438   0x00000038   Code   RO         6137    i.Uwb_CS_di         spi.o
    0x08011470   0x08011470   0x0000013c   Code   RO         6412    i.Uwb_Zubao_Poll    app.o
    0x080115ac   0x080115ac   0x00000020   Code   RO        10062    i.__0printf         mc_p.l(printfa.o)
    0x080115cc   0x080115cc   0x00000034   Code   RO        10063    i.__0snprintf       mc_p.l(printfa.o)
    0x08011600   0x08011600   0x00000028   Code   RO        10064    i.__0sprintf        mc_p.l(printfa.o)
    0x08011628   0x08011628   0x0000002c   Code   RO        10067    i.__0vsnprintf      mc_p.l(printfa.o)
    0x08011654   0x08011654   0x0000002e   Code   RO        10194    i.__ARM_clz         mf_p.l(depilogue.o)
    0x08011682   0x08011682   0x00000030   Code   RO         1643    i.__ARM_common_ll_muluu  stm32l0xx_hal_rcc.o
    0x080116b2   0x080116b2   0x0000001a   Code   RO         2130    i.__ARM_common_switch8  stm32l0xx_hal_dma.o
    0x080116cc   0x080116cc   0x00000044   Code   RO         2324    i.__NVIC_SetPriority  stm32l0xx_hal_cortex.o
    0x08011710   0x08011710   0x00000008   Code   RO        10172    i.__aeabi_errno_addr  mc_p.l(errno.o)
    0x08011718   0x08011718   0x0000000c   Code   RO        10173    i.__read_errno      mc_p.l(errno.o)
    0x08011724   0x08011724   0x0000000e   Code   RO        10251    i.__scatterload_copy  mc_p.l(handlers.o)
    0x08011732   0x08011732   0x00000002   Code   RO        10252    i.__scatterload_null  mc_p.l(handlers.o)
    0x08011734   0x08011734   0x0000000e   Code   RO        10253    i.__scatterload_zeroinit  mc_p.l(handlers.o)
    0x08011742   0x08011742   0x00000002   PAD
    0x08011744   0x08011744   0x0000000c   Code   RO        10174    i.__set_errno       mc_p.l(errno.o)
    0x08011750   0x08011750   0x00000026   Code   RO         8396    i._dwt_aonarrayupload  deca_device.o
    0x08011776   0x08011776   0x00000002   PAD
    0x08011778   0x08011778   0x0000003c   Code   RO         8398    i._dwt_configlde    deca_device.o
    0x080117b4   0x080117b4   0x000000b6   Code   RO         8400    i._dwt_enableclocks  deca_device.o
    0x0801186a   0x0801186a   0x00000032   Code   RO         8401    i._dwt_loaducodefromrom  deca_device.o
    0x0801189c   0x0801189c   0x00000044   Code   RO         8403    i._dwt_otpread      deca_device.o
    0x080118e0   0x080118e0   0x00000174   Code   RO        10069    i._fp_digits        mc_p.l(printfa.o)
    0x08011a54   0x08011a54   0x0000000e   Code   RO        10238    i._is_digit         mc_p.l(scanf_fp.o)
    0x08011a62   0x08011a62   0x00000002   PAD
    0x08011a64   0x08011a64   0x000006ec   Code   RO        10070    i._printf_core      mc_p.l(printfa.o)
    0x08012150   0x08012150   0x00000020   Code   RO        10071    i._printf_post_padding  mc_p.l(printfa.o)
    0x08012170   0x08012170   0x0000002c   Code   RO        10072    i._printf_pre_padding  mc_p.l(printfa.o)
    0x0801219c   0x0801219c   0x00000016   Code   RO        10073    i._snputc           mc_p.l(printfa.o)
    0x080121b2   0x080121b2   0x0000000a   Code   RO        10074    i._sputc            mc_p.l(printfa.o)
    0x080121bc   0x080121bc   0x0000002a   Code   RO         9765    i.atof              m_ps.l(atof.o)
    0x080121e6   0x080121e6   0x0000000e   Code   RO         6656    i.delay_ms          dw_driver.o
    0x080121f4   0x080121f4   0x0000008c   Code   RO         7113    i.delay_us          lis3dh_driver.o
    0x08012280   0x08012280   0x00000210   Code   RO         8411    i.dwt_configure     deca_device.o
    0x08012490   0x08012490   0x00000028   Code   RO         8412    i.dwt_configuresleep  deca_device.o
    0x080124b8   0x080124b8   0x00000008   Code   RO         8417    i.dwt_entersleep    deca_device.o
    0x080124c0   0x080124c0   0x00000026   Code   RO         8418    i.dwt_entersleepaftertx  deca_device.o
    0x080124e6   0x080124e6   0x00000002   PAD
    0x080124e8   0x080124e8   0x00000050   Code   RO         8419    i.dwt_forcetrxoff   deca_device.o
    0x08012538   0x08012538   0x0000012c   Code   RO         8423    i.dwt_initialise    deca_device.o
    0x08012664   0x08012664   0x0000002c   Code   RO         8429    i.dwt_read16bitoffsetreg  deca_device.o
    0x08012690   0x08012690   0x00000028   Code   RO         8430    i.dwt_read32bitoffsetreg  deca_device.o
    0x080126b8   0x080126b8   0x0000000c   Code   RO         8433    i.dwt_readdevid     deca_device.o
    0x080126c4   0x080126c4   0x00000038   Code   RO         8436    i.dwt_readfromdevice  deca_device.o
    0x080126fc   0x080126fc   0x00000012   Code   RO         8437    i.dwt_readrxdata    deca_device.o
    0x0801270e   0x0801270e   0x00000010   Code   RO         8438    i.dwt_readrxtimestamp  deca_device.o
    0x0801271e   0x0801271e   0x00000054   Code   RO         8449    i.dwt_rxenable      deca_device.o
    0x08012772   0x08012772   0x0000000e   Code   RO         8458    i.dwt_setdelayedtrxtime  deca_device.o
    0x08012780   0x08012780   0x00000024   Code   RO         8460    i.dwt_setinterrupt  deca_device.o
    0x080127a4   0x080127a4   0x00000014   Code   RO         8465    i.dwt_setrxantennadelay  deca_device.o
    0x080127b8   0x080127b8   0x0000005c   Code   RO         8467    i.dwt_setrxtimeout  deca_device.o
    0x08012814   0x08012814   0x0000000e   Code   RO         8469    i.dwt_settxantennadelay  deca_device.o
    0x08012822   0x08012822   0x00000002   PAD
    0x08012824   0x08012824   0x00000094   Code   RO         8472    i.dwt_starttx       deca_device.o
    0x080128b8   0x080128b8   0x00000034   Code   RO         8473    i.dwt_syncrxbufptrs  deca_device.o
    0x080128ec   0x080128ec   0x00000016   Code   RO         8474    i.dwt_write16bitoffsetreg  deca_device.o
    0x08012902   0x08012902   0x0000001e   Code   RO         8475    i.dwt_write32bitoffsetreg  deca_device.o
    0x08012920   0x08012920   0x00000038   Code   RO         8476    i.dwt_writetodevice  deca_device.o
    0x08012958   0x08012958   0x00000024   Code   RO         8477    i.dwt_writetxdata   deca_device.o
    0x0801297c   0x0801297c   0x0000001c   Code   RO         8478    i.dwt_writetxfctrl  deca_device.o
    0x08012998   0x08012998   0x00000030   Code   RO         8479    i.dwt_xtaltrim      deca_device.o
    0x080129c8   0x080129c8   0x00000018   Code   RO         6008    i.fputc             uart.o
    0x080129e0   0x080129e0   0x000001dc   Code   RO           33    i.main              main.o
    0x08012bbc   0x08012bbc   0x000000d0   Code   RO         6367    i.parameter_init    global_param.o
    0x08012c8c   0x08012c8c   0x00000058   Code   RO         6138    i.readfromspi       spi.o
    0x08012ce4   0x08012ce4   0x0000001e   Code   RO         6572    i.resp_msg_set_ts   dw_mbx_tag.o
    0x08012d02   0x08012d02   0x00000002   PAD
    0x08012d04   0x08012d04   0x00000040   Code   RO         6368    i.save_com_map_to_flash  global_param.o
    0x08012d44   0x08012d44   0x0000000c   Code   RO         6692    i.w28delay          ws2812.o
    0x08012d50   0x08012d50   0x00000054   Code   RO         6139    i.writetospi        spi.o
    0x08012da4   0x08012da4   0x00000019   Data   RO         4690    .constdata          system_stm32l0xx.o
    0x08012dbd   0x08012dbd   0x00000008   Data   RO         4691    .constdata          system_stm32l0xx.o
    0x08012dc5   0x08012dc5   0x00000003   PAD
    0x08012dc8   0x08012dc8   0x000002c8   Data   RO         4738    .constdata          air780edriver.o
    0x08013090   0x08013090   0x0000013c   Data   RO         4902    .constdata          air780efsm.o
    0x080131cc   0x080131cc   0x00000010   Data   RO         4904    .constdata          air780efsm.o
    0x080131dc   0x080131dc   0x00000030   Data   RO         5076    .constdata          air780esocket.o
    0x0801320c   0x0801320c   0x00000010   Data   RO         5718    .constdata          spiflash.o
    0x0801321c   0x0801321c   0x00000138   Data   RO         6854    .constdata          shell.o
    0x08013354   0x08013354   0x00000008   Data   RO         8923    .constdata          deca_params_init.o
    0x0801335c   0x0801335c   0x00000018   Data   RO         8924    .constdata          deca_params_init.o
    0x08013374   0x08013374   0x00000008   Data   RO         8925    .constdata          deca_params_init.o
    0x0801337c   0x0801337c   0x0000000c   Data   RO         8926    .constdata          deca_params_init.o
    0x08013388   0x08013388   0x00000004   Data   RO         8927    .constdata          deca_params_init.o
    0x0801338c   0x0801338c   0x00000020   Data   RO         8928    .constdata          deca_params_init.o
    0x080133ac   0x080133ac   0x00000032   Data   RO         8929    .constdata          deca_params_init.o
    0x080133de   0x080133de   0x00000081   Data   RO        10207    .constdata          mc_p.l(ctype_o.o)
    0x0801345f   0x0801345f   0x00000001   PAD
    0x08013460   0x08013460   0x00000004   Data   RO        10208    .constdata          mc_p.l(ctype_o.o)
    0x08013464   0x08013464   0x000007b0   Data   RO         4739    .conststring        air780edriver.o
    0x08013c14   0x08013c14   0x00000188   Data   RO         4905    .conststring        air780efsm.o
    0x08013d9c   0x08013d9c   0x00000018   Data   RO         4907    .conststring        air780efsm.o
    0x08013db4   0x08013db4   0x00000041   Data   RO         5077    .conststring        air780esocket.o
    0x08013df5   0x08013df5   0x00000003   PAD
    0x08013df8   0x08013df8   0x0000000b   Data   RO         5123    .conststring        air780ecsq.o
    0x08013e03   0x08013e03   0x00000001   PAD
    0x08013e04   0x08013e04   0x0000000b   Data   RO         5550    .conststring        air780eloc.o
    0x08013e0f   0x08013e0f   0x00000001   PAD
    0x08013e10   0x08013e10   0x000001d1   Data   RO         6855    .conststring        shell.o
    0x08013fe1   0x08013fe1   0x00000003   PAD
    0x08013fe4   0x08013fe4   0x0000000b   Data   RO         9535    .conststring        HIDOLibrary.lib(hido_shell.o)
    0x08013fef   0x08013fef   0x00000001   PAD
    0x08013ff0   0x08013ff0   0x00000020   Data   RO        10249    Region$$Table       anon$$obj.o
 
 
    Execution Region RW_IRAM1 (Exec base: 0x20000000, Load base: 0x08014010, Size: 0x000048c8, Max: 0x00005000, ABSOLUTE, COMPRESSED[0x000000d4])
 
    Exec Addr    Load Addr    Size         Type   Attr      Idx    E Section Name        Object
 
    0x20000000   COMPRESSED   0x00000090   Data   RW           38    .data               main.o
    0x20000090   COMPRESSED   0x00000004   Data   RW           39    .data               main.o
    0x20000094   COMPRESSED   0x00000001   Data   RW           45    .data               main.o
    0x20000095   COMPRESSED   0x00000003   PAD
    0x20000098   COMPRESSED   0x0000000c   Data   RW          864    .data               stm32l0xx_hal.o
    0x200000a4   COMPRESSED   0x00000004   Data   RW         4692    .data               system_stm32l0xx.o
    0x200000a8   COMPRESSED   0x00000018   Data   RW         4740    .data               air780edriver.o
    0x200000c0   COMPRESSED   0x00000074   Data   RW         4908    .data               air780efsm.o
    0x20000134   COMPRESSED   0x00000018   Data   RW         5078    .data               air780esocket.o
    0x2000014c   COMPRESSED   0x00000014   Data   RW         5124    .data               air780ecsq.o
    0x20000160   COMPRESSED   0x0000002c   Data   RW         5231    .data               module.o
    0x2000018c   COMPRESSED   0x00000014   Data   RW         5551    .data               air780eloc.o
    0x200001a0   COMPRESSED   0x00000014   Data   RW         5593    .data               gps.o
    0x200001b4   COMPRESSED   0x00000010   Data   RW         5842    .data               dbg.o
    0x200001c4   COMPRESSED   0x00000008   Data   RW         6102    .data               spi_hal.o
    0x200001cc   COMPRESSED   0x00000014   Data   RW         6183    .data               adc.o
    0x200001e0   COMPRESSED   0x00000004   Data   RW         6223    .data               flash.o
    0x200001e4   COMPRESSED   0x00000020   Data   RW         6276    .data               udpclient.o
    0x20000204   COMPRESSED   0x00000136   Data   RW         6414    .data               app.o
    0x2000033a   COMPRESSED   0x00000001   Data   RW         6416    .data               app.o
    0x2000033b   COMPRESSED   0x00000001   PAD
    0x2000033c   COMPRESSED   0x0000000f   Data   RW         6512    .data               dw_app.o
    0x2000034b   COMPRESSED   0x00000005   PAD
    0x20000350   COMPRESSED   0x00000038   Data   RW         6579    .data               dw_mbx_tag.o
    0x20000388   COMPRESSED   0x00000007   Data   RW         6770    .data               serial_at_cmd_app.o
    0x2000038f   COMPRESSED   0x00000001   PAD
    0x20000390   COMPRESSED   0x0000000a   Data   RW         7115    .data               lis3dh_driver.o
    0x2000039a   COMPRESSED   0x00000008   Data   RW         7652    .data               lora.o
    0x200003a2   COMPRESSED   0x00000001   Data   RW         8482    .data               deca_device.o
    0x200003a3   COMPRESSED   0x0000001e   Data   RW         8930    .data               deca_params_init.o
    0x200003c1   COMPRESSED   0x00000002   Data   RW         8931    .data               deca_params_init.o
    0x200003c3   COMPRESSED   0x00000003   Data   RW         8932    .data               deca_params_init.o
    0x200003c6   COMPRESSED   0x00000002   PAD
    0x200003c8   COMPRESSED   0x00000006   Data   RW         8970    .data               HIDOLibrary.lib(hido_fsm.o)
    0x200003ce   COMPRESSED   0x00000002   PAD
    0x200003d0   COMPRESSED   0x00000004   Data   RW         9046    .data               HIDOLibrary.lib(hido_lock.o)
    0x200003d4   COMPRESSED   0x00000004   PAD
    0x200003d8   COMPRESSED   0x00000010   Data   RW         9089    .data               HIDOLibrary.lib(hido_timer.o)
    0x200003e8   COMPRESSED   0x00000004   Data   RW         9469    .data               HIDOLibrary.lib(hido_input.o)
    0x200003ec   COMPRESSED   0x00000288   Data   RW         9536    .data               HIDOLibrary.lib(hido_shell.o)
    0x20000674   COMPRESSED   0x00000005   Data   RW         9596    .data               HIDOLibrary.lib(hido_atlite.o)
    0x20000679   COMPRESSED   0x00000003   PAD
    0x2000067c   COMPRESSED   0x00000004   Data   RW        10167    .data               mc_p.l(stdout.o)
    0x20000680   COMPRESSED   0x00000004   Data   RW        10175    .data               mc_p.l(errno.o)
    0x20000684        -       0x000002f0   Zero   RW           34    .bss                main.o
    0x20000974        -       0x00000048   Zero   RW           35    .bss                main.o
    0x200009bc        -       0x00000048   Zero   RW           36    .bss                main.o
    0x20000a04        -       0x00000048   Zero   RW           37    .bss                main.o
    0x20000a4c        -       0x00000018   Zero   RW         1786    .bss                stm32l0xx_hal_flash.o
    0x20000a64        -       0x000005fc   Zero   RW         4737    .bss                air780edriver.o
    0x20001060        -       0x00000030   Zero   RW         4901    .bss                air780efsm.o
    0x20001090        -       0x000000d8   Zero   RW         5230    .bss                module.o
    0x20001168        -       0x00000e4c   Zero   RW         5403    .bss                socket.o
    0x20001fb4   COMPRESSED   0x00000004   PAD
    0x20001fb8        -       0x000005c0   Zero   RW         5592    .bss                gps.o
    0x20002578        -       0x00000028   Zero   RW         5717    .bss                spiflash.o
    0x200025a0        -       0x000006a0   Zero   RW         5841    .bss                dbg.o
    0x20002c40        -       0x000001d0   Zero   RW         6009    .bss                uart.o
    0x20002e10        -       0x00000800   Zero   RW         6275    .bss                udpclient.o
    0x20003610        -       0x00000200   Zero   RW         6369    .bss                global_param.o
    0x20003810        -       0x0000012c   Zero   RW         6413    .bss                app.o
    0x2000393c        -       0x00000384   Zero   RW         6573    .bss                dw_mbx_tag.o
    0x20003cc0        -       0x000000c8   Zero   RW         6768    .bss                serial_at_cmd_app.o
    0x20003d88        -       0x0000003c   Zero   RW         8480    .bss                deca_device.o
    0x20003dc4        -       0x00000300   Zero   RW         9088    .bss                HIDOLibrary.lib(hido_timer.o)
    0x200040c4   COMPRESSED   0x00000004   PAD
    0x200040c8        -       0x00000800   Zero   RW            1    STACK               startup_stm32l071xx.o
 
 
==============================================================================
 
Image component sizes
 
 
      Code (inc. data)   RO Data    RW Data    ZI Data      Debug   Object Name
 
       244         40          0         20          0       1790   adc.o
       200         40         11         20          0       2998   air780ecsq.o
       888        192       2680         24       1532      16653   air780edriver.o
      3050        510        748        116         48      23597   air780efsm.o
       364         92         11         20          0       3334   air780eloc.o
      1076        252        113         24          0       5608   air780esocket.o
      1896        446          0        311        300      10436   app.o
        24          0          0          0          0       1794   bsp.o
       786         74          0         16       1696       9594   dbg.o
      2258        148          0          1         60      23744   deca_device.o
         0          0        138         35          0       1793   deca_params_init.o
       154          0          0          0          0       1094   delay.o
       106         14          0         15          0       2166   dw_app.o
       106          4          0          0          0       1322   dw_driver.o
       778         78          0         56        900       6022   dw_mbx_tag.o
       146          8          0          4          0       2634   flash.o
       272         38          0          0        512       1788   global_param.o
      1620        264          0         20       1472      12462   gps.o
        44          4          0          0          0       1389   internet.o
       956         48          0         10          0      16846   lis3dh_driver.o
         0          0          0          8          0       7278   lora.o
      2208        226          0        149        968     407605   main.o
       420        102          0         44        216      12394   module.o
       536         52          0          7        200      13873   serial_at_cmd_app.o
      3868        736        777          0          0      23462   shell.o
      1220        226          0          0       3660      14449   socket.o
       248         38          0          0          0       2737   spi.o
        92         14          0          8          0       2615   spi_hal.o
      1042         46         16          0         40      12697   spiflash.o
        28          8        192          0       2048        608   startup_stm32l071xx.o
       172         28          0         12          0       9017   stm32l0xx_hal.o
      1054         38          0          0          0       6321   stm32l0xx_hal_adc.o
       208         40          0          0          0      13234   stm32l0xx_hal_cortex.o
       734         22          0          0          0       5559   stm32l0xx_hal_dma.o
       436         54          0          0         24       8794   stm32l0xx_hal_flash.o
       164         24          0          0          0       2686   stm32l0xx_hal_flash_ex.o
       730         66          0          0          0       4076   stm32l0xx_hal_gpio.o
       124         20          0          0          0       1811   stm32l0xx_hal_iwdg.o
       824         34          0          0          0       8333   stm32l0xx_hal_lptim.o
       984        130          0          0          0       5883   stm32l0xx_hal_msp.o
       116         16          0          0          0       1223   stm32l0xx_hal_pwr.o
      1718         90          0          0          0       5596   stm32l0xx_hal_rcc.o
       380         12          0          0          0       1416   stm32l0xx_hal_rcc_ex.o
       340         10          0          0          0       3419   stm32l0xx_hal_rtc.o
      1310         12          0          0          0       6748   stm32l0xx_hal_spi.o
       580         14          0          0          0       5935   stm32l0xx_hal_tim.o
       124         12          0          0          0       1828   stm32l0xx_hal_tim_ex.o
      4100        148          0          0          0      30231   stm32l0xx_hal_uart.o
         2          0          0          0          0        964   stm32l0xx_hal_uart_ex.o
       162         38          0          0          0       6780   stm32l0xx_it.o
        16          8         33          4          0       1219   system_stm32l0xx.o
      1152         74          0          0        464      11277   uart.o
      1848        410          0         32       2048       9450   udpclient.o
       776         34          0          0          0       6063   ws2812.o
 
    ----------------------------------------------------------------------
     42740       5034       4762        968      16192     802645   Object Totals
         0          0         32          0          0          0   (incl. Generated)
        56          0         11         12          4          0   (incl. Padding)
 
    ----------------------------------------------------------------------
 
      Code (inc. data)   RO Data    RW Data    ZI Data      Debug   Library Member Name
 
       182          0          0          0          0       5281   hido_arraryqueue.o
       476         36          0          5          0       8631   hido_atlite.o
       256          0          0          0          0       2882   hido_atliteparse.o
       286          0          0          0          0       5459   hido_basequeue.o
       690         86          0          6          0      11689   hido_fsm.o
      2858        144          0          4          0       9997   hido_input.o
       104          8          0          4          0       5038   hido_lock.o
       508         70         11        648          0       5565   hido_shell.o
       432         64          0         16        768       4354   hido_timer.o
      1184         14          0          0          0      11791   hido_util.o
       314          0          0          0          0       4997   hido_vlqueue.o
        42          0          0          0          0         76   atof.o
        86          0          0          0          0          0   __dczerorl2.o
        30          0          0          0          0         60   _chval.o
        68          0          0          0          0         76   _sgetc.o
       166          0          0          0          0         84   _strtoul.o
        26          0          0          0          0         72   atoi.o
         8          4        133          0          0         60   ctype_o.o
         0          0          0          0          0          0   entry.o
         0          0          0          0          0          0   entry10a.o
         0          0          0          0          0          0   entry11a.o
         8          4          0          0          0          0   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
        32         16          0          4          0        180   errno.o
        30          0          0          0          0          0   handlers.o
        40          0          0          0          0         72   idiv.o
        36          8          0          0          0         68   init.o
        18          0          0          0          0         68   isspace_o.o
         0          0          0          0          0          0   iusefp.o
       122          0          0          0          0         84   llmul.o
        32          0          0          0          0         68   llshl.o
        38          0          0          0          0         68   llsshr.o
        34          0          0          0          0         68   llushr.o
        26          0          0          0          0         72   memcmp.o
        36          0          0          0          0         60   memcpya.o
        36          0          0          0          0        100   memseta.o
      2420        112          0          0          0        772   printfa.o
       898         12          0          0          0        184   scanf_fp.o
         0          0          0          4          0          0   stdout.o
        24          0          0          0          0         60   strcat.o
        20          0          0          0          0         60   strchr.o
        28          0          0          0          0         68   strcmp.o
        18          0          0          0          0         60   strcpy.o
        14          0          0          0          0         60   strlen.o
        30          0          0          0          0         72   strncmp.o
        40          0          0          0          0         72   strstr.o
       164         16          0          0          0        120   strtod.o
       112          4          0          0          0         76   strtol.o
        44          0          0          0          0         72   uidiv.o
        96          0          0          0          0         84   uldiv.o
        40          2          0          0          0         68   cdrcmple.o
        56          0          0          0          0         68   d2f.o
       356          4          0          0          0        140   dadd.o
       240          6          0          0          0         84   ddiv.o
       236          0          0          0          0        216   depilogue.o
        60         10          0          0          0         68   dfixui.o
        64         10          0          0          0         68   dfixul.o
        28          4          0          0          0         68   dfltui.o
        28          6          0          0          0         68   dfltul.o
       208          6          0          0          0         88   dmul.o
        40          0          0          0          0         60   f2d.o
       124          0          0          0          0         72   fdiv.o
       130          0          0          0          0        144   fepilogue.o
        40          0          0          0          0         60   ffixui.o
        14          0          0          0          0         68   ffltui.o
 
    ----------------------------------------------------------------------
     13808        650        146        700        772      80120   Library Totals
        20          0          2          9          4          0   (incl. Padding)
 
    ----------------------------------------------------------------------
 
      Code (inc. data)   RO Data    RW Data    ZI Data      Debug   Library Name
 
      7290        422         11        683        768      75684   HIDOLibrary.lib
        42          0          0          0          0         76   m_ps.l
      4792        180        133          8          0       3020   mc_p.l
      1664         48          0          0          0       1340   mf_p.l
 
    ----------------------------------------------------------------------
     13808        650        146        700        772      80120   Library Totals
 
    ----------------------------------------------------------------------
 
==============================================================================
 
 
      Code (inc. data)   RO Data    RW Data    ZI Data      Debug   
 
     56548       5684       4908       1668      16964     858385   Grand Totals
     56548       5684       4908        212      16964     858385   ELF Image Totals (compressed)
     56548       5684       4908        212          0          0   ROM Totals
 
==============================================================================
 
    Total RO  Size (Code + RO Data)                61456 (  60.02kB)
    Total RW  Size (RW Data + ZI Data)             18632 (  18.20kB)
    Total ROM Size (Code + RO Data + RW Data)      61668 (  60.22kB)
 
==============================================================================