yincheng.zhong
2023-08-16 aceee9b89a9a012321ef68357e7ddd94684b14b3
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
Component: ARM Compiler 5.06 update 6 (build 750) Tool: armlink [4d35ed]
 
==============================================================================
 
Section Cross References
 
    startup_stm32l051xx.o(RESET) refers to startup_stm32l051xx.o(STACK) for __initial_sp
    startup_stm32l051xx.o(RESET) refers to startup_stm32l051xx.o(.text) for Reset_Handler
    startup_stm32l051xx.o(RESET) refers to stm32l0xx_it.o(i.NMI_Handler) for NMI_Handler
    startup_stm32l051xx.o(RESET) refers to stm32l0xx_it.o(i.HardFault_Handler) for HardFault_Handler
    startup_stm32l051xx.o(RESET) refers to stm32l0xx_it.o(i.SVC_Handler) for SVC_Handler
    startup_stm32l051xx.o(RESET) refers to stm32l0xx_it.o(i.PendSV_Handler) for PendSV_Handler
    startup_stm32l051xx.o(RESET) refers to stm32l0xx_it.o(i.SysTick_Handler) for SysTick_Handler
    startup_stm32l051xx.o(RESET) refers to stm32l0xx_it.o(i.EXTI0_1_IRQHandler) for EXTI0_1_IRQHandler
    startup_stm32l051xx.o(RESET) refers to stm32l0xx_it.o(i.EXTI4_15_IRQHandler) for EXTI4_15_IRQHandler
    startup_stm32l051xx.o(RESET) refers to stm32l0xx_it.o(i.DMA1_Channel2_3_IRQHandler) for DMA1_Channel2_3_IRQHandler
    startup_stm32l051xx.o(RESET) refers to stm32l0xx_it.o(i.LPTIM1_IRQHandler) for LPTIM1_IRQHandler
    startup_stm32l051xx.o(RESET) refers to stm32l0xx_it.o(i.USART1_IRQHandler) for USART1_IRQHandler
    startup_stm32l051xx.o(.text) refers to system_stm32l0xx.o(i.SystemInit) for SystemInit
    startup_stm32l051xx.o(.text) refers to entry.o(.ARM.Collect$$$$00000000) for __main
    lis3dh_driver.o(i.Accelerometer_Init) refers to lis3dh_driver.o(i.mir3da_ReadOneByte) for mir3da_ReadOneByte
    lis3dh_driver.o(i.Accelerometer_Init) refers to lis3dh_driver.o(i.LIS3DH_GetWHO_AM_I) for LIS3DH_GetWHO_AM_I
    lis3dh_driver.o(i.Accelerometer_Init) refers to lis3dh_driver.o(i.mir3da_init) for mir3da_init
    lis3dh_driver.o(i.Accelerometer_Init) refers to lis3dh_driver.o(i.LIS3DH_Data_Init) for LIS3DH_Data_Init
    lis3dh_driver.o(i.Accelerometer_Init) refers to lis3dh_driver.o(.data) for .data
    lis3dh_driver.o(i.Accelerometer_Init) refers to global_param.o(.bss) for g_com_map
    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_WriteReg) for LIS3DH_WriteReg
    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.delay_us) for delay_us
    lis3dh_driver.o(i.LIS3DH_Data_Init) refers to global_param.o(.bss) for g_com_map
    lis3dh_driver.o(i.LIS3DH_Data_Init) refers to lis3dh_driver.o(.data) for .data
    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
    lis3dh_driver.o(i.mir3da_ReadLenByte) refers to malloc.o(i.malloc) for malloc
    lis3dh_driver.o(i.mir3da_ReadLenByte) refers to memseta.o(.text) for __aeabi_memclr
    lis3dh_driver.o(i.mir3da_ReadLenByte) refers to lis3dh_driver.o(i.mir3da_ReadOneByte) for mir3da_ReadOneByte
    lis3dh_driver.o(i.mir3da_ReadLenByte) refers to malloc.o(i.free) for free
    lis3dh_driver.o(i.mir3da_ReadLenByte) refers to lis3dh_driver.o(.data) for .data
    lis3dh_driver.o(i.mir3da_ReadOneByte) refers to lis3dh_driver.o(i.IIC2_Start) for IIC2_Start
    lis3dh_driver.o(i.mir3da_ReadOneByte) refers to lis3dh_driver.o(i.IIC2_Send_Byte) for IIC2_Send_Byte
    lis3dh_driver.o(i.mir3da_ReadOneByte) refers to lis3dh_driver.o(i.IIC2_Wait_Ack) for IIC2_Wait_Ack
    lis3dh_driver.o(i.mir3da_ReadOneByte) refers to lis3dh_driver.o(i.IIC2_Read_Byte) for IIC2_Read_Byte
    lis3dh_driver.o(i.mir3da_ReadOneByte) refers to lis3dh_driver.o(i.IIC2_Stop) for IIC2_Stop
    lis3dh_driver.o(i.mir3da_WriteLenByte) refers to lis3dh_driver.o(i.mir3da_WriteOneByte) for mir3da_WriteOneByte
    lis3dh_driver.o(i.mir3da_WriteOneByte) refers to lis3dh_driver.o(i.IIC2_Start) for IIC2_Start
    lis3dh_driver.o(i.mir3da_WriteOneByte) refers to lis3dh_driver.o(i.IIC2_Send_Byte) for IIC2_Send_Byte
    lis3dh_driver.o(i.mir3da_WriteOneByte) refers to lis3dh_driver.o(i.IIC2_Wait_Ack) for IIC2_Wait_Ack
    lis3dh_driver.o(i.mir3da_WriteOneByte) refers to lis3dh_driver.o(i.IIC2_Stop) for IIC2_Stop
    lis3dh_driver.o(i.mir3da_WriteOneByte) refers to lis3dh_driver.o(i.delay_us) for delay_us
    lis3dh_driver.o(i.mir3da_get_step) refers to lis3dh_driver.o(i.mir3da_ReadLenByte) for mir3da_ReadLenByte
    lis3dh_driver.o(i.mir3da_get_step) refers to lis3dh_driver.o(.data) for .data
    lis3dh_driver.o(i.mir3da_init) refers to lis3dh_driver.o(i.mir3da_register_write) for mir3da_register_write
    lis3dh_driver.o(i.mir3da_init) refers to lis3dh_driver.o(i.delay_us) for delay_us
    lis3dh_driver.o(i.mir3da_init) refers to lis3dh_driver.o(i.mir3da_register_mask_write) for mir3da_register_mask_write
    lis3dh_driver.o(i.mir3da_init) refers to lis3dh_driver.o(i.mir3da_set_active_interrupt_enable) for mir3da_set_active_interrupt_enable
    lis3dh_driver.o(i.mir3da_init) refers to lis3dh_driver.o(i.mir3da_set_enable) for mir3da_set_enable
    lis3dh_driver.o(i.mir3da_init) refers to lis3dh_driver.o(i.mir3da_set_step_counter_open) for mir3da_set_step_counter_open
    lis3dh_driver.o(i.mir3da_init) refers to lis3dh_driver.o(.data) for .data
    lis3dh_driver.o(i.mir3da_init) refers to global_param.o(.bss) for g_com_map
    lis3dh_driver.o(i.mir3da_read_data) refers to lis3dh_driver.o(i.mir3da_ReadOneByte) for mir3da_ReadOneByte
    lis3dh_driver.o(i.mir3da_read_data) refers to lis3dh_driver.o(.data) for .data
    lis3dh_driver.o(i.mir3da_read_raw_data) refers to lis3dh_driver.o(i.mir3da_ReadOneByte) for mir3da_ReadOneByte
    lis3dh_driver.o(i.mir3da_register_mask_write) refers to lis3dh_driver.o(i.mir3da_ReadOneByte) for mir3da_ReadOneByte
    lis3dh_driver.o(i.mir3da_register_mask_write) refers to lis3dh_driver.o(i.mir3da_register_write) for mir3da_register_write
    lis3dh_driver.o(i.mir3da_register_read) refers to lis3dh_driver.o(i.mir3da_ReadOneByte) for mir3da_ReadOneByte
    lis3dh_driver.o(i.mir3da_register_write) refers to lis3dh_driver.o(i.mir3da_WriteOneByte) for mir3da_WriteOneByte
    lis3dh_driver.o(i.mir3da_reset_step_counter) refers to lis3dh_driver.o(i.mir3da_register_mask_write) for mir3da_register_mask_write
    lis3dh_driver.o(i.mir3da_set_active_interrupt_enable) refers to lis3dh_driver.o(i.mir3da_register_write) for mir3da_register_write
    lis3dh_driver.o(i.mir3da_set_enable) refers to lis3dh_driver.o(i.mir3da_register_mask_write) for mir3da_register_mask_write
    lis3dh_driver.o(i.mir3da_set_enable) refers to lis3dh_driver.o(i.delay_us) for delay_us
    lis3dh_driver.o(i.mir3da_set_step_counter_open) refers to lis3dh_driver.o(i.mir3da_register_write) for mir3da_register_write
    dw_driver.o(i.Reset_DW1000) refers to memseta.o(.text) for __aeabi_memclr4
    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.Reset_DW1000) refers to dw_driver.o(i.delay_ms) for delay_ms
    dw_driver.o(i.delay_ms) refers to lis3dh_driver.o(i.delay_us) for delay_us
    bmp390.o(i.BMP390_Init) refers to bmp390.o(i.BMP390_Write_Byte) for BMP390_Write_Byte
    bmp390.o(i.BMP390_Init) refers to dw_driver.o(i.delay_ms) for delay_ms
    bmp390.o(i.BMP390_Init) refers to bmp390.o(i.BMP390_Read_Byte) for BMP390_Read_Byte
    bmp390.o(i.BMP390_Init) refers to printf1.o(i.__0printf$1) for __2printf
    bmp390.o(i.BMP390_Read_Byte) refers to bmp390.o(i.IIC_Start) for IIC_Start
    bmp390.o(i.BMP390_Read_Byte) refers to bmp390.o(i.IIC_Send_Byte) for IIC_Send_Byte
    bmp390.o(i.BMP390_Read_Byte) refers to bmp390.o(i.IIC_Wait_Ack) for IIC_Wait_Ack
    bmp390.o(i.BMP390_Read_Byte) refers to bmp390.o(i.IIC_Read_Byte) for IIC_Read_Byte
    bmp390.o(i.BMP390_Read_Byte) refers to bmp390.o(i.IIC_Stop) for IIC_Stop
    bmp390.o(i.BMP390_Write_Byte) refers to bmp390.o(i.IIC_Start) for IIC_Start
    bmp390.o(i.BMP390_Write_Byte) refers to bmp390.o(i.IIC_Send_Byte) for IIC_Send_Byte
    bmp390.o(i.BMP390_Write_Byte) refers to bmp390.o(i.IIC_Wait_Ack) for IIC_Wait_Ack
    bmp390.o(i.BMP390_Write_Byte) refers to bmp390.o(i.IIC_Stop) for IIC_Stop
    bmp390.o(i.Correcting_Pressure) refers to dflti.o(.text) for __aeabi_i2d
    bmp390.o(i.Correcting_Pressure) refers to dadd.o(.text) for __aeabi_dsub
    bmp390.o(i.Correcting_Pressure) refers to dscalb.o(.text) for __ARM_scalbn
    bmp390.o(i.Correcting_Pressure) refers to dmul.o(.text) for __aeabi_dmul
    bmp390.o(i.Correcting_Pressure) refers to dfltui.o(.text) for __aeabi_ui2d
    bmp390.o(i.Correcting_Pressure) refers to bmp390.o(.data) for .data
    bmp390.o(i.Correcting_Temperature) refers to dflti.o(.text) for __aeabi_i2d
    bmp390.o(i.Correcting_Temperature) refers to dscalb.o(.text) for __ARM_scalbn
    bmp390.o(i.Correcting_Temperature) refers to dfltui.o(.text) for __aeabi_ui2d
    bmp390.o(i.Correcting_Temperature) refers to dadd.o(.text) for __aeabi_dsub
    bmp390.o(i.Correcting_Temperature) refers to dmul.o(.text) for __aeabi_dmul
    bmp390.o(i.Correcting_Temperature) refers to bmp390.o(.data) for .data
    bmp390.o(i.GetPressAndHeight) refers to bmp390.o(i.Pressure_Read) for Pressure_Read
    bmp390.o(i.GetPressAndHeight) refers to ffltui.o(.text) for __aeabi_ui2f
    bmp390.o(i.GetPressAndHeight) refers to bmp390.o(i.Temperature_Read) for Temperature_Read
    bmp390.o(i.GetPressAndHeight) refers to ffixui.o(.text) for __aeabi_f2uiz
    bmp390.o(i.GetPressAndHeight) refers to bmp390.o(i.Correcting_Temperature) for Correcting_Temperature
    bmp390.o(i.GetPressAndHeight) refers to bmp390.o(i.Correcting_Pressure) for Correcting_Pressure
    bmp390.o(i.GetPressAndHeight) refers to ddiv.o(.text) for __aeabi_ddiv
    bmp390.o(i.GetPressAndHeight) refers to pow.o(i.pow) for pow
    bmp390.o(i.GetPressAndHeight) refers to dadd.o(.text) for __aeabi_drsub
    bmp390.o(i.GetPressAndHeight) refers to dmul.o(.text) for __aeabi_dmul
    bmp390.o(i.GetPressAndHeight) refers to d2f.o(.text) for __aeabi_d2f
    bmp390.o(i.GetPressAndHeight) refers to cdcmple.o(.text) for __aeabi_cdcmpeq
    bmp390.o(i.GetPressAndHeight) refers to bmp390.o(.bss) for .bss
    bmp390.o(i.GetPressAndHeight) refers to bmp390.o(.data) for .data
    bmp390.o(i.IIC_Ack) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    bmp390.o(i.IIC_Ack) refers to lis3dh_driver.o(i.delay_us) for delay_us
    bmp390.o(i.IIC_Init) refers to memseta.o(.text) for __aeabi_memclr4
    bmp390.o(i.IIC_Init) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_Init) for HAL_GPIO_Init
    bmp390.o(i.IIC_Init) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    bmp390.o(i.IIC_NAck) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    bmp390.o(i.IIC_NAck) refers to lis3dh_driver.o(i.delay_us) for delay_us
    bmp390.o(i.IIC_Read_Byte) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    bmp390.o(i.IIC_Read_Byte) refers to lis3dh_driver.o(i.delay_us) for delay_us
    bmp390.o(i.IIC_Read_Byte) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_ReadPin) for HAL_GPIO_ReadPin
    bmp390.o(i.IIC_Read_Byte) refers to bmp390.o(i.IIC_Ack) for IIC_Ack
    bmp390.o(i.IIC_Read_Byte) refers to bmp390.o(i.IIC_NAck) for IIC_NAck
    bmp390.o(i.IIC_Send_Byte) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    bmp390.o(i.IIC_Send_Byte) refers to lis3dh_driver.o(i.delay_us) for delay_us
    bmp390.o(i.IIC_Start) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    bmp390.o(i.IIC_Start) refers to lis3dh_driver.o(i.delay_us) for delay_us
    bmp390.o(i.IIC_Stop) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    bmp390.o(i.IIC_Stop) refers to lis3dh_driver.o(i.delay_us) for delay_us
    bmp390.o(i.IIC_Wait_Ack) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    bmp390.o(i.IIC_Wait_Ack) refers to lis3dh_driver.o(i.delay_us) for delay_us
    bmp390.o(i.IIC_Wait_Ack) refers to bmp390.o(i.IIC_Stop) for IIC_Stop
    bmp390.o(i.IIC_Wait_Ack) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_ReadPin) for HAL_GPIO_ReadPin
    bmp390.o(i.Parameter_Reading) refers to bmp390.o(i.BMP390_Read_Byte) for BMP390_Read_Byte
    bmp390.o(i.Parameter_Reading) refers to dflti.o(.text) for __aeabi_i2d
    bmp390.o(i.Parameter_Reading) refers to dadd.o(.text) for __aeabi_dsub
    bmp390.o(i.Parameter_Reading) refers to dfixi.o(.text) for __aeabi_d2iz
    bmp390.o(i.Pressure_Read) refers to bmp390.o(i.BMP390_Read_Byte) for BMP390_Read_Byte
    bmp390.o(i.Temperature_Read) refers to bmp390.o(i.BMP390_Read_Byte) for BMP390_Read_Byte
    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 deca_device.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 deca_device.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_enableautorxeanble) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    deca_device.o(i.dwt_enableautorxeanble) 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 uidiv.o(.text) for __aeabi_uidivmod
    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
    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 stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    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
    usart.o(i.UART_CheckReceive) refers to usart.o(.data) for .data
    usart.o(i.UART_CheckReceive) refers to usart.o(.bss) for .bss
    usart.o(i.UART_CheckSend) refers to lis3dh_driver.o(i.delay_us) for delay_us
    usart.o(i.UART_CheckSend) refers to usart.o(.data) for .data
    usart.o(i.UART_CheckSend) refers to usart.o(.bss) for .bss
    usart.o(i.UART_PopFrame) refers to usart.o(.data) for .data
    usart.o(i.UART_PushFrame) refers to memcpya.o(.text) for __aeabi_memcpy
    usart.o(i.UART_PushFrame) refers to usart.o(.data) for .data
    usart.o(i.UART_PushFrame) refers to usart.o(.bss) for .bss
    usart.o(i.USART_putc) refers to stm32l0xx_hal_uart.o(i.HAL_UART_Transmit) for HAL_UART_Transmit
    usart.o(i.USART_putc) refers to main.o(.bss) for huart1
    usart.o(i.USART_puts) refers to usart.o(i.USART_putc) for USART_putc
    usart.o(i.Usart1InitVariables) refers to usart.o(.data) for .data
    usart.o(i.fputc) refers to stm32l0xx_hal_uart.o(i.HAL_UART_Transmit) for HAL_UART_Transmit
    usart.o(i.fputc) refers to main.o(.bss) for huart1
    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_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
    global_param.o(i.parameter_check) refers to global_param.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 global_param.o(i.parameter_check) for parameter_check
    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 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
    dw_app.o(i.CalculateDists) refers to dflti.o(.text) for __aeabi_i2d
    dw_app.o(i.CalculateDists) refers to dmul.o(.text) for __aeabi_dmul
    dw_app.o(i.CalculateDists) refers to d2f.o(.text) for __aeabi_d2f
    dw_app.o(i.CalculateDists) refers to dfltui.o(.text) for __aeabi_ui2d
    dw_app.o(i.CalculateDists) refers to fadd.o(.text) for __aeabi_fsub
    dw_app.o(i.CalculateDists) refers to f2d.o(.text) for __aeabi_f2d
    dw_app.o(i.CalculateDists) refers to dadd.o(.text) for __aeabi_drsub
    dw_app.o(i.CalculateDists) refers to dscalb.o(.text) for __ARM_scalbn
    dw_app.o(i.CalculateDists) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
    dw_app.o(i.CalculateDists) refers to cdcmple.o(.text) for __aeabi_cdcmple
    dw_app.o(i.CalculateDists) refers to dfixi.o(.text) for __aeabi_d2iz
    dw_app.o(i.CalculateDists) refers to dw_app.o(.data) for .data
    dw_app.o(i.CalculateDists) refers to dw_app.o(.bss) for .bss
    dw_app.o(i.DiscPoll2) refers to deca_device.o(i.dwt_setrxaftertxdelay) for dwt_setrxaftertxdelay
    dw_app.o(i.DiscPoll2) refers to deca_device.o(i.dwt_setrxtimeout) for dwt_setrxtimeout
    dw_app.o(i.DiscPoll2) refers to memcpya.o(.text) for __aeabi_memcpy
    dw_app.o(i.DiscPoll2) refers to deca_device.o(i.dwt_writetxdata) for dwt_writetxdata
    dw_app.o(i.DiscPoll2) refers to deca_device.o(i.dwt_writetxfctrl) for dwt_writetxfctrl
    dw_app.o(i.DiscPoll2) refers to stm32l0xx_hal_lptim.o(i.HAL_LPTIM_ReadCounter) for HAL_LPTIM_ReadCounter
    dw_app.o(i.DiscPoll2) refers to deca_device.o(i.dwt_starttx) for dwt_starttx
    dw_app.o(i.DiscPoll2) refers to dfltui.o(.text) for __aeabi_ui2d
    dw_app.o(i.DiscPoll2) refers to dmul.o(.text) for __aeabi_dmul
    dw_app.o(i.DiscPoll2) refers to ceil.o(i.ceil) for ceil
    dw_app.o(i.DiscPoll2) refers to dadd.o(.text) for __aeabi_dadd
    dw_app.o(i.DiscPoll2) refers to dfixui.o(.text) for __aeabi_d2uiz
    dw_app.o(i.DiscPoll2) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    dw_app.o(i.DiscPoll2) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    dw_app.o(i.DiscPoll2) refers to deca_device.o(i.dwt_readrxdata) for dwt_readrxdata
    dw_app.o(i.DiscPoll2) refers to deca_device.o(i.dwt_readcarrierintegrator) for dwt_readcarrierintegrator
    dw_app.o(i.DiscPoll2) refers to deca_device.o(i.dwt_rxenable) for dwt_rxenable
    dw_app.o(i.DiscPoll2) refers to dw_app.o(i.__NVIC_SystemReset) for __NVIC_SystemReset
    dw_app.o(i.DiscPoll2) refers to memcmp.o(.text) for memcmp
    dw_app.o(i.DiscPoll2) refers to dw_app.o(i.get_tx_timestamp_u64) for get_tx_timestamp_u64
    dw_app.o(i.DiscPoll2) refers to dw_app.o(i.get_rx_timestamp_u64) for get_rx_timestamp_u64
    dw_app.o(i.DiscPoll2) refers to dw_app.o(i.SetANCTimestap) for SetANCTimestap
    dw_app.o(i.DiscPoll2) refers to deca_device.o(i.dwt_forcetrxoff) for dwt_forcetrxoff
    dw_app.o(i.DiscPoll2) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_ReadPin) for HAL_GPIO_ReadPin
    dw_app.o(i.DiscPoll2) refers to dw_app.o(i.SetLPTimer) for SetLPTimer
    dw_app.o(i.DiscPoll2) refers to dw_app.o(i.FindNearBasePos) for FindNearBasePos
    dw_app.o(i.DiscPoll2) refers to dw_app.o(i.final_msg_set_ts) for final_msg_set_ts
    dw_app.o(i.DiscPoll2) refers to dw_app.o(.data) for .data
    dw_app.o(i.DiscPoll2) refers to main.o(.data) for bat_percent
    dw_app.o(i.DiscPoll2) refers to dw_app.o(.bss) for .bss
    dw_app.o(i.DiscPoll2) refers to stm32l0xx_it.o(.data) for userkey_state
    dw_app.o(i.DiscPoll2) refers to global_param.o(.bss) for g_com_map
    dw_app.o(i.DiscPoll2) refers to main.o(.bss) for hlptim1
    dw_app.o(i.DiscPoll2) refers to main.o(.data) for sync_timer
    dw_app.o(i.DiscPoll2) refers to dw_app.o(i.NextSlotDelayMs) for NextSlotDelayMs
    dw_app.o(i.DiscPoll2) refers to dw_app.o(i.CalculateDists) for CalculateDists
    dw_app.o(i.DiscPoll2) refers to dw_app.o(i.GetNearMsg) for GetNearMsg
    dw_app.o(i.DiscPoll2) refers to global_param.o(i.save_com_map_to_flash) for save_com_map_to_flash
    dw_app.o(i.DiscPoll2) refers to dw_driver.o(i.delay_ms) for delay_ms
    dw_app.o(i.DiscPoll2) refers to ffltui.o(.text) for __aeabi_ui2f
    dw_app.o(i.DiscPoll2) refers to uidiv.o(.text) for __aeabi_uidivmod
    dw_app.o(i.Dw1000_App_Init) refers to dw_app.o(.bss) for .bss
    dw_app.o(i.Dw1000_App_Init) refers to main.o(.data) for group_id
    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_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 dw_app.o(.data) for .data
    dw_app.o(i.FindNearBasePos) refers to dw_app.o(.bss) for .bss
    dw_app.o(i.FindNearBasePos) refers to dw_app.o(.data) for .data
    dw_app.o(i.GetNearMsg) refers to dw_app.o(i.NextSlotDelayMs) for NextSlotDelayMs
    dw_app.o(i.GetNearMsg) refers to deca_device.o(i.dwt_setrxaftertxdelay) for dwt_setrxaftertxdelay
    dw_app.o(i.GetNearMsg) refers to deca_device.o(i.dwt_setrxtimeout) for dwt_setrxtimeout
    dw_app.o(i.GetNearMsg) refers to deca_device.o(i.dwt_writetxdata) for dwt_writetxdata
    dw_app.o(i.GetNearMsg) refers to deca_device.o(i.dwt_writetxfctrl) for dwt_writetxfctrl
    dw_app.o(i.GetNearMsg) refers to stm32l0xx_hal_lptim.o(i.HAL_LPTIM_ReadCounter) for HAL_LPTIM_ReadCounter
    dw_app.o(i.GetNearMsg) refers to deca_device.o(i.dwt_starttx) for dwt_starttx
    dw_app.o(i.GetNearMsg) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    dw_app.o(i.GetNearMsg) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    dw_app.o(i.GetNearMsg) refers to deca_device.o(i.dwt_readrxdata) for dwt_readrxdata
    dw_app.o(i.GetNearMsg) refers to memcmp.o(.text) for memcmp
    dw_app.o(i.GetNearMsg) refers to memcpya.o(.text) for __aeabi_memcpy
    dw_app.o(i.GetNearMsg) refers to dw_app.o(i.__NVIC_SystemReset) for __NVIC_SystemReset
    dw_app.o(i.GetNearMsg) refers to dw_app.o(.bss) for .bss
    dw_app.o(i.GetNearMsg) refers to dw_app.o(.data) for .data
    dw_app.o(i.GetNearMsg) refers to main.o(.data) for dev_id
    dw_app.o(i.GetNearMsg) refers to main.o(.bss) for hlptim1
    dw_app.o(i.GetRandomSlotPos) refers to stm32l0xx_hal_lptim.o(i.HAL_LPTIM_ReadCounter) for HAL_LPTIM_ReadCounter
    dw_app.o(i.GetRandomSlotPos) refers to main.o(.bss) for hlptim1
    dw_app.o(i.GetRandomSlotPos) refers to main.o(.data) for max_slotpos
    dw_app.o(i.GetRandomValue) refers to adc.o(i.Get_ADC_Value) for Get_ADC_Value
    dw_app.o(i.MODBUS_Poll) refers to deca_device.o(i.dwt_setrxaftertxdelay) for dwt_setrxaftertxdelay
    dw_app.o(i.MODBUS_Poll) refers to deca_device.o(i.dwt_setrxtimeout) for dwt_setrxtimeout
    dw_app.o(i.MODBUS_Poll) refers to deca_device.o(i.dwt_writetxdata) for dwt_writetxdata
    dw_app.o(i.MODBUS_Poll) refers to deca_device.o(i.dwt_writetxfctrl) for dwt_writetxfctrl
    dw_app.o(i.MODBUS_Poll) refers to deca_device.o(i.dwt_starttx) for dwt_starttx
    dw_app.o(i.MODBUS_Poll) refers to main.o(i.IdleTask) for IdleTask
    dw_app.o(i.MODBUS_Poll) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    dw_app.o(i.MODBUS_Poll) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    dw_app.o(i.MODBUS_Poll) refers to deca_device.o(i.dwt_readrxdata) for dwt_readrxdata
    dw_app.o(i.MODBUS_Poll) refers to dw_app.o(i.__NVIC_SystemReset) for __NVIC_SystemReset
    dw_app.o(i.MODBUS_Poll) refers to memcmp.o(.text) for memcmp
    dw_app.o(i.MODBUS_Poll) refers to dw_app.o(i.get_tx_timestamp_u64) for get_tx_timestamp_u64
    dw_app.o(i.MODBUS_Poll) refers to dw_app.o(i.get_rx_timestamp_u64) for get_rx_timestamp_u64
    dw_app.o(i.MODBUS_Poll) refers to memcpya.o(.text) for __aeabi_memcpy
    dw_app.o(i.MODBUS_Poll) refers to deca_device.o(i.dwt_setdelayedtrxtime) for dwt_setdelayedtrxtime
    dw_app.o(i.MODBUS_Poll) refers to dw_app.o(i.final_msg_set_ts) for final_msg_set_ts
    dw_app.o(i.MODBUS_Poll) refers to main.o(i.GPIO_Toggle) for GPIO_Toggle
    dw_app.o(i.MODBUS_Poll) refers to dw_driver.o(i.delay_ms) for delay_ms
    dw_app.o(i.MODBUS_Poll) refers to dw_app.o(.data) for .data
    dw_app.o(i.MODBUS_Poll) refers to dw_app.o(.bss) for .bss
    dw_app.o(i.MODBUS_Poll) refers to global_param.o(.bss) for g_com_map
    dw_app.o(i.MODBUS_Poll) refers to main.o(.data) for group_id
    dw_app.o(i.MODBUS_Poll) refers to main.o(.data) for sync_timer
    dw_app.o(i.NearPoll) refers to deca_device.o(i.dwt_setrxaftertxdelay) for dwt_setrxaftertxdelay
    dw_app.o(i.NearPoll) refers to deca_device.o(i.dwt_setrxtimeout) for dwt_setrxtimeout
    dw_app.o(i.NearPoll) refers to memcpya.o(.text) for __aeabi_memcpy
    dw_app.o(i.NearPoll) refers to deca_device.o(i.dwt_writetxdata) for dwt_writetxdata
    dw_app.o(i.NearPoll) refers to deca_device.o(i.dwt_writetxfctrl) for dwt_writetxfctrl
    dw_app.o(i.NearPoll) refers to stm32l0xx_hal_lptim.o(i.HAL_LPTIM_ReadCounter) for HAL_LPTIM_ReadCounter
    dw_app.o(i.NearPoll) refers to deca_device.o(i.dwt_starttx) for dwt_starttx
    dw_app.o(i.NearPoll) refers to dfltui.o(.text) for __aeabi_ui2d
    dw_app.o(i.NearPoll) refers to dmul.o(.text) for __aeabi_dmul
    dw_app.o(i.NearPoll) refers to ceil.o(i.ceil) for ceil
    dw_app.o(i.NearPoll) refers to dadd.o(.text) for __aeabi_dadd
    dw_app.o(i.NearPoll) refers to dfixui.o(.text) for __aeabi_d2uiz
    dw_app.o(i.NearPoll) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    dw_app.o(i.NearPoll) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    dw_app.o(i.NearPoll) refers to deca_device.o(i.dwt_readrxdata) for dwt_readrxdata
    dw_app.o(i.NearPoll) refers to deca_device.o(i.dwt_readcarrierintegrator) for dwt_readcarrierintegrator
    dw_app.o(i.NearPoll) refers to deca_device.o(i.dwt_rxenable) for dwt_rxenable
    dw_app.o(i.NearPoll) refers to dw_app.o(i.__NVIC_SystemReset) for __NVIC_SystemReset
    dw_app.o(i.NearPoll) refers to memcmp.o(.text) for memcmp
    dw_app.o(i.NearPoll) refers to dw_app.o(i.get_tx_timestamp_u64) for get_tx_timestamp_u64
    dw_app.o(i.NearPoll) refers to dw_app.o(i.get_rx_timestamp_u64) for get_rx_timestamp_u64
    dw_app.o(i.NearPoll) refers to dw_app.o(i.SetANCTimestap) for SetANCTimestap
    dw_app.o(i.NearPoll) refers to deca_device.o(i.dwt_forcetrxoff) for dwt_forcetrxoff
    dw_app.o(i.NearPoll) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_ReadPin) for HAL_GPIO_ReadPin
    dw_app.o(i.NearPoll) refers to dw_app.o(i.SetLPTimer) for SetLPTimer
    dw_app.o(i.NearPoll) refers to dw_app.o(i.FindNearBasePos) for FindNearBasePos
    dw_app.o(i.NearPoll) refers to dw_app.o(i.final_msg_set_ts) for final_msg_set_ts
    dw_app.o(i.NearPoll) refers to dw_app.o(.data) for .data
    dw_app.o(i.NearPoll) refers to main.o(.data) for bat_percent
    dw_app.o(i.NearPoll) refers to dw_app.o(.bss) for .bss
    dw_app.o(i.NearPoll) refers to stm32l0xx_it.o(.data) for userkey_state
    dw_app.o(i.NearPoll) refers to global_param.o(.bss) for g_com_map
    dw_app.o(i.NearPoll) refers to main.o(.bss) for hlptim1
    dw_app.o(i.NearPoll) refers to main.o(.data) for sync_timer
    dw_app.o(i.NearPoll) refers to dw_app.o(i.NextSlotDelayMs) for NextSlotDelayMs
    dw_app.o(i.NearPoll) refers to dw_app.o(i.CalculateDists) for CalculateDists
    dw_app.o(i.NearPoll) refers to dw_app.o(i.GetNearMsg) for GetNearMsg
    dw_app.o(i.NearPoll) refers to global_param.o(i.save_com_map_to_flash) for save_com_map_to_flash
    dw_app.o(i.NearPoll) refers to dw_driver.o(i.delay_ms) for delay_ms
    dw_app.o(i.NearPoll) refers to ffltui.o(.text) for __aeabi_ui2f
    dw_app.o(i.NearPoll) refers to uidiv.o(.text) for __aeabi_uidivmod
    dw_app.o(i.NextPollDelay) refers to dflti.o(.text) for __aeabi_i2d
    dw_app.o(i.NextPollDelay) refers to dmul.o(.text) for __aeabi_dmul
    dw_app.o(i.NextPollDelay) refers to dadd.o(.text) for __aeabi_dadd
    dw_app.o(i.NextPollDelay) refers to dfixi.o(.text) for __aeabi_d2iz
    dw_app.o(i.NextPollDelay) refers to dw_app.o(.data) for .data
    dw_app.o(i.NextPollDelay) refers to main.o(.data) for bigslot_num
    dw_app.o(i.NextPollDelay) refers to main.o(.data) for slotpos_intoatl
    dw_app.o(i.NextSlotDelayMs) refers to dflti.o(.text) for __aeabi_i2d
    dw_app.o(i.NextSlotDelayMs) refers to dmul.o(.text) for __aeabi_dmul
    dw_app.o(i.NextSlotDelayMs) refers to uidiv.o(.text) for __aeabi_uidivmod
    dw_app.o(i.NextSlotDelayMs) refers to dfltui.o(.text) for __aeabi_ui2d
    dw_app.o(i.NextSlotDelayMs) refers to dadd.o(.text) for __aeabi_dadd
    dw_app.o(i.NextSlotDelayMs) refers to dfixui.o(.text) for __aeabi_d2uiz
    dw_app.o(i.NextSlotDelayMs) refers to ddiv.o(.text) for __aeabi_ddiv
    dw_app.o(i.NextSlotDelayMs) refers to main.o(.data) for current_slotnum
    dw_app.o(i.NextSlotDelayMs) refers to dw_app.o(.data) for .data
    dw_app.o(i.NextSlotDelayMs) refers to main.o(.bss) for hlptim1
    dw_app.o(i.QiyaJizhan_Send) refers to bmp390.o(i.GetPressAndHeight) for GetPressAndHeight
    dw_app.o(i.QiyaJizhan_Send) refers to fmul.o(.text) for __aeabi_fmul
    dw_app.o(i.QiyaJizhan_Send) refers to ffixi.o(.text) for __aeabi_f2iz
    dw_app.o(i.QiyaJizhan_Send) refers to memcpya.o(.text) for __aeabi_memcpy
    dw_app.o(i.QiyaJizhan_Send) refers to dw_app.o(i.Checksum_u16) for Checksum_u16
    dw_app.o(i.QiyaJizhan_Send) refers to usart.o(i.USART_puts) for USART_puts
    dw_app.o(i.QiyaJizhan_Send) refers to bmp390.o(.data) for Altitude
    dw_app.o(i.QiyaJizhan_Send) refers to dw_app.o(.data) for .data
    dw_app.o(i.QiyaJizhan_Send) refers to dw_app.o(.bss) for .bss
    dw_app.o(i.QiyaJizhan_Send) refers to main.o(.data) for dev_id
    dw_app.o(i.Registor_Poll) refers to dw_app.o(i.NextSlotDelayMs) for NextSlotDelayMs
    dw_app.o(i.Registor_Poll) refers to deca_device.o(i.dwt_setrxaftertxdelay) for dwt_setrxaftertxdelay
    dw_app.o(i.Registor_Poll) refers to deca_device.o(i.dwt_setrxtimeout) for dwt_setrxtimeout
    dw_app.o(i.Registor_Poll) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_ReadPin) for HAL_GPIO_ReadPin
    dw_app.o(i.Registor_Poll) refers to uidiv.o(.text) for __aeabi_uidivmod
    dw_app.o(i.Registor_Poll) refers to deca_device.o(i.dwt_writetxdata) for dwt_writetxdata
    dw_app.o(i.Registor_Poll) refers to deca_device.o(i.dwt_writetxfctrl) for dwt_writetxfctrl
    dw_app.o(i.Registor_Poll) refers to deca_device.o(i.dwt_starttx) for dwt_starttx
    dw_app.o(i.Registor_Poll) refers to main.o(i.IdleTask) for IdleTask
    dw_app.o(i.Registor_Poll) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    dw_app.o(i.Registor_Poll) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    dw_app.o(i.Registor_Poll) refers to deca_device.o(i.dwt_readrxdata) for dwt_readrxdata
    dw_app.o(i.Registor_Poll) refers to memcmp.o(.text) for memcmp
    dw_app.o(i.Registor_Poll) refers to stm32l0xx_hal_lptim.o(i.HAL_LPTIM_ReadCounter) for HAL_LPTIM_ReadCounter
    dw_app.o(i.Registor_Poll) refers to dw_app.o(i.SetLPTimer) for SetLPTimer
    dw_app.o(i.Registor_Poll) refers to memcpya.o(.text) for __aeabi_memcpy
    dw_app.o(i.Registor_Poll) refers to dw_app.o(i.GetNearMsg) for GetNearMsg
    dw_app.o(i.Registor_Poll) refers to dw_app.o(i.__NVIC_SystemReset) for __NVIC_SystemReset
    dw_app.o(i.Registor_Poll) refers to dw_app.o(.data) for .data
    dw_app.o(i.Registor_Poll) refers to main.o(.data) for tag_frequency
    dw_app.o(i.Registor_Poll) refers to dw_app.o(.bss) for .bss
    dw_app.o(i.Registor_Poll) refers to global_param.o(.bss) for g_com_map
    dw_app.o(i.Registor_Poll) refers to deca_device.o(.data) for module_power
    dw_app.o(i.Registor_Poll) refers to main.o(.data) for sync_timer
    dw_app.o(i.Registor_Poll) refers to main.o(.bss) for hlptim1
    dw_app.o(i.SendHuiZongData) refers to memcpya.o(.text) for __aeabi_memcpy
    dw_app.o(i.SendHuiZongData) refers to dw_app.o(i.Checksum_u16) for Checksum_u16
    dw_app.o(i.SendHuiZongData) refers to usart.o(i.USART_puts) for USART_puts
    dw_app.o(i.SendHuiZongData) refers to dw_app.o(.bss) for .bss
    dw_app.o(i.SendHuiZongData) refers to dw_app.o(.data) for .data
    dw_app.o(i.SendHuiZongData) refers to main.o(.data) for dev_id
    dw_app.o(i.SetANCTimestap) refers to memcpya.o(.text) for __aeabi_memcpy
    dw_app.o(i.SetANCTimestap) refers to dw_app.o(.bss) for .bss
    dw_app.o(i.SetANCTimestap) refers to dw_app.o(.data) for .data
    dw_app.o(i.SetLPTimer) refers to dw_app.o(i.NextPollDelay) for NextPollDelay
    dw_app.o(i.SetLPTimer) refers to stm32l0xx_hal_lptim.o(i.HAL_LPTIM_ReadCounter) for HAL_LPTIM_ReadCounter
    dw_app.o(i.SetLPTimer) refers to dflti.o(.text) for __aeabi_i2d
    dw_app.o(i.SetLPTimer) refers to dfltui.o(.text) for __aeabi_ui2d
    dw_app.o(i.SetLPTimer) refers to ddiv.o(.text) for __aeabi_ddiv
    dw_app.o(i.SetLPTimer) refers to dadd.o(.text) for __aeabi_dadd
    dw_app.o(i.SetLPTimer) refers to dfixui.o(.text) for __aeabi_d2uiz
    dw_app.o(i.SetLPTimer) refers to main.o(.bss) for hlptim1
    dw_app.o(i.SetLPTimer) refers to dw_app.o(.data) for .data
    dw_app.o(i.Tag_App) refers to deca_device.o(i.dwt_forcetrxoff) for dwt_forcetrxoff
    dw_app.o(i.Tag_App) refers to deca_device.o(i.__ARM_common_switch8) for __ARM_common_switch8
    dw_app.o(i.Tag_App) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    dw_app.o(i.Tag_App) refers to dw_app.o(i.Registor_Poll) for Registor_Poll
    dw_app.o(i.Tag_App) refers to dw_app.o(i.DiscPoll2) for DiscPoll2
    dw_app.o(i.Tag_App) refers to dw_app.o(i.GetNearMsg) for GetNearMsg
    dw_app.o(i.Tag_App) refers to dw_app.o(i.NearPoll) for NearPoll
    dw_app.o(i.Tag_App) refers to bmp390.o(i.GetPressAndHeight) for GetPressAndHeight
    dw_app.o(i.Tag_App) refers to fmul.o(.text) for __aeabi_fmul
    dw_app.o(i.Tag_App) refers to ffixi.o(.text) for __aeabi_f2iz
    dw_app.o(i.Tag_App) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_ReadPin) for HAL_GPIO_ReadPin
    dw_app.o(i.Tag_App) refers to deca_device.o(i.dwt_setinterrupt) for dwt_setinterrupt
    dw_app.o(i.Tag_App) refers to deca_device.o(i.dwt_setrxtimeout) for dwt_setrxtimeout
    dw_app.o(i.Tag_App) refers to deca_device.o(i.dwt_rxenable) for dwt_rxenable
    dw_app.o(i.Tag_App) refers to dw_app.o(.data) for .data
    dw_app.o(i.Tag_App) refers to bmp390.o(.data) for Altitude
    dw_app.o(i.Tag_App) refers to stm32l0xx_it.o(.data) for userkey_state
    dw_app.o(i.get_rx_timestamp_u64) refers to deca_device.o(i.dwt_readrxtimestamp) for dwt_readrxtimestamp
    dw_app.o(i.get_tx_timestamp_u64) refers to deca_device.o(i.dwt_readtxtimestamp) for dwt_readtxtimestamp
    dw_app.o(i.tag_sleep_configuraion) refers to deca_device.o(i.dwt_configuresleep) for dwt_configuresleep
    dw_app.o(i.tag_sleep_configuraion) refers to deca_device.o(i.dwt_entersleep) for dwt_entersleep
    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 usart.o(i.UART_PushFrame) for UART_PushFrame
    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.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 dw_driver.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
    dw_ds_anc.o(i.Anchor_App) refers to deca_device.o(i.dwt_setinterrupt) for dwt_setinterrupt
    dw_ds_anc.o(i.Anchor_App) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    dw_ds_anc.o(i.Anchor_App) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    dw_ds_anc.o(i.Anchor_App) refers to deca_device.o(i.dwt_readrxdata) for dwt_readrxdata
    dw_ds_anc.o(i.Anchor_App) refers to memcpya.o(.text) for __aeabi_memcpy
    dw_ds_anc.o(i.Anchor_App) refers to dw_ds_anc.o(i.CmpTagInList) for CmpTagInList
    dw_ds_anc.o(i.Anchor_App) refers to ffltui.o(.text) for __aeabi_ui2f
    dw_ds_anc.o(i.Anchor_App) refers to uidiv.o(.text) for __aeabi_uidivmod
    dw_ds_anc.o(i.Anchor_App) refers to fdiv.o(.text) for __aeabi_fdiv
    dw_ds_anc.o(i.Anchor_App) refers to f2d.o(.text) for __aeabi_f2d
    dw_ds_anc.o(i.Anchor_App) refers to round.o(i.round) for round
    dw_ds_anc.o(i.Anchor_App) refers to d2f.o(.text) for __aeabi_d2f
    dw_ds_anc.o(i.Anchor_App) refers to ffixui.o(.text) for __aeabi_f2uiz
    dw_ds_anc.o(i.Anchor_App) refers to dw_ds_anc.o(i.Anchor_RecNearPoll) for Anchor_RecNearPoll
    dw_ds_anc.o(i.Anchor_App) refers to deca_device.o(i.dwt_forcetrxoff) for dwt_forcetrxoff
    dw_ds_anc.o(i.Anchor_App) refers to deca_device.o(i.dwt_setrxtimeout) for dwt_setrxtimeout
    dw_ds_anc.o(i.Anchor_App) refers to deca_device.o(i.dwt_rxenable) for dwt_rxenable
    dw_ds_anc.o(i.Anchor_App) refers to dw_ds_anc.o(.data) for .data
    dw_ds_anc.o(i.Anchor_App) refers to dw_ds_anc.o(.bss) for .bss
    dw_ds_anc.o(i.Anchor_App) refers to main.o(.data) for group_id
    dw_ds_anc.o(i.Anchor_App) refers to global_param.o(.bss) for g_com_map
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to dw_ds_anc.o(i.get_rx_timestamp_u64) for get_rx_timestamp_u64
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to deca_device.o(i.dwt_setdelayedtrxtime) for dwt_setdelayedtrxtime
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to deca_device.o(i.dwt_setrxaftertxdelay) for dwt_setrxaftertxdelay
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to deca_device.o(i.dwt_setrxtimeout) for dwt_setrxtimeout
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to deca_device.o(i.dwt_writetxdata) for dwt_writetxdata
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to deca_device.o(i.dwt_writetxfctrl) for dwt_writetxfctrl
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to deca_device.o(i.dwt_starttx) for dwt_starttx
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to deca_device.o(i.dwt_write32bitoffsetreg) for dwt_write32bitoffsetreg
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to deca_device.o(i.dwt_rxenable) for dwt_rxenable
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to deca_device.o(i.dwt_read32bitoffsetreg) for dwt_read32bitoffsetreg
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to deca_device.o(i.dwt_readrxdata) for dwt_readrxdata
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to memcmp.o(.text) for memcmp
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to deca_device.o(i.dwt_readtxtimestamp) for dwt_readtxtimestamp
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to dw_ds_anc.o(i.final_msg_get_ts) for final_msg_get_ts
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to dfltui.o(.text) for __aeabi_ui2d
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to dadd.o(.text) for __aeabi_dadd
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to dmul.o(.text) for __aeabi_dmul
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to ddiv.o(.text) for __aeabi_ddiv
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to dfixl.o(.text) for __aeabi_d2lz
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to dfltl.o(.text) for __aeabi_l2d
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to d2f.o(.text) for __aeabi_d2f
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to deca_range_tables.o(i.dwt_getrangebias) for dwt_getrangebias
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to deca_device.o(i.dwt_readdiagnostics) for dwt_readdiagnostics
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to dw_ds_anc.o(i.LOS) for LOS
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to dflti.o(.text) for __aeabi_i2d
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to dfixi.o(.text) for __aeabi_d2iz
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to idiv.o(.text) for __aeabi_idivmod
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to memcpya.o(.text) for __aeabi_memcpy
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to dfixui.o(.text) for __aeabi_d2uiz
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to dw_ds_anc.o(.bss) for .bss
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to main.o(.data) for dev_id
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to dw_ds_anc.o(.data) for .data
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to dw_app.o(.data) for config
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to dw_app.o(.data) for dis_after_filter
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to global_param.o(.bss) for g_com_map
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to dw_app.o(.bss) for usart_send
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to dw_app.o(i.Checksum_u16) for Checksum_u16
    dw_ds_anc.o(i.Anchor_RecNearPoll) refers to usart.o(i.USART_puts) for USART_puts
    dw_ds_anc.o(i.CmpTagInList) refers to memcmp.o(.text) for memcmp
    dw_ds_anc.o(i.CmpTagInList) refers to dw_ds_anc.o(.bss) for .bss
    dw_ds_anc.o(i.CmpTagInList) refers to dw_ds_anc.o(.data) for .data
    dw_ds_anc.o(i.HAL_GPIO_EXTI_Callback) refers to dw_ds_anc.o(i.Anchor_App) for Anchor_App
    dw_ds_anc.o(i.LOS) refers to idiv.o(.text) for __aeabi_idivmod
    dw_ds_anc.o(i.LOS) refers to dflti.o(.text) for __aeabi_i2d
    dw_ds_anc.o(i.LOS) refers to log10.o(i.log10) for log10
    dw_ds_anc.o(i.LOS) refers to dmul.o(.text) for __aeabi_dmul
    dw_ds_anc.o(i.LOS) refers to dadd.o(.text) for __aeabi_dsub
    dw_ds_anc.o(i.LOS) refers to dfltui.o(.text) for __aeabi_ui2d
    dw_ds_anc.o(i.LOS) refers to dscalb.o(.text) for __ARM_scalbn
    dw_ds_anc.o(i.LOS) refers to ddiv.o(.text) for __aeabi_ddiv
    dw_ds_anc.o(i.LOS) refers to dw_ds_anc.o(.data) for .data
    dw_ds_anc.o(i.TagListUpdate) refers to dw_ds_anc.o(.data) for .data
    dw_ds_anc.o(i.TagListUpdate) refers to dw_ds_anc.o(.bss) for .bss
    dw_ds_anc.o(i.get_rx_timestamp_u64) refers to deca_device.o(i.dwt_readrxtimestamp) for dwt_readrxtimestamp
    main.o(i.BarInit) refers to bmp390.o(i.BMP390_Init) for BMP390_Init
    main.o(i.BarInit) refers to bmp390.o(i.Parameter_Reading) for Parameter_Reading
    main.o(i.BarInit) refers to bmp390.o(i.BMP390_Read_Byte) for BMP390_Read_Byte
    main.o(i.BarInit) refers to printf1.o(i.__0printf$1) for __2printf
    main.o(i.BarInit) refers to main.o(.data) for .data
    main.o(i.BarInit) refers to bmp390.o(.bss) for Temperature_Para
    main.o(i.DoubleClickProcess) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Start) for HAL_TIM_PWM_Start
    main.o(i.DoubleClickProcess) refers to stm32l0xx_hal.o(i.HAL_Delay) for HAL_Delay
    main.o(i.DoubleClickProcess) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Stop) for HAL_TIM_PWM_Stop
    main.o(i.DoubleClickProcess) refers to global_param.o(i.save_com_map_to_flash) for save_com_map_to_flash
    main.o(i.DoubleClickProcess) refers to main.o(.data) for .data
    main.o(i.DoubleClickProcess) refers to main.o(.bss) for .bss
    main.o(i.DoubleClickProcess) refers to global_param.o(.bss) for g_com_map
    main.o(i.ErrorConfig_Handler) refers to global_param.o(.bss) for g_com_map
    main.o(i.GPIO_Toggle) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_TogglePin) for HAL_GPIO_TogglePin
    main.o(i.GetLPTime) refers to stm32l0xx_hal_lptim.o(i.HAL_LPTIM_ReadCounter) for HAL_LPTIM_ReadCounter
    main.o(i.GetLPTime) refers to dfltui.o(.text) for __aeabi_ui2d
    main.o(i.GetLPTime) refers to dmul.o(.text) for __aeabi_dmul
    main.o(i.GetLPTime) refers to ddiv.o(.text) for __aeabi_ddiv
    main.o(i.GetLPTime) refers to dfixui.o(.text) for __aeabi_d2uiz
    main.o(i.GetLPTime) refers to main.o(.bss) for .bss
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to main.o(i.SystemClock_Config) for SystemClock_Config
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to ffltui.o(.text) for __aeabi_ui2f
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to fdiv.o(.text) for __aeabi_fdiv
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to fadd.o(.text) for __aeabi_fadd
    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_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to cfcmple.o(.text) for __aeabi_cfcmple
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to uidiv.o(.text) for __aeabi_uidivmod
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to main.o(i.GPIO_Toggle) for GPIO_Toggle
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to global_param.o(i.parameter_init) for parameter_init
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to global_param.o(i.save_com_map_to_flash) for save_com_map_to_flash
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to dw_driver.o(i.delay_ms) for delay_ms
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to fflti.o(.text) for __aeabi_i2f
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to main.o(.data) for .data
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to stm32l0xx_it.o(.data) for button_delay
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to dw_app.o(.data) for stationary_flag
    main.o(i.HAL_LPTIM_CompareMatchCallback) refers to global_param.o(.bss) for g_com_map
    main.o(i.IdleTask) refers to usart.o(i.UART_CheckReceive) for UART_CheckReceive
    main.o(i.IdleTask) refers to usart.o(i.UART_CheckSend) for UART_CheckSend
    main.o(i.IdleTask) refers to main.o(i.GetLPTime) for GetLPTime
    main.o(i.IdleTask) refers to adc.o(i.Get_Battary) for Get_Battary
    main.o(i.IdleTask) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_ReadPin) for HAL_GPIO_ReadPin
    main.o(i.IdleTask) refers to main.o(i.UsartInit) for UsartInit
    main.o(i.IdleTask) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_WritePin) for HAL_GPIO_WritePin
    main.o(i.IdleTask) refers to flash.o(i.FLASH_Prepare) for FLASH_Prepare
    main.o(i.IdleTask) refers to flash.o(i.FLASH_Write) for FLASH_Write
    main.o(i.IdleTask) refers to printf1.o(i.__0printf$1) for __2printf
    main.o(i.IdleTask) refers to global_param.o(i.save_com_map_to_flash) for save_com_map_to_flash
    main.o(i.IdleTask) refers to dw_driver.o(i.delay_ms) for delay_ms
    main.o(i.IdleTask) refers to main.o(.bss) for .bss
    main.o(i.IdleTask) refers to main.o(.data) for .data
    main.o(i.IdleTask) refers to stm32l0xx_it.o(.data) for nomove_count
    main.o(i.IdleTask) refers to global_param.o(.bss) for g_com_map
    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 stm32l0xx_hal_adc_ex.o(i.HAL_ADCEx_Calibration_Start) for HAL_ADCEx_Calibration_Start
    main.o(i.MX_ADC_Init) refers to main.o(.bss) for .bss
    main.o(i.MX_DMA_Init) refers to stm32l0xx_hal_cortex.o(i.HAL_NVIC_SetPriority) for HAL_NVIC_SetPriority
    main.o(i.MX_DMA_Init) refers to stm32l0xx_hal_cortex.o(i.HAL_NVIC_EnableIRQ) for HAL_NVIC_EnableIRQ
    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_TIM2_Init) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_Base_Init) for HAL_TIM_Base_Init
    main.o(i.MX_TIM2_Init) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_ConfigClockSource) for HAL_TIM_ConfigClockSource
    main.o(i.MX_TIM2_Init) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Init) for HAL_TIM_PWM_Init
    main.o(i.MX_TIM2_Init) refers to stm32l0xx_hal_tim_ex.o(i.HAL_TIMEx_MasterConfigSynchronization) for HAL_TIMEx_MasterConfigSynchronization
    main.o(i.MX_TIM2_Init) refers to stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_ConfigChannel) for HAL_TIM_PWM_ConfigChannel
    main.o(i.MX_TIM2_Init) refers to stm32l0xx_hal_msp.o(i.HAL_TIM_MspPostInit) for HAL_TIM_MspPostInit
    main.o(i.MX_TIM2_Init) refers to main.o(.bss) for .bss
    main.o(i.MX_USART1_UART_Init) refers to memseta.o(.text) for __aeabi_memclr4
    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 usart.o(i.Usart1InitVariables) for Usart1InitVariables
    main.o(i.MX_USART1_UART_Init) refers to main.o(.bss) for .bss
    main.o(i.Program_Init) refers to global_param.o(i.parameter_init) for parameter_init
    main.o(i.Program_Init) refers to flash.o(i.STMFLASH_ReadHalfWord) for STMFLASH_ReadHalfWord
    main.o(i.Program_Init) refers to main.o(i.ErrorConfig_Handler) for ErrorConfig_Handler
    main.o(i.Program_Init) refers to uidiv.o(.text) for __aeabi_uidivmod
    main.o(i.Program_Init) refers to dfltui.o(.text) for __aeabi_ui2d
    main.o(i.Program_Init) refers to ddiv.o(.text) for __aeabi_ddiv
    main.o(i.Program_Init) refers to dfixui.o(.text) for __aeabi_d2uiz
    main.o(i.Program_Init) refers to main.o(i.GetLPTime) for GetLPTime
    main.o(i.Program_Init) refers to stm32l0xx_hal_lptim.o(i.HAL_LPTIM_TimeOut_Start_IT) for HAL_LPTIM_TimeOut_Start_IT
    main.o(i.Program_Init) refers to printf1.o(i.__0printf$1) for __2printf
    main.o(i.Program_Init) refers to serial_at_cmd_app.o(i.UsartParseDataHandler) for UsartParseDataHandler
    main.o(i.Program_Init) refers to usart.o(.data) for Usart1ParseDataCallback
    main.o(i.Program_Init) refers to main.o(.data) for .data
    main.o(i.Program_Init) refers to global_param.o(.bss) for g_com_map
    main.o(i.Program_Init) refers to deca_device.o(.data) for module_power
    main.o(i.Program_Init) refers to main.o(.bss) for .bss
    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.UsartInit) refers to main.o(i.MX_DMA_Init) for MX_DMA_Init
    main.o(i.UsartInit) refers to main.o(i.MX_USART1_UART_Init) for MX_USART1_UART_Init
    main.o(i.UsartInit) refers to stm32l0xx_hal_uart.o(i.HAL_UART_Receive_DMA) for HAL_UART_Receive_DMA
    main.o(i.UsartInit) refers to usart.o(.bss) for m_EUART_DMA_RXBuf
    main.o(i.UsartInit) refers to main.o(.bss) for .bss
    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 main.o(i.MX_GPIO_Init) for MX_GPIO_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_DMA_Init) for MX_DMA_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_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 main.o(i.MX_TIM2_Init) for MX_TIM2_Init
    main.o(i.main) refers to stm32l0xx_hal_iwdg.o(i.HAL_IWDG_Init) for HAL_IWDG_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 main.o(i.Program_Init) for Program_Init
    main.o(i.main) refers to lis3dh_driver.o(i.Accelerometer_Init) for Accelerometer_Init
    main.o(i.main) refers to dw_app.o(i.Dw1000_Init) for Dw1000_Init
    main.o(i.main) refers to dw_app.o(i.Dw1000_App_Init) for Dw1000_App_Init
    main.o(i.main) refers to main.o(i.BarInit) for BarInit
    main.o(i.main) refers to stm32l0xx_hal_uart.o(i.HAL_UART_Receive_DMA) for HAL_UART_Receive_DMA
    main.o(i.main) refers to stm32l0xx_hal_iwdg.o(i.HAL_IWDG_Refresh) for HAL_IWDG_Refresh
    main.o(i.main) refers to dw_app.o(i.Tag_App) for Tag_App
    main.o(i.main) refers to main.o(i.IdleTask) for IdleTask
    main.o(i.main) refers to main.o(.bss) for .bss
    main.o(i.main) refers to usart.o(.bss) for m_EUART_DMA_RXBuf
    main.o(i.main) refers to main.o(.data) for .data
    main.o(i.mcu_sleep) refers to stm32l0xx_hal_lptim.o(i.HAL_LPTIM_DeInit) for HAL_LPTIM_DeInit
    main.o(i.mcu_sleep) refers to memseta.o(.text) for __aeabi_memclr4
    main.o(i.mcu_sleep) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_Init) for HAL_GPIO_Init
    main.o(i.mcu_sleep) refers to stm32l0xx_hal_pwr.o(i.HAL_PWR_EnterSTOPMode) for HAL_PWR_EnterSTOPMode
    main.o(i.mcu_sleep) refers to stm32l0xx_hal_pwr.o(i.HAL_PWR_DisableWakeUpPin) for HAL_PWR_DisableWakeUpPin
    main.o(i.mcu_sleep) refers to stm32l0xx_hal_pwr.o(i.HAL_PWR_EnableWakeUpPin) for HAL_PWR_EnableWakeUpPin
    main.o(i.mcu_sleep) refers to stm32l0xx_hal_pwr.o(i.HAL_PWR_EnterSTANDBYMode) for HAL_PWR_EnterSTANDBYMode
    main.o(i.mcu_sleep) refers to main.o(.bss) for .bss
    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_usart1_tx
    stm32l0xx_it.o(i.DMA1_Channel2_3_IRQHandler) refers to main.o(.bss) for hdma_usart1_rx
    stm32l0xx_it.o(i.EXTI0_1_IRQHandler) refers to main.o(i.SystemClock_Config) for SystemClock_Config
    stm32l0xx_it.o(i.EXTI0_1_IRQHandler) refers to stm32l0xx_hal_gpio.o(i.HAL_GPIO_ReadPin) for HAL_GPIO_ReadPin
    stm32l0xx_it.o(i.EXTI0_1_IRQHandler) refers to main.o(i.GetLPTime) for GetLPTime
    stm32l0xx_it.o(i.EXTI0_1_IRQHandler) refers to main.o(i.DoubleClickProcess) for DoubleClickProcess
    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.EXTI0_1_IRQHandler) refers to stm32l0xx_it.o(.data) for .data
    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.HardFault_Handler) refers to printf1.o(i.__0printf$1) for __2printf
    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 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_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_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_SetPriority) for HAL_NVIC_SetPriority
    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_usart1_rx
    stm32l0xx_hal_msp.o(i.HAL_UART_MspInit) refers to main.o(.bss) for hdma_usart1_tx
    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.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_RequestMemoryRead) for I2C_RequestMemoryRead
    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_Master_ISR_DMA) for I2C_Master_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.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_RequestMemoryRead) for I2C_RequestMemoryRead
    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_Master_ISR_IT) for I2C_Master_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.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_DMA) refers to stm32l0xx_hal_i2c.o(i.I2C_RequestMemoryWrite) for I2C_RequestMemoryWrite
    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_Master_ISR_DMA) for I2C_Master_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.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_IT) refers to stm32l0xx_hal_i2c.o(i.I2C_RequestMemoryWrite) for I2C_RequestMemoryWrite
    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_Master_ISR_IT) for I2C_Master_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_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_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_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_IsAcknowledgeFailed) refers to stm32l0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32l0xx_hal_i2c.o(i.I2C_IsAcknowledgeFailed) 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_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_IsAcknowledgeFailed) for I2C_IsAcknowledgeFailed
    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_IsAcknowledgeFailed) for I2C_IsAcknowledgeFailed
    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_IsAcknowledgeFailed) for I2C_IsAcknowledgeFailed
    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_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.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_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 dw_ds_anc.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 deca_device.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_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_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_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.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_msp.o(i.HAL_TIM_Base_MspDeInit) for HAL_TIM_Base_MspDeInit
    stm32l0xx_hal_tim.o(i.HAL_TIM_Base_Init) refers to stm32l0xx_hal_msp.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_DMACaptureCplt) for TIM_DMACaptureCplt
    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_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_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_CCxChannelCmd) for TIM_CCxChannelCmd
    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_tim.o(i.HAL_TIM_PWM_MspDeInit) for HAL_TIM_PWM_MspDeInit
    stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Init) refers to stm32l0xx_hal_tim.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 deca_device.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 main.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 stm32l0xx_hal_uart.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 main.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 main.o(i.HAL_UART_ErrorCallback) for HAL_UART_ErrorCallback
    stm32l0xx_hal_uart.o(i.UART_DMAReceiveCplt) refers to stm32l0xx_hal_uart.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 stm32l0xx_hal_uart.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 stm32l0xx_hal_uart.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 stm32l0xx_hal_uart.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 deca_device.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_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
    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
    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
    log10.o(i.__softfp_log10) refers (Special) to iusefp.o(.text) for __I$use$fp
    log10.o(i.__softfp_log10) refers to log10.o(i.log10) for log10
    log10.o(i.log10) refers (Special) to iusefp.o(.text) for __I$use$fp
    log10.o(i.log10) refers to dunder.o(i.__mathlib_dbl_infnan) for __mathlib_dbl_infnan
    log10.o(i.log10) refers to errno.o(i.__set_errno) for __set_errno
    log10.o(i.log10) refers to dunder.o(i.__mathlib_dbl_invalid) for __mathlib_dbl_invalid
    log10.o(i.log10) refers to dunder.o(i.__mathlib_dbl_divzero) for __mathlib_dbl_divzero
    log10.o(i.log10) refers to dscalb.o(.text) for __ARM_scalbn
    log10.o(i.log10) refers to dflti.o(.text) for __aeabi_i2d
    log10.o(i.log10) refers to log.o(i.log) for log
    log10.o(i.log10) refers to dmul.o(.text) for __aeabi_dmul
    log10.o(i.log10) refers to dadd.o(.text) for __aeabi_dadd
    log10_x.o(i.____softfp_log10$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp
    log10_x.o(i.____softfp_log10$lsc) refers to log10_x.o(i.__log10$lsc) for __log10$lsc
    log10_x.o(i.__log10$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp
    log10_x.o(i.__log10$lsc) refers to dunder.o(i.__mathlib_dbl_infnan) for __mathlib_dbl_infnan
    log10_x.o(i.__log10$lsc) refers to errno.o(i.__set_errno) for __set_errno
    log10_x.o(i.__log10$lsc) refers to dscalb.o(.text) for __ARM_scalbn
    log10_x.o(i.__log10$lsc) refers to dflti.o(.text) for __aeabi_i2d
    log10_x.o(i.__log10$lsc) refers to log.o(i.log) for log
    log10_x.o(i.__log10$lsc) refers to dmul.o(.text) for __aeabi_dmul
    log10_x.o(i.__log10$lsc) refers to dadd.o(.text) for __aeabi_dadd
    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
    round.o(i.round) refers (Special) to iusefp.o(.text) for __I$use$fp
    round.o(i.round) refers to drnd.o(.text) for _drnd
    round.o(i.round) refers to dadd.o(.text) for __aeabi_dsub
    round.o(i.round) refers to cdcmple.o(.text) for __aeabi_cdcmple
    round.o(i.round) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
    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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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 usart.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
    malloc.o(i.free) refers to mvars.o(.data) for __microlib_freelist
    malloc.o(i.malloc) refers to mvars.o(.data) for __microlib_freelist_initialised
    malloc.o(i.malloc) refers to mvars.o(.data) for __microlib_freelist
    malloc.o(i.malloc) refers to startup_stm32l051xx.o(HEAP) for __heap_base
    mallocr.o(i.__free$realloc) refers to mvars.o(.data) for __microlib_freelist
    mallocr.o(i.__malloc$realloc) refers to mallocr.o(i.internal_alloc) for internal_alloc
    mallocr.o(i.__malloc$realloc) refers to mvars.o(.data) for __microlib_freelist_initialised
    mallocr.o(i.__malloc$realloc) refers to startup_stm32l051xx.o(HEAP) for __heap_base
    mallocr.o(i.__malloc$realloc) refers to mvars.o(.data) for __microlib_freelist
    mallocr.o(i.internal_alloc) refers to memcpya.o(.text) for __aeabi_memcpy
    mallocr.o(i.internal_alloc) refers to mvars.o(.data) for __microlib_freelist
    mallocr.o(i.realloc) refers to mallocr.o(i.__free$realloc) for __free$realloc
    mallocr.o(i.realloc) refers to mallocr.o(i.internal_alloc) for internal_alloc
    mallocr.o(i.realloc) refers to mallocr.o(i.__malloc$realloc) for __malloc$realloc
    mallocr.o(i.realloc) refers to mvars.o(.data) for __microlib_freelist
    malloca.o(i.__aligned_malloc) refers to mvars.o(.data) for __microlib_freelist
    malloca.o(i.__aligned_malloc) refers to mvars.o(.data) for __microlib_freelist_initialised
    malloca.o(i.__aligned_malloc) refers to startup_stm32l051xx.o(HEAP) for __heap_base
    malloca.o(i.__free$memalign) refers to mvars.o(.data) for __microlib_freelist
    malloca.o(i.__malloc$memalign) refers to malloca.o(i.__aligned_malloc) for __aligned_malloc
    mallocra.o(i.__aligned_malloc$realloc) refers to mallocra.o(i.internal_alloc) for internal_alloc
    mallocra.o(i.__aligned_malloc$realloc) refers to startup_stm32l051xx.o(HEAP) for __heap_base
    mallocra.o(i.__aligned_malloc$realloc) refers to mvars.o(.data) for __microlib_freelist
    mallocra.o(i.__aligned_malloc$realloc) refers to mvars.o(.data) for __microlib_freelist_initialised
    mallocra.o(i.__free$realloc$memalign) refers to mvars.o(.data) for __microlib_freelist
    mallocra.o(i.__malloc$realloc$memalign) refers to mallocra.o(i.__aligned_malloc$realloc) for __aligned_malloc$realloc
    mallocra.o(i.__realloc$memalign) refers to mallocra.o(i.__free$realloc$memalign) for __free$realloc$memalign
    mallocra.o(i.__realloc$memalign) refers to mallocra.o(i.internal_alloc) for internal_alloc
    mallocra.o(i.__realloc$memalign) refers to mallocra.o(i.__malloc$realloc$memalign) for __malloc$realloc$memalign
    mallocra.o(i.__realloc$memalign) refers to mvars.o(.data) for __microlib_freelist
    mallocra.o(i.internal_alloc) refers to memcpya.o(.text) for __aeabi_memcpy
    mallocra.o(i.internal_alloc) refers to mvars.o(.data) for __microlib_freelist
    fadd.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    fadd.o(.text) refers to fepilogue.o(.text) for _float_epilogue
    fmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    fdiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    fdiv.o(.text) refers to fepilogue.o(.text) for _float_round
    dadd.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    dadd.o(.text) refers to llshl.o(.text) for __aeabi_llsl
    dadd.o(.text) refers to llsshr.o(.text) for __aeabi_lasr
    dadd.o(.text) refers to depilogue.o(.text) for _double_epilogue
    dmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    dmul.o(.text) refers to depilogue.o(.text) for _double_epilogue
    ddiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    ddiv.o(.text) refers to depilogue.o(.text) for _double_round
    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
    dfltl.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    dfltl.o(.text) refers to depilogue.o(.text) for _double_epilogue
    ffixi.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    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
    dfixl.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    dfixl.o(.text) refers to llushr.o(.text) for __aeabi_llsr
    dfixl.o(.text) refers to llshl.o(.text) for __aeabi_llsl
    f2d.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    cdcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    cdrcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    d2f.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    d2f.o(.text) refers to fepilogue.o(.text) for _float_round
    cfcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    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
    log.o(i.__softfp_log) refers (Special) to iusefp.o(.text) for __I$use$fp
    log.o(i.__softfp_log) refers to log.o(i.log) for log
    log.o(i.log) refers (Special) to iusefp.o(.text) for __I$use$fp
    log.o(i.log) refers to dunder.o(i.__mathlib_dbl_infnan) for __mathlib_dbl_infnan
    log.o(i.log) refers to errno.o(i.__set_errno) for __set_errno
    log.o(i.log) refers to dunder.o(i.__mathlib_dbl_invalid) for __mathlib_dbl_invalid
    log.o(i.log) refers to dunder.o(i.__mathlib_dbl_divzero) for __mathlib_dbl_divzero
    log.o(i.log) refers to dscalb.o(.text) for __ARM_scalbn
    log.o(i.log) refers to dadd.o(.text) for __aeabi_dsub
    log.o(i.log) refers to cdcmple.o(.text) for __aeabi_cdcmpeq
    log.o(i.log) refers to dflti.o(.text) for __aeabi_i2d
    log.o(i.log) refers to dmul.o(.text) for __aeabi_dmul
    log.o(i.log) refers to ddiv.o(.text) for __aeabi_ddiv
    log.o(i.log) refers to poly.o(i.__kernel_poly) for __kernel_poly
    log.o(i.log) refers to qnan.o(.constdata) for __mathlib_zero
    log.o(i.log) refers to log.o(.constdata) for .constdata
    log.o(.constdata) refers (Special) to iusefp.o(.text) for __I$use$fp
    log_x.o(i.____softfp_log$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp
    log_x.o(i.____softfp_log$lsc) refers to log_x.o(i.__log$lsc) for __log$lsc
    log_x.o(i.__log$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp
    log_x.o(i.__log$lsc) refers to dunder.o(i.__mathlib_dbl_infnan) for __mathlib_dbl_infnan
    log_x.o(i.__log$lsc) refers to errno.o(i.__set_errno) for __set_errno
    log_x.o(i.__log$lsc) refers to dscalb.o(.text) for __ARM_scalbn
    log_x.o(i.__log$lsc) refers to dadd.o(.text) for __aeabi_dsub
    log_x.o(i.__log$lsc) refers to cdcmple.o(.text) for __aeabi_cdcmpeq
    log_x.o(i.__log$lsc) refers to dflti.o(.text) for __aeabi_i2d
    log_x.o(i.__log$lsc) refers to dmul.o(.text) for __aeabi_dmul
    log_x.o(i.__log$lsc) refers to ddiv.o(.text) for __aeabi_ddiv
    log_x.o(i.__log$lsc) refers to poly.o(i.__kernel_poly) for __kernel_poly
    log_x.o(i.__log$lsc) refers to qnan.o(.constdata) for __mathlib_zero
    log_x.o(i.__log$lsc) refers to log_x.o(.constdata) for .constdata
    log_x.o(.constdata) 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_stm32l051xx.o(STACK) for __initial_sp
    entry2.o(__vectab_stack_and_reset_area) refers to startup_stm32l051xx.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
    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
 
 
==============================================================================
 
Removing Unused input sections from the image.
 
    Removing startup_stm32l051xx.o(HEAP), (512 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(i.mir3da_ReadLenByte), (72 bytes).
    Removing lis3dh_driver.o(i.mir3da_WriteLenByte), (38 bytes).
    Removing lis3dh_driver.o(i.mir3da_get_step), (24 bytes).
    Removing lis3dh_driver.o(i.mir3da_read_data), (72 bytes).
    Removing lis3dh_driver.o(i.mir3da_read_raw_data), (52 bytes).
    Removing lis3dh_driver.o(i.mir3da_register_read), (8 bytes).
    Removing lis3dh_driver.o(i.mir3da_reset_step_counter), (14 bytes).
    Removing lis3dh_driver.o(.data), (4 bytes).
    Removing dw_driver.o(.rev16_text), (4 bytes).
    Removing dw_driver.o(.revsh_text), (4 bytes).
    Removing bmp390.o(.rev16_text), (4 bytes).
    Removing bmp390.o(.revsh_text), (4 bytes).
    Removing bmp390.o(i.IIC_Init), (72 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_aonarrayupload), (38 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_configuresleep), (40 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_enableautorxeanble), (36 bytes).
    Removing deca_device.o(i.dwt_enableframefilter), (64 bytes).
    Removing deca_device.o(i.dwt_entersleep), (8 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_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_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_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 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 usart.o(.rev16_text), (4 bytes).
    Removing usart.o(.revsh_text), (4 bytes).
    Removing usart.o(i.UART_PopFrame), (52 bytes).
    Removing usart.o(.data), (2 bytes).
    Removing usart.o(.data), (2 bytes).
    Removing usart.o(.data), (2 bytes).
    Removing usart.o(.data), (1 bytes).
    Removing usart.o(.data), (2 bytes).
    Removing usart.o(.data), (2 bytes).
    Removing usart.o(.data), (2 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 global_param.o(.rev16_text), (4 bytes).
    Removing global_param.o(.revsh_text), (4 bytes).
    Removing dw_app.o(.rev16_text), (4 bytes).
    Removing dw_app.o(.revsh_text), (4 bytes).
    Removing dw_app.o(i.GetRandomSlotPos), (72 bytes).
    Removing dw_app.o(i.GetRandomValue), (32 bytes).
    Removing dw_app.o(i.MODBUS_Poll), (556 bytes).
    Removing dw_app.o(i.QiyaJizhan_Send), (236 bytes).
    Removing dw_app.o(i.SendHuiZongData), (216 bytes).
    Removing dw_app.o(i.tag_sleep_configuraion), (18 bytes).
    Removing dw_app.o(.bss), (100 bytes).
    Removing dw_app.o(.bss), (100 bytes).
    Removing dw_app.o(.bss), (50 bytes).
    Removing dw_app.o(.bss), (50 bytes).
    Removing dw_app.o(.bss), (24 bytes).
    Removing dw_app.o(.bss), (48 bytes).
    Removing dw_app.o(.bss), (48 bytes).
    Removing dw_app.o(.bss), (80 bytes).
    Removing dw_app.o(.bss), (32 bytes).
    Removing dw_app.o(.bss), (40 bytes).
    Removing dw_app.o(.data), (4 bytes).
    Removing dw_app.o(.data), (4 bytes).
    Removing dw_app.o(.data), (4 bytes).
    Removing dw_app.o(.data), (4 bytes).
    Removing dw_app.o(.data), (2 bytes).
    Removing dw_app.o(.data), (1 bytes).
    Removing dw_app.o(.data), (1 bytes).
    Removing dw_app.o(.data), (2 bytes).
    Removing dw_app.o(.data), (40 bytes).
    Removing dw_app.o(.data), (4 bytes).
    Removing dw_app.o(.data), (1 bytes).
    Removing dw_app.o(.data), (8 bytes).
    Removing dw_app.o(.data), (8 bytes).
    Removing dw_app.o(.data), (4 bytes).
    Removing dw_app.o(.data), (1 bytes).
    Removing dw_app.o(.data), (1 bytes).
    Removing dw_app.o(.data), (4 bytes).
    Removing dw_app.o(.data), (1 bytes).
    Removing dw_app.o(.data), (2 bytes).
    Removing dw_app.o(.data), (4 bytes).
    Removing dw_app.o(.data), (4 bytes).
    Removing dw_app.o(.data), (1 bytes).
    Removing dw_app.o(.data), (2 bytes).
    Removing dw_app.o(.data), (1 bytes).
    Removing dw_app.o(.data), (1 bytes).
    Removing dw_app.o(.data), (2 bytes).
    Removing dw_app.o(.data), (1 bytes).
    Removing dw_app.o(.data), (2 bytes).
    Removing dw_app.o(.data), (4 bytes).
    Removing dw_app.o(.data), (1 bytes).
    Removing dw_app.o(.data), (4 bytes).
    Removing dw_app.o(.data), (1 bytes).
    Removing dw_app.o(.data), (1 bytes).
    Removing dw_app.o(.data), (4 bytes).
    Removing serial_at_cmd_app.o(.rev16_text), (4 bytes).
    Removing serial_at_cmd_app.o(.revsh_text), (4 bytes).
    Removing dw_ds_anc.o(.rev16_text), (4 bytes).
    Removing dw_ds_anc.o(.revsh_text), (4 bytes).
    Removing dw_ds_anc.o(i.TagListUpdate), (68 bytes).
    Removing dw_ds_anc.o(.constdata), (8 bytes).
    Removing dw_ds_anc.o(.constdata), (8 bytes).
    Removing main.o(.rev16_text), (4 bytes).
    Removing main.o(.revsh_text), (4 bytes).
    Removing main.o(i.HardWareTypeDiffConfig), (2 bytes).
    Removing main.o(i.mcu_sleep), (120 bytes).
    Removing main.o(.data), (2 bytes).
    Removing main.o(.data), (2 bytes).
    Removing main.o(.data), (1 bytes).
    Removing main.o(.data), (2 bytes).
    Removing main.o(.data), (2 bytes).
    Removing main.o(.data), (2 bytes).
    Removing main.o(.data), (4 bytes).
    Removing stm32l0xx_it.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_it.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_it.o(.data), (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_SPI_MspDeInit), (40 bytes).
    Removing stm32l0xx_hal_msp.o(i.HAL_TIM_Base_MspDeInit), (28 bytes).
    Removing stm32l0xx_hal_msp.o(i.HAL_UART_MspDeInit), (64 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), (82 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), (96 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), (216 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), (116 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_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), (48 bytes).
    Removing stm32l0xx_hal_adc_ex.o(i.HAL_ADCEx_EnableVREFINTTempSensor), (48 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), (288 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_IT), (188 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Write), (332 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_DMA), (280 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_IT), (180 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), (276 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), (364 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Receive_IT), (204 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Transmit_DMA), (368 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Seq_Transmit_IT), (208 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit), (294 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit_DMA), (196 bytes).
    Removing stm32l0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit_IT), (88 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), (92 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), (236 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_IsAcknowledgeFailed), (112 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_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), (40 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_TreatErrorCallback), (38 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_WaitOnFlagUntilTimeout), (78 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_WaitOnRXNEFlagUntilTimeout), (128 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_WaitOnSTOPFlagUntilTimeout), (76 bytes).
    Removing stm32l0xx_hal_i2c.o(i.I2C_WaitOnTXISFlagUntilTimeout), (80 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), (92 bytes).
    Removing stm32l0xx_hal_rcc_ex.o(i.HAL_RCCEx_GetPeriphCLKFreq), (324 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_GetError), (16 bytes).
    Removing stm32l0xx_hal_flash_ramfunc.o(i.HAL_FLASHEx_HalfPageProgram), (84 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), (60 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), (80 bytes).
    Removing stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_AdvOBGetConfig), (24 bytes).
    Removing stm32l0xx_hal_flash_ex.o(i.HAL_FLASHEx_AdvOBProgram), (24 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), (84 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), (56 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_DeInit), (228 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_dma.o(.rev16_text), (4 bytes).
    Removing stm32l0xx_hal_dma.o(.revsh_text), (4 bytes).
    Removing stm32l0xx_hal_dma.o(i.HAL_DMA_DeInit), (104 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_EnterSTOPMode), (100 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), (80 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_DisableIRQ), (32 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_NVIC_SystemReset), (28 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), (148 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), (64 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_ReadCompare), (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), (68 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), (332 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_Receive_DMA), (236 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_Transmit), (352 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_TransmitReceive), (496 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_TransmitReceive_DMA), (296 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_TransmitReceive_IT), (176 bytes).
    Removing stm32l0xx_hal_spi.o(i.HAL_SPI_Transmit_DMA), (208 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), (84 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_EndRxTxTransaction), (96 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_spi.o(i.SPI_WaitFlagStateUntilTimeout), (184 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_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), (68 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_Base_Start_DMA), (152 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_Base_Start_IT), (76 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_ConfigOCrefClear), (190 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), (284 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiWriteStart), (284 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_ReadStart), (18 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_ReadStop), (96 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_WriteStart), (18 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_DMABurst_WriteStop), (96 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), (384 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), (282 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), (132 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Start_DMA), (328 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Start_IT), (168 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Stop), (72 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Stop_DMA), (156 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_IC_Stop_IT), (116 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_IRQHandler), (294 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OC_ConfigChannel), (74 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), (124 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Start_DMA), (352 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Start_IT), (160 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Stop), (72 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Stop_DMA), (148 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OC_Stop_IT), (116 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_OnePulse_ConfigChannel), (202 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_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_DMA), (352 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Start_IT), (160 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Stop_DMA), (148 bytes).
    Removing stm32l0xx_hal_tim.o(i.HAL_TIM_PWM_Stop_IT), (116 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_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_SlaveTimer_SetConfig), (134 bytes).
    Removing stm32l0xx_hal_tim.o(i.TIM_TI1_SetConfig), (76 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_tim_ex.o(i.HAL_TIMEx_RemapConfig), (28 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), (54 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_HalfDuplex_EnableTransmitter), (54 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), (46 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_MultiProcessor_EnableMuteMode), (46 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), (182 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_AbortCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_AbortReceive), (128 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_AbortReceiveCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_AbortReceive_IT), (144 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_AbortTransmit), (84 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_AbortTransmitCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_AbortTransmit_IT), (88 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_Abort_IT), (224 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_DMAPause), (94 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_DMAResume), (86 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_DMAStop), (126 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_DeInit), (62 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), (272 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_Receive_IT), (96 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_ReceiverTimeout_Config), (24 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_Transmit_DMA), (176 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_Transmit_IT), (120 bytes).
    Removing stm32l0xx_hal_uart.o(i.HAL_UART_TxHalfCpltCallback), (2 bytes).
    Removing stm32l0xx_hal_uart.o(i.UART_DMARxAbortCallback), (64 bytes).
    Removing stm32l0xx_hal_uart.o(i.UART_DMARxOnlyAbortCallback), (38 bytes).
    Removing stm32l0xx_hal_uart.o(i.UART_DMATransmitCplt), (48 bytes).
    Removing stm32l0xx_hal_uart.o(i.UART_DMATxAbortCallback), (54 bytes).
    Removing stm32l0xx_hal_uart.o(i.UART_DMATxHalfCplt), (10 bytes).
    Removing stm32l0xx_hal_uart.o(i.UART_DMATxOnlyAbortCallback), (20 bytes).
    Removing stm32l0xx_hal_uart.o(i.UART_RxISR_16BIT), (118 bytes).
    Removing stm32l0xx_hal_uart.o(i.UART_RxISR_8BIT), (118 bytes).
    Removing stm32l0xx_hal_uart.o(i.UART_Start_Receive_IT), (152 bytes).
    Removing stm32l0xx_hal_uart.o(i.UART_TxISR_16BIT), (64 bytes).
    Removing stm32l0xx_hal_uart.o(i.UART_TxISR_8BIT), (60 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), (36 bytes).
    Removing stm32l0xx_hal_uart_ex.o(i.HAL_UARTEx_DisableStopMode), (34 bytes).
    Removing stm32l0xx_hal_uart_ex.o(i.HAL_UARTEx_EnableClockStopMode), (36 bytes).
    Removing stm32l0xx_hal_uart_ex.o(i.HAL_UARTEx_EnableStopMode), (34 bytes).
    Removing stm32l0xx_hal_uart_ex.o(i.HAL_UARTEx_ReceiveToIdle), (340 bytes).
    Removing stm32l0xx_hal_uart_ex.o(i.HAL_UARTEx_ReceiveToIdle_DMA), (94 bytes).
    Removing stm32l0xx_hal_uart_ex.o(i.HAL_UARTEx_ReceiveToIdle_IT), (94 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 cfrcmple.o(.text), (20 bytes).
    Removing dfixul.o(.text), (64 bytes).
 
752 unused section(s) (total 49175 bytes) removed from the image.