QuakeGod
2024-02-24 8b51c78f1b88d94a89bb8c37ae38a54f523cb597
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
Component: ARM Compiler 5.06 update 4 (build 422) Tool: armlink [4d35d2]
 
==============================================================================
 
Section Cross References
 
    startup_stm32f030x8.o(RESET) refers to startup_stm32f030x8.o(STACK) for __initial_sp
    startup_stm32f030x8.o(RESET) refers to startup_stm32f030x8.o(.text) for Reset_Handler
    startup_stm32f030x8.o(RESET) refers to stm32f0xx_it.o(i.NMI_Handler) for NMI_Handler
    startup_stm32f030x8.o(RESET) refers to stm32f0xx_it.o(i.HardFault_Handler) for HardFault_Handler
    startup_stm32f030x8.o(RESET) refers to stm32f0xx_it.o(i.SVC_Handler) for SVC_Handler
    startup_stm32f030x8.o(RESET) refers to stm32f0xx_it.o(i.PendSV_Handler) for PendSV_Handler
    startup_stm32f030x8.o(RESET) refers to stm32f0xx_it.o(i.SysTick_Handler) for SysTick_Handler
    startup_stm32f030x8.o(RESET) refers to stm32f0xx_it.o(i.DMA1_Channel2_3_IRQHandler) for DMA1_Channel2_3_IRQHandler
    startup_stm32f030x8.o(RESET) refers to stm32f0xx_it.o(i.DMA1_Channel4_5_IRQHandler) for DMA1_Channel4_5_IRQHandler
    startup_stm32f030x8.o(RESET) refers to stm32f0xx_it.o(i.TIM6_IRQHandler) for TIM6_IRQHandler
    startup_stm32f030x8.o(RESET) refers to stm32f0xx_it.o(i.SPI1_IRQHandler) for SPI1_IRQHandler
    startup_stm32f030x8.o(RESET) refers to stm32f0xx_it.o(i.USART1_IRQHandler) for USART1_IRQHandler
    startup_stm32f030x8.o(RESET) refers to stm32f0xx_it.o(i.USART2_IRQHandler) for USART2_IRQHandler
    startup_stm32f030x8.o(.text) refers to system_stm32f0xx.o(i.SystemInit) for SystemInit
    startup_stm32f030x8.o(.text) refers to entry.o(.ARM.Collect$$$$00000000) for __main
    debug.o(i.ADCProcess) refers to debug.o(.data) for .data
    debug.o(i.ADCProcess) refers to kmachine.o(.bss) for KMem
    debug.o(i.ADCProcess) refers to kmachine.o(.data) for PowerDownEvent
    debug.o(i.FormatHex) refers to printf8.o(i.__0sprintf$8) for __2sprintf
    debug.o(i.Locate) refers to printf8.o(i.__0sprintf$8) for __2sprintf
    debug.o(i.Locate) refers to functions.o(i.PutStr) for PutStr
    debug.o(i.PowerDownProcess) refers to kmachine.o(i.AddEventLog) for AddEventLog
    debug.o(i.PowerDownProcess) refers to kmachine.o(i.SaveRunStat) for SaveRunStat
    debug.o(i.PowerDownProcess) refers to kmachine.o(.bss) for KMem
    debug.o(i.PowerRecoverProcess) refers to kmachine.o(.bss) for KMem
    debug.o(i.ShowInitInfo) refers to debug.o(i.clearscreen) for clearscreen
    debug.o(i.ShowInitInfo) refers to functions.o(i.GetuS) for GetuS
    debug.o(i.ShowInitInfo) refers to functions.o(i.crc_check) for crc_check
    debug.o(i.ShowInitInfo) refers to functions.o(i.crc16bitbybit) for crc16bitbybit
    debug.o(i.ShowInitInfo) refers to functions.o(i.crc16table) for crc16table
    debug.o(i.ShowInitInfo) refers to modbusrtu.o(i.crc16tablefast) for crc16tablefast
    debug.o(i.ShowInitInfo) refers to printf8.o(i.__0sprintf$8) for __2sprintf
    debug.o(i.ShowInitInfo) refers to stm32f0xx_ll_rcc.o(i.LL_RCC_GetSystemClocksFreq) for LL_RCC_GetSystemClocksFreq
    debug.o(i.ShowInitInfo) refers to functions.o(i.PutStr) for PutStr
    debug.o(i.ShowInitInfo) refers to debug.o(i.Locate) for Locate
    debug.o(i.ShowInitInfo) refers to debug.o(.constdata) for .constdata
    debug.o(i.ShowInitInfo) refers to debug.o(.bss) for .bss
    debug.o(i.ShowInitInfo) refers to debug.o(.data) for .data
    debug.o(i.ShowRunningInfo) refers to stm32f0xx_hal_rcc.o(i.HAL_RCC_GetPCLK1Freq) for HAL_RCC_GetPCLK1Freq
    debug.o(i.ShowRunningInfo) refers to uidiv.o(.text) for __aeabi_uidivmod
    debug.o(i.ShowRunningInfo) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    debug.o(i.ShowRunningInfo) refers to functions.o(i.GetuS) for GetuS
    debug.o(i.ShowRunningInfo) refers to debug.o(i.Locate) for Locate
    debug.o(i.ShowRunningInfo) refers to printf8.o(i.__0sprintf$8) for __2sprintf
    debug.o(i.ShowRunningInfo) refers to functions.o(i.PutStr) for PutStr
    debug.o(i.ShowRunningInfo) refers to globaldef.o(.data) for Uart1BaudFirstGot
    debug.o(i.ShowRunningInfo) refers to debug.o(.data) for .data
    debug.o(i.ShowRunningInfo) refers to kmachine.o(.bss) for KMem
    debug.o(i.ShowRunningInfo) refers to globaldef.o(.bss) for Uart1Stat
    debug.o(i.ShowRunningInfo) refers to kbus.o(.data) for bKBusSlave
    debug.o(i.ShowRunningInfo) refers to kbus.o(.data) for bKBusRepeater
    debug.o(i.ShowRunningInfo) refers to debug.o(.conststring) for .conststring
    debug.o(i.ShowRunningInfo) refers to debug.o(.bss) for .bss
    debug.o(i.clearscreen) refers to functions.o(i.PutStr) for PutStr
    functions.o(i.GetInput) refers to functions.o(i.Input165_R) for Input165_R
    functions.o(i.InitUartstat) refers to myqueue.o(i.initQueue) for initQueue
    functions.o(i.InituS) refers to idiv.o(.text) for __aeabi_idivmod
    functions.o(i.InituS) refers to stm32f0xx_hal_rcc.o(i.HAL_RCC_GetHCLKFreq) for HAL_RCC_GetHCLKFreq
    functions.o(i.InituS) refers to uidiv.o(.text) for __aeabi_uidivmod
    functions.o(i.InituS) refers to ldiv.o(.text) for __aeabi_ldivmod
    functions.o(i.InituS) refers to functions.o(.data) for .data
    functions.o(i.InituS) refers to system_stm32f0xx.o(.data) for SystemCoreClock
    functions.o(i.LL_DMA_ConfigAddresses) refers to functions.o(.constdata) for .constdata
    functions.o(i.LL_DMA_DisableChannel) refers to functions.o(.constdata) for .constdata
    functions.o(i.LL_DMA_EnableChannel) refers to functions.o(.constdata) for .constdata
    functions.o(i.LL_DMA_EnableIT_TC) refers to functions.o(.constdata) for .constdata
    functions.o(i.LL_DMA_SetDataLength) refers to functions.o(.constdata) for .constdata
    functions.o(i.PendSvCallBack) refers to kbus.o(i.KBusParsePacket) for KBusParsePacket
    functions.o(i.PendSvCallBack) refers to functions.o(i.Uart2RecvDMA) for Uart2RecvDMA
    functions.o(i.PendSvCallBack) refers to globaldef.o(.bss) for Uart2Stat
    functions.o(i.PendSvCallBack) refers to globaldef.o(.data) for Uart2RecvBuf1DataLen
    functions.o(i.PendSvCallBack) refers to globaldef.o(.bss) for Uart2RecvBuf1
    functions.o(i.PutOutput) refers to functions.o(i.PutOutputSPI2) for PutOutputSPI2
    functions.o(i.PutOutputSPI2) refers to kmachine.o(.bss) for KMem
    functions.o(i.PutStr) refers to myqueue.o(i.PushIn) for PushIn
    functions.o(i.PutStr) refers to functions.o(i.Uart1TriggerSendDMA) for Uart1TriggerSendDMA
    functions.o(i.PutStr) refers to globaldef.o(.bss) for Uart1Stat
    functions.o(i.PutStr1) refers to myqueue.o(i.PushIn) for PushIn
    functions.o(i.PutStr1) refers to functions.o(i.Uart1TriggerSendDMA) for Uart1TriggerSendDMA
    functions.o(i.PutStr1) refers to globaldef.o(.bss) for Uart1Stat
    functions.o(i.PutStr2) refers to functions.o(i.Uart2SendDMA) for Uart2SendDMA
    functions.o(i.ReadConfig_3) refers to functions.o(i.Input165) for Input165
    functions.o(i.ReadConfig_4) refers to functions.o(i.Input165) for Input165
    functions.o(i.ReadConfig_5) refers to functions.o(i.Input165Cfg) for Input165Cfg
    functions.o(i.ReadJumperSW) refers to functions.o(i.ReadConfig_5) for ReadConfig_5
    functions.o(i.SendPacket) refers to functions.o(i.PutStr1) for PutStr1
    functions.o(i.SendPacket) refers to functions.o(i.PutStr2) for PutStr2
    functions.o(i.SendPacket) refers to globaldef.o(.bss) for Uart1Stat
    functions.o(i.SendPacket) refers to globaldef.o(.bss) for Uart2Stat
    functions.o(i.Uart1RecvDone) refers to globaldef.o(.bss) for Uart1Stat
    functions.o(i.Uart1RecvDone) refers to globaldef.o(.data) for Uart1RecvBuf1DataLen
    functions.o(i.Uart1SendDMA) refers to functions.o(i.LL_DMA_DisableChannel) for LL_DMA_DisableChannel
    functions.o(i.Uart1SendDMA) refers to functions.o(i.LL_DMA_ConfigAddresses) for LL_DMA_ConfigAddresses
    functions.o(i.Uart1SendDMA) refers to functions.o(i.LL_DMA_SetDataLength) for LL_DMA_SetDataLength
    functions.o(i.Uart1SendDMA) refers to functions.o(i.LL_DMA_EnableChannel) for LL_DMA_EnableChannel
    functions.o(i.Uart1SendDMA) refers to functions.o(i.LL_DMA_EnableIT_TC) for LL_DMA_EnableIT_TC
    functions.o(i.Uart1SendDMA) refers to globaldef.o(.bss) for Uart1Stat
    functions.o(i.Uart1SendDone) refers to globaldef.o(.bss) for Uart1Stat
    functions.o(i.Uart1TriggerSendDMA) refers to myqueue.o(i.GetContinueData) for GetContinueData
    functions.o(i.Uart1TriggerSendDMA) refers to functions.o(i.Uart1SendDMA) for Uart1SendDMA
    functions.o(i.Uart1TriggerSendDMA) refers to globaldef.o(.bss) for Uart1Stat
    functions.o(i.Uart2RecvDMA) refers to functions.o(i.LL_DMA_DisableChannel) for LL_DMA_DisableChannel
    functions.o(i.Uart2RecvDMA) refers to functions.o(i.LL_DMA_ConfigAddresses) for LL_DMA_ConfigAddresses
    functions.o(i.Uart2RecvDMA) refers to functions.o(i.LL_DMA_SetDataLength) for LL_DMA_SetDataLength
    functions.o(i.Uart2RecvDMA) refers to functions.o(i.LL_DMA_EnableChannel) for LL_DMA_EnableChannel
    functions.o(i.Uart2RecvDMA) refers to functions.o(i.LL_DMA_EnableIT_TC) for LL_DMA_EnableIT_TC
    functions.o(i.Uart2RecvDMA) refers to globaldef.o(.bss) for Uart2Stat
    functions.o(i.Uart2RecvDone) refers to functions.o(.constdata) for .constdata
    functions.o(i.Uart2RecvDone) refers to globaldef.o(.data) for Uart2RecvBuf1DataLen
    functions.o(i.Uart2RecvDone) refers to globaldef.o(.bss) for Uart2Stat
    functions.o(i.Uart2SendDMA) refers to functions.o(i.LL_DMA_DisableChannel) for LL_DMA_DisableChannel
    functions.o(i.Uart2SendDMA) refers to functions.o(i.LL_DMA_ConfigAddresses) for LL_DMA_ConfigAddresses
    functions.o(i.Uart2SendDMA) refers to functions.o(i.LL_DMA_SetDataLength) for LL_DMA_SetDataLength
    functions.o(i.Uart2SendDMA) refers to functions.o(i.LL_DMA_EnableChannel) for LL_DMA_EnableChannel
    functions.o(i.Uart2SendDMA) refers to functions.o(i.LL_DMA_EnableIT_TC) for LL_DMA_EnableIT_TC
    functions.o(i.Uart2SendDMA) refers to globaldef.o(.bss) for Uart2Stat
    functions.o(i.Uart2SendDone) refers to globaldef.o(.bss) for Uart2Stat
    functions.o(i.Uart2TriggerSendDMA) refers to myqueue.o(i.GetContinueData) for GetContinueData
    functions.o(i.Uart2TriggerSendDMA) refers to functions.o(i.Uart2SendDMA) for Uart2SendDMA
    functions.o(i.Uart2TriggerSendDMA) refers to globaldef.o(.bss) for Uart2Stat
    functions.o(i.crc16table) refers to functions.o(.constdata) for .constdata
    functions.o(i.crc_check) refers to functions.o(.constdata) for .constdata
    functions.o(i.logData) refers to kmachine.o(.bss) for KMem
    functions.o(i.modbuscrc16test) refers to printf8.o(i.__0printf$8) for __2printf
    functions.o(i.modbuscrc16test) refers to functions.o(i.crc16table) for crc16table
    functions.o(i.modbuscrc16test) refers to functions.o(i.crc16bitbybit) for crc16bitbybit
    functions.o(i.modbuscrc16test) refers to functions.o(.conststring) for .conststring
    kbus.o(i.KBusCheckPacket) refers to memcpya.o(.text) for __aeabi_memcpy
    kbus.o(i.KBusCheckPacket) refers to kbus.o(i.KBusBCC) for KBusBCC
    kbus.o(i.KBusCheckPacket) refers to kbus.o(.data) for .data
    kbus.o(i.KBusCheckPacket) refers to kbus.o(.bss) for .bss
    kbus.o(i.KBusCheckPacket) refers to globaldef.o(.bss) for Uart2Stat
    kbus.o(i.KBusCheckPacket) refers to kmachine.o(.bss) for KMem
    kbus.o(i.KBusMakePacket) refers to kbus.o(i.__ARM_common_switch8) for __ARM_common_switch8
    kbus.o(i.KBusMakePacket) refers to memcpya.o(.text) for __aeabi_memcpy
    kbus.o(i.KBusMakePacket) refers to kbus.o(i.KBusBCC) for KBusBCC
    kbus.o(i.KBusMasterFunc) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    kbus.o(i.KBusMasterFunc) refers to functions.o(i.GetuS) for GetuS
    kbus.o(i.KBusMasterFunc) refers to functions.o(i.GetInput) for GetInput
    kbus.o(i.KBusMasterFunc) refers to kbus.o(i.KBusMakePacket) for KBusMakePacket
    kbus.o(i.KBusMasterFunc) refers to functions.o(i.SendPacket) for SendPacket
    kbus.o(i.KBusMasterFunc) refers to kbus.o(.data) for .data
    kbus.o(i.KBusMasterFunc) refers to kmachine.o(.bss) for KMem
    kbus.o(i.KBusMasterFunc) refers to kbus.o(.bss) for .bss
    kbus.o(i.KBusMasterFunc) refers to globaldef.o(.bss) for Uart2Stat
    kbus.o(i.KBusMasterParsePacket) refers to kbus.o(i.__ARM_common_switch8) for __ARM_common_switch8
    kbus.o(i.KBusMasterParsePacket) refers to kbus.o(i.KBusMakePacket) for KBusMakePacket
    kbus.o(i.KBusMasterParsePacket) refers to functions.o(i.SendPacket) for SendPacket
    kbus.o(i.KBusMasterParsePacket) refers to functions.o(i.PutOutput) for PutOutput
    kbus.o(i.KBusMasterParsePacket) refers to uread4.o(.text) for __aeabi_uread4
    kbus.o(i.KBusMasterParsePacket) refers to kbus.o(.data) for .data
    kbus.o(i.KBusMasterParsePacket) refers to kbus.o(.bss) for .bss
    kbus.o(i.KBusMasterParsePacket) refers to kmachine.o(.bss) for KMem
    kbus.o(i.KBusParsePacket) refers to functions.o(i.GetuS) for GetuS
    kbus.o(i.KBusParsePacket) refers to kbus.o(i.KBusCheckPacket) for KBusCheckPacket
    kbus.o(i.KBusParsePacket) refers to kbus.o(i.KBusMasterParsePacket) for KBusMasterParsePacket
    kbus.o(i.KBusParsePacket) refers to kbus.o(i.KBusSlaveCheckPacket) for KBusSlaveCheckPacket
    kbus.o(i.KBusParsePacket) refers to kbus.o(i.KBusSlaveParsePacket) for KBusSlaveParsePacket
    kbus.o(i.KBusParsePacket) refers to kbus.o(.data) for .data
    kbus.o(i.KBusParsePacket) refers to kbus.o(.bss) for .bss
    kbus.o(i.KBusParsePacket) refers to kmachine.o(.bss) for KMem
    kbus.o(i.KBusRepeaterFunc) refers to functions.o(i.ToggleRunLed) for ToggleRunLed
    kbus.o(i.KBusRepeaterFunc) refers to kmachine.o(.bss) for KMem
    kbus.o(i.KBusRepeaterFunc) refers to kbus.o(.data) for .data
    kbus.o(i.KBusSlaveCheckPacket) refers to kbus.o(i.KBusBCC) for KBusBCC
    kbus.o(i.KBusSlaveCheckPacket) refers to kbus.o(.bss) for .bss
    kbus.o(i.KBusSlaveCheckPacket) refers to globaldef.o(.bss) for Uart2Stat
    kbus.o(i.KBusSlaveFunc) refers to functions.o(i.GetuS) for GetuS
    kbus.o(i.KBusSlaveFunc) refers to kbus.o(.data) for .data
    kbus.o(i.KBusSlaveFunc) refers to kmachine.o(.bss) for KMem
    kbus.o(i.KBusSlaveParsePacket) refers to kbus.o(i.__ARM_common_switch8) for __ARM_common_switch8
    kbus.o(i.KBusSlaveParsePacket) refers to functions.o(i.PutOutput) for PutOutput
    kbus.o(i.KBusSlaveParsePacket) refers to functions.o(i.GetInput) for GetInput
    kbus.o(i.KBusSlaveParsePacket) refers to kbus.o(i.KBusMakePacket) for KBusMakePacket
    kbus.o(i.KBusSlaveParsePacket) refers to functions.o(i.SendPacket) for SendPacket
    kbus.o(i.KBusSlaveParsePacket) refers to globaldef.o(.bss) for Uart2Stat
    kbus.o(i.KBusSlaveParsePacket) refers to kbus.o(.bss) for .bss
    kbus.o(i.KBusSlaveParsePacket) refers to kbus.o(.data) for .data
    kbus.o(i.KBusSlaveParsePacket) refers to kmachine.o(.bss) for KMem
    klink.o(i.KLCheckPacket) refers to klink.o(i.KLBCC) for KLBCC
    klink.o(i.KLMakeRplyPacket) refers to memcpya.o(.text) for __aeabi_memcpy
    klink.o(i.KLMakeRplyPacket) refers to klink.o(i.KLBCC) for KLBCC
    klink.o(i.KLParsePacket) refers to klink.o(i.KLCheckPacket) for KLCheckPacket
    klink.o(i.KLParsePacket) refers to klink.o(i.KLMakeRplyPacket) for KLMakeRplyPacket
    klink.o(i.KLParsePacket) refers to functions.o(i.SendPacket) for SendPacket
    klink.o(i.KLParsePacket) refers to klink.o(i.KLParseReqPacket) for KLParseReqPacket
    klink.o(i.KLParsePacket) refers to klink.o(.data) for .data
    klink.o(i.KLParsePacket) refers to klink.o(.bss) for .bss
    klink.o(i.KLParseReqPacket) refers to kbus.o(i.__ARM_common_switch8) for __ARM_common_switch8
    klink.o(i.KLParseReqPacket) refers to kmachine.o(i.WriteFactoryData) for WriteFactoryData
    klink.o(i.KLParseReqPacket) refers to memcpya.o(.text) for __aeabi_memcpy
    klink.o(i.KLParseReqPacket) refers to klink.o(.data) for .data
    klink.o(i.KLParseReqPacket) refers to klink.o(.bss) for .bss
    klink.o(i.KLParseReqPacket) refers to kmachine.o(.bss) for KMem
    klink.o(i.KLParseReqPacket) refers to plcfunctions.o(.bss) for PLCMem
    klink.o(i.KLParseReqPacket) refers to kmachine.o(.constdata) for KMInfoBlock
    klink.o(i.KLParseReqPacket) refers to kbus.o(.bss) for KBusChnStats
    klink.o(i.KLParseReqPacket) refers to kwireless.o(.bss) for KwRunStat
    klink.o(i.KLParseReqPacket) refers to kmachine.o(.bss) for storedKMSysCfg
    klink.o(i.KLParseReqPacket) refers to klink.o(i.SetBitValue) for SetBitValue
    klink.o(i.KLParseReqPacket) refers to plcfunctions.o(i.StartPLC) for StartPLC
    klink.o(i.KLParseReqPacket) refers to plcfunctions.o(i.StopPLC) for StopPLC
    klink.o(i.KLParseReqPacket) refers to kmachine.o(i.WriteProgram) for WriteProgram
    klink.o(i.KLParseReqPacket) refers to kmachine.o(i.SaveRunStat) for SaveRunStat
    klink.o(i.KLParseReqPacket) refers to klink.o(i.KLMakeRplyPacket) for KLMakeRplyPacket
    klink.o(i.KLParseReqPacket) refers to functions.o(i.SendPacket) for SendPacket
    klink.o(i.KLParseReqPacket) refers to kmachine.o(i.WriteSysCfgToFlash) for WriteSysCfgToFlash
    klink.o(i.KLParseReqPacket) refers to memseta.o(.text) for __aeabi_memclr4
    klink.o(i.KLParseReqPacket) refers to kmachine.o(i.GetEventLogAddr) for GetEventLogAddr
    klink.o(i.KLParseReqPacket) refers to kmachine.o(i.ClearEventLog) for ClearEventLog
    modbusrtu.o(i.ModBusSlaveCheckPkg) refers to modbusrtu.o(i.crc16tablefast) for crc16tablefast
    modbusrtu.o(i.ModBusSlaveParsePkg) refers to modbusrtu.o(i.ModBusSlaveCheckPkg) for ModBusSlaveCheckPkg
    modbusrtu.o(i.ModBusSlaveParsePkg) refers to kbus.o(i.__ARM_common_switch8) for __ARM_common_switch8
    modbusrtu.o(i.ModBusSlaveParsePkg) refers to modbusrtu.o(i.GetBitValue) for GetBitValue
    modbusrtu.o(i.ModBusSlaveParsePkg) refers to modbusrtu.o(i.SetAddrBit) for SetAddrBit
    modbusrtu.o(i.ModBusSlaveParsePkg) refers to memcpya.o(.text) for __aeabi_memcpy
    modbusrtu.o(i.ModBusSlaveParsePkg) refers to modbusrtu.o(i.ResetBit) for ResetBit
    modbusrtu.o(i.ModBusSlaveParsePkg) refers to modbusrtu.o(i.SetBitValue) for SetBitValue
    modbusrtu.o(i.ModBusSlaveParsePkg) refers to modbusrtu.o(i.crc16tablefast) for crc16tablefast
    modbusrtu.o(i.ModBusSlaveParsePkg) refers to functions.o(i.SendPacket) for SendPacket
    modbusrtu.o(i.ModBusSlaveParsePkg) refers to modbusrtu.o(.data) for .data
    modbusrtu.o(i.ModBusSlaveParsePkg) refers to modbusrtu.o(.bss) for .bss
    modbusrtu.o(i.ModBusSlaveParsePkg) refers to kmachine.o(.bss) for KMem
    modbusrtu.o(i.SetBitValue) refers to modbusrtu.o(i.SetAddrBit) for SetAddrBit
    modbusrtu.o(i.SetBitValue) refers to modbusrtu.o(i.ResetBit) for ResetBit
    modbusrtu.o(i.crc16tablefast) refers to modbusrtu.o(.constdata) for .constdata
    myqueue.o(i.CopyData) refers to myqueue.o(i.GetContinueData) for GetContinueData
    myqueue.o(i.CopyData) refers to memcpya.o(.text) for __aeabi_memcpy
    myqueue.o(i.PopOne) refers to myqueue.o(i.DelData) for DelData
    myqueue.o(i.PopOut) refers to myqueue.o(i.CopyData) for CopyData
    myqueue.o(i.PopOut) refers to myqueue.o(i.DelData) for DelData
    myqueue.o(i.PushIn) refers to myqueue.o(i.GetContinueEmptyRoom) for GetContinueEmptyRoom
    myqueue.o(i.PushIn) refers to memcpya.o(.text) for __aeabi_memcpy
    myqueue.o(i.PushIn) refers to myqueue.o(i.AddSpace) for AddSpace
    myqueue.o(i.PushOne) refers to myqueue.o(i.AddSpace) for AddSpace
    plcfunctions.o(i.GetTimerEV) refers to kmachine.o(.bss) for KMem
    plcfunctions.o(i.GetTimerSV) refers to kmachine.o(.bss) for KMem
    plcfunctions.o(i.InitPLC) refers to plcfunctions.o(.bss) for .bss
    plcfunctions.o(i.InitPLC) refers to kmachine.o(.bss) for KMem
    plcfunctions.o(i.InitTimer) refers to kmachine.o(.bss) for KMem
    plcfunctions.o(i.InitTimer) refers to stm32f0xx_hal.o(.data) for uwTick
    plcfunctions.o(i.IsTimerOn) refers to plcfunctions.o(i.ProcessTimer) for ProcessTimer
    plcfunctions.o(i.IsTimerOn) refers to kmachine.o(.bss) for KMem
    plcfunctions.o(i.PopOutVal) refers to kmachine.o(.bss) for KMem
    plcfunctions.o(i.ProcessPLCBinProg) refers to kmachine.o(i.SetCoilValue) for SetCoilValue
    plcfunctions.o(i.ProcessPLCBinProg) refers to kbus.o(i.__ARM_common_switch8) for __ARM_common_switch8
    plcfunctions.o(i.ProcessPLCBinProg) refers to plcfunctions.o(i.PopOutVal) for PopOutVal
    plcfunctions.o(i.ProcessPLCBinProg) refers to plcfunctions.o(i.PushInVal) for PushInVal
    plcfunctions.o(i.ProcessPLCBinProg) refers to kmachine.o(i.GetCoilValue) for GetCoilValue
    plcfunctions.o(i.ProcessPLCBinProg) refers to kmachine.o(i.GetVarData) for GetVarData
    plcfunctions.o(i.ProcessPLCBinProg) refers to plcfunctions.o(i.RunTimer) for RunTimer
    plcfunctions.o(i.ProcessPLCBinProg) refers to plcfunctions.o(i.ProcessTimer) for ProcessTimer
    plcfunctions.o(i.ProcessPLCBinProg) refers to plcfunctions.o(i.InitTimer) for InitTimer
    plcfunctions.o(i.ProcessPLCBinProg) refers to plcfunctions.o(i.StopTimer) for StopTimer
    plcfunctions.o(i.ProcessPLCBinProg) refers to kmachine.o(i.SetVarData) for SetVarData
    plcfunctions.o(i.ProcessPLCBinProg) refers to plcfunctions.o(.bss) for .bss
    plcfunctions.o(i.ProcessPLCBinProg) refers to kmachine.o(.bss) for KMem
    plcfunctions.o(i.ProcessPLCBinProg) refers to idiv.o(.text) for __aeabi_idivmod
    plcfunctions.o(i.ProcessTimer) refers to idiv.o(.text) for __aeabi_idivmod
    plcfunctions.o(i.ProcessTimer) refers to kmachine.o(i.SetCoilValue) for SetCoilValue
    plcfunctions.o(i.ProcessTimer) refers to kmachine.o(.bss) for KMem
    plcfunctions.o(i.ProcessTimer) refers to stm32f0xx_hal.o(.data) for uwTick
    plcfunctions.o(i.PushInVal) refers to kmachine.o(.bss) for KMem
    plcfunctions.o(i.ResetTimer) refers to kmachine.o(.bss) for KMem
    plcfunctions.o(i.ResetTimer) refers to stm32f0xx_hal.o(.data) for uwTick
    plcfunctions.o(i.RunTimer) refers to kmachine.o(.bss) for KMem
    plcfunctions.o(i.RunTimer) refers to stm32f0xx_hal.o(.data) for uwTick
    plcfunctions.o(i.SetTimerValue) refers to plcfunctions.o(i.RunTimer) for RunTimer
    plcfunctions.o(i.SetTimerValue) refers to plcfunctions.o(i.StopTimer) for StopTimer
    plcfunctions.o(i.SetTimerValue) refers to kmachine.o(.bss) for KMem
    plcfunctions.o(i.StartPLC) refers to plcfunctions.o(.bss) for .bss
    plcfunctions.o(i.StartPLC) refers to kmachine.o(.bss) for KMem
    plcfunctions.o(i.StopPLC) refers to plcfunctions.o(.bss) for .bss
    plcfunctions.o(i.StopPLC) refers to kmachine.o(.bss) for KMem
    plcfunctions.o(i.StopTimer) refers to kmachine.o(.bss) for KMem
    plcfunctions.o(i.StopTimer) refers to stm32f0xx_hal.o(.data) for uwTick
    stm32f0xx_hal_msp.o(i.HAL_MspInit) refers to stm32f0xx_hal_cortex.o(i.HAL_NVIC_SetPriority) for HAL_NVIC_SetPriority
    kmachine.o(i.AddEventLog) refers to kmachine.o(i.EraseAndWriteToFlashMem) for EraseAndWriteToFlashMem
    kmachine.o(i.AddEventLog) refers to kmachine.o(i.WriteToFlashMemNoErase) for WriteToFlashMemNoErase
    kmachine.o(i.AddEventLog) refers to kmachine.o(.data) for .data
    kmachine.o(i.AddEventLog) refers to kmachine.o(.constdata) for .constdata
    kmachine.o(i.AddEventLog) refers to kmachine.o(.bss) for .bss
    kmachine.o(i.CheckEventLog) refers to kmachine.o(.data) for .data
    kmachine.o(i.ClearEventLog) refers to kmachine.o(i.EraseFlashMem) for EraseFlashMem
    kmachine.o(i.ClearEventLog) refers to kmachine.o(.data) for .data
    kmachine.o(i.EraseAndWriteToFlashMem) refers to stm32f0xx_hal_flash.o(i.HAL_FLASH_Unlock) for HAL_FLASH_Unlock
    kmachine.o(i.EraseAndWriteToFlashMem) refers to stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase) for HAL_FLASHEx_Erase
    kmachine.o(i.EraseAndWriteToFlashMem) refers to stm32f0xx_hal_flash.o(i.HAL_FLASH_Program) for HAL_FLASH_Program
    kmachine.o(i.EraseAndWriteToFlashMem) refers to stm32f0xx_hal_flash.o(i.HAL_FLASH_Lock) for HAL_FLASH_Lock
    kmachine.o(i.EraseFlashMem) refers to stm32f0xx_hal_flash.o(i.HAL_FLASH_Unlock) for HAL_FLASH_Unlock
    kmachine.o(i.EraseFlashMem) refers to stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase) for HAL_FLASHEx_Erase
    kmachine.o(i.EraseFlashMem) refers to stm32f0xx_hal_flash.o(i.HAL_FLASH_Lock) for HAL_FLASH_Lock
    kmachine.o(i.GetCoilValue) refers to kbus.o(i.__ARM_common_switch8) for __ARM_common_switch8
    kmachine.o(i.GetCoilValue) refers to kmachine.o(i.GetBitValue) for GetBitValue
    kmachine.o(i.GetCoilValue) refers to kmachine.o(.bss) for .bss
    kmachine.o(i.GetEventLogAddr) refers to kmachine.o(.data) for .data
    kmachine.o(i.GetVarData) refers to kbus.o(i.__ARM_common_switch8) for __ARM_common_switch8
    kmachine.o(i.GetVarData) refers to kmachine.o(.bss) for .bss
    kmachine.o(i.KMachineInit) refers to kmachine.o(i.CheckEventLog) for CheckEventLog
    kmachine.o(i.KMachineInit) refers to kmachine.o(i.LoadRunStat) for LoadRunStat
    kmachine.o(i.KMachineInit) refers to kmachine.o(i.SaveRunStat) for SaveRunStat
    kmachine.o(i.KMachineInit) refers to kmachine.o(i.AddEventLog) for AddEventLog
    kmachine.o(i.KMachineInit) refers to kmachine.o(.bss) for .bss
    kmachine.o(i.KMachineInit) refers to kmachine.o(.data) for .data
    kmachine.o(i.LoadDefaultSysCfg) refers to memcpya.o(.text) for __aeabi_memcpy4
    kmachine.o(i.LoadDefaultSysCfg) refers to kmachine.o(.constdata) for .constdata
    kmachine.o(i.LoadRunStat) refers to kmachine.o(i.ReadFlashMem) for ReadFlashMem
    kmachine.o(i.LoadRunStat) refers to kmachine.o(.data) for .data
    kmachine.o(i.ReadFactoryData) refers to memcpya.o(.text) for __aeabi_memcpy
    kmachine.o(i.ReadProgram) refers to kmachine.o(i.ReadFlashMem) for ReadFlashMem
    kmachine.o(i.ReadProgram) refers to kmachine.o(.bss) for .bss
    kmachine.o(i.ReadSysCfgFromFlash) refers to kmachine.o(i.ReadFlashMem) for ReadFlashMem
    kmachine.o(i.ReadSysCfgFromFlash) refers to kmachine.o(i.LoadDefaultSysCfg) for LoadDefaultSysCfg
    kmachine.o(i.SaveRunStat) refers to kmachine.o(i.EraseAndWriteToFlashMem) for EraseAndWriteToFlashMem
    kmachine.o(i.SaveRunStat) refers to kmachine.o(i.WriteToFlashMemNoErase) for WriteToFlashMemNoErase
    kmachine.o(i.SaveRunStat) refers to kmachine.o(.data) for .data
    kmachine.o(i.SaveRunStat) refers to kmachine.o(.bss) for .bss
    kmachine.o(i.SetCoilValue) refers to kbus.o(i.__ARM_common_switch8) for __ARM_common_switch8
    kmachine.o(i.SetCoilValue) refers to kmachine.o(i.SetBitValue) for SetBitValue
    kmachine.o(i.SetCoilValue) refers to kmachine.o(.bss) for .bss
    kmachine.o(i.SetVarData) refers to kbus.o(i.__ARM_common_switch8) for __ARM_common_switch8
    kmachine.o(i.SetVarData) refers to kmachine.o(.bss) for .bss
    kmachine.o(i.WriteFactoryData) refers to kmachine.o(i.EraseAndWriteToFlashMem) for EraseAndWriteToFlashMem
    kmachine.o(i.WriteProgram) refers to kmachine.o(i.WriteToFlashMemNoErase) for WriteToFlashMemNoErase
    kmachine.o(i.WriteProgram) refers to kmachine.o(i.EraseAndWriteToFlashMem) for EraseAndWriteToFlashMem
    kmachine.o(i.WriteProgram) refers to kmachine.o(.bss) for .bss
    kmachine.o(i.WriteSysCfgToFlash) refers to kmachine.o(i.WriteToFlashMemNoErase) for WriteToFlashMemNoErase
    kmachine.o(i.WriteSysCfgToFlash) refers to kmachine.o(i.EraseAndWriteToFlashMem) for EraseAndWriteToFlashMem
    kmachine.o(i.WriteToFlashMemNoErase) refers to stm32f0xx_hal_flash.o(i.HAL_FLASH_Unlock) for HAL_FLASH_Unlock
    kmachine.o(i.WriteToFlashMemNoErase) refers to stm32f0xx_hal_flash.o(i.HAL_FLASH_Program) for HAL_FLASH_Program
    kmachine.o(i.WriteToFlashMemNoErase) refers to stm32f0xx_hal_flash.o(i.HAL_FLASH_Lock) for HAL_FLASH_Lock
    bsp.o(i.LL_DMA_SetChannelPriorityLevel) refers to bsp.o(.constdata) for .constdata
    bsp.o(i.LL_DMA_SetDataTransferDirection) refers to bsp.o(.constdata) for .constdata
    bsp.o(i.LL_DMA_SetMemoryIncMode) refers to bsp.o(.constdata) for .constdata
    bsp.o(i.LL_DMA_SetMemorySize) refers to bsp.o(.constdata) for .constdata
    bsp.o(i.LL_DMA_SetMode) refers to bsp.o(.constdata) for .constdata
    bsp.o(i.LL_DMA_SetPeriphIncMode) refers to bsp.o(.constdata) for .constdata
    bsp.o(i.LL_DMA_SetPeriphSize) refers to bsp.o(.constdata) for .constdata
    bsp.o(i.MX_ADC_Init) refers to bsp.o(i.LL_APB1_GRP2_EnableClock) for LL_APB1_GRP2_EnableClock
    bsp.o(i.MX_ADC_Init) refers to stm32f0xx_ll_adc.o(i.LL_ADC_Init) for LL_ADC_Init
    bsp.o(i.MX_ADC_Init) refers to stm32f0xx_ll_adc.o(i.LL_ADC_REG_Init) for LL_ADC_REG_Init
    bsp.o(i.MX_DMA_Init) refers to bsp.o(i.LL_AHB1_GRP1_EnableClock) for LL_AHB1_GRP1_EnableClock
    bsp.o(i.MX_DMA_Init) refers to bsp.o(i.NVIC_SetPriority) for NVIC_SetPriority
    bsp.o(i.MX_DMA_Init) refers to bsp.o(i.NVIC_EnableIRQ) for NVIC_EnableIRQ
    bsp.o(i.MX_GPIO_Init) refers to bsp.o(i.LL_AHB1_GRP1_EnableClock) for LL_AHB1_GRP1_EnableClock
    bsp.o(i.MX_GPIO_Init) refers to stm32f0xx_ll_gpio.o(i.LL_GPIO_Init) for LL_GPIO_Init
    bsp.o(i.MX_SPI1_Init) refers to memseta.o(.text) for __aeabi_memclr4
    bsp.o(i.MX_SPI1_Init) refers to bsp.o(i.LL_APB1_GRP2_EnableClock) for LL_APB1_GRP2_EnableClock
    bsp.o(i.MX_SPI1_Init) refers to bsp.o(i.LL_AHB1_GRP1_EnableClock) for LL_AHB1_GRP1_EnableClock
    bsp.o(i.MX_SPI1_Init) refers to stm32f0xx_ll_gpio.o(i.LL_GPIO_Init) for LL_GPIO_Init
    bsp.o(i.MX_SPI1_Init) refers to bsp.o(i.NVIC_SetPriority) for NVIC_SetPriority
    bsp.o(i.MX_SPI1_Init) refers to stm32f0xx_ll_spi.o(i.LL_SPI_Init) for LL_SPI_Init
    bsp.o(i.MX_SPI2_Init) refers to memseta.o(.text) for __aeabi_memclr4
    bsp.o(i.MX_SPI2_Init) refers to bsp.o(i.LL_APB1_GRP1_EnableClock) for LL_APB1_GRP1_EnableClock
    bsp.o(i.MX_SPI2_Init) refers to bsp.o(i.LL_AHB1_GRP1_EnableClock) for LL_AHB1_GRP1_EnableClock
    bsp.o(i.MX_SPI2_Init) refers to stm32f0xx_ll_gpio.o(i.LL_GPIO_Init) for LL_GPIO_Init
    bsp.o(i.MX_SPI2_Init) refers to stm32f0xx_ll_spi.o(i.LL_SPI_Init) for LL_SPI_Init
    bsp.o(i.MX_TIM6_Init) refers to memseta.o(.text) for __aeabi_memclr4
    bsp.o(i.MX_TIM6_Init) refers to bsp.o(i.LL_APB1_GRP1_EnableClock) for LL_APB1_GRP1_EnableClock
    bsp.o(i.MX_TIM6_Init) refers to bsp.o(i.NVIC_SetPriority) for NVIC_SetPriority
    bsp.o(i.MX_TIM6_Init) refers to bsp.o(i.NVIC_EnableIRQ) for NVIC_EnableIRQ
    bsp.o(i.MX_TIM6_Init) refers to stm32f0xx_ll_tim.o(i.LL_TIM_Init) for LL_TIM_Init
    bsp.o(i.MX_USART1_UART_Init) refers to bsp.o(i.LL_APB1_GRP2_EnableClock) for LL_APB1_GRP2_EnableClock
    bsp.o(i.MX_USART1_UART_Init) refers to stm32f0xx_ll_gpio.o(i.LL_GPIO_Init) for LL_GPIO_Init
    bsp.o(i.MX_USART1_UART_Init) refers to bsp.o(i.LL_DMA_SetDataTransferDirection) for LL_DMA_SetDataTransferDirection
    bsp.o(i.MX_USART1_UART_Init) refers to bsp.o(i.LL_DMA_SetChannelPriorityLevel) for LL_DMA_SetChannelPriorityLevel
    bsp.o(i.MX_USART1_UART_Init) refers to bsp.o(i.LL_DMA_SetMode) for LL_DMA_SetMode
    bsp.o(i.MX_USART1_UART_Init) refers to bsp.o(i.LL_DMA_SetPeriphIncMode) for LL_DMA_SetPeriphIncMode
    bsp.o(i.MX_USART1_UART_Init) refers to bsp.o(i.LL_DMA_SetMemoryIncMode) for LL_DMA_SetMemoryIncMode
    bsp.o(i.MX_USART1_UART_Init) refers to bsp.o(i.LL_DMA_SetPeriphSize) for LL_DMA_SetPeriphSize
    bsp.o(i.MX_USART1_UART_Init) refers to bsp.o(i.LL_DMA_SetMemorySize) for LL_DMA_SetMemorySize
    bsp.o(i.MX_USART1_UART_Init) refers to bsp.o(i.NVIC_SetPriority) for NVIC_SetPriority
    bsp.o(i.MX_USART1_UART_Init) refers to bsp.o(i.NVIC_EnableIRQ) for NVIC_EnableIRQ
    bsp.o(i.MX_USART1_UART_Init) refers to stm32f0xx_ll_usart.o(i.LL_USART_Init) for LL_USART_Init
    bsp.o(i.MX_USART1_UART_Init) refers to bsp.o(i.LL_USART_ConfigAsyncMode) for LL_USART_ConfigAsyncMode
    bsp.o(i.MX_USART1_UART_Init) refers to globaldef.o(.data) for Uart1Baud
    bsp.o(i.MX_USART2_UART_Init) refers to memseta.o(.text) for __aeabi_memclr4
    bsp.o(i.MX_USART2_UART_Init) refers to bsp.o(i.LL_APB1_GRP1_EnableClock) for LL_APB1_GRP1_EnableClock
    bsp.o(i.MX_USART2_UART_Init) refers to bsp.o(i.LL_AHB1_GRP1_EnableClock) for LL_AHB1_GRP1_EnableClock
    bsp.o(i.MX_USART2_UART_Init) refers to stm32f0xx_ll_gpio.o(i.LL_GPIO_Init) for LL_GPIO_Init
    bsp.o(i.MX_USART2_UART_Init) refers to bsp.o(i.LL_DMA_SetDataTransferDirection) for LL_DMA_SetDataTransferDirection
    bsp.o(i.MX_USART2_UART_Init) refers to bsp.o(i.LL_DMA_SetChannelPriorityLevel) for LL_DMA_SetChannelPriorityLevel
    bsp.o(i.MX_USART2_UART_Init) refers to bsp.o(i.LL_DMA_SetMode) for LL_DMA_SetMode
    bsp.o(i.MX_USART2_UART_Init) refers to bsp.o(i.LL_DMA_SetPeriphIncMode) for LL_DMA_SetPeriphIncMode
    bsp.o(i.MX_USART2_UART_Init) refers to bsp.o(i.LL_DMA_SetMemoryIncMode) for LL_DMA_SetMemoryIncMode
    bsp.o(i.MX_USART2_UART_Init) refers to bsp.o(i.LL_DMA_SetPeriphSize) for LL_DMA_SetPeriphSize
    bsp.o(i.MX_USART2_UART_Init) refers to bsp.o(i.LL_DMA_SetMemorySize) for LL_DMA_SetMemorySize
    bsp.o(i.MX_USART2_UART_Init) refers to bsp.o(i.NVIC_SetPriority) for NVIC_SetPriority
    bsp.o(i.MX_USART2_UART_Init) refers to bsp.o(i.NVIC_EnableIRQ) for NVIC_EnableIRQ
    bsp.o(i.MX_USART2_UART_Init) refers to stm32f0xx_ll_usart.o(i.LL_USART_Init) for LL_USART_Init
    bsp.o(i.MX_USART2_UART_Init) refers to bsp.o(i.LL_USART_ConfigAsyncMode) for LL_USART_ConfigAsyncMode
    bsp.o(i.MX_USART2_UART_Init) refers to globaldef.o(.data) for Uart2Baud
    bsp.o(i.SystemClock_Config) refers to memseta.o(.text) for __aeabi_memclr4
    bsp.o(i.SystemClock_Config) refers to stm32f0xx_hal_rcc.o(i.HAL_RCC_OscConfig) for HAL_RCC_OscConfig
    bsp.o(i.SystemClock_Config) refers to main.o(i._Error_Handler) for _Error_Handler
    bsp.o(i.SystemClock_Config) refers to stm32f0xx_hal_rcc.o(i.HAL_RCC_ClockConfig) for HAL_RCC_ClockConfig
    bsp.o(i.SystemClock_Config) refers to stm32f0xx_hal_rcc_ex.o(i.HAL_RCCEx_PeriphCLKConfig) for HAL_RCCEx_PeriphCLKConfig
    bsp.o(i.SystemClock_Config) refers to stm32f0xx_hal_cortex.o(i.HAL_SYSTICK_Config) for HAL_SYSTICK_Config
    bsp.o(i.SystemClock_Config) refers to stm32f0xx_hal_cortex.o(i.HAL_SYSTICK_CLKSourceConfig) for HAL_SYSTICK_CLKSourceConfig
    bsp.o(i.SystemClock_Config) refers to stm32f0xx_hal_cortex.o(i.HAL_NVIC_SetPriority) for HAL_NVIC_SetPriority
    stm32f0xx_it.o(i.DMA1_Channel2_3_IRQHandler) refers to myqueue.o(i.DelData) for DelData
    stm32f0xx_it.o(i.DMA1_Channel2_3_IRQHandler) refers to myqueue.o(i.GetContinueData) for GetContinueData
    stm32f0xx_it.o(i.DMA1_Channel2_3_IRQHandler) refers to globaldef.o(.bss) for Uart1Stat
    stm32f0xx_it.o(i.DMA1_Channel2_3_IRQHandler) refers to stm32f0xx_it.o(.constdata) for .constdata
    stm32f0xx_it.o(i.DMA1_Channel4_5_IRQHandler) refers to globaldef.o(.bss) for Uart2Stat
    stm32f0xx_it.o(i.PendSV_Handler) refers to functions.o(i.PendSvCallBack) for PendSvCallBack
    stm32f0xx_it.o(i.PendSV_Handler) refers to globaldef.o(.data) for PendSvCount
    stm32f0xx_it.o(i.SPI1_IRQHandler) refers to functions.o(i.SPI1_IRQ_CallBack) for SPI1_IRQ_CallBack
    stm32f0xx_it.o(i.SysTick_Handler) refers to stm32f0xx_hal.o(i.HAL_IncTick) for HAL_IncTick
    stm32f0xx_it.o(i.SysTick_Handler) refers to stm32f0xx_hal_cortex.o(i.HAL_SYSTICK_IRQHandler) for HAL_SYSTICK_IRQHandler
    stm32f0xx_it.o(i.USART1_IRQHandler) refers to functions.o(i.Uart1RecvDone) for Uart1RecvDone
    stm32f0xx_it.o(i.USART1_IRQHandler) refers to functions.o(i.Uart1SendDone) for Uart1SendDone
    stm32f0xx_it.o(i.USART1_IRQHandler) refers to globaldef.o(.bss) for Uart1Stat
    stm32f0xx_it.o(i.USART1_IRQHandler) refers to globaldef.o(.data) for Uart1BaudGot
    stm32f0xx_it.o(i.USART1_IRQHandler) refers to globaldef.o(.data) for Uart1BaudFirstGot
    stm32f0xx_it.o(i.USART1_IRQHandler) refers to globaldef.o(.bss) for Uart1RecvBuf1
    stm32f0xx_it.o(i.USART1_IRQHandler) refers to globaldef.o(.data) for Uart1RecvBuf1DataLen
    stm32f0xx_it.o(i.USART2_IRQHandler) refers to functions.o(i.Uart2RecvDone) for Uart2RecvDone
    stm32f0xx_it.o(i.USART2_IRQHandler) refers to functions.o(i.Uart2SendDone) for Uart2SendDone
    stm32f0xx_it.o(i.USART2_IRQHandler) refers to globaldef.o(.bss) for Uart2Stat
    main.o(i.HAL_SYSTICK_Callback) refers to functions.o(.data) for CurTickuS
    main.o(i.HAL_SYSTICK_Callback) refers to kbus.o(.data) for nSlaveTick
    main.o(i.HAL_SYSTICK_Callback) refers to main.o(.data) for .data
    main.o(i.HAL_SYSTICK_Callback) refers to kmachine.o(.bss) for KMem
    main.o(i.main) refers to functions.o(i.InitUartstat) for InitUartstat
    main.o(i.main) refers to stm32f0xx_hal.o(i.HAL_Init) for HAL_Init
    main.o(i.main) refers to bsp.o(i.SystemClock_Config) for SystemClock_Config
    main.o(i.main) refers to functions.o(i.InituS) for InituS
    main.o(i.main) refers to bsp.o(i.MX_GPIO_Init) for MX_GPIO_Init
    main.o(i.main) refers to bsp.o(i.MX_DMA_Init) for MX_DMA_Init
    main.o(i.main) refers to kmachine.o(i.KMachineInit) for KMachineInit
    main.o(i.main) refers to kmachine.o(i.ReadSysCfgFromFlash) for ReadSysCfgFromFlash
    main.o(i.main) refers to functions.o(i.ReadJumperSW) for ReadJumperSW
    main.o(i.main) refers to bsp.o(i.MX_USART1_UART_Init) for MX_USART1_UART_Init
    main.o(i.main) refers to bsp.o(i.MX_USART2_UART_Init) for MX_USART2_UART_Init
    main.o(i.main) refers to bsp.o(i.MX_SPI1_Init) for MX_SPI1_Init
    main.o(i.main) refers to bsp.o(i.MX_SPI2_Init) for MX_SPI2_Init
    main.o(i.main) refers to bsp.o(i.MX_ADC_Init) for MX_ADC_Init
    main.o(i.main) refers to bsp.o(i.MX_IWDG_Init) for MX_IWDG_Init
    main.o(i.main) refers to bsp.o(i.MX_TIM6_Init) for MX_TIM6_Init
    main.o(i.main) refers to functions.o(i.Uart2RecvDMA) for Uart2RecvDMA
    main.o(i.main) refers to stm32f0xx_hal.o(i.HAL_Delay) for HAL_Delay
    main.o(i.main) refers to functions.o(i.SetRunLed) for SetRunLed
    main.o(i.main) refers to functions.o(i.SetErrLed) for SetErrLed
    main.o(i.main) refers to functions.o(i.PutOutput) for PutOutput
    main.o(i.main) refers to functions.o(i.Enable595) for Enable595
    main.o(i.main) refers to functions.o(i.displayInput) for displayInput
    main.o(i.main) refers to functions.o(i.EnableDisIn) for EnableDisIn
    main.o(i.main) refers to functions.o(i.SetOutStat) for SetOutStat
    main.o(i.main) refers to debug.o(i.ShowInitInfo) for ShowInitInfo
    main.o(i.main) refers to functions.o(i.GetuS) for GetuS
    main.o(i.main) refers to plcfunctions.o(i.InitPLC) for InitPLC
    main.o(i.main) refers to plcfunctions.o(i.StartPLC) for StartPLC
    main.o(i.main) refers to kwireless.o(i.KWireLessInit) for KWireLessInit
    main.o(i.main) refers to kwireless.o(i.KWireLessStart) for KWireLessStart
    main.o(i.main) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    main.o(i.main) refers to plcfunctions.o(i.StopPLC) for StopPLC
    main.o(i.main) refers to functions.o(i.GetInput) for GetInput
    main.o(i.main) refers to debug.o(i.ADCProcess) for ADCProcess
    main.o(i.main) refers to debug.o(i.PowerDownProcess) for PowerDownProcess
    main.o(i.main) refers to debug.o(i.PowerRecoverProcess) for PowerRecoverProcess
    main.o(i.main) refers to kwireless.o(i.KWL_Process) for KWL_Process
    main.o(i.main) refers to plcfunctions.o(i.ProcessPLCBinProg) for ProcessPLCBinProg
    main.o(i.main) refers to kbus.o(i.KBusMasterFunc) for KBusMasterFunc
    main.o(i.main) refers to functions.o(i.SetErr2Led) for SetErr2Led
    main.o(i.main) refers to debug.o(.emb_text) for add1
    main.o(i.main) refers to modbusrtu.o(i.ModBusSlaveParsePkg) for ModBusSlaveParsePkg
    main.o(i.main) refers to kmachine.o(.bss) for KMRunStat
    main.o(i.main) refers to main.o(.bss) for .bss
    main.o(i.main) refers to globaldef.o(.bss) for Uart1Stat
    main.o(i.main) refers to globaldef.o(.bss) for Uart2Stat
    main.o(i.main) refers to kbus.o(.bss) for KBusChnStats
    main.o(i.main) refers to globaldef.o(.data) for PendSvCount
    main.o(i.main) refers to functions.o(.data) for TickFreq
    main.o(i.main) refers to kmachine.o(.bss) for storedKMSysCfg
    main.o(i.main) refers to kbus.o(.data) for nStationID
    main.o(i.main) refers to globaldef.o(.data) for Uart1Baud
    main.o(i.main) refers to globaldef.o(.bss) for Uart2RecvBuf1
    main.o(i.main) refers to main.o(.data) for .data
    main.o(i.main) refers to kmachine.o(.data) for PowerDownEvent
    main.o(i.main) refers to kmachine.o(.data) for OldPowerDownEvent
    main.o(i.main) refers to functions.o(.data) for nCurTick
    main.o(i.main) refers to kmachine.o(.data) for OldPowerDownEventTime
    main.o(i.main) refers to radio.o(.constdata) for Radio
    main.o(i.main) refers to plcfunctions.o(.data) for nSizeProg1
    main.o(i.main) refers to plcfunctions.o(.bss) for PLCMem
    main.o(i.main) refers to globaldef.o(.data) for Uart1RecvBuf1DataLen
    main.o(i.main) refers to globaldef.o(.bss) for Uart1RecvBuf1
    main.o(i.main) refers to klink.o(i.KLParsePacket) for KLParsePacket
    delay.o(i.HAL_Delay_nMS) refers to stm32f0xx_hal.o(i.HAL_Delay) for HAL_Delay
    kwireless.o(i.KWLMasterParsePkt) refers to crc.o(i.RadioComputeCRC) for RadioComputeCRC
    kwireless.o(i.KWLMasterParsePkt) refers to kwireless.o(i.LedToggle) for LedToggle
    kwireless.o(i.KWLMasterParsePkt) refers to functions.o(i.GetTick) for GetTick
    kwireless.o(i.KWLMasterParsePkt) refers to kwireless.o(.bss) for .bss
    kwireless.o(i.KWLMasterParsePkt) refers to kwireless.o(.data) for .data
    kwireless.o(i.KWLMasterParsePkt) refers to kmachine.o(.bss) for KMem
    kwireless.o(i.KWLMasterSendReqPkt) refers to crc.o(i.RadioComputeCRC) for RadioComputeCRC
    kwireless.o(i.KWLMasterSendReqPkt) refers to functions.o(i.GetTick) for GetTick
    kwireless.o(i.KWLMasterSendReqPkt) refers to kwireless.o(.bss) for .bss
    kwireless.o(i.KWLMasterSendReqPkt) refers to kwireless.o(.data) for .data
    kwireless.o(i.KWLMasterSendReqPkt) refers to kmachine.o(.bss) for KMem
    kwireless.o(i.KWLMasterSendReqPkt) refers to radio.o(.constdata) for Radio
    kwireless.o(i.KWLSlaveParsePkt) refers to crc.o(i.RadioComputeCRC) for RadioComputeCRC
    kwireless.o(i.KWLSlaveParsePkt) refers to kwireless.o(i.LedToggle) for LedToggle
    kwireless.o(i.KWLSlaveParsePkt) refers to functions.o(i.GetTick) for GetTick
    kwireless.o(i.KWLSlaveParsePkt) refers to kwireless.o(i.KWLSlaveSendRplyPkt) for KWLSlaveSendRplyPkt
    kwireless.o(i.KWLSlaveParsePkt) refers to kwireless.o(.bss) for .bss
    kwireless.o(i.KWLSlaveParsePkt) refers to kwireless.o(.data) for .data
    kwireless.o(i.KWLSlaveParsePkt) refers to kmachine.o(.bss) for KMem
    kwireless.o(i.KWLSlaveParsePkt) refers to radio.o(.constdata) for Radio
    kwireless.o(i.KWLSlaveSendRplyPkt) refers to crc.o(i.RadioComputeCRC) for RadioComputeCRC
    kwireless.o(i.KWLSlaveSendRplyPkt) refers to functions.o(i.GetTick) for GetTick
    kwireless.o(i.KWLSlaveSendRplyPkt) refers to kwireless.o(.bss) for .bss
    kwireless.o(i.KWLSlaveSendRplyPkt) refers to kwireless.o(.data) for .data
    kwireless.o(i.KWLSlaveSendRplyPkt) refers to kmachine.o(.bss) for KMem
    kwireless.o(i.KWLSlaveSendRplyPkt) refers to radio.o(.constdata) for Radio
    kwireless.o(i.KWL_Process) refers to functions.o(i.GetTick) for GetTick
    kwireless.o(i.KWL_Process) refers to kwireless.o(i.KWireLessStart) for KWireLessStart
    kwireless.o(i.KWL_Process) refers to radio.o(.constdata) for Radio
    kwireless.o(i.KWL_Process) refers to kmachine.o(.bss) for KMem
    kwireless.o(i.KWL_Process) refers to kwireless.o(.data) for .data
    kwireless.o(i.KWL_Process) refers to kwireless.o(.bss) for .bss
    kwireless.o(i.KWireLessInit) refers to sx126x.o(i.SX126xSetRxTxFallbackMode) for SX126xSetRxTxFallbackMode
    kwireless.o(i.KWireLessInit) refers to sx126x.o(i.SX126xSetCadParams) for SX126xSetCadParams
    kwireless.o(i.KWireLessInit) refers to kwireless.o(.data) for .data
    kwireless.o(i.KWireLessInit) refers to kwireless.o(i.OnTxDone) for OnTxDone
    kwireless.o(i.KWireLessInit) refers to kwireless.o(.bss) for .bss
    kwireless.o(i.KWireLessInit) refers to kwireless.o(i.OnRxDone) for OnRxDone
    kwireless.o(i.KWireLessInit) refers to kwireless.o(i.OnTxTimeout) for OnTxTimeout
    kwireless.o(i.KWireLessInit) refers to kwireless.o(i.OnRxTimeout) for OnRxTimeout
    kwireless.o(i.KWireLessInit) refers to kwireless.o(i.OnRxError) for OnRxError
    kwireless.o(i.KWireLessInit) refers to kwireless.o(i.OnCadDone) for OnCadDone
    kwireless.o(i.KWireLessInit) refers to radio.o(.constdata) for Radio
    kwireless.o(i.KWireLessStart) refers to kwireless.o(i.KWLMasterSendReqPkt) for KWLMasterSendReqPkt
    kwireless.o(i.KWireLessStart) refers to functions.o(i.GetTick) for GetTick
    kwireless.o(i.KWireLessStart) refers to kwireless.o(.data) for .data
    kwireless.o(i.KWireLessStart) refers to radio.o(.constdata) for Radio
    kwireless.o(i.KWireLessStart) refers to kwireless.o(.bss) for .bss
    kwireless.o(i.OnCadDone) refers to kwireless.o(.bss) for .bss
    kwireless.o(i.OnRxDone) refers to memcpya.o(.text) for __aeabi_memcpy
    kwireless.o(i.OnRxDone) refers to functions.o(i.GetTick) for GetTick
    kwireless.o(i.OnRxDone) refers to kwireless.o(i.KWLMasterParsePkt) for KWLMasterParsePkt
    kwireless.o(i.OnRxDone) refers to kwireless.o(i.KWLSlaveParsePkt) for KWLSlaveParsePkt
    kwireless.o(i.OnRxDone) refers to kmachine.o(.bss) for KMem
    kwireless.o(i.OnRxDone) refers to kwireless.o(.bss) for .bss
    kwireless.o(i.OnRxDone) refers to radio.o(.constdata) for Radio
    kwireless.o(i.OnRxDone) refers to kwireless.o(.data) for .data
    kwireless.o(i.OnRxError) refers to functions.o(i.GetTick) for GetTick
    kwireless.o(i.OnRxError) refers to kwireless.o(.bss) for .bss
    kwireless.o(i.OnRxError) refers to kmachine.o(.bss) for KMem
    kwireless.o(i.OnRxError) refers to kwireless.o(.data) for .data
    kwireless.o(i.OnRxTimeout) refers to functions.o(i.GetTick) for GetTick
    kwireless.o(i.OnRxTimeout) refers to kwireless.o(.bss) for .bss
    kwireless.o(i.OnRxTimeout) refers to radio.o(.constdata) for Radio
    kwireless.o(i.OnRxTimeout) refers to kmachine.o(.bss) for KMem
    kwireless.o(i.OnRxTimeout) refers to kwireless.o(.data) for .data
    kwireless.o(i.OnTxDone) refers to functions.o(i.GetTick) for GetTick
    kwireless.o(i.OnTxDone) refers to kwireless.o(.bss) for .bss
    kwireless.o(i.OnTxDone) refers to kmachine.o(.bss) for KMem
    kwireless.o(i.OnTxDone) refers to radio.o(.constdata) for Radio
    kwireless.o(i.OnTxDone) refers to kwireless.o(.data) for .data
    kwireless.o(i.OnTxTimeout) refers to functions.o(i.GetTick) for GetTick
    kwireless.o(i.OnTxTimeout) refers to kwireless.o(.bss) for .bss
    kwireless.o(i.OnTxTimeout) refers to radio.o(.constdata) for Radio
    crc.o(i.RadioComputeCRC) refers to crc.o(i.ComputeCrc) for ComputeCrc
    radio.o(i.RadioGetStatus) refers to sx126x.o(i.SX126xGetOperatingMode) for SX126xGetOperatingMode
    radio.o(i.RadioInit) refers to sx126x.o(i.SX126xInit) for SX126xInit
    radio.o(i.RadioInit) refers to sx126x.o(i.SX126xSetStandby) for SX126xSetStandby
    radio.o(i.RadioInit) refers to sx126x.o(i.SX126xSetRegulatorMode) for SX126xSetRegulatorMode
    radio.o(i.RadioInit) refers to sx126x.o(i.SX126xSetBufferBaseAddress) for SX126xSetBufferBaseAddress
    radio.o(i.RadioInit) refers to sx126x.o(i.SX126xSetTxParams) for SX126xSetTxParams
    radio.o(i.RadioInit) refers to sx126x.o(i.SX126xSetDioIrqParams) for SX126xSetDioIrqParams
    radio.o(i.RadioInit) refers to radio.o(.data) for .data
    radio.o(i.RadioInit) refers to radio.o(i.RadioOnDioIrq) for RadioOnDioIrq
    radio.o(i.RadioIrqProcess) refers to sx126x.o(i.SX126xGetIrqStatus) for SX126xGetIrqStatus
    radio.o(i.RadioIrqProcess) refers to sx126x.o(i.SX126xClearIrqStatus) for SX126xClearIrqStatus
    radio.o(i.RadioIrqProcess) refers to sx126x.o(i.SX126xGetPayload) for SX126xGetPayload
    radio.o(i.RadioIrqProcess) refers to sx126x.o(i.SX126xGetPacketStatus) for SX126xGetPacketStatus
    radio.o(i.RadioIrqProcess) refers to sx126x.o(i.SX126xGetOperatingMode) for SX126xGetOperatingMode
    radio.o(i.RadioIrqProcess) refers to radio.o(.data) for .data
    radio.o(i.RadioIrqProcess) refers to radio.o(.bss) for .bss
    radio.o(i.RadioIsChannelFree) refers to radio.o(i.RadioSetModem) for RadioSetModem
    radio.o(i.RadioIsChannelFree) refers to sx126x.o(i.SX126xSetRfFrequency) for SX126xSetRfFrequency
    radio.o(i.RadioIsChannelFree) refers to radio.o(i.RadioRx) for RadioRx
    radio.o(i.RadioIsChannelFree) refers to delay.o(i.HAL_Delay_nMS) for HAL_Delay_nMS
    radio.o(i.RadioIsChannelFree) refers to radio.o(i.RadioSleep) for RadioSleep
    radio.o(i.RadioOnDioIrq) refers to radio.o(.data) for .data
    radio.o(i.RadioOnRxTimeoutIrq) refers to radio.o(.data) for .data
    radio.o(i.RadioOnTxTimeoutIrq) refers to radio.o(.data) for .data
    radio.o(i.RadioRandom) refers to radio.o(i.RadioSetModem) for RadioSetModem
    radio.o(i.RadioRandom) refers to sx126x.o(i.SX126xSetRx) for SX126xSetRx
    radio.o(i.RadioRandom) refers to delay.o(i.HAL_Delay_nMS) for HAL_Delay_nMS
    radio.o(i.RadioRandom) refers to sx126x.o(i.SX126xGetRssiInst) for SX126xGetRssiInst
    radio.o(i.RadioRandom) refers to radio.o(i.RadioSleep) for RadioSleep
    radio.o(i.RadioRead) refers to sx126x-board.o(i.SX126xReadRegister) for SX126xReadRegister
    radio.o(i.RadioReadBuffer) refers to sx126x-board.o(i.SX126xReadRegisters) for SX126xReadRegisters
    radio.o(i.RadioReadFifo) refers to sx126x-board.o(i.SX126xReadBuffer) for SX126xReadBuffer
    radio.o(i.RadioRssi) refers to sx126x.o(i.SX126xGetRssiInst) for SX126xGetRssiInst
    radio.o(i.RadioRx) refers to sx126x.o(i.SX126xSetDioIrqParams) for SX126xSetDioIrqParams
    radio.o(i.RadioRx) refers to sx126x.o(i.SX126xSetRx) for SX126xSetRx
    radio.o(i.RadioRx) refers to radio.o(.data) for .data
    radio.o(i.RadioRxBoosted) refers to sx126x.o(i.SX126xSetDioIrqParams) for SX126xSetDioIrqParams
    radio.o(i.RadioRxBoosted) refers to sx126x.o(i.SX126xSetRxBoosted) for SX126xSetRxBoosted
    radio.o(i.RadioRxBoosted) refers to radio.o(.data) for .data
    radio.o(i.RadioSend) refers to sx126x.o(i.SX126xSetDioIrqParams) for SX126xSetDioIrqParams
    radio.o(i.RadioSend) refers to sx126x.o(i.SX126xGetPacketType) for SX126xGetPacketType
    radio.o(i.RadioSend) refers to sx126x.o(i.SX126xSetPacketParams) for SX126xSetPacketParams
    radio.o(i.RadioSend) refers to sx126x.o(i.SX126xSendPayload) for SX126xSendPayload
    radio.o(i.RadioSend) refers to radio.o(.bss) for .bss
    radio.o(i.RadioSetChannel) refers to sx126x.o(i.SX126xSetRfFrequency) for SX126xSetRfFrequency
    radio.o(i.RadioSetMaxPayloadLength) refers to sx126x.o(i.SX126xSetPacketParams) for SX126xSetPacketParams
    radio.o(i.RadioSetMaxPayloadLength) refers to radio.o(.data) for .data
    radio.o(i.RadioSetMaxPayloadLength) refers to radio.o(.bss) for .bss
    radio.o(i.RadioSetModem) refers to sx126x.o(i.SX126xSetPacketType) for SX126xSetPacketType
    radio.o(i.RadioSetModem) refers to radio.o(i.RadioSetPublicNetwork) for RadioSetPublicNetwork
    radio.o(i.RadioSetModem) refers to radio.o(.data) for .data
    radio.o(i.RadioSetPublicNetwork) refers to radio.o(i.RadioSetModem) for RadioSetModem
    radio.o(i.RadioSetPublicNetwork) refers to sx126x-board.o(i.SX126xWriteRegister) for SX126xWriteRegister
    radio.o(i.RadioSetPublicNetwork) refers to radio.o(.data) for .data
    radio.o(i.RadioSetRxConfig) refers to sx126x.o(i.SX126xSetStopRxTimerOnPreambleDetect) for SX126xSetStopRxTimerOnPreambleDetect
    radio.o(i.RadioSetRxConfig) refers to sx126x.o(i.SX126xSetLoRaSymbNumTimeout) for SX126xSetLoRaSymbNumTimeout
    radio.o(i.RadioSetRxConfig) refers to sx126x.o(i.SX126xSetFs) for SX126xSetFs
    radio.o(i.RadioSetRxConfig) refers to radio.o(i.RadioSetModem) for RadioSetModem
    radio.o(i.RadioSetRxConfig) refers to sx126x.o(i.SX126xSetModulationParams) for SX126xSetModulationParams
    radio.o(i.RadioSetRxConfig) refers to sx126x.o(i.SX126xSetPacketParams) for SX126xSetPacketParams
    radio.o(i.RadioSetRxConfig) refers to sx126x.o(i.SX126xSetSyncWord) for SX126xSetSyncWord
    radio.o(i.RadioSetRxConfig) refers to sx126x.o(i.SX126xSetWhiteningSeed) for SX126xSetWhiteningSeed
    radio.o(i.RadioSetRxConfig) refers to dfltui.o(.text) for __aeabi_ui2d
    radio.o(i.RadioSetRxConfig) refers to ddiv.o(.text) for __aeabi_ddiv
    radio.o(i.RadioSetRxConfig) refers to dscalb.o(.text) for __ARM_scalbn
    radio.o(i.RadioSetRxConfig) refers to dmul.o(.text) for __aeabi_dmul
    radio.o(i.RadioSetRxConfig) refers to dfixui.o(.text) for __aeabi_d2uiz
    radio.o(i.RadioSetRxConfig) refers to radio.o(.data) for .data
    radio.o(i.RadioSetRxConfig) refers to radio.o(.bss) for .bss
    radio.o(i.RadioSetRxConfig) refers to radio.o(.constdata) for .constdata
    radio.o(i.RadioSetRxDutyCycle) refers to sx126x.o(i.SX126xSetRxDutyCycle) for SX126xSetRxDutyCycle
    radio.o(i.RadioSetTxConfig) refers to sx126x.o(i.SX126xSetFs) for SX126xSetFs
    radio.o(i.RadioSetTxConfig) refers to radio.o(i.RadioSetModem) for RadioSetModem
    radio.o(i.RadioSetTxConfig) refers to sx126x.o(i.SX126xSetModulationParams) for SX126xSetModulationParams
    radio.o(i.RadioSetTxConfig) refers to sx126x.o(i.SX126xSetPacketParams) for SX126xSetPacketParams
    radio.o(i.RadioSetTxConfig) refers to sx126x.o(i.SX126xSetSyncWord) for SX126xSetSyncWord
    radio.o(i.RadioSetTxConfig) refers to sx126x.o(i.SX126xSetWhiteningSeed) for SX126xSetWhiteningSeed
    radio.o(i.RadioSetTxConfig) refers to sx126x-board.o(i.SX126xSetRfTxPower) for SX126xSetRfTxPower
    radio.o(i.RadioSetTxConfig) refers to radio.o(.bss) for .bss
    radio.o(i.RadioSetTxConfig) refers to radio.o(.constdata) for .constdata
    radio.o(i.RadioSetTxConfig) refers to radio.o(.data) for .data
    radio.o(i.RadioSetTxContinuousWave) refers to sx126x.o(i.SX126xSetRfFrequency) for SX126xSetRfFrequency
    radio.o(i.RadioSetTxContinuousWave) refers to sx126x-board.o(i.SX126xSetRfTxPower) for SX126xSetRfTxPower
    radio.o(i.RadioSetTxContinuousWave) refers to sx126x.o(i.SX126xSetTxContinuousWave) for SX126xSetTxContinuousWave
    radio.o(i.RadioSleep) refers to sx126x.o(i.SX126xSetSleep) for SX126xSetSleep
    radio.o(i.RadioSleep) refers to delay.o(i.HAL_Delay_nMS) for HAL_Delay_nMS
    radio.o(i.RadioStandby) refers to sx126x.o(i.SX126xSetFs) for SX126xSetFs
    radio.o(i.RadioStartCad) refers to sx126x.o(i.SX126xSetCad) for SX126xSetCad
    radio.o(i.RadioTimeOnAir) refers to dfltui.o(.text) for __aeabi_ui2d
    radio.o(i.RadioTimeOnAir) refers to dadd.o(.text) for __aeabi_dadd
    radio.o(i.RadioTimeOnAir) refers to dmul.o(.text) for __aeabi_dmul
    radio.o(i.RadioTimeOnAir) refers to dflti.o(.text) for __aeabi_i2d
    radio.o(i.RadioTimeOnAir) refers to ddiv.o(.text) for __aeabi_ddiv
    radio.o(i.RadioTimeOnAir) refers to ceil.o(i.ceil) for ceil
    radio.o(i.RadioTimeOnAir) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
    radio.o(i.RadioTimeOnAir) refers to dscalb.o(.text) for __ARM_scalbn
    radio.o(i.RadioTimeOnAir) refers to rint.o(i.rint) for rint
    radio.o(i.RadioTimeOnAir) refers to floor.o(i.floor) for floor
    radio.o(i.RadioTimeOnAir) refers to dfixui.o(.text) for __aeabi_d2uiz
    radio.o(i.RadioTimeOnAir) refers to radio.o(.bss) for .bss
    radio.o(i.RadioTimeOnAir) refers to radio.o(.data) for .data
    radio.o(i.RadioTx) refers to sx126x.o(i.SX126xSetTx) for SX126xSetTx
    radio.o(i.RadioWrite) refers to sx126x-board.o(i.SX126xWriteRegister) for SX126xWriteRegister
    radio.o(i.RadioWriteBuffer) refers to sx126x-board.o(i.SX126xWriteRegisters) for SX126xWriteRegisters
    radio.o(i.RadioWriteFifo) refers to sx126x-board.o(i.SX126xWriteBuffer) for SX126xWriteBuffer
    radio.o(.constdata) refers to radio.o(i.RadioInit) for RadioInit
    radio.o(.constdata) refers to radio.o(i.RadioGetStatus) for RadioGetStatus
    radio.o(.constdata) refers to radio.o(i.RadioSetModem) for RadioSetModem
    radio.o(.constdata) refers to radio.o(i.RadioSetChannel) for RadioSetChannel
    radio.o(.constdata) refers to radio.o(i.RadioIsChannelFree) for RadioIsChannelFree
    radio.o(.constdata) refers to radio.o(i.RadioRandom) for RadioRandom
    radio.o(.constdata) refers to radio.o(i.RadioSetRxConfig) for RadioSetRxConfig
    radio.o(.constdata) refers to radio.o(i.RadioSetTxConfig) for RadioSetTxConfig
    radio.o(.constdata) refers to radio.o(i.RadioCheckRfFrequency) for RadioCheckRfFrequency
    radio.o(.constdata) refers to radio.o(i.RadioTimeOnAir) for RadioTimeOnAir
    radio.o(.constdata) refers to radio.o(i.RadioSend) for RadioSend
    radio.o(.constdata) refers to radio.o(i.RadioSleep) for RadioSleep
    radio.o(.constdata) refers to radio.o(i.RadioStandby) for RadioStandby
    radio.o(.constdata) refers to radio.o(i.RadioRx) for RadioRx
    radio.o(.constdata) refers to radio.o(i.RadioStartCad) for RadioStartCad
    radio.o(.constdata) refers to radio.o(i.RadioSetTxContinuousWave) for RadioSetTxContinuousWave
    radio.o(.constdata) refers to radio.o(i.RadioRssi) for RadioRssi
    radio.o(.constdata) refers to radio.o(i.RadioWrite) for RadioWrite
    radio.o(.constdata) refers to radio.o(i.RadioRead) for RadioRead
    radio.o(.constdata) refers to radio.o(i.RadioWriteBuffer) for RadioWriteBuffer
    radio.o(.constdata) refers to radio.o(i.RadioReadBuffer) for RadioReadBuffer
    radio.o(.constdata) refers to radio.o(i.RadioSetMaxPayloadLength) for RadioSetMaxPayloadLength
    radio.o(.constdata) refers to radio.o(i.RadioSetPublicNetwork) for RadioSetPublicNetwork
    radio.o(.constdata) refers to radio.o(i.RadioGetWakeupTime) for RadioGetWakeupTime
    radio.o(.constdata) refers to radio.o(i.RadioIrqProcess) for RadioIrqProcess
    radio.o(.constdata) refers to radio.o(i.RadioRxBoosted) for RadioRxBoosted
    radio.o(.constdata) refers to radio.o(i.RadioSetRxDutyCycle) for RadioSetRxDutyCycle
    sx126x.o(i.SX126xCalibrate) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xCalibrateImage) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xCheckDeviceReady) refers to sx126x-board.o(i.SX126xWakeup) for SX126xWakeup
    sx126x.o(i.SX126xCheckDeviceReady) refers to sx126x-board.o(i.SX126xAntSwOn) for SX126xAntSwOn
    sx126x.o(i.SX126xCheckDeviceReady) refers to sx126x-board.o(i.SX126xWaitOnBusy) for SX126xWaitOnBusy
    sx126x.o(i.SX126xCheckDeviceReady) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xClearDeviceErrors) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xClearIrqStatus) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xGetDeviceErrors) refers to sx126x-board.o(i.SX126xReadCommand) for SX126xReadCommand
    sx126x.o(i.SX126xGetIrqStatus) refers to sx126x-board.o(i.SX126xReadCommand) for SX126xReadCommand
    sx126x.o(i.SX126xGetOperatingMode) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xGetPacketStatus) refers to sx126x-board.o(i.SX126xReadCommand) for SX126xReadCommand
    sx126x.o(i.SX126xGetPacketStatus) refers to memseta.o(.text) for __aeabi_memclr4
    sx126x.o(i.SX126xGetPacketStatus) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xGetPacketType) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xGetPayload) refers to sx126x.o(i.SX126xGetRxBufferStatus) for SX126xGetRxBufferStatus
    sx126x.o(i.SX126xGetPayload) refers to sx126x-board.o(i.SX126xReadBuffer) for SX126xReadBuffer
    sx126x.o(i.SX126xGetRandom) refers to sx126x.o(i.SX126xSetRx) for SX126xSetRx
    sx126x.o(i.SX126xGetRandom) refers to delay.o(i.HAL_Delay_nMS) for HAL_Delay_nMS
    sx126x.o(i.SX126xGetRandom) refers to sx126x-board.o(i.SX126xReadRegisters) for SX126xReadRegisters
    sx126x.o(i.SX126xGetRandom) refers to sx126x.o(i.SX126xSetStandby) for SX126xSetStandby
    sx126x.o(i.SX126xGetRssiInst) refers to sx126x-board.o(i.SX126xReadCommand) for SX126xReadCommand
    sx126x.o(i.SX126xGetRxBufferStatus) refers to sx126x-board.o(i.SX126xReadCommand) for SX126xReadCommand
    sx126x.o(i.SX126xGetRxBufferStatus) refers to sx126x-board.o(i.SX126xReadRegister) for SX126xReadRegister
    sx126x.o(i.SX126xGetRxBufferStatus) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xGetStatus) refers to sx126x-board.o(i.SX126xReadCommand) for SX126xReadCommand
    sx126x.o(i.SX126xInit) refers to sx126x-board.o(i.SX126xReset) for SX126xReset
    sx126x.o(i.SX126xInit) refers to sx126x-board.o(i.SX126xWakeup) for SX126xWakeup
    sx126x.o(i.SX126xInit) refers to sx126x.o(i.SX126xSetStandby) for SX126xSetStandby
    sx126x.o(i.SX126xInit) refers to sx126x.o(i.SX126xSetDio2AsRfSwitchCtrl) for SX126xSetDio2AsRfSwitchCtrl
    sx126x.o(i.SX126xInit) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSendPayload) refers to sx126x.o(i.SX126xSetPayload) for SX126xSetPayload
    sx126x.o(i.SX126xSendPayload) refers to sx126x.o(i.SX126xSetTx) for SX126xSetTx
    sx126x.o(i.SX126xSetBufferBaseAddress) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetCad) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetCad) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetCadParams) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetCadParams) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetCrcPolynomial) refers to sx126x-board.o(i.SX126xWriteRegisters) for SX126xWriteRegisters
    sx126x.o(i.SX126xSetCrcPolynomial) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetCrcSeed) refers to sx126x-board.o(i.SX126xWriteRegisters) for SX126xWriteRegisters
    sx126x.o(i.SX126xSetCrcSeed) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetDio2AsRfSwitchCtrl) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetDio3AsTcxoCtrl) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetDioIrqParams) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetFs) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetFs) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetLoRaSymbNumTimeout) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetModulationParams) refers to sx126x.o(i.SX126xSetPacketType) for SX126xSetPacketType
    sx126x.o(i.SX126xSetModulationParams) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetModulationParams) refers to dfltui.o(.text) for __aeabi_ui2d
    sx126x.o(i.SX126xSetModulationParams) refers to ddiv.o(.text) for __aeabi_ddiv
    sx126x.o(i.SX126xSetModulationParams) refers to dscalb.o(.text) for __ARM_scalbn
    sx126x.o(i.SX126xSetModulationParams) refers to dfixui.o(.text) for __aeabi_d2uiz
    sx126x.o(i.SX126xSetModulationParams) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetPaConfig) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetPacketParams) refers to sx126x.o(i.SX126xSetPacketType) for SX126xSetPacketType
    sx126x.o(i.SX126xSetPacketParams) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetPacketParams) refers to sx126x.o(i.SX126xSetCrcSeed) for SX126xSetCrcSeed
    sx126x.o(i.SX126xSetPacketParams) refers to sx126x.o(i.SX126xSetCrcPolynomial) for SX126xSetCrcPolynomial
    sx126x.o(i.SX126xSetPacketParams) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetPacketType) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetPacketType) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetPayload) refers to sx126x-board.o(i.SX126xWriteBuffer) for SX126xWriteBuffer
    sx126x.o(i.SX126xSetRegulatorMode) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetRfFrequency) refers to sx126x.o(i.SX126xCalibrateImage) for SX126xCalibrateImage
    sx126x.o(i.SX126xSetRfFrequency) refers to dfltui.o(.text) for __aeabi_ui2d
    sx126x.o(i.SX126xSetRfFrequency) refers to ddiv.o(.text) for __aeabi_ddiv
    sx126x.o(i.SX126xSetRfFrequency) refers to dfixui.o(.text) for __aeabi_d2uiz
    sx126x.o(i.SX126xSetRfFrequency) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetRfFrequency) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetRx) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetRx) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetRxBoosted) refers to sx126x-board.o(i.SX126xWriteRegister) for SX126xWriteRegister
    sx126x.o(i.SX126xSetRxBoosted) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetRxBoosted) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetRxDutyCycle) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetRxDutyCycle) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetRxTxFallbackMode) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetSleep) refers to sx126x-board.o(i.SX126xAntSwOff) for SX126xAntSwOff
    sx126x.o(i.SX126xSetSleep) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetSleep) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetStandby) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetStandby) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetStopRxTimerOnPreambleDetect) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetSyncWord) refers to sx126x-board.o(i.SX126xWriteRegisters) for SX126xWriteRegisters
    sx126x.o(i.SX126xSetTx) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetTx) refers to sx126x.o(.data) for .data
    sx126x.o(i.SX126xSetTxContinuousWave) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetTxInfinitePreamble) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetTxParams) refers to sx126x-board.o(i.SX126xGetPaSelect) for SX126xGetPaSelect
    sx126x.o(i.SX126xSetTxParams) refers to sx126x.o(i.SX126xSetPaConfig) for SX126xSetPaConfig
    sx126x.o(i.SX126xSetTxParams) refers to sx126x-board.o(i.SX126xWriteRegister) for SX126xWriteRegister
    sx126x.o(i.SX126xSetTxParams) refers to sx126x-board.o(i.SX126xWriteCommand) for SX126xWriteCommand
    sx126x.o(i.SX126xSetWhiteningSeed) refers to sx126x-board.o(i.SX126xReadRegister) for SX126xReadRegister
    sx126x.o(i.SX126xSetWhiteningSeed) refers to sx126x-board.o(i.SX126xWriteRegister) for SX126xWriteRegister
    sx126x.o(i.SX126xSetWhiteningSeed) refers to sx126x.o(.data) for .data
    sx126x-board.o(i.SX126xReadBuffer) refers to sx126x.o(i.SX126xCheckDeviceReady) for SX126xCheckDeviceReady
    sx126x-board.o(i.SX126xReadBuffer) refers to spi.o(i.SpiInOut) for SpiInOut
    sx126x-board.o(i.SX126xReadBuffer) refers to sx126x-board.o(i.SX126xWaitOnBusy) for SX126xWaitOnBusy
    sx126x-board.o(i.SX126xReadCommand) refers to sx126x.o(i.SX126xCheckDeviceReady) for SX126xCheckDeviceReady
    sx126x-board.o(i.SX126xReadCommand) refers to spi.o(i.SpiInOut) for SpiInOut
    sx126x-board.o(i.SX126xReadCommand) refers to sx126x-board.o(i.SX126xWaitOnBusy) for SX126xWaitOnBusy
    sx126x-board.o(i.SX126xReadRegister) refers to sx126x-board.o(i.SX126xReadRegisters) for SX126xReadRegisters
    sx126x-board.o(i.SX126xReadRegisters) refers to sx126x.o(i.SX126xCheckDeviceReady) for SX126xCheckDeviceReady
    sx126x-board.o(i.SX126xReadRegisters) refers to spi.o(i.SpiInOut) for SpiInOut
    sx126x-board.o(i.SX126xReadRegisters) refers to sx126x-board.o(i.SX126xWaitOnBusy) for SX126xWaitOnBusy
    sx126x-board.o(i.SX126xReset) refers to delay.o(i.HAL_Delay_nMS) for HAL_Delay_nMS
    sx126x-board.o(i.SX126xSetRfTxPower) refers to sx126x.o(i.SX126xSetTxParams) for SX126xSetTxParams
    sx126x-board.o(i.SX126xWakeup) refers to spi.o(i.SpiInOut) for SpiInOut
    sx126x-board.o(i.SX126xWakeup) refers to sx126x-board.o(i.SX126xWaitOnBusy) for SX126xWaitOnBusy
    sx126x-board.o(i.SX126xWriteBuffer) refers to sx126x.o(i.SX126xCheckDeviceReady) for SX126xCheckDeviceReady
    sx126x-board.o(i.SX126xWriteBuffer) refers to spi.o(i.SpiInOut) for SpiInOut
    sx126x-board.o(i.SX126xWriteBuffer) refers to sx126x-board.o(i.SX126xWaitOnBusy) for SX126xWaitOnBusy
    sx126x-board.o(i.SX126xWriteCommand) refers to sx126x.o(i.SX126xCheckDeviceReady) for SX126xCheckDeviceReady
    sx126x-board.o(i.SX126xWriteCommand) refers to spi.o(i.SpiInOut) for SpiInOut
    sx126x-board.o(i.SX126xWriteCommand) refers to sx126x-board.o(i.SX126xWaitOnBusy) for SX126xWaitOnBusy
    sx126x-board.o(i.SX126xWriteRegister) refers to sx126x-board.o(i.SX126xWriteRegisters) for SX126xWriteRegisters
    sx126x-board.o(i.SX126xWriteRegisters) refers to sx126x.o(i.SX126xCheckDeviceReady) for SX126xCheckDeviceReady
    sx126x-board.o(i.SX126xWriteRegisters) refers to spi.o(i.SpiInOut) for SpiInOut
    sx126x-board.o(i.SX126xWriteRegisters) refers to sx126x-board.o(i.SX126xWaitOnBusy) for SX126xWaitOnBusy
    system_stm32f0xx.o(i.SystemCoreClockUpdate) refers to uidiv.o(.text) for __aeabi_uidivmod
    system_stm32f0xx.o(i.SystemCoreClockUpdate) refers to system_stm32f0xx.o(.data) for .data
    system_stm32f0xx.o(i.SystemCoreClockUpdate) refers to system_stm32f0xx.o(.constdata) for .constdata
    stm32f0xx_ll_gpio.o(i.LL_GPIO_DeInit) refers to stm32f0xx_ll_gpio.o(i.LL_AHB1_GRP1_ForceReset) for LL_AHB1_GRP1_ForceReset
    stm32f0xx_ll_gpio.o(i.LL_GPIO_DeInit) refers to stm32f0xx_ll_gpio.o(i.LL_AHB1_GRP1_ReleaseReset) for LL_AHB1_GRP1_ReleaseReset
    stm32f0xx_ll_dma.o(i.LL_DMA_Init) refers to stm32f0xx_ll_dma.o(.constdata) for .constdata
    stm32f0xx_ll_usart.o(i.LL_USART_Init) refers to stm32f0xx_ll_rcc.o(i.LL_RCC_GetUSARTClockFreq) for LL_RCC_GetUSARTClockFreq
    stm32f0xx_ll_usart.o(i.LL_USART_Init) refers to stm32f0xx_ll_rcc.o(i.LL_RCC_GetSystemClocksFreq) for LL_RCC_GetSystemClocksFreq
    stm32f0xx_ll_usart.o(i.LL_USART_Init) refers to uidiv.o(.text) for __aeabi_uidivmod
    stm32f0xx_ll_rcc.o(i.LL_RCC_GetI2CClockFreq) refers to stm32f0xx_ll_rcc.o(i.RCC_GetSystemClockFreq) for RCC_GetSystemClockFreq
    stm32f0xx_ll_rcc.o(i.LL_RCC_GetSystemClocksFreq) refers to stm32f0xx_ll_rcc.o(i.RCC_GetSystemClockFreq) for RCC_GetSystemClockFreq
    stm32f0xx_ll_rcc.o(i.LL_RCC_GetSystemClocksFreq) refers to stm32f0xx_ll_rcc.o(i.RCC_GetHCLKClockFreq) for RCC_GetHCLKClockFreq
    stm32f0xx_ll_rcc.o(i.LL_RCC_GetSystemClocksFreq) refers to stm32f0xx_ll_rcc.o(i.RCC_GetPCLK1ClockFreq) for RCC_GetPCLK1ClockFreq
    stm32f0xx_ll_rcc.o(i.LL_RCC_GetUSARTClockFreq) refers to stm32f0xx_ll_rcc.o(i.RCC_GetSystemClockFreq) for RCC_GetSystemClockFreq
    stm32f0xx_ll_rcc.o(i.LL_RCC_GetUSARTClockFreq) refers to stm32f0xx_ll_rcc.o(i.RCC_GetHCLKClockFreq) for RCC_GetHCLKClockFreq
    stm32f0xx_ll_rcc.o(i.LL_RCC_GetUSARTClockFreq) refers to stm32f0xx_ll_rcc.o(i.RCC_GetPCLK1ClockFreq) for RCC_GetPCLK1ClockFreq
    stm32f0xx_ll_rcc.o(i.RCC_GetHCLKClockFreq) refers to system_stm32f0xx.o(.constdata) for AHBPrescTable
    stm32f0xx_ll_rcc.o(i.RCC_GetPCLK1ClockFreq) refers to system_stm32f0xx.o(.constdata) for APBPrescTable
    stm32f0xx_ll_rcc.o(i.RCC_GetSystemClockFreq) refers to stm32f0xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SYS) for RCC_PLL_GetFreqDomain_SYS
    stm32f0xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SYS) refers to uidiv.o(.text) for __aeabi_uidivmod
    stm32f0xx_hal_rcc.o(i.HAL_RCC_ClockConfig) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32f0xx_hal_rcc.o(i.HAL_RCC_ClockConfig) refers to stm32f0xx_hal_rcc.o(i.HAL_RCC_GetSysClockFreq) for HAL_RCC_GetSysClockFreq
    stm32f0xx_hal_rcc.o(i.HAL_RCC_ClockConfig) refers to stm32f0xx_hal.o(i.HAL_InitTick) for HAL_InitTick
    stm32f0xx_hal_rcc.o(i.HAL_RCC_ClockConfig) refers to system_stm32f0xx.o(.constdata) for AHBPrescTable
    stm32f0xx_hal_rcc.o(i.HAL_RCC_ClockConfig) refers to system_stm32f0xx.o(.data) for SystemCoreClock
    stm32f0xx_hal_rcc.o(i.HAL_RCC_DeInit) refers to system_stm32f0xx.o(.data) for SystemCoreClock
    stm32f0xx_hal_rcc.o(i.HAL_RCC_GetHCLKFreq) refers to system_stm32f0xx.o(.data) for SystemCoreClock
    stm32f0xx_hal_rcc.o(i.HAL_RCC_GetPCLK1Freq) refers to system_stm32f0xx.o(.data) for SystemCoreClock
    stm32f0xx_hal_rcc.o(i.HAL_RCC_GetPCLK1Freq) refers to system_stm32f0xx.o(.constdata) for APBPrescTable
    stm32f0xx_hal_rcc.o(i.HAL_RCC_GetSysClockFreq) refers to uidiv.o(.text) for __aeabi_uidivmod
    stm32f0xx_hal_rcc.o(i.HAL_RCC_MCOConfig) refers to stm32f0xx_hal_gpio.o(i.HAL_GPIO_Init) for HAL_GPIO_Init
    stm32f0xx_hal_rcc.o(i.HAL_RCC_NMI_IRQHandler) refers to stm32f0xx_hal_rcc.o(i.HAL_RCC_CSSCallback) for HAL_RCC_CSSCallback
    stm32f0xx_hal_rcc.o(i.HAL_RCC_OscConfig) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32f0xx_hal_rcc_ex.o(i.HAL_RCCEx_GetPeriphCLKFreq) refers to stm32f0xx_hal_rcc.o(i.HAL_RCC_GetPCLK1Freq) for HAL_RCC_GetPCLK1Freq
    stm32f0xx_hal_rcc_ex.o(i.HAL_RCCEx_GetPeriphCLKFreq) refers to stm32f0xx_hal_rcc.o(i.HAL_RCC_GetSysClockFreq) for HAL_RCC_GetSysClockFreq
    stm32f0xx_hal_rcc_ex.o(i.HAL_RCCEx_PeriphCLKConfig) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32f0xx_hal.o(i.HAL_DeInit) refers to stm32f0xx_hal.o(i.HAL_MspDeInit) for HAL_MspDeInit
    stm32f0xx_hal.o(i.HAL_Delay) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32f0xx_hal.o(i.HAL_GetTick) refers to stm32f0xx_hal.o(.data) for .data
    stm32f0xx_hal.o(i.HAL_IncTick) refers to stm32f0xx_hal.o(.data) for .data
    stm32f0xx_hal.o(i.HAL_Init) refers to stm32f0xx_hal.o(i.HAL_InitTick) for HAL_InitTick
    stm32f0xx_hal.o(i.HAL_Init) refers to stm32f0xx_hal_msp.o(i.HAL_MspInit) for HAL_MspInit
    stm32f0xx_hal.o(i.HAL_InitTick) refers to stm32f0xx_hal_rcc.o(i.HAL_RCC_GetHCLKFreq) for HAL_RCC_GetHCLKFreq
    stm32f0xx_hal.o(i.HAL_InitTick) refers to uidiv.o(.text) for __aeabi_uidivmod
    stm32f0xx_hal.o(i.HAL_InitTick) refers to stm32f0xx_hal_cortex.o(i.HAL_SYSTICK_Config) for HAL_SYSTICK_Config
    stm32f0xx_hal.o(i.HAL_InitTick) refers to stm32f0xx_hal_cortex.o(i.HAL_NVIC_SetPriority) for HAL_NVIC_SetPriority
    stm32f0xx_hal_i2c.o(i.HAL_I2C_DeInit) refers to stm32f0xx_hal_i2c.o(i.HAL_I2C_MspDeInit) for HAL_I2C_MspDeInit
    stm32f0xx_hal_i2c.o(i.HAL_I2C_DisableListen_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Disable_IRQ) for I2C_Disable_IRQ
    stm32f0xx_hal_i2c.o(i.HAL_I2C_ER_IRQHandler) refers to stm32f0xx_hal_i2c.o(i.I2C_ITError) for I2C_ITError
    stm32f0xx_hal_i2c.o(i.HAL_I2C_EnableListen_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32f0xx_hal_i2c.o(i.HAL_I2C_EnableListen_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Slave_ISR_IT) for I2C_Slave_ISR_IT
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Init) refers to stm32f0xx_hal_i2c.o(i.HAL_I2C_MspInit) for HAL_I2C_MspInit
    stm32f0xx_hal_i2c.o(i.HAL_I2C_IsDeviceReady) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32f0xx_hal_i2c.o(i.HAL_I2C_IsDeviceReady) refers to stm32f0xx_hal_i2c.o(i.I2C_WaitOnFlagUntilTimeout) for I2C_WaitOnFlagUntilTimeout
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Abort_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Disable_IRQ) for I2C_Disable_IRQ
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Abort_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Abort_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Receive) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Receive) refers to stm32f0xx_hal_i2c.o(i.I2C_WaitOnFlagUntilTimeout) for I2C_WaitOnFlagUntilTimeout
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Receive) refers to stm32f0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Receive) refers to stm32f0xx_hal_i2c.o(i.I2C_WaitOnRXNEFlagUntilTimeout) for I2C_WaitOnRXNEFlagUntilTimeout
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Receive) refers to stm32f0xx_hal_i2c.o(i.I2C_WaitOnSTOPFlagUntilTimeout) for I2C_WaitOnSTOPFlagUntilTimeout
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Receive_DMA) refers to stm32f0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Receive_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Receive_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Receive_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_DMA) for I2C_Master_ISR_DMA
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Receive_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_DMAMasterReceiveCplt) for I2C_DMAMasterReceiveCplt
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Receive_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_DMAError) for I2C_DMAError
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Receive_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_IT) for I2C_Master_ISR_IT
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Receive_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Receive_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Receive_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_IT) for I2C_Master_ISR_IT
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Sequential_Receive_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Sequential_Receive_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Sequential_Receive_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_IT) for I2C_Master_ISR_IT
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Sequential_Transmit_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Sequential_Transmit_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Sequential_Transmit_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_IT) for I2C_Master_ISR_IT
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit) refers to stm32f0xx_hal_i2c.o(i.I2C_WaitOnFlagUntilTimeout) for I2C_WaitOnFlagUntilTimeout
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit) refers to stm32f0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit) refers to stm32f0xx_hal_i2c.o(i.I2C_WaitOnTXISFlagUntilTimeout) for I2C_WaitOnTXISFlagUntilTimeout
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit) refers to stm32f0xx_hal_i2c.o(i.I2C_WaitOnSTOPFlagUntilTimeout) for I2C_WaitOnSTOPFlagUntilTimeout
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit_DMA) refers to stm32f0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_DMA) for I2C_Master_ISR_DMA
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_DMAMasterTransmitCplt) for I2C_DMAMasterTransmitCplt
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_DMAError) for I2C_DMAError
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_IT) for I2C_Master_ISR_IT
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_IT) for I2C_Master_ISR_IT
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Read) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Read) refers to stm32f0xx_hal_i2c.o(i.I2C_WaitOnFlagUntilTimeout) for I2C_WaitOnFlagUntilTimeout
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Read) refers to stm32f0xx_hal_i2c.o(i.I2C_RequestMemoryRead) for I2C_RequestMemoryRead
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Read) refers to stm32f0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Read) refers to stm32f0xx_hal_i2c.o(i.I2C_WaitOnSTOPFlagUntilTimeout) for I2C_WaitOnSTOPFlagUntilTimeout
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_DMA) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_RequestMemoryRead) for I2C_RequestMemoryRead
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_DMA) refers to stm32f0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_DMA) for I2C_Master_ISR_DMA
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_DMAMasterReceiveCplt) for I2C_DMAMasterReceiveCplt
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_DMAError) for I2C_DMAError
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_IT) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_RequestMemoryRead) for I2C_RequestMemoryRead
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_IT) for I2C_Master_ISR_IT
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Write) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Write) refers to stm32f0xx_hal_i2c.o(i.I2C_WaitOnFlagUntilTimeout) for I2C_WaitOnFlagUntilTimeout
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Write) refers to stm32f0xx_hal_i2c.o(i.I2C_RequestMemoryWrite) for I2C_RequestMemoryWrite
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Write) refers to stm32f0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Write) refers to stm32f0xx_hal_i2c.o(i.I2C_WaitOnTXISFlagUntilTimeout) for I2C_WaitOnTXISFlagUntilTimeout
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Write) refers to stm32f0xx_hal_i2c.o(i.I2C_WaitOnSTOPFlagUntilTimeout) for I2C_WaitOnSTOPFlagUntilTimeout
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_DMA) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_RequestMemoryWrite) for I2C_RequestMemoryWrite
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_DMA) refers to stm32f0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_DMA) for I2C_Master_ISR_DMA
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_DMAMasterTransmitCplt) for I2C_DMAMasterTransmitCplt
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_DMAError) for I2C_DMAError
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_IT) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_RequestMemoryWrite) for I2C_RequestMemoryWrite
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_IT) for I2C_Master_ISR_IT
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive) refers to stm32f0xx_hal_i2c.o(i.I2C_WaitOnFlagUntilTimeout) for I2C_WaitOnFlagUntilTimeout
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive) refers to stm32f0xx_hal_i2c.o(i.I2C_WaitOnRXNEFlagUntilTimeout) for I2C_WaitOnRXNEFlagUntilTimeout
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive) refers to stm32f0xx_hal_i2c.o(i.I2C_WaitOnSTOPFlagUntilTimeout) for I2C_WaitOnSTOPFlagUntilTimeout
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive_DMA) refers to stm32f0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_Slave_ISR_DMA) for I2C_Slave_ISR_DMA
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_DMASlaveReceiveCplt) for I2C_DMASlaveReceiveCplt
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_DMAError) for I2C_DMAError
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Slave_ISR_IT) for I2C_Slave_ISR_IT
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Sequential_Receive_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Disable_IRQ) for I2C_Disable_IRQ
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Sequential_Receive_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Sequential_Receive_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Slave_ISR_IT) for I2C_Slave_ISR_IT
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Sequential_Transmit_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Disable_IRQ) for I2C_Disable_IRQ
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Sequential_Transmit_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Sequential_Transmit_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Slave_ISR_IT) for I2C_Slave_ISR_IT
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit) refers to stm32f0xx_hal_i2c.o(i.I2C_WaitOnFlagUntilTimeout) for I2C_WaitOnFlagUntilTimeout
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit) refers to stm32f0xx_hal_i2c.o(i.I2C_WaitOnTXISFlagUntilTimeout) for I2C_WaitOnTXISFlagUntilTimeout
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit) refers to stm32f0xx_hal_i2c.o(i.I2C_WaitOnSTOPFlagUntilTimeout) for I2C_WaitOnSTOPFlagUntilTimeout
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit_DMA) refers to stm32f0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_Slave_ISR_DMA) for I2C_Slave_ISR_DMA
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_DMASlaveTransmitCplt) for I2C_DMASlaveTransmitCplt
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_DMAError) for I2C_DMAError
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Slave_ISR_IT) for I2C_Slave_ISR_IT
    stm32f0xx_hal_i2c.o(i.I2C_DMAAbort) refers to stm32f0xx_hal_i2c.o(i.HAL_I2C_ErrorCallback) for HAL_I2C_ErrorCallback
    stm32f0xx_hal_i2c.o(i.I2C_DMAAbort) refers to stm32f0xx_hal_i2c.o(i.HAL_I2C_AbortCpltCallback) for HAL_I2C_AbortCpltCallback
    stm32f0xx_hal_i2c.o(i.I2C_DMAError) refers to stm32f0xx_hal_i2c.o(i.I2C_ITError) for I2C_ITError
    stm32f0xx_hal_i2c.o(i.I2C_DMAMasterReceiveCplt) refers to stm32f0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32f0xx_hal_i2c.o(i.I2C_DMAMasterReceiveCplt) refers to stm32f0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32f0xx_hal_i2c.o(i.I2C_DMAMasterTransmitCplt) refers to stm32f0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32f0xx_hal_i2c.o(i.I2C_DMAMasterTransmitCplt) refers to stm32f0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
    stm32f0xx_hal_i2c.o(i.I2C_Enable_IRQ) refers to stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_DMA) for I2C_Master_ISR_DMA
    stm32f0xx_hal_i2c.o(i.I2C_Enable_IRQ) refers to stm32f0xx_hal_i2c.o(i.I2C_Slave_ISR_DMA) for I2C_Slave_ISR_DMA
    stm32f0xx_hal_i2c.o(i.I2C_ITAddrCplt) refers to stm32f0xx_hal_i2c.o(i.I2C_Disable_IRQ) for I2C_Disable_IRQ
    stm32f0xx_hal_i2c.o(i.I2C_ITAddrCplt) refers to stm32f0xx_hal_i2c.o(i.HAL_I2C_AddrCallback) for HAL_I2C_AddrCallback
    stm32f0xx_hal_i2c.o(i.I2C_ITError) refers to stm32f0xx_hal_i2c.o(i.I2C_Disable_IRQ) for I2C_Disable_IRQ
    stm32f0xx_hal_i2c.o(i.I2C_ITError) refers to stm32f0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
    stm32f0xx_hal_i2c.o(i.I2C_ITError) refers to stm32f0xx_hal_i2c.o(i.HAL_I2C_ErrorCallback) for HAL_I2C_ErrorCallback
    stm32f0xx_hal_i2c.o(i.I2C_ITError) refers to stm32f0xx_hal_i2c.o(i.HAL_I2C_AbortCpltCallback) for HAL_I2C_AbortCpltCallback
    stm32f0xx_hal_i2c.o(i.I2C_ITError) refers to stm32f0xx_hal_i2c.o(i.I2C_DMAAbort) for I2C_DMAAbort
    stm32f0xx_hal_i2c.o(i.I2C_ITError) refers to stm32f0xx_hal_i2c.o(i.I2C_Slave_ISR_IT) for I2C_Slave_ISR_IT
    stm32f0xx_hal_i2c.o(i.I2C_ITListenCplt) refers to stm32f0xx_hal_i2c.o(i.I2C_Disable_IRQ) for I2C_Disable_IRQ
    stm32f0xx_hal_i2c.o(i.I2C_ITListenCplt) refers to stm32f0xx_hal_i2c.o(i.HAL_I2C_ListenCpltCallback) for HAL_I2C_ListenCpltCallback
    stm32f0xx_hal_i2c.o(i.I2C_ITMasterCplt) refers to stm32f0xx_hal_i2c.o(i.I2C_Flush_TXDR) for I2C_Flush_TXDR
    stm32f0xx_hal_i2c.o(i.I2C_ITMasterCplt) refers to stm32f0xx_hal_i2c.o(i.I2C_Disable_IRQ) for I2C_Disable_IRQ
    stm32f0xx_hal_i2c.o(i.I2C_ITMasterCplt) refers to stm32f0xx_hal_i2c.o(i.HAL_I2C_MasterRxCpltCallback) for HAL_I2C_MasterRxCpltCallback
    stm32f0xx_hal_i2c.o(i.I2C_ITMasterCplt) refers to stm32f0xx_hal_i2c.o(i.I2C_ITError) for I2C_ITError
    stm32f0xx_hal_i2c.o(i.I2C_ITMasterCplt) refers to stm32f0xx_hal_i2c.o(i.HAL_I2C_MasterTxCpltCallback) for HAL_I2C_MasterTxCpltCallback
    stm32f0xx_hal_i2c.o(i.I2C_ITMasterCplt) refers to stm32f0xx_hal_i2c.o(i.HAL_I2C_MemTxCpltCallback) for HAL_I2C_MemTxCpltCallback
    stm32f0xx_hal_i2c.o(i.I2C_ITMasterCplt) refers to stm32f0xx_hal_i2c.o(i.HAL_I2C_MemRxCpltCallback) for HAL_I2C_MemRxCpltCallback
    stm32f0xx_hal_i2c.o(i.I2C_ITMasterSequentialCplt) refers to stm32f0xx_hal_i2c.o(i.I2C_Disable_IRQ) for I2C_Disable_IRQ
    stm32f0xx_hal_i2c.o(i.I2C_ITMasterSequentialCplt) refers to stm32f0xx_hal_i2c.o(i.HAL_I2C_MasterRxCpltCallback) for HAL_I2C_MasterRxCpltCallback
    stm32f0xx_hal_i2c.o(i.I2C_ITMasterSequentialCplt) refers to stm32f0xx_hal_i2c.o(i.HAL_I2C_MasterTxCpltCallback) for HAL_I2C_MasterTxCpltCallback
    stm32f0xx_hal_i2c.o(i.I2C_ITSlaveCplt) refers to stm32f0xx_hal_i2c.o(i.I2C_Disable_IRQ) for I2C_Disable_IRQ
    stm32f0xx_hal_i2c.o(i.I2C_ITSlaveCplt) refers to stm32f0xx_hal_i2c.o(i.I2C_Flush_TXDR) for I2C_Flush_TXDR
    stm32f0xx_hal_i2c.o(i.I2C_ITSlaveCplt) refers to stm32f0xx_hal_i2c.o(i.I2C_ITError) for I2C_ITError
    stm32f0xx_hal_i2c.o(i.I2C_ITSlaveCplt) refers to stm32f0xx_hal_i2c.o(i.I2C_ITListenCplt) for I2C_ITListenCplt
    stm32f0xx_hal_i2c.o(i.I2C_ITSlaveCplt) refers to stm32f0xx_hal_i2c.o(i.HAL_I2C_ListenCpltCallback) for HAL_I2C_ListenCpltCallback
    stm32f0xx_hal_i2c.o(i.I2C_ITSlaveCplt) refers to stm32f0xx_hal_i2c.o(i.HAL_I2C_SlaveTxCpltCallback) for HAL_I2C_SlaveTxCpltCallback
    stm32f0xx_hal_i2c.o(i.I2C_ITSlaveCplt) refers to stm32f0xx_hal_i2c.o(i.HAL_I2C_SlaveRxCpltCallback) for HAL_I2C_SlaveRxCpltCallback
    stm32f0xx_hal_i2c.o(i.I2C_ITSlaveSequentialCplt) refers to stm32f0xx_hal_i2c.o(i.I2C_Disable_IRQ) for I2C_Disable_IRQ
    stm32f0xx_hal_i2c.o(i.I2C_ITSlaveSequentialCplt) refers to stm32f0xx_hal_i2c.o(i.HAL_I2C_SlaveRxCpltCallback) for HAL_I2C_SlaveRxCpltCallback
    stm32f0xx_hal_i2c.o(i.I2C_ITSlaveSequentialCplt) refers to stm32f0xx_hal_i2c.o(i.HAL_I2C_SlaveTxCpltCallback) for HAL_I2C_SlaveTxCpltCallback
    stm32f0xx_hal_i2c.o(i.I2C_IsAcknowledgeFailed) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32f0xx_hal_i2c.o(i.I2C_IsAcknowledgeFailed) refers to stm32f0xx_hal_i2c.o(i.I2C_Flush_TXDR) for I2C_Flush_TXDR
    stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_Enable_IRQ) for I2C_Enable_IRQ
    stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_Flush_TXDR) for I2C_Flush_TXDR
    stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_ITError) for I2C_ITError
    stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_ITMasterCplt) for I2C_ITMasterCplt
    stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Flush_TXDR) for I2C_Flush_TXDR
    stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_ITError) for I2C_ITError
    stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_ITMasterCplt) for I2C_ITMasterCplt
    stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_ITMasterSequentialCplt) for I2C_ITMasterSequentialCplt
    stm32f0xx_hal_i2c.o(i.I2C_RequestMemoryRead) refers to stm32f0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32f0xx_hal_i2c.o(i.I2C_RequestMemoryRead) refers to stm32f0xx_hal_i2c.o(i.I2C_WaitOnTXISFlagUntilTimeout) for I2C_WaitOnTXISFlagUntilTimeout
    stm32f0xx_hal_i2c.o(i.I2C_RequestMemoryRead) refers to stm32f0xx_hal_i2c.o(i.I2C_WaitOnFlagUntilTimeout) for I2C_WaitOnFlagUntilTimeout
    stm32f0xx_hal_i2c.o(i.I2C_RequestMemoryWrite) refers to stm32f0xx_hal_i2c.o(i.I2C_TransferConfig) for I2C_TransferConfig
    stm32f0xx_hal_i2c.o(i.I2C_RequestMemoryWrite) refers to stm32f0xx_hal_i2c.o(i.I2C_WaitOnTXISFlagUntilTimeout) for I2C_WaitOnTXISFlagUntilTimeout
    stm32f0xx_hal_i2c.o(i.I2C_RequestMemoryWrite) refers to stm32f0xx_hal_i2c.o(i.I2C_WaitOnFlagUntilTimeout) for I2C_WaitOnFlagUntilTimeout
    stm32f0xx_hal_i2c.o(i.I2C_Slave_ISR_DMA) refers to stm32f0xx_hal_i2c.o(i.I2C_ITSlaveCplt) for I2C_ITSlaveCplt
    stm32f0xx_hal_i2c.o(i.I2C_Slave_ISR_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_ITListenCplt) for I2C_ITListenCplt
    stm32f0xx_hal_i2c.o(i.I2C_Slave_ISR_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_Flush_TXDR) for I2C_Flush_TXDR
    stm32f0xx_hal_i2c.o(i.I2C_Slave_ISR_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_ITAddrCplt) for I2C_ITAddrCplt
    stm32f0xx_hal_i2c.o(i.I2C_Slave_ISR_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_ITSlaveSequentialCplt) for I2C_ITSlaveSequentialCplt
    stm32f0xx_hal_i2c.o(i.I2C_Slave_ISR_IT) refers to stm32f0xx_hal_i2c.o(i.I2C_ITSlaveCplt) for I2C_ITSlaveCplt
    stm32f0xx_hal_i2c.o(i.I2C_WaitOnFlagUntilTimeout) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32f0xx_hal_i2c.o(i.I2C_WaitOnRXNEFlagUntilTimeout) refers to stm32f0xx_hal_i2c.o(i.I2C_IsAcknowledgeFailed) for I2C_IsAcknowledgeFailed
    stm32f0xx_hal_i2c.o(i.I2C_WaitOnRXNEFlagUntilTimeout) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32f0xx_hal_i2c.o(i.I2C_WaitOnSTOPFlagUntilTimeout) refers to stm32f0xx_hal_i2c.o(i.I2C_IsAcknowledgeFailed) for I2C_IsAcknowledgeFailed
    stm32f0xx_hal_i2c.o(i.I2C_WaitOnSTOPFlagUntilTimeout) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32f0xx_hal_i2c.o(i.I2C_WaitOnTXISFlagUntilTimeout) refers to stm32f0xx_hal_i2c.o(i.I2C_IsAcknowledgeFailed) for I2C_IsAcknowledgeFailed
    stm32f0xx_hal_i2c.o(i.I2C_WaitOnTXISFlagUntilTimeout) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32f0xx_hal_gpio.o(i.HAL_GPIO_EXTI_IRQHandler) refers to stm32f0xx_hal_gpio.o(i.HAL_GPIO_EXTI_Callback) for HAL_GPIO_EXTI_Callback
    stm32f0xx_hal_dma.o(i.DMA_CalcBaseAndBitshift) refers to uidiv.o(.text) for __aeabi_uidivmod
    stm32f0xx_hal_dma.o(i.HAL_DMA_DeInit) refers to stm32f0xx_hal_dma.o(i.DMA_CalcBaseAndBitshift) for DMA_CalcBaseAndBitshift
    stm32f0xx_hal_dma.o(i.HAL_DMA_Init) refers to stm32f0xx_hal_dma.o(i.DMA_CalcBaseAndBitshift) for DMA_CalcBaseAndBitshift
    stm32f0xx_hal_dma.o(i.HAL_DMA_PollForTransfer) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32f0xx_hal_dma.o(i.HAL_DMA_Start) refers to stm32f0xx_hal_dma.o(i.DMA_SetConfig) for DMA_SetConfig
    stm32f0xx_hal_dma.o(i.HAL_DMA_Start_IT) refers to stm32f0xx_hal_dma.o(i.DMA_SetConfig) for DMA_SetConfig
    stm32f0xx_hal_dma.o(i.HAL_DMA_UnRegisterCallback) refers to kbus.o(i.__ARM_common_switch8) for __ARM_common_switch8
    stm32f0xx_hal_cortex.o(i.HAL_NVIC_SetPriority) refers to stm32f0xx_hal_cortex.o(i.NVIC_SetPriority) for NVIC_SetPriority
    stm32f0xx_hal_cortex.o(i.HAL_SYSTICK_Config) refers to stm32f0xx_hal_cortex.o(i.NVIC_SetPriority) for NVIC_SetPriority
    stm32f0xx_hal_cortex.o(i.HAL_SYSTICK_IRQHandler) refers to main.o(i.HAL_SYSTICK_Callback) for HAL_SYSTICK_Callback
    stm32f0xx_hal_flash.o(i.FLASH_Program_HalfWord) refers to stm32f0xx_hal_flash.o(.bss) for .bss
    stm32f0xx_hal_flash.o(i.FLASH_SetErrorCode) refers to stm32f0xx_hal_flash.o(.bss) for .bss
    stm32f0xx_hal_flash.o(i.FLASH_WaitForLastOperation) refers to stm32f0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
    stm32f0xx_hal_flash.o(i.FLASH_WaitForLastOperation) refers to stm32f0xx_hal_flash.o(i.FLASH_SetErrorCode) for FLASH_SetErrorCode
    stm32f0xx_hal_flash.o(i.HAL_FLASH_GetError) refers to stm32f0xx_hal_flash.o(.bss) for .bss
    stm32f0xx_hal_flash.o(i.HAL_FLASH_IRQHandler) refers to stm32f0xx_hal_flash.o(i.FLASH_SetErrorCode) for FLASH_SetErrorCode
    stm32f0xx_hal_flash.o(i.HAL_FLASH_IRQHandler) refers to stm32f0xx_hal_flash.o(i.HAL_FLASH_OperationErrorCallback) for HAL_FLASH_OperationErrorCallback
    stm32f0xx_hal_flash.o(i.HAL_FLASH_IRQHandler) refers to stm32f0xx_hal_flash.o(i.FLASH_Program_HalfWord) for FLASH_Program_HalfWord
    stm32f0xx_hal_flash.o(i.HAL_FLASH_IRQHandler) refers to stm32f0xx_hal_flash.o(i.HAL_FLASH_EndOfOperationCallback) for HAL_FLASH_EndOfOperationCallback
    stm32f0xx_hal_flash.o(i.HAL_FLASH_IRQHandler) refers to stm32f0xx_hal_flash_ex.o(i.FLASH_PageErase) for FLASH_PageErase
    stm32f0xx_hal_flash.o(i.HAL_FLASH_IRQHandler) refers to stm32f0xx_hal_flash.o(.bss) for .bss
    stm32f0xx_hal_flash.o(i.HAL_FLASH_OB_Launch) refers to stm32f0xx_hal_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
    stm32f0xx_hal_flash.o(i.HAL_FLASH_Program) refers to stm32f0xx_hal_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
    stm32f0xx_hal_flash.o(i.HAL_FLASH_Program) refers to llushr.o(.text) for __aeabi_llsr
    stm32f0xx_hal_flash.o(i.HAL_FLASH_Program) refers to stm32f0xx_hal_flash.o(i.FLASH_Program_HalfWord) for FLASH_Program_HalfWord
    stm32f0xx_hal_flash.o(i.HAL_FLASH_Program) refers to stm32f0xx_hal_flash.o(.bss) for .bss
    stm32f0xx_hal_flash.o(i.HAL_FLASH_Program_IT) refers to stm32f0xx_hal_flash.o(i.FLASH_Program_HalfWord) for FLASH_Program_HalfWord
    stm32f0xx_hal_flash.o(i.HAL_FLASH_Program_IT) refers to stm32f0xx_hal_flash.o(.bss) for .bss
    stm32f0xx_hal_flash_ex.o(i.FLASH_MassErase) refers to stm32f0xx_hal_flash.o(.bss) for pFlash
    stm32f0xx_hal_flash_ex.o(i.FLASH_OB_DisableWRP) refers to stm32f0xx_hal_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
    stm32f0xx_hal_flash_ex.o(i.FLASH_OB_DisableWRP) refers to stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBErase) for HAL_FLASHEx_OBErase
    stm32f0xx_hal_flash_ex.o(i.FLASH_OB_DisableWRP) refers to stm32f0xx_hal_flash.o(.bss) for pFlash
    stm32f0xx_hal_flash_ex.o(i.FLASH_OB_EnableWRP) refers to stm32f0xx_hal_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
    stm32f0xx_hal_flash_ex.o(i.FLASH_OB_EnableWRP) refers to stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBErase) for HAL_FLASHEx_OBErase
    stm32f0xx_hal_flash_ex.o(i.FLASH_OB_EnableWRP) refers to stm32f0xx_hal_flash.o(.bss) for pFlash
    stm32f0xx_hal_flash_ex.o(i.FLASH_OB_RDP_LevelConfig) refers to stm32f0xx_hal_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
    stm32f0xx_hal_flash_ex.o(i.FLASH_OB_RDP_LevelConfig) refers to stm32f0xx_hal_flash.o(.bss) for pFlash
    stm32f0xx_hal_flash_ex.o(i.FLASH_PageErase) refers to stm32f0xx_hal_flash.o(.bss) for pFlash
    stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase) refers to stm32f0xx_hal_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
    stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase) refers to stm32f0xx_hal_flash_ex.o(i.FLASH_MassErase) for FLASH_MassErase
    stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase) refers to stm32f0xx_hal_flash_ex.o(i.FLASH_PageErase) for FLASH_PageErase
    stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase) refers to stm32f0xx_hal_flash.o(.bss) for pFlash
    stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase_IT) refers to stm32f0xx_hal_flash_ex.o(i.FLASH_PageErase) for FLASH_PageErase
    stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase_IT) refers to stm32f0xx_hal_flash_ex.o(i.FLASH_MassErase) for FLASH_MassErase
    stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase_IT) refers to stm32f0xx_hal_flash.o(.bss) for pFlash
    stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBErase) refers to stm32f0xx_hal_flash_ex.o(i.FLASH_OB_GetRDP) for FLASH_OB_GetRDP
    stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBErase) refers to stm32f0xx_hal_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
    stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBErase) refers to stm32f0xx_hal_flash_ex.o(i.FLASH_OB_RDP_LevelConfig) for FLASH_OB_RDP_LevelConfig
    stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBErase) refers to stm32f0xx_hal_flash.o(.bss) for pFlash
    stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBGetConfig) refers to stm32f0xx_hal_flash_ex.o(i.FLASH_OB_GetRDP) for FLASH_OB_GetRDP
    stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBProgram) refers to stm32f0xx_hal_flash_ex.o(i.FLASH_OB_DisableWRP) for FLASH_OB_DisableWRP
    stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBProgram) refers to stm32f0xx_hal_flash_ex.o(i.FLASH_OB_EnableWRP) for FLASH_OB_EnableWRP
    stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBProgram) refers to stm32f0xx_hal_flash_ex.o(i.FLASH_OB_RDP_LevelConfig) for FLASH_OB_RDP_LevelConfig
    stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBProgram) refers to stm32f0xx_hal_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
    stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBProgram) refers to stm32f0xx_hal_flash.o(.bss) for pFlash
    stm32f0xx_ll_utils.o(i.LL_Init1msTick) refers to uidiv.o(.text) for __aeabi_uidivmod
    stm32f0xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSE) refers to stm32f0xx_ll_utils.o(i.UTILS_PLL_IsBusy) for UTILS_PLL_IsBusy
    stm32f0xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSE) refers to stm32f0xx_ll_utils.o(i.UTILS_GetPLLOutputFrequency) for UTILS_GetPLLOutputFrequency
    stm32f0xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSE) refers to stm32f0xx_ll_utils.o(i.LL_RCC_PLL_ConfigDomain_SYS) for LL_RCC_PLL_ConfigDomain_SYS
    stm32f0xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSE) refers to stm32f0xx_ll_utils.o(i.UTILS_EnablePLLAndSwitchSystem) for UTILS_EnablePLLAndSwitchSystem
    stm32f0xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSI) refers to stm32f0xx_ll_utils.o(i.UTILS_PLL_IsBusy) for UTILS_PLL_IsBusy
    stm32f0xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSI) refers to stm32f0xx_ll_utils.o(i.UTILS_GetPLLOutputFrequency) for UTILS_GetPLLOutputFrequency
    stm32f0xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSI) refers to stm32f0xx_ll_utils.o(i.LL_RCC_PLL_ConfigDomain_SYS) for LL_RCC_PLL_ConfigDomain_SYS
    stm32f0xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSI) refers to stm32f0xx_ll_utils.o(i.UTILS_EnablePLLAndSwitchSystem) for UTILS_EnablePLLAndSwitchSystem
    stm32f0xx_ll_utils.o(i.LL_SetSystemCoreClock) refers to system_stm32f0xx.o(.data) for SystemCoreClock
    stm32f0xx_ll_utils.o(i.UTILS_EnablePLLAndSwitchSystem) refers to stm32f0xx_ll_utils.o(i.UTILS_SetFlashLatency) for UTILS_SetFlashLatency
    stm32f0xx_ll_utils.o(i.UTILS_EnablePLLAndSwitchSystem) refers to system_stm32f0xx.o(.constdata) for AHBPrescTable
    stm32f0xx_ll_utils.o(i.UTILS_EnablePLLAndSwitchSystem) refers to system_stm32f0xx.o(.data) for SystemCoreClock
    stm32f0xx_ll_utils.o(i.UTILS_GetPLLOutputFrequency) refers to uidiv.o(.text) for __aeabi_uidivmod
    stm32f0xx_ll_tim.o(i.LL_TIM_DeInit) refers to stm32f0xx_ll_tim.o(i.LL_APB1_GRP2_ForceReset) for LL_APB1_GRP2_ForceReset
    stm32f0xx_ll_tim.o(i.LL_TIM_DeInit) refers to stm32f0xx_ll_tim.o(i.LL_APB1_GRP2_ReleaseReset) for LL_APB1_GRP2_ReleaseReset
    stm32f0xx_ll_tim.o(i.LL_TIM_OC_Init) refers to stm32f0xx_ll_tim.o(i.OC4Config) for OC4Config
    stm32f0xx_ll_tim.o(i.LL_TIM_OC_Init) refers to stm32f0xx_ll_tim.o(i.OC1Config) for OC1Config
    stm32f0xx_ll_tim.o(i.LL_TIM_OC_Init) refers to stm32f0xx_ll_tim.o(i.OC2Config) for OC2Config
    stm32f0xx_ll_tim.o(i.LL_TIM_OC_Init) refers to stm32f0xx_ll_tim.o(i.OC3Config) for OC3Config
    ceil.o(i.__softfp_ceil) refers (Special) to iusefp.o(.text) for __I$use$fp
    ceil.o(i.__softfp_ceil) refers to ceil.o(i.ceil) for ceil
    ceil.o(i.ceil) refers (Special) to iusefp.o(.text) for __I$use$fp
    ceil.o(i.ceil) refers to dadd.o(.text) for __aeabi_dadd
    ceil.o(i.ceil) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
    floor.o(i.__softfp_floor) refers (Special) to iusefp.o(.text) for __I$use$fp
    floor.o(i.__softfp_floor) refers to floor.o(i.floor) for floor
    floor.o(i.floor) refers (Special) to iusefp.o(.text) for __I$use$fp
    floor.o(i.floor) refers to dadd.o(.text) for __aeabi_dadd
    floor.o(i.floor) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
    rint.o(i.rint) refers (Special) to iusefp.o(.text) for __I$use$fp
    rint.o(i.rint) refers to drnd.o(.text) for _drnd
    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
    ldiv.o(.text) refers to uldiv.o(.text) for __aeabi_uldivmod
    printfb.o(i.__0fprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
    printfb.o(i.__0fprintf$bare) refers to fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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 fputc.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
    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
    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
    dfixui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    dfixui.o(.text) refers to llushr.o(.text) for __aeabi_llsr
    cdrcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    entry2.o(.ARM.Collect$$$$00000001) refers to entry2.o(.ARM.Collect$$$$00002712) for __lit__00000000
    entry2.o(.ARM.Collect$$$$00002712) refers to startup_stm32f030x8.o(STACK) for __initial_sp
    entry2.o(__vectab_stack_and_reset_area) refers to startup_stm32f030x8.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
    fputc.o(i.fputc) refers (Special) to iusesemip.o(.text) for __I$use$semihosting$fputc
    fputc.o(i.fputc) refers (Special) to semi.o(.text) for __semihosting_library_function
    uldiv.o(.text) refers to llushr.o(.text) for __aeabi_llsr
    uldiv.o(.text) refers to llshl.o(.text) for __aeabi_llsl
    depilogue.o(.text) refers to depilogue.o(i.__ARM_clz) for __ARM_clz
    depilogue.o(.text) refers to llshl.o(.text) for __aeabi_llsl
    depilogue.o(.text) refers to llushr.o(.text) for __aeabi_llsr
    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
    functions.o(i.GetuS) refers to functions.o(.data) for .data
    functions.o(i.GetTick) refers to functions.o(.data) for .data
 
 
==============================================================================
 
Removing Unused input sections from the image.
 
    Removing startup_stm32f030x8.o(HEAP), (512 bytes).
    Removing debug.o(.rev16_text), (4 bytes).
    Removing debug.o(.revsh_text), (4 bytes).
    Removing debug.o(i.FormatHex), (56 bytes).
    Removing debug.o(i.ShowRunningInfo), (220 bytes).
    Removing debug.o(.conststring), (67 bytes).
    Removing debug.o(.data), (4 bytes).
    Removing functions.o(.rev16_text), (4 bytes).
    Removing functions.o(.revsh_text), (4 bytes).
    Removing functions.o(i.DelayUs), (30 bytes).
    Removing functions.o(i.Input165), (60 bytes).
    Removing functions.o(i.Input165_8), (52 bytes).
    Removing functions.o(i.Output595_16), (48 bytes).
    Removing functions.o(i.Output595_8), (48 bytes).
    Removing functions.o(i.ReadConfig_0), (4 bytes).
    Removing functions.o(i.ReadConfig_1), (28 bytes).
    Removing functions.o(i.ReadConfig_11), (24 bytes).
    Removing functions.o(i.ReadConfig_2), (28 bytes).
    Removing functions.o(i.ReadConfig_3), (12 bytes).
    Removing functions.o(i.ReadConfig_4), (12 bytes).
    Removing functions.o(i.ToggleErr2Led), (20 bytes).
    Removing functions.o(i.ToggleErrLed), (20 bytes).
    Removing functions.o(i.ToggleOutStat), (16 bytes).
    Removing functions.o(i.ToggleRunLed), (20 bytes).
    Removing functions.o(i.TriggerPendSV), (16 bytes).
    Removing functions.o(i.Uart2SetDE), (10 bytes).
    Removing functions.o(i.Uart2TriggerSendDMA), (48 bytes).
    Removing functions.o(i.Uart2UnsetDE), (10 bytes).
    Removing functions.o(i.logData), (36 bytes).
    Removing functions.o(i.modbuscrc16test), (112 bytes).
    Removing functions.o(.constdata), (2 bytes).
    Removing functions.o(.conststring), (229 bytes).
    Removing globaldef.o(.bss), (128 bytes).
    Removing globaldef.o(.bss), (128 bytes).
    Removing globaldef.o(.data), (4 bytes).
    Removing globaldef.o(.data), (4 bytes).
    Removing globaldef.o(.data), (4 bytes).
    Removing globaldef.o(.data), (4 bytes).
    Removing globaldef.o(.data), (4 bytes).
    Removing globaldef.o(.data), (4 bytes).
    Removing globaldef.o(.data), (4 bytes).
    Removing kbus.o(.rev16_text), (4 bytes).
    Removing kbus.o(.revsh_text), (4 bytes).
    Removing kbus.o(i.KBusRepeaterFunc), (48 bytes).
    Removing kbus.o(i.KBusSlaveFunc), (96 bytes).
    Removing kbus.o(.bss), (64 bytes).
    Removing kbus.o(.data), (1 bytes).
    Removing kbus.o(.data), (4 bytes).
    Removing kbus.o(.data), (4 bytes).
    Removing kbus.o(.data), (4 bytes).
    Removing kbus.o(.data), (4 bytes).
    Removing kbus.o(.data), (4 bytes).
    Removing klink.o(.rev16_text), (4 bytes).
    Removing klink.o(.revsh_text), (4 bytes).
    Removing klink.o(.bss), (16 bytes).
    Removing klink.o(.bss), (256 bytes).
    Removing klink.o(.data), (1 bytes).
    Removing modbusrtu.o(i.ModBusCRC16), (4 bytes).
    Removing modbusrtu.o(i.mkReqPkg), (4 bytes).
    Removing myqueue.o(i.CopyData), (54 bytes).
    Removing myqueue.o(i.EmptyQueue), (18 bytes).
    Removing myqueue.o(i.PopOne), (28 bytes).
    Removing myqueue.o(i.PopOut), (22 bytes).
    Removing myqueue.o(i.PushOne), (34 bytes).
    Removing plcfunctions.o(.rev16_text), (4 bytes).
    Removing plcfunctions.o(.revsh_text), (4 bytes).
    Removing plcfunctions.o(i.GetTimerEV), (28 bytes).
    Removing plcfunctions.o(i.GetTimerSV), (28 bytes).
    Removing plcfunctions.o(i.IsTimerOn), (36 bytes).
    Removing plcfunctions.o(i.ResetTimer), (64 bytes).
    Removing plcfunctions.o(i.SetTimerValue), (52 bytes).
    Removing plcfunctions.o(.constdata), (604 bytes).
    Removing stm32f0xx_hal_msp.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_hal_msp.o(.revsh_text), (4 bytes).
    Removing kmachine.o(.rev16_text), (4 bytes).
    Removing kmachine.o(.revsh_text), (4 bytes).
    Removing kmachine.o(i.CheckSavedData), (4 bytes).
    Removing kmachine.o(i.LoadDefaultRunStat), (8 bytes).
    Removing kmachine.o(i.LoadFlashDatas), (12 bytes).
    Removing kmachine.o(i.ReadFactoryData), (20 bytes).
    Removing kmachine.o(i.ReadProgram), (52 bytes).
    Removing kmachine.o(i.is_pow_of_2), (14 bytes).
    Removing kmachine.o(i.next_pow_of_2), (30 bytes).
    Removing kmachine.o(.data), (4 bytes).
    Removing bsp.o(.rev16_text), (4 bytes).
    Removing bsp.o(.revsh_text), (4 bytes).
    Removing stm32f0xx_it.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_it.o(.revsh_text), (4 bytes).
    Removing main.o(.rev16_text), (4 bytes).
    Removing main.o(.revsh_text), (4 bytes).
    Removing main.o(i.HexToInt), (40 bytes).
    Removing main.o(.constdata), (34 bytes).
    Removing delay.o(.rev16_text), (4 bytes).
    Removing delay.o(.revsh_text), (4 bytes).
    Removing delay.o(i.Delay_Ms), (32 bytes).
    Removing delay.o(i.Delay_Us), (22 bytes).
    Removing gpio.o(.rev16_text), (4 bytes).
    Removing gpio.o(.revsh_text), (4 bytes).
    Removing gpio.o(i.GPIO_int), (2 bytes).
    Removing spi.o(.rev16_text), (4 bytes).
    Removing spi.o(.revsh_text), (4 bytes).
    Removing spi.o(i.SPI2_Int), (2 bytes).
    Removing spi.o(i.SpiIn), (44 bytes).
    Removing kwireless.o(.rev16_text), (4 bytes).
    Removing kwireless.o(.revsh_text), (4 bytes).
    Removing kwireless.o(i.KWLMasterProc), (4 bytes).
    Removing kwireless.o(i.KWLSlaveProc), (4 bytes).
    Removing kwireless.o(.constdata), (5 bytes).
    Removing kwireless.o(.constdata), (5 bytes).
    Removing kwireless.o(.data), (1 bytes).
    Removing kwireless.o(.data), (1 bytes).
    Removing radio.o(.rev16_text), (4 bytes).
    Removing radio.o(.revsh_text), (4 bytes).
    Removing radio.o(i.RadioOnRxTimeoutIrq), (24 bytes).
    Removing radio.o(i.RadioOnTxTimeoutIrq), (24 bytes).
    Removing radio.o(i.RadioReadFifo), (14 bytes).
    Removing radio.o(i.RadioTx), (10 bytes).
    Removing radio.o(i.RadioWriteFifo), (14 bytes).
    Removing sx126x.o(i.SX126xCalibrate), (14 bytes).
    Removing sx126x.o(i.SX126xClearDeviceErrors), (18 bytes).
    Removing sx126x.o(i.SX126xGetDeviceErrors), (18 bytes).
    Removing sx126x.o(i.SX126xGetRandom), (52 bytes).
    Removing sx126x.o(i.SX126xGetStatus), (22 bytes).
    Removing sx126x.o(i.SX126xSetDio3AsTcxoCtrl), (32 bytes).
    Removing sx126x.o(i.SX126xSetTxInfinitePreamble), (14 bytes).
    Removing sx126x-board.o(.rev16_text), (4 bytes).
    Removing sx126x-board.o(.revsh_text), (4 bytes).
    Removing sx126x-board.o(i.SX126xCheckRfFrequency), (4 bytes).
    Removing system_stm32f0xx.o(.rev16_text), (4 bytes).
    Removing system_stm32f0xx.o(.revsh_text), (4 bytes).
    Removing system_stm32f0xx.o(i.SystemCoreClockUpdate), (108 bytes).
    Removing stm32f0xx_ll_gpio.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_ll_gpio.o(.revsh_text), (4 bytes).
    Removing stm32f0xx_ll_gpio.o(i.LL_AHB1_GRP1_ForceReset), (16 bytes).
    Removing stm32f0xx_ll_gpio.o(i.LL_AHB1_GRP1_ReleaseReset), (16 bytes).
    Removing stm32f0xx_ll_gpio.o(i.LL_GPIO_DeInit), (96 bytes).
    Removing stm32f0xx_ll_gpio.o(i.LL_GPIO_StructInit), (24 bytes).
    Removing stm32f0xx_ll_exti.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_ll_exti.o(.revsh_text), (4 bytes).
    Removing stm32f0xx_ll_exti.o(i.LL_EXTI_DeInit), (36 bytes).
    Removing stm32f0xx_ll_exti.o(i.LL_EXTI_Init), (160 bytes).
    Removing stm32f0xx_ll_exti.o(i.LL_EXTI_StructInit), (14 bytes).
    Removing stm32f0xx_ll_adc.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_ll_adc.o(.revsh_text), (4 bytes).
    Removing stm32f0xx_ll_adc.o(i.LL_ADC_CommonDeInit), (28 bytes).
    Removing stm32f0xx_ll_adc.o(i.LL_ADC_DeInit), (192 bytes).
    Removing stm32f0xx_ll_adc.o(i.LL_ADC_REG_StructInit), (18 bytes).
    Removing stm32f0xx_ll_adc.o(i.LL_ADC_StructInit), (16 bytes).
    Removing stm32f0xx_ll_dma.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_ll_dma.o(.revsh_text), (4 bytes).
    Removing stm32f0xx_ll_dma.o(i.LL_DMA_DeInit), (124 bytes).
    Removing stm32f0xx_ll_dma.o(i.LL_DMA_Init), (92 bytes).
    Removing stm32f0xx_ll_dma.o(i.LL_DMA_StructInit), (24 bytes).
    Removing stm32f0xx_ll_dma.o(.constdata), (5 bytes).
    Removing stm32f0xx_ll_spi.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_ll_spi.o(.revsh_text), (4 bytes).
    Removing stm32f0xx_ll_spi.o(i.LL_SPI_DeInit), (68 bytes).
    Removing stm32f0xx_ll_spi.o(i.LL_SPI_StructInit), (30 bytes).
    Removing stm32f0xx_hal_tim.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_hal_tim.o(.revsh_text), (4 bytes).
    Removing stm32f0xx_hal_tim_ex.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_hal_tim_ex.o(.revsh_text), (4 bytes).
    Removing stm32f0xx_ll_usart.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_ll_usart.o(.revsh_text), (4 bytes).
    Removing stm32f0xx_ll_usart.o(i.LL_USART_ClockInit), (60 bytes).
    Removing stm32f0xx_ll_usart.o(i.LL_USART_ClockStructInit), (12 bytes).
    Removing stm32f0xx_ll_usart.o(i.LL_USART_DeInit), (68 bytes).
    Removing stm32f0xx_ll_usart.o(i.LL_USART_StructInit), (24 bytes).
    Removing stm32f0xx_ll_rcc.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_ll_rcc.o(.revsh_text), (4 bytes).
    Removing stm32f0xx_ll_rcc.o(i.LL_RCC_DeInit), (100 bytes).
    Removing stm32f0xx_ll_rcc.o(i.LL_RCC_GetI2CClockFreq), (48 bytes).
    Removing stm32f0xx_hal_rcc.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_hal_rcc.o(.revsh_text), (4 bytes).
    Removing stm32f0xx_hal_rcc.o(i.HAL_RCC_CSSCallback), (2 bytes).
    Removing stm32f0xx_hal_rcc.o(i.HAL_RCC_DeInit), (76 bytes).
    Removing stm32f0xx_hal_rcc.o(i.HAL_RCC_DisableCSS), (20 bytes).
    Removing stm32f0xx_hal_rcc.o(i.HAL_RCC_EnableCSS), (20 bytes).
    Removing stm32f0xx_hal_rcc.o(i.HAL_RCC_GetClockConfig), (56 bytes).
    Removing stm32f0xx_hal_rcc.o(i.HAL_RCC_GetOscConfig), (156 bytes).
    Removing stm32f0xx_hal_rcc.o(i.HAL_RCC_GetPCLK1Freq), (32 bytes).
    Removing stm32f0xx_hal_rcc.o(i.HAL_RCC_MCOConfig), (76 bytes).
    Removing stm32f0xx_hal_rcc.o(i.HAL_RCC_NMI_IRQHandler), (24 bytes).
    Removing stm32f0xx_hal_rcc_ex.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_hal_rcc_ex.o(.revsh_text), (4 bytes).
    Removing stm32f0xx_hal_rcc_ex.o(i.HAL_RCCEx_GetPeriphCLKConfig), (44 bytes).
    Removing stm32f0xx_hal_rcc_ex.o(i.HAL_RCCEx_GetPeriphCLKFreq), (156 bytes).
    Removing stm32f0xx_hal.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_hal.o(.revsh_text), (4 bytes).
    Removing stm32f0xx_hal.o(i.HAL_DBGMCU_DisableDBGStandbyMode), (16 bytes).
    Removing stm32f0xx_hal.o(i.HAL_DBGMCU_DisableDBGStopMode), (16 bytes).
    Removing stm32f0xx_hal.o(i.HAL_DBGMCU_EnableDBGStandbyMode), (16 bytes).
    Removing stm32f0xx_hal.o(i.HAL_DBGMCU_EnableDBGStopMode), (16 bytes).
    Removing stm32f0xx_hal.o(i.HAL_DeInit), (36 bytes).
    Removing stm32f0xx_hal.o(i.HAL_GetDEVID), (16 bytes).
    Removing stm32f0xx_hal.o(i.HAL_GetHalVersion), (8 bytes).
    Removing stm32f0xx_hal.o(i.HAL_GetREVID), (12 bytes).
    Removing stm32f0xx_hal.o(i.HAL_GetUIDw0), (12 bytes).
    Removing stm32f0xx_hal.o(i.HAL_GetUIDw1), (12 bytes).
    Removing stm32f0xx_hal.o(i.HAL_GetUIDw2), (12 bytes).
    Removing stm32f0xx_hal.o(i.HAL_MspDeInit), (2 bytes).
    Removing stm32f0xx_hal.o(i.HAL_MspInit), (2 bytes).
    Removing stm32f0xx_hal.o(i.HAL_ResumeTick), (16 bytes).
    Removing stm32f0xx_hal.o(i.HAL_SuspendTick), (16 bytes).
    Removing stm32f0xx_hal_i2c.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_hal_i2c.o(.revsh_text), (4 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_AbortCpltCallback), (2 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_AddrCallback), (2 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_DeInit), (52 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_DisableListen_IT), (48 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_ER_IRQHandler), (88 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_EV_IRQHandler), (16 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_EnableListen_IT), (40 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_ErrorCallback), (2 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_GetError), (4 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_GetMode), (6 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_GetState), (6 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_Init), (180 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_IsDeviceReady), (284 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_ListenCpltCallback), (2 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_MasterRxCpltCallback), (2 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_MasterTxCpltCallback), (2 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Abort_IT), (88 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Receive), (280 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Receive_DMA), (236 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Receive_IT), (124 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Sequential_Receive_IT), (116 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Sequential_Transmit_IT), (116 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit), (280 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit_DMA), (240 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_Master_Transmit_IT), (124 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_MemRxCpltCallback), (2 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_MemTxCpltCallback), (2 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Read), (344 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_DMA), (248 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Read_IT), (188 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Write), (340 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_DMA), (244 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_Mem_Write_IT), (184 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_MspDeInit), (2 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_MspInit), (2 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_SlaveRxCpltCallback), (2 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_SlaveTxCpltCallback), (2 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive), (292 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive_DMA), (156 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Receive_IT), (88 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Sequential_Receive_IT), (144 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Sequential_Transmit_IT), (144 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit), (300 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit_DMA), (156 bytes).
    Removing stm32f0xx_hal_i2c.o(i.HAL_I2C_Slave_Transmit_IT), (88 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_DMAAbort), (52 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_DMAError), (24 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_DMAMasterReceiveCplt), (68 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_DMAMasterTransmitCplt), (68 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_DMASlaveReceiveCplt), (2 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_DMASlaveTransmitCplt), (2 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_Disable_IRQ), (86 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_Enable_IRQ), (100 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_Flush_TXDR), (34 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_ITAddrCplt), (122 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_ITError), (204 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_ITListenCplt), (96 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_ITMasterCplt), (160 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_ITMasterSequentialCplt), (70 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_ITSlaveCplt), (232 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_ITSlaveSequentialCplt), (74 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_IsAcknowledgeFailed), (116 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_DMA), (194 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_Master_ISR_IT), (296 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_RequestMemoryRead), (106 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_RequestMemoryWrite), (106 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_Slave_ISR_DMA), (104 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_Slave_ISR_IT), (280 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_TransferConfig), (36 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_WaitOnFlagUntilTimeout), (72 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_WaitOnRXNEFlagUntilTimeout), (120 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_WaitOnSTOPFlagUntilTimeout), (78 bytes).
    Removing stm32f0xx_hal_i2c.o(i.I2C_WaitOnTXISFlagUntilTimeout), (82 bytes).
    Removing stm32f0xx_hal_i2c_ex.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_hal_i2c_ex.o(.revsh_text), (4 bytes).
    Removing stm32f0xx_hal_i2c_ex.o(i.HAL_I2CEx_ConfigAnalogFilter), (74 bytes).
    Removing stm32f0xx_hal_i2c_ex.o(i.HAL_I2CEx_ConfigDigitalFilter), (72 bytes).
    Removing stm32f0xx_hal_i2c_ex.o(i.HAL_I2CEx_DisableFastModePlus), (36 bytes).
    Removing stm32f0xx_hal_i2c_ex.o(i.HAL_I2CEx_EnableFastModePlus), (36 bytes).
    Removing stm32f0xx_hal_gpio.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_hal_gpio.o(.revsh_text), (4 bytes).
    Removing stm32f0xx_hal_gpio.o(i.HAL_GPIO_DeInit), (212 bytes).
    Removing stm32f0xx_hal_gpio.o(i.HAL_GPIO_EXTI_Callback), (2 bytes).
    Removing stm32f0xx_hal_gpio.o(i.HAL_GPIO_EXTI_IRQHandler), (24 bytes).
    Removing stm32f0xx_hal_gpio.o(i.HAL_GPIO_Init), (328 bytes).
    Removing stm32f0xx_hal_gpio.o(i.HAL_GPIO_LockPin), (36 bytes).
    Removing stm32f0xx_hal_gpio.o(i.HAL_GPIO_ReadPin), (10 bytes).
    Removing stm32f0xx_hal_gpio.o(i.HAL_GPIO_TogglePin), (8 bytes).
    Removing stm32f0xx_hal_gpio.o(i.HAL_GPIO_WritePin), (12 bytes).
    Removing stm32f0xx_hal_dma.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_hal_dma.o(.revsh_text), (4 bytes).
    Removing stm32f0xx_hal_dma.o(i.DMA_CalcBaseAndBitshift), (36 bytes).
    Removing stm32f0xx_hal_dma.o(i.DMA_SetConfig), (40 bytes).
    Removing stm32f0xx_hal_dma.o(i.HAL_DMA_Abort), (44 bytes).
    Removing stm32f0xx_hal_dma.o(i.HAL_DMA_Abort_IT), (72 bytes).
    Removing stm32f0xx_hal_dma.o(i.HAL_DMA_DeInit), (66 bytes).
    Removing stm32f0xx_hal_dma.o(i.HAL_DMA_GetError), (4 bytes).
    Removing stm32f0xx_hal_dma.o(i.HAL_DMA_GetState), (6 bytes).
    Removing stm32f0xx_hal_dma.o(i.HAL_DMA_IRQHandler), (156 bytes).
    Removing stm32f0xx_hal_dma.o(i.HAL_DMA_Init), (88 bytes).
    Removing stm32f0xx_hal_dma.o(i.HAL_DMA_PollForTransfer), (176 bytes).
    Removing stm32f0xx_hal_dma.o(i.HAL_DMA_RegisterCallback), (72 bytes).
    Removing stm32f0xx_hal_dma.o(i.HAL_DMA_Start), (74 bytes).
    Removing stm32f0xx_hal_dma.o(i.HAL_DMA_Start_IT), (106 bytes).
    Removing stm32f0xx_hal_dma.o(i.HAL_DMA_UnRegisterCallback), (78 bytes).
    Removing stm32f0xx_hal_cortex.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_hal_cortex.o(.revsh_text), (4 bytes).
    Removing stm32f0xx_hal_cortex.o(i.HAL_NVIC_ClearPendingIRQ), (20 bytes).
    Removing stm32f0xx_hal_cortex.o(i.HAL_NVIC_DisableIRQ), (20 bytes).
    Removing stm32f0xx_hal_cortex.o(i.HAL_NVIC_EnableIRQ), (20 bytes).
    Removing stm32f0xx_hal_cortex.o(i.HAL_NVIC_GetPendingIRQ), (28 bytes).
    Removing stm32f0xx_hal_cortex.o(i.HAL_NVIC_GetPriority), (52 bytes).
    Removing stm32f0xx_hal_cortex.o(i.HAL_NVIC_SetPendingIRQ), (20 bytes).
    Removing stm32f0xx_hal_cortex.o(i.HAL_NVIC_SystemReset), (28 bytes).
    Removing stm32f0xx_hal_cortex.o(i.HAL_SYSTICK_Callback), (2 bytes).
    Removing stm32f0xx_hal_pwr.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_hal_pwr.o(.revsh_text), (4 bytes).
    Removing stm32f0xx_hal_pwr.o(i.HAL_PWR_DeInit), (24 bytes).
    Removing stm32f0xx_hal_pwr.o(i.HAL_PWR_DisableBkUpAccess), (16 bytes).
    Removing stm32f0xx_hal_pwr.o(i.HAL_PWR_DisableSEVOnPend), (16 bytes).
    Removing stm32f0xx_hal_pwr.o(i.HAL_PWR_DisableSleepOnExit), (16 bytes).
    Removing stm32f0xx_hal_pwr.o(i.HAL_PWR_DisableWakeUpPin), (16 bytes).
    Removing stm32f0xx_hal_pwr.o(i.HAL_PWR_EnableBkUpAccess), (16 bytes).
    Removing stm32f0xx_hal_pwr.o(i.HAL_PWR_EnableSEVOnPend), (16 bytes).
    Removing stm32f0xx_hal_pwr.o(i.HAL_PWR_EnableSleepOnExit), (16 bytes).
    Removing stm32f0xx_hal_pwr.o(i.HAL_PWR_EnableWakeUpPin), (16 bytes).
    Removing stm32f0xx_hal_pwr.o(i.HAL_PWR_EnterSLEEPMode), (32 bytes).
    Removing stm32f0xx_hal_pwr.o(i.HAL_PWR_EnterSTANDBYMode), (32 bytes).
    Removing stm32f0xx_hal_pwr.o(i.HAL_PWR_EnterSTOPMode), (52 bytes).
    Removing stm32f0xx_hal_pwr_ex.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_hal_pwr_ex.o(.revsh_text), (4 bytes).
    Removing stm32f0xx_hal_flash.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_hal_flash.o(.revsh_text), (4 bytes).
    Removing stm32f0xx_hal_flash.o(i.HAL_FLASH_EndOfOperationCallback), (2 bytes).
    Removing stm32f0xx_hal_flash.o(i.HAL_FLASH_GetError), (12 bytes).
    Removing stm32f0xx_hal_flash.o(i.HAL_FLASH_IRQHandler), (268 bytes).
    Removing stm32f0xx_hal_flash.o(i.HAL_FLASH_OB_Launch), (32 bytes).
    Removing stm32f0xx_hal_flash.o(i.HAL_FLASH_OB_Lock), (20 bytes).
    Removing stm32f0xx_hal_flash.o(i.HAL_FLASH_OB_Unlock), (36 bytes).
    Removing stm32f0xx_hal_flash.o(i.HAL_FLASH_OperationErrorCallback), (2 bytes).
    Removing stm32f0xx_hal_flash.o(i.HAL_FLASH_Program_IT), (100 bytes).
    Removing stm32f0xx_hal_flash_ex.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_hal_flash_ex.o(.revsh_text), (4 bytes).
    Removing stm32f0xx_hal_flash_ex.o(i.FLASH_OB_DisableWRP), (108 bytes).
    Removing stm32f0xx_hal_flash_ex.o(i.FLASH_OB_EnableWRP), (108 bytes).
    Removing stm32f0xx_hal_flash_ex.o(i.FLASH_OB_GetRDP), (32 bytes).
    Removing stm32f0xx_hal_flash_ex.o(i.FLASH_OB_RDP_LevelConfig), (96 bytes).
    Removing stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase_IT), (88 bytes).
    Removing stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBErase), (80 bytes).
    Removing stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBGetConfig), (36 bytes).
    Removing stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBGetUserData), (28 bytes).
    Removing stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBProgram), (204 bytes).
    Removing stm32f0xx_ll_utils.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_ll_utils.o(.revsh_text), (4 bytes).
    Removing stm32f0xx_ll_utils.o(i.LL_Init1msTick), (32 bytes).
    Removing stm32f0xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSE), (104 bytes).
    Removing stm32f0xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSI), (84 bytes).
    Removing stm32f0xx_ll_utils.o(i.LL_RCC_PLL_ConfigDomain_SYS), (44 bytes).
    Removing stm32f0xx_ll_utils.o(i.LL_SetSystemCoreClock), (12 bytes).
    Removing stm32f0xx_ll_utils.o(i.LL_mDelay), (32 bytes).
    Removing stm32f0xx_ll_utils.o(i.UTILS_EnablePLLAndSwitchSystem), (152 bytes).
    Removing stm32f0xx_ll_utils.o(i.UTILS_GetPLLOutputFrequency), (24 bytes).
    Removing stm32f0xx_ll_utils.o(i.UTILS_PLL_IsBusy), (20 bytes).
    Removing stm32f0xx_ll_utils.o(i.UTILS_SetFlashLatency), (52 bytes).
    Removing stm32f0xx_ll_tim.o(.rev16_text), (4 bytes).
    Removing stm32f0xx_ll_tim.o(.revsh_text), (4 bytes).
    Removing stm32f0xx_ll_tim.o(i.LL_APB1_GRP2_ForceReset), (16 bytes).
    Removing stm32f0xx_ll_tim.o(i.LL_APB1_GRP2_ReleaseReset), (16 bytes).
    Removing stm32f0xx_ll_tim.o(i.LL_TIM_BDTR_Init), (74 bytes).
    Removing stm32f0xx_ll_tim.o(i.LL_TIM_BDTR_StructInit), (18 bytes).
    Removing stm32f0xx_ll_tim.o(i.LL_TIM_DeInit), (156 bytes).
    Removing stm32f0xx_ll_tim.o(i.LL_TIM_ENCODER_Init), (96 bytes).
    Removing stm32f0xx_ll_tim.o(i.LL_TIM_ENCODER_StructInit), (28 bytes).
    Removing stm32f0xx_ll_tim.o(i.LL_TIM_HALLSENSOR_Init), (88 bytes).
    Removing stm32f0xx_ll_tim.o(i.LL_TIM_HALLSENSOR_StructInit), (12 bytes).
    Removing stm32f0xx_ll_tim.o(i.LL_TIM_IC_Init), (216 bytes).
    Removing stm32f0xx_ll_tim.o(i.LL_TIM_IC_StructInit), (14 bytes).
    Removing stm32f0xx_ll_tim.o(i.LL_TIM_OC_Init), (68 bytes).
    Removing stm32f0xx_ll_tim.o(i.LL_TIM_OC_StructInit), (20 bytes).
    Removing stm32f0xx_ll_tim.o(i.LL_TIM_StructInit), (16 bytes).
    Removing stm32f0xx_ll_tim.o(i.OC1Config), (140 bytes).
    Removing stm32f0xx_ll_tim.o(i.OC2Config), (144 bytes).
    Removing stm32f0xx_ll_tim.o(i.OC3Config), (152 bytes).
    Removing stm32f0xx_ll_tim.o(i.OC4Config), (116 bytes).
    Removing dfixul.o(.text), (64 bytes).
 
391 unused section(s) (total 20515 bytes) removed from the image.
 
==============================================================================
 
Image Symbol Table
 
    Local Symbols
 
    Symbol Name                              Value     Ov Type        Size  Object(Section)
 
    ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal.c 0x00000000   Number         0  stm32f0xx_hal.o ABSOLUTE
    ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_cortex.c 0x00000000   Number         0  stm32f0xx_hal_cortex.o ABSOLUTE
    ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_dma.c 0x00000000   Number         0  stm32f0xx_hal_dma.o ABSOLUTE
    ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash.c 0x00000000   Number         0  stm32f0xx_hal_flash.o ABSOLUTE
    ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash_ex.c 0x00000000   Number         0  stm32f0xx_hal_flash_ex.o ABSOLUTE
    ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_gpio.c 0x00000000   Number         0  stm32f0xx_hal_gpio.o ABSOLUTE
    ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c.c 0x00000000   Number         0  stm32f0xx_hal_i2c.o ABSOLUTE
    ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c 0x00000000   Number         0  stm32f0xx_hal_i2c_ex.o ABSOLUTE
    ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr.c 0x00000000   Number         0  stm32f0xx_hal_pwr.o ABSOLUTE
    ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c 0x00000000   Number         0  stm32f0xx_hal_pwr_ex.o ABSOLUTE
    ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc.c 0x00000000   Number         0  stm32f0xx_hal_rcc.o ABSOLUTE
    ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc_ex.c 0x00000000   Number         0  stm32f0xx_hal_rcc_ex.o ABSOLUTE
    ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim.c 0x00000000   Number         0  stm32f0xx_hal_tim.o ABSOLUTE
    ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim_ex.c 0x00000000   Number         0  stm32f0xx_hal_tim_ex.o ABSOLUTE
    ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_adc.c 0x00000000   Number         0  stm32f0xx_ll_adc.o ABSOLUTE
    ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_dma.c 0x00000000   Number         0  stm32f0xx_ll_dma.o ABSOLUTE
    ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c 0x00000000   Number         0  stm32f0xx_ll_exti.o ABSOLUTE
    ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c 0x00000000   Number         0  stm32f0xx_ll_gpio.o ABSOLUTE
    ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c 0x00000000   Number         0  stm32f0xx_ll_rcc.o ABSOLUTE
    ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_spi.c 0x00000000   Number         0  stm32f0xx_ll_spi.o ABSOLUTE
    ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_usart.c 0x00000000   Number         0  stm32f0xx_ll_usart.o ABSOLUTE
    ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c 0x00000000   Number         0  stm32f0xx_ll_utils.o ABSOLUTE
    ../Radio_LLCC68/Src/main.c               0x00000000   Number         0  main.o ABSOLUTE
    ../Radio_LLCC68\Radio\src\crc.c          0x00000000   Number         0  crc.o ABSOLUTE
    ../Radio_LLCC68\Radio\src\radio.c        0x00000000   Number         0  radio.o ABSOLUTE
    ../Radio_LLCC68\Radio\src\sx126x-board.c 0x00000000   Number         0  sx126x-board.o ABSOLUTE
    ../Radio_LLCC68\Radio\src\sx126x.c       0x00000000   Number         0  sx126x.o ABSOLUTE
    ../clib/../cmprslib/zerorunl2.c          0x00000000   Number         0  __dczerorl2.o ABSOLUTE
    ../clib/microlib/division.c              0x00000000   Number         0  uldiv.o ABSOLUTE
    ../clib/microlib/division.c              0x00000000   Number         0  ldiv.o ABSOLUTE
    ../clib/microlib/division.c              0x00000000   Number         0  idiv.o ABSOLUTE
    ../clib/microlib/division.c              0x00000000   Number         0  uidiv.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry9a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry8a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry8b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry7b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry10b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry7a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry5.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry11b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry11a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry10a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry9b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry2.o ABSOLUTE
    ../clib/microlib/longlong.c              0x00000000   Number         0  llushr.o ABSOLUTE
    ../clib/microlib/longlong.c              0x00000000   Number         0  llshl.o ABSOLUTE
    ../clib/microlib/longlong.c              0x00000000   Number         0  llsshr.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printfa.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf7.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf6.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf5.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf4.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf3.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf1.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf0.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printfb.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf8.o ABSOLUTE
    ../clib/microlib/printf/printf.c         0x00000000   Number         0  printf2.o ABSOLUTE
    ../clib/microlib/printf/stubs.s          0x00000000   Number         0  stubs.o ABSOLUTE
    ../clib/microlib/stdio/fputc.c           0x00000000   Number         0  fputc.o ABSOLUTE
    ../clib/microlib/stdio/semi.s            0x00000000   Number         0  semi.o ABSOLUTE
    ../clib/microlib/stdio/streams.c         0x00000000   Number         0  stdout.o ABSOLUTE
    ../clib/microlib/string/memcpy.c         0x00000000   Number         0  memcpyb.o ABSOLUTE
    ../clib/microlib/string/memcpy.c         0x00000000   Number         0  memcpya.o ABSOLUTE
    ../clib/microlib/string/memset.c         0x00000000   Number         0  memseta.o ABSOLUTE
    ../clib/microlib/stubs.s                 0x00000000   Number         0  iusefp.o ABSOLUTE
    ../clib/microlib/stubs.s                 0x00000000   Number         0  iusesemip.o ABSOLUTE
    ../clib/microlib/unhosted.c              0x00000000   Number         0  uread4.o ABSOLUTE
    ../fplib/microlib/fpadd.c                0x00000000   Number         0  dadd.o ABSOLUTE
    ../fplib/microlib/fpdiv.c                0x00000000   Number         0  ddiv.o ABSOLUTE
    ../fplib/microlib/fpepilogue.c           0x00000000   Number         0  depilogue.o ABSOLUTE
    ../fplib/microlib/fpfix.c                0x00000000   Number         0  dfixui.o ABSOLUTE
    ../fplib/microlib/fpfix.c                0x00000000   Number         0  dfixul.o ABSOLUTE
    ../fplib/microlib/fpflt.c                0x00000000   Number         0  dfltui.o ABSOLUTE
    ../fplib/microlib/fpflt.c                0x00000000   Number         0  dflti.o ABSOLUTE
    ../fplib/microlib/fpmul.c                0x00000000   Number         0  dmul.o ABSOLUTE
    ../fplib/microlib/fprnd.c                0x00000000   Number         0  drnd.o ABSOLUTE
    ../fplib/microlib/fpscalb.c              0x00000000   Number         0  dscalb.o ABSOLUTE
    ../mathlib/ceil.c                        0x00000000   Number         0  ceil.o ABSOLUTE
    ../mathlib/floor.c                       0x00000000   Number         0  floor.o ABSOLUTE
    ../mathlib/rint.c                        0x00000000   Number         0  rint.o ABSOLUTE
    ..\ComLib\Src\BSP.c                      0x00000000   Number         0  bsp.o ABSOLUTE
    ..\ComLib\Src\GlobalDef.c                0x00000000   Number         0  globaldef.o ABSOLUTE
    ..\ComLib\Src\KBus.c                     0x00000000   Number         0  kbus.o ABSOLUTE
    ..\ComLib\Src\KLink.c                    0x00000000   Number         0  klink.o ABSOLUTE
    ..\ComLib\Src\KMachine.c                 0x00000000   Number         0  kmachine.o ABSOLUTE
    ..\ComLib\Src\ModbusRTU.c                0x00000000   Number         0  modbusrtu.o ABSOLUTE
    ..\ComLib\Src\MyQueue.c                  0x00000000   Number         0  myqueue.o ABSOLUTE
    ..\ComLib\Src\PLCfunctions.c             0x00000000   Number         0  plcfunctions.o ABSOLUTE
    ..\ComLib\Src\debug.c                    0x00000000   Number         0  debug.o ABSOLUTE
    ..\ComLib\Src\functions.c                0x00000000   Number         0  functions.o ABSOLUTE
    ..\ComLib\Src\shell.c                    0x00000000   Number         0  shell.o ABSOLUTE
    ..\ComLib\Src\stm32f0xx_hal_msp.c        0x00000000   Number         0  stm32f0xx_hal_msp.o ABSOLUTE
    ..\ComLib\Src\stm32f0xx_it.c             0x00000000   Number         0  stm32f0xx_it.o ABSOLUTE
    ..\ComLib\Src\system_stm32f0xx.c         0x00000000   Number         0  system_stm32f0xx.o ABSOLUTE
    ..\Drivers\STM32F0xx_HAL_Driver\Src\stm32f0xx_hal.c 0x00000000   Number         0  stm32f0xx_hal.o ABSOLUTE
    ..\Drivers\STM32F0xx_HAL_Driver\Src\stm32f0xx_hal_cortex.c 0x00000000   Number         0  stm32f0xx_hal_cortex.o ABSOLUTE
    ..\Drivers\STM32F0xx_HAL_Driver\Src\stm32f0xx_hal_dma.c 0x00000000   Number         0  stm32f0xx_hal_dma.o ABSOLUTE
    ..\Drivers\STM32F0xx_HAL_Driver\Src\stm32f0xx_hal_flash.c 0x00000000   Number         0  stm32f0xx_hal_flash.o ABSOLUTE
    ..\Drivers\STM32F0xx_HAL_Driver\Src\stm32f0xx_hal_flash_ex.c 0x00000000   Number         0  stm32f0xx_hal_flash_ex.o ABSOLUTE
    ..\Drivers\STM32F0xx_HAL_Driver\Src\stm32f0xx_hal_gpio.c 0x00000000   Number         0  stm32f0xx_hal_gpio.o ABSOLUTE
    ..\Drivers\STM32F0xx_HAL_Driver\Src\stm32f0xx_hal_i2c.c 0x00000000   Number         0  stm32f0xx_hal_i2c.o ABSOLUTE
    ..\Drivers\STM32F0xx_HAL_Driver\Src\stm32f0xx_hal_i2c_ex.c 0x00000000   Number         0  stm32f0xx_hal_i2c_ex.o ABSOLUTE
    ..\Drivers\STM32F0xx_HAL_Driver\Src\stm32f0xx_hal_pwr.c 0x00000000   Number         0  stm32f0xx_hal_pwr.o ABSOLUTE
    ..\Drivers\STM32F0xx_HAL_Driver\Src\stm32f0xx_hal_pwr_ex.c 0x00000000   Number         0  stm32f0xx_hal_pwr_ex.o ABSOLUTE
    ..\Drivers\STM32F0xx_HAL_Driver\Src\stm32f0xx_hal_rcc.c 0x00000000   Number         0  stm32f0xx_hal_rcc.o ABSOLUTE
    ..\Drivers\STM32F0xx_HAL_Driver\Src\stm32f0xx_hal_rcc_ex.c 0x00000000   Number         0  stm32f0xx_hal_rcc_ex.o ABSOLUTE
    ..\Drivers\STM32F0xx_HAL_Driver\Src\stm32f0xx_hal_tim.c 0x00000000   Number         0  stm32f0xx_hal_tim.o ABSOLUTE
    ..\Drivers\STM32F0xx_HAL_Driver\Src\stm32f0xx_hal_tim_ex.c 0x00000000   Number         0  stm32f0xx_hal_tim_ex.o ABSOLUTE
    ..\Drivers\STM32F0xx_HAL_Driver\Src\stm32f0xx_ll_adc.c 0x00000000   Number         0  stm32f0xx_ll_adc.o ABSOLUTE
    ..\Drivers\STM32F0xx_HAL_Driver\Src\stm32f0xx_ll_dma.c 0x00000000   Number         0  stm32f0xx_ll_dma.o ABSOLUTE
    ..\Drivers\STM32F0xx_HAL_Driver\Src\stm32f0xx_ll_exti.c 0x00000000   Number         0  stm32f0xx_ll_exti.o ABSOLUTE
    ..\Drivers\STM32F0xx_HAL_Driver\Src\stm32f0xx_ll_gpio.c 0x00000000   Number         0  stm32f0xx_ll_gpio.o ABSOLUTE
    ..\Drivers\STM32F0xx_HAL_Driver\Src\stm32f0xx_ll_rcc.c 0x00000000   Number         0  stm32f0xx_ll_rcc.o ABSOLUTE
    ..\Drivers\STM32F0xx_HAL_Driver\Src\stm32f0xx_ll_spi.c 0x00000000   Number         0  stm32f0xx_ll_spi.o ABSOLUTE
    ..\Drivers\STM32F0xx_HAL_Driver\Src\stm32f0xx_ll_tim.c 0x00000000   Number         0  stm32f0xx_ll_tim.o ABSOLUTE
    ..\Drivers\STM32F0xx_HAL_Driver\Src\stm32f0xx_ll_usart.c 0x00000000   Number         0  stm32f0xx_ll_usart.o ABSOLUTE
    ..\Drivers\STM32F0xx_HAL_Driver\Src\stm32f0xx_ll_utils.c 0x00000000   Number         0  stm32f0xx_ll_utils.o ABSOLUTE
    ..\Radio_LLCC68\Radio\KWireLess.c        0x00000000   Number         0  kwireless.o ABSOLUTE
    ..\Radio_LLCC68\Radio\delay.c            0x00000000   Number         0  delay.o ABSOLUTE
    ..\Radio_LLCC68\Radio\gpio.c             0x00000000   Number         0  gpio.o ABSOLUTE
    ..\Radio_LLCC68\Radio\spi.c              0x00000000   Number         0  spi.o ABSOLUTE
    ..\Radio_LLCC68\Src\BoardType.c          0x00000000   Number         0  boardtype.o ABSOLUTE
    ..\Radio_LLCC68\Src\main.c               0x00000000   Number         0  main.o ABSOLUTE
    ..\Radio_LLCC68\\Radio\\src\\radio.c     0x00000000   Number         0  radio.o ABSOLUTE
    ..\Radio_LLCC68\\Radio\\src\\sx126x-board.c 0x00000000   Number         0  sx126x-board.o ABSOLUTE
    ..\\ComLib\\Src\\BSP.c                   0x00000000   Number         0  bsp.o ABSOLUTE
    ..\\ComLib\\Src\\KBus.c                  0x00000000   Number         0  kbus.o ABSOLUTE
    ..\\ComLib\\Src\\KLink.c                 0x00000000   Number         0  klink.o ABSOLUTE
    ..\\ComLib\\Src\\KMachine.c              0x00000000   Number         0  kmachine.o ABSOLUTE
    ..\\ComLib\\Src\\PLCfunctions.c          0x00000000   Number         0  plcfunctions.o ABSOLUTE
    ..\\ComLib\\Src\\debug.c                 0x00000000   Number         0  debug.o ABSOLUTE
    ..\\ComLib\\Src\\functions.c             0x00000000   Number         0  functions.o ABSOLUTE
    ..\\ComLib\\Src\\stm32f0xx_hal_msp.c     0x00000000   Number         0  stm32f0xx_hal_msp.o ABSOLUTE
    ..\\ComLib\\Src\\stm32f0xx_it.c          0x00000000   Number         0  stm32f0xx_it.o ABSOLUTE
    ..\\ComLib\\Src\\system_stm32f0xx.c      0x00000000   Number         0  system_stm32f0xx.o ABSOLUTE
    ..\\Drivers\\STM32F0xx_HAL_Driver\\Src\\stm32f0xx_ll_tim.c 0x00000000   Number         0  stm32f0xx_ll_tim.o ABSOLUTE
    ..\\Radio_LLCC68\\Radio\\KWireLess.c     0x00000000   Number         0  kwireless.o ABSOLUTE
    ..\\Radio_LLCC68\\Radio\\delay.c         0x00000000   Number         0  delay.o ABSOLUTE
    ..\\Radio_LLCC68\\Radio\\gpio.c          0x00000000   Number         0  gpio.o ABSOLUTE
    ..\\Radio_LLCC68\\Radio\\spi.c           0x00000000   Number         0  spi.o ABSOLUTE
    cdrcmple.s                               0x00000000   Number         0  cdrcmple.o ABSOLUTE
    dc.s                                     0x00000000   Number         0  dc.o ABSOLUTE
    handlers.s                               0x00000000   Number         0  handlers.o ABSOLUTE
    init.s                                   0x00000000   Number         0  init.o ABSOLUTE
    startup_stm32f030x8.s                    0x00000000   Number         0  startup_stm32f030x8.o ABSOLUTE
    RESET                                    0x08000000   Section      180  startup_stm32f030x8.o(RESET)
    .ARM.Collect$$$$00000000                 0x080000b4   Section        0  entry.o(.ARM.Collect$$$$00000000)
    .ARM.Collect$$$$00000001                 0x080000b4   Section        4  entry2.o(.ARM.Collect$$$$00000001)
    .ARM.Collect$$$$00000004                 0x080000b8   Section        4  entry5.o(.ARM.Collect$$$$00000004)
    .ARM.Collect$$$$00000008                 0x080000bc   Section        0  entry7b.o(.ARM.Collect$$$$00000008)
    .ARM.Collect$$$$0000000A                 0x080000bc   Section        0  entry8b.o(.ARM.Collect$$$$0000000A)
    .ARM.Collect$$$$0000000B                 0x080000bc   Section        8  entry9a.o(.ARM.Collect$$$$0000000B)
    .ARM.Collect$$$$0000000D                 0x080000c4   Section        0  entry10a.o(.ARM.Collect$$$$0000000D)
    .ARM.Collect$$$$0000000F                 0x080000c4   Section        0  entry11a.o(.ARM.Collect$$$$0000000F)
    .ARM.Collect$$$$00002712                 0x080000c4   Section        4  entry2.o(.ARM.Collect$$$$00002712)
    __lit__00000000                          0x080000c4   Data           4  entry2.o(.ARM.Collect$$$$00002712)
    .emb_text                                0x080000c8   Section        4  debug.o(.emb_text)
    .text                                    0x080000cc   Section       28  startup_stm32f030x8.o(.text)
    .text                                    0x080000e8   Section        0  uidiv.o(.text)
    .text                                    0x08000114   Section        0  idiv.o(.text)
    .text                                    0x0800013c   Section        0  ldiv.o(.text)
    .text                                    0x08000188   Section        0  llushr.o(.text)
    .text                                    0x080001aa   Section        0  memcpya.o(.text)
    .text                                    0x080001ce   Section        0  memseta.o(.text)
    .text                                    0x080001f2   Section        0  uread4.o(.text)
    .text                                    0x08000208   Section        0  dadd.o(.text)
    .text                                    0x0800036c   Section        0  dmul.o(.text)
    .text                                    0x0800043c   Section        0  ddiv.o(.text)
    .text                                    0x0800052c   Section        0  dscalb.o(.text)
    .text                                    0x08000558   Section        0  dflti.o(.text)
    .text                                    0x08000580   Section        0  dfltui.o(.text)
    .text                                    0x0800059c   Section        0  dfixui.o(.text)
    .text                                    0x080005d8   Section       40  cdrcmple.o(.text)
    .text                                    0x08000600   Section        0  uldiv.o(.text)
    .text                                    0x08000660   Section        0  llshl.o(.text)
    .text                                    0x08000680   Section        0  llsshr.o(.text)
    .text                                    0x080006a6   Section        0  iusefp.o(.text)
    .text                                    0x080006a6   Section        0  depilogue.o(.text)
    .text                                    0x08000764   Section        0  drnd.o(.text)
    .text                                    0x080007e0   Section       36  init.o(.text)
    .text                                    0x08000804   Section        0  __dczerorl2.o(.text)
    i.ADCProcess                             0x0800085c   Section        0  debug.o(i.ADCProcess)
    i.AddEventLog                            0x08000900   Section        0  kmachine.o(i.AddEventLog)
    i.AddSpace                               0x08000984   Section        0  myqueue.o(i.AddSpace)
    i.CheckEventLog                          0x080009b0   Section        0  kmachine.o(i.CheckEventLog)
    i.ClearEventLog                          0x08000a38   Section        0  kmachine.o(i.ClearEventLog)
    i.ComputeCrc                             0x08000a5c   Section        0  crc.o(i.ComputeCrc)
    i.DMA1_Channel2_3_IRQHandler             0x08000a88   Section        0  stm32f0xx_it.o(i.DMA1_Channel2_3_IRQHandler)
    i.DMA1_Channel4_5_IRQHandler             0x08000b28   Section        0  stm32f0xx_it.o(i.DMA1_Channel4_5_IRQHandler)
    i.DelData                                0x08000b60   Section        0  myqueue.o(i.DelData)
    i.Enable595                              0x08000b8c   Section        0  functions.o(i.Enable595)
    i.EnableDisIn                            0x08000ba0   Section        0  functions.o(i.EnableDisIn)
    i.EraseAndWriteToFlashMem                0x08000bb8   Section        0  kmachine.o(i.EraseAndWriteToFlashMem)
    i.EraseFlashMem                          0x08000bfa   Section        0  kmachine.o(i.EraseFlashMem)
    i.FLASH_MassErase                        0x08000c1c   Section        0  stm32f0xx_hal_flash_ex.o(i.FLASH_MassErase)
    FLASH_MassErase                          0x08000c1d   Thumb Code    26  stm32f0xx_hal_flash_ex.o(i.FLASH_MassErase)
    i.FLASH_PageErase                        0x08000c40   Section        0  stm32f0xx_hal_flash_ex.o(i.FLASH_PageErase)
    i.FLASH_Program_HalfWord                 0x08000c64   Section        0  stm32f0xx_hal_flash.o(i.FLASH_Program_HalfWord)
    FLASH_Program_HalfWord                   0x08000c65   Thumb Code    22  stm32f0xx_hal_flash.o(i.FLASH_Program_HalfWord)
    i.FLASH_SetErrorCode                     0x08000c84   Section        0  stm32f0xx_hal_flash.o(i.FLASH_SetErrorCode)
    FLASH_SetErrorCode                       0x08000c85   Thumb Code    46  stm32f0xx_hal_flash.o(i.FLASH_SetErrorCode)
    i.FLASH_WaitForLastOperation             0x08000cbc   Section        0  stm32f0xx_hal_flash.o(i.FLASH_WaitForLastOperation)
    i.GetBitValue                            0x08000d0c   Section        0  modbusrtu.o(i.GetBitValue)
    GetBitValue                              0x08000d0d   Thumb Code    20  modbusrtu.o(i.GetBitValue)
    i.GetBitValue                            0x08000d20   Section        0  kmachine.o(i.GetBitValue)
    GetBitValue                              0x08000d21   Thumb Code    20  kmachine.o(i.GetBitValue)
    i.GetCoilValue                           0x08000d34   Section        0  kmachine.o(i.GetCoilValue)
    i.GetContinueData                        0x08000dd4   Section        0  myqueue.o(i.GetContinueData)
    i.GetContinueEmptyRoom                   0x08000dfa   Section        0  myqueue.o(i.GetContinueEmptyRoom)
    i.GetEventLogAddr                        0x08000e20   Section        0  kmachine.o(i.GetEventLogAddr)
    i.GetInput                               0x08000e44   Section        0  functions.o(i.GetInput)
    i.GetTick                                0x08000e50   Section        0  functions.o(i.GetTick)
    i.GetVarData                             0x08000e5c   Section        0  kmachine.o(i.GetVarData)
    i.GetuS                                  0x08000f34   Section        0  functions.o(i.GetuS)
    i.HAL_Delay                              0x08000f60   Section        0  stm32f0xx_hal.o(i.HAL_Delay)
    i.HAL_Delay_nMS                          0x08000f7c   Section        0  delay.o(i.HAL_Delay_nMS)
    i.HAL_FLASHEx_Erase                      0x08000f84   Section        0  stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase)
    i.HAL_FLASH_Lock                         0x08001024   Section        0  stm32f0xx_hal_flash.o(i.HAL_FLASH_Lock)
    i.HAL_FLASH_Program                      0x08001038   Section        0  stm32f0xx_hal_flash.o(i.HAL_FLASH_Program)
    i.HAL_FLASH_Unlock                       0x080010b4   Section        0  stm32f0xx_hal_flash.o(i.HAL_FLASH_Unlock)
    i.HAL_GetTick                            0x080010d8   Section        0  stm32f0xx_hal.o(i.HAL_GetTick)
    i.HAL_IncTick                            0x080010e4   Section        0  stm32f0xx_hal.o(i.HAL_IncTick)
    i.HAL_Init                               0x080010f4   Section        0  stm32f0xx_hal.o(i.HAL_Init)
    i.HAL_InitTick                           0x08001114   Section        0  stm32f0xx_hal.o(i.HAL_InitTick)
    i.HAL_MspInit                            0x08001138   Section        0  stm32f0xx_hal_msp.o(i.HAL_MspInit)
    i.HAL_NVIC_SetPriority                   0x0800117c   Section        0  stm32f0xx_hal_cortex.o(i.HAL_NVIC_SetPriority)
    i.HAL_RCCEx_PeriphCLKConfig              0x08001184   Section        0  stm32f0xx_hal_rcc_ex.o(i.HAL_RCCEx_PeriphCLKConfig)
    i.HAL_RCC_ClockConfig                    0x0800126c   Section        0  stm32f0xx_hal_rcc.o(i.HAL_RCC_ClockConfig)
    i.HAL_RCC_GetHCLKFreq                    0x08001398   Section        0  stm32f0xx_hal_rcc.o(i.HAL_RCC_GetHCLKFreq)
    i.HAL_RCC_GetSysClockFreq                0x080013a4   Section        0  stm32f0xx_hal_rcc.o(i.HAL_RCC_GetSysClockFreq)
    i.HAL_RCC_OscConfig                      0x0800141c   Section        0  stm32f0xx_hal_rcc.o(i.HAL_RCC_OscConfig)
    i.HAL_SYSTICK_CLKSourceConfig            0x08001770   Section        0  stm32f0xx_hal_cortex.o(i.HAL_SYSTICK_CLKSourceConfig)
    i.HAL_SYSTICK_Callback                   0x08001788   Section        0  main.o(i.HAL_SYSTICK_Callback)
    i.HAL_SYSTICK_Config                     0x080017fc   Section        0  stm32f0xx_hal_cortex.o(i.HAL_SYSTICK_Config)
    i.HAL_SYSTICK_IRQHandler                 0x0800182c   Section        0  stm32f0xx_hal_cortex.o(i.HAL_SYSTICK_IRQHandler)
    i.HardFault_Handler                      0x08001834   Section        0  stm32f0xx_it.o(i.HardFault_Handler)
    i.InitPLC                                0x08001838   Section        0  plcfunctions.o(i.InitPLC)
    i.InitTimer                              0x08001884   Section        0  plcfunctions.o(i.InitTimer)
    i.InitUartstat                           0x080018c4   Section        0  functions.o(i.InitUartstat)
    i.InituS                                 0x080018e4   Section        0  functions.o(i.InituS)
    i.Input165Cfg                            0x08001938   Section        0  functions.o(i.Input165Cfg)
    i.Input165_R                             0x08001974   Section        0  functions.o(i.Input165_R)
    i.KBusBCC                                0x080019c0   Section        0  kbus.o(i.KBusBCC)
    i.KBusCheckPacket                        0x080019d8   Section        0  kbus.o(i.KBusCheckPacket)
    i.KBusMakePacket                         0x08001adc   Section        0  kbus.o(i.KBusMakePacket)
    i.KBusMasterFunc                         0x08001b5c   Section        0  kbus.o(i.KBusMasterFunc)
    i.KBusMasterParsePacket                  0x08001d14   Section        0  kbus.o(i.KBusMasterParsePacket)
    i.KBusParsePacket                        0x08001e78   Section        0  kbus.o(i.KBusParsePacket)
    i.KBusSlaveCheckPacket                   0x08001ef8   Section        0  kbus.o(i.KBusSlaveCheckPacket)
    i.KBusSlaveParsePacket                   0x08001f88   Section        0  kbus.o(i.KBusSlaveParsePacket)
    i.KLBCC                                  0x08002108   Section        0  klink.o(i.KLBCC)
    i.KLCheckPacket                          0x0800211e   Section        0  klink.o(i.KLCheckPacket)
    i.KLMakeRplyPacket                       0x08002150   Section        0  klink.o(i.KLMakeRplyPacket)
    i.KLParsePacket                          0x0800218c   Section        0  klink.o(i.KLParsePacket)
    i.KLParseReqPacket                       0x080021dc   Section        0  klink.o(i.KLParseReqPacket)
    i.KMachineInit                           0x080028c0   Section        0  kmachine.o(i.KMachineInit)
    i.KWLMasterParsePkt                      0x08002930   Section        0  kwireless.o(i.KWLMasterParsePkt)
    i.KWLMasterSendReqPkt                    0x08002a24   Section        0  kwireless.o(i.KWLMasterSendReqPkt)
    i.KWLSlaveParsePkt                       0x08002aec   Section        0  kwireless.o(i.KWLSlaveParsePkt)
    i.KWLSlaveSendRplyPkt                    0x08002bf0   Section        0  kwireless.o(i.KWLSlaveSendRplyPkt)
    i.KWL_Process                            0x08002ca4   Section        0  kwireless.o(i.KWL_Process)
    i.KWireLessInit                          0x08002d8c   Section        0  kwireless.o(i.KWireLessInit)
    i.KWireLessStart                         0x08002e68   Section        0  kwireless.o(i.KWireLessStart)
    i.LL_ADC_Init                            0x08002ea4   Section        0  stm32f0xx_ll_adc.o(i.LL_ADC_Init)
    i.LL_ADC_REG_Init                        0x08002ed0   Section        0  stm32f0xx_ll_adc.o(i.LL_ADC_REG_Init)
    i.LL_AHB1_GRP1_EnableClock               0x08002f00   Section        0  bsp.o(i.LL_AHB1_GRP1_EnableClock)
    LL_AHB1_GRP1_EnableClock                 0x08002f01   Thumb Code    18  bsp.o(i.LL_AHB1_GRP1_EnableClock)
    i.LL_APB1_GRP1_EnableClock               0x08002f18   Section        0  bsp.o(i.LL_APB1_GRP1_EnableClock)
    LL_APB1_GRP1_EnableClock                 0x08002f19   Thumb Code    18  bsp.o(i.LL_APB1_GRP1_EnableClock)
    i.LL_APB1_GRP2_EnableClock               0x08002f30   Section        0  bsp.o(i.LL_APB1_GRP2_EnableClock)
    LL_APB1_GRP2_EnableClock                 0x08002f31   Thumb Code    18  bsp.o(i.LL_APB1_GRP2_EnableClock)
    i.LL_DMA_ConfigAddresses                 0x08002f48   Section        0  functions.o(i.LL_DMA_ConfigAddresses)
    LL_DMA_ConfigAddresses                   0x08002f49   Thumb Code    38  functions.o(i.LL_DMA_ConfigAddresses)
    i.LL_DMA_DisableChannel                  0x08002f74   Section        0  functions.o(i.LL_DMA_DisableChannel)
    LL_DMA_DisableChannel                    0x08002f75   Thumb Code    18  functions.o(i.LL_DMA_DisableChannel)
    i.LL_DMA_EnableChannel                   0x08002f8c   Section        0  functions.o(i.LL_DMA_EnableChannel)
    LL_DMA_EnableChannel                     0x08002f8d   Thumb Code    18  functions.o(i.LL_DMA_EnableChannel)
    i.LL_DMA_EnableIT_TC                     0x08002fa4   Section        0  functions.o(i.LL_DMA_EnableIT_TC)
    LL_DMA_EnableIT_TC                       0x08002fa5   Thumb Code    18  functions.o(i.LL_DMA_EnableIT_TC)
    i.LL_DMA_SetChannelPriorityLevel         0x08002fbc   Section        0  bsp.o(i.LL_DMA_SetChannelPriorityLevel)
    LL_DMA_SetChannelPriorityLevel           0x08002fbd   Thumb Code    24  bsp.o(i.LL_DMA_SetChannelPriorityLevel)
    i.LL_DMA_SetDataLength                   0x08002fd8   Section        0  functions.o(i.LL_DMA_SetDataLength)
    LL_DMA_SetDataLength                     0x08002fd9   Thumb Code    22  functions.o(i.LL_DMA_SetDataLength)
    i.LL_DMA_SetDataTransferDirection        0x08002ff4   Section        0  bsp.o(i.LL_DMA_SetDataTransferDirection)
    LL_DMA_SetDataTransferDirection          0x08002ff5   Thumb Code    22  bsp.o(i.LL_DMA_SetDataTransferDirection)
    i.LL_DMA_SetMemoryIncMode                0x08003014   Section        0  bsp.o(i.LL_DMA_SetMemoryIncMode)
    LL_DMA_SetMemoryIncMode                  0x08003015   Thumb Code    22  bsp.o(i.LL_DMA_SetMemoryIncMode)
    i.LL_DMA_SetMemorySize                   0x08003030   Section        0  bsp.o(i.LL_DMA_SetMemorySize)
    LL_DMA_SetMemorySize                     0x08003031   Thumb Code    24  bsp.o(i.LL_DMA_SetMemorySize)
    i.LL_DMA_SetMode                         0x0800304c   Section        0  bsp.o(i.LL_DMA_SetMode)
    LL_DMA_SetMode                           0x0800304d   Thumb Code    22  bsp.o(i.LL_DMA_SetMode)
    i.LL_DMA_SetPeriphIncMode                0x08003068   Section        0  bsp.o(i.LL_DMA_SetPeriphIncMode)
    LL_DMA_SetPeriphIncMode                  0x08003069   Thumb Code    22  bsp.o(i.LL_DMA_SetPeriphIncMode)
    i.LL_DMA_SetPeriphSize                   0x08003084   Section        0  bsp.o(i.LL_DMA_SetPeriphSize)
    LL_DMA_SetPeriphSize                     0x08003085   Thumb Code    24  bsp.o(i.LL_DMA_SetPeriphSize)
    i.LL_GPIO_Init                           0x080030a0   Section        0  stm32f0xx_ll_gpio.o(i.LL_GPIO_Init)
    i.LL_RCC_GetSystemClocksFreq             0x08003148   Section        0  stm32f0xx_ll_rcc.o(i.LL_RCC_GetSystemClocksFreq)
    i.LL_RCC_GetUSARTClockFreq               0x08003160   Section        0  stm32f0xx_ll_rcc.o(i.LL_RCC_GetUSARTClockFreq)
    i.LL_SPI_Init                            0x080031b4   Section        0  stm32f0xx_ll_spi.o(i.LL_SPI_Init)
    i.LL_TIM_Init                            0x08003218   Section        0  stm32f0xx_ll_tim.o(i.LL_TIM_Init)
    i.LL_USART_ConfigAsyncMode               0x0800329c   Section        0  bsp.o(i.LL_USART_ConfigAsyncMode)
    LL_USART_ConfigAsyncMode                 0x0800329d   Thumb Code    20  bsp.o(i.LL_USART_ConfigAsyncMode)
    i.LL_USART_Init                          0x080032b0   Section        0  stm32f0xx_ll_usart.o(i.LL_USART_Init)
    i.LedToggle                              0x0800335c   Section        0  kwireless.o(i.LedToggle)
    i.LoadDefaultSysCfg                      0x08003370   Section        0  kmachine.o(i.LoadDefaultSysCfg)
    i.LoadRunStat                            0x08003384   Section        0  kmachine.o(i.LoadRunStat)
    i.Locate                                 0x080033f8   Section        0  debug.o(i.Locate)
    i.MX_ADC_Init                            0x0800341c   Section        0  bsp.o(i.MX_ADC_Init)
    i.MX_DMA_Init                            0x080034c0   Section        0  bsp.o(i.MX_DMA_Init)
    i.MX_GPIO_Init                           0x080034e8   Section        0  bsp.o(i.MX_GPIO_Init)
    i.MX_IWDG_Init                           0x080035f8   Section        0  bsp.o(i.MX_IWDG_Init)
    i.MX_SPI1_Init                           0x0800362c   Section        0  bsp.o(i.MX_SPI1_Init)
    i.MX_SPI2_Init                           0x080036ec   Section        0  bsp.o(i.MX_SPI2_Init)
    i.MX_TIM6_Init                           0x080037a0   Section        0  bsp.o(i.MX_TIM6_Init)
    i.MX_USART1_UART_Init                    0x080037f4   Section        0  bsp.o(i.MX_USART1_UART_Init)
    i.MX_USART2_UART_Init                    0x08003918   Section        0  bsp.o(i.MX_USART2_UART_Init)
    i.ModBusSlaveCheckPkg                    0x08003a70   Section        0  modbusrtu.o(i.ModBusSlaveCheckPkg)
    i.ModBusSlaveParsePkg                    0x08003aa8   Section        0  modbusrtu.o(i.ModBusSlaveParsePkg)
    i.NMI_Handler                            0x08003dc0   Section        0  stm32f0xx_it.o(i.NMI_Handler)
    i.NVIC_EnableIRQ                         0x08003dc4   Section        0  bsp.o(i.NVIC_EnableIRQ)
    NVIC_EnableIRQ                           0x08003dc5   Thumb Code    14  bsp.o(i.NVIC_EnableIRQ)
    i.NVIC_SetPriority                       0x08003dd8   Section        0  bsp.o(i.NVIC_SetPriority)
    NVIC_SetPriority                         0x08003dd9   Thumb Code    60  bsp.o(i.NVIC_SetPriority)
    i.NVIC_SetPriority                       0x08003e1c   Section        0  stm32f0xx_hal_cortex.o(i.NVIC_SetPriority)
    NVIC_SetPriority                         0x08003e1d   Thumb Code    60  stm32f0xx_hal_cortex.o(i.NVIC_SetPriority)
    i.OnCadDone                              0x08003e60   Section        0  kwireless.o(i.OnCadDone)
    i.OnRxDone                               0x08003e70   Section        0  kwireless.o(i.OnRxDone)
    i.OnRxError                              0x08003ef4   Section        0  kwireless.o(i.OnRxError)
    i.OnRxTimeout                            0x08003f8c   Section        0  kwireless.o(i.OnRxTimeout)
    i.OnTxDone                               0x08004044   Section        0  kwireless.o(i.OnTxDone)
    i.OnTxTimeout                            0x080040cc   Section        0  kwireless.o(i.OnTxTimeout)
    i.PendSV_Handler                         0x080040f0   Section        0  stm32f0xx_it.o(i.PendSV_Handler)
    i.PendSvCallBack                         0x08004110   Section        0  functions.o(i.PendSvCallBack)
    i.PopOutVal                              0x08004144   Section        0  plcfunctions.o(i.PopOutVal)
    i.PowerDownProcess                       0x08004164   Section        0  debug.o(i.PowerDownProcess)
    i.PowerRecoverProcess                    0x08004194   Section        0  debug.o(i.PowerRecoverProcess)
    i.ProcessPLCBinProg                      0x080041a4   Section        0  plcfunctions.o(i.ProcessPLCBinProg)
    i.ProcessTimer                           0x08004720   Section        0  plcfunctions.o(i.ProcessTimer)
    i.PushIn                                 0x080047ec   Section        0  myqueue.o(i.PushIn)
    i.PushInVal                              0x08004870   Section        0  plcfunctions.o(i.PushInVal)
    i.PutOutput                              0x08004894   Section        0  functions.o(i.PutOutput)
    i.PutOutputSPI2                          0x0800489c   Section        0  functions.o(i.PutOutputSPI2)
    i.PutStr                                 0x080048fc   Section        0  functions.o(i.PutStr)
    i.PutStr1                                0x08004918   Section        0  functions.o(i.PutStr1)
    i.PutStr2                                0x08004934   Section        0  functions.o(i.PutStr2)
    i.RCC_GetHCLKClockFreq                   0x08004940   Section        0  stm32f0xx_ll_rcc.o(i.RCC_GetHCLKClockFreq)
    i.RCC_GetPCLK1ClockFreq                  0x0800495c   Section        0  stm32f0xx_ll_rcc.o(i.RCC_GetPCLK1ClockFreq)
    i.RCC_GetSystemClockFreq                 0x08004974   Section        0  stm32f0xx_ll_rcc.o(i.RCC_GetSystemClockFreq)
    i.RCC_PLL_GetFreqDomain_SYS              0x08004998   Section        0  stm32f0xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SYS)
    i.RadioCheckRfFrequency                  0x080049d4   Section        0  radio.o(i.RadioCheckRfFrequency)
    i.RadioComputeCRC                        0x080049d8   Section        0  crc.o(i.RadioComputeCRC)
    i.RadioGetStatus                         0x08004a1c   Section        0  radio.o(i.RadioGetStatus)
    i.RadioGetWakeupTime                     0x08004a3a   Section        0  radio.o(i.RadioGetWakeupTime)
    i.RadioInit                              0x08004a40   Section        0  radio.o(i.RadioInit)
    i.RadioIrqProcess                        0x08004a88   Section        0  radio.o(i.RadioIrqProcess)
    i.RadioIsChannelFree                     0x08004b84   Section        0  radio.o(i.RadioIsChannelFree)
    i.RadioOnDioIrq                          0x08004ba8   Section        0  radio.o(i.RadioOnDioIrq)
    i.RadioRandom                            0x08004bb4   Section        0  radio.o(i.RadioRandom)
    i.RadioRead                              0x08004be8   Section        0  radio.o(i.RadioRead)
    i.RadioReadBuffer                        0x08004bf0   Section        0  radio.o(i.RadioReadBuffer)
    i.RadioRssi                              0x08004bf8   Section        0  radio.o(i.RadioRssi)
    i.RadioRx                                0x08004c00   Section        0  radio.o(i.RadioRx)
    i.RadioRxBoosted                         0x08004c30   Section        0  radio.o(i.RadioRxBoosted)
    i.RadioSend                              0x08004c60   Section        0  radio.o(i.RadioSend)
    i.RadioSetChannel                        0x08004ca0   Section        0  radio.o(i.RadioSetChannel)
    i.RadioSetMaxPayloadLength               0x08004ca8   Section        0  radio.o(i.RadioSetMaxPayloadLength)
    i.RadioSetModem                          0x08004cd4   Section        0  radio.o(i.RadioSetModem)
    i.RadioSetPublicNetwork                  0x08004d04   Section        0  radio.o(i.RadioSetPublicNetwork)
    i.RadioSetRxConfig                       0x08004d3c   Section        0  radio.o(i.RadioSetRxConfig)
    i.RadioSetRxDutyCycle                    0x08004f00   Section        0  radio.o(i.RadioSetRxDutyCycle)
    i.RadioSetTxConfig                       0x08004f08   Section        0  radio.o(i.RadioSetTxConfig)
    i.RadioSetTxContinuousWave               0x08005024   Section        0  radio.o(i.RadioSetTxContinuousWave)
    i.RadioSleep                             0x08005038   Section        0  radio.o(i.RadioSleep)
    i.RadioStandby                           0x08005058   Section        0  radio.o(i.RadioStandby)
    i.RadioStartCad                          0x08005060   Section        0  radio.o(i.RadioStartCad)
    i.RadioTimeOnAir                         0x08005068   Section        0  radio.o(i.RadioTimeOnAir)
    i.RadioWrite                             0x080051ec   Section        0  radio.o(i.RadioWrite)
    i.RadioWriteBuffer                       0x080051f4   Section        0  radio.o(i.RadioWriteBuffer)
    i.ReadConfig_5                           0x080051fc   Section        0  functions.o(i.ReadConfig_5)
    i.ReadFlashMem                           0x08005208   Section        0  kmachine.o(i.ReadFlashMem)
    i.ReadJumperSW                           0x0800523e   Section        0  functions.o(i.ReadJumperSW)
    i.ReadSysCfgFromFlash                    0x08005248   Section        0  kmachine.o(i.ReadSysCfgFromFlash)
    i.ResetBit                               0x080052a4   Section        0  modbusrtu.o(i.ResetBit)
    ResetBit                                 0x080052a5   Thumb Code    16  modbusrtu.o(i.ResetBit)
    i.RunTimer                               0x080052b4   Section        0  plcfunctions.o(i.RunTimer)
    i.SPI1_IRQHandler                        0x08005300   Section        0  stm32f0xx_it.o(i.SPI1_IRQHandler)
    i.SPI1_IRQ_CallBack                      0x08005308   Section        0  functions.o(i.SPI1_IRQ_CallBack)
    i.SVC_Handler                            0x0800531c   Section        0  stm32f0xx_it.o(i.SVC_Handler)
    i.SX126xAntSwOff                         0x0800531e   Section        0  sx126x-board.o(i.SX126xAntSwOff)
    i.SX126xAntSwOn                          0x08005320   Section        0  sx126x-board.o(i.SX126xAntSwOn)
    i.SX126xCalibrateImage                   0x08005324   Section        0  sx126x.o(i.SX126xCalibrateImage)
    i.SX126xCheckDeviceReady                 0x08005398   Section        0  sx126x.o(i.SX126xCheckDeviceReady)
    i.SX126xClearIrqStatus                   0x080053b8   Section        0  sx126x.o(i.SX126xClearIrqStatus)
    i.SX126xGetIrqStatus                     0x080053cc   Section        0  sx126x.o(i.SX126xGetIrqStatus)
    i.SX126xGetOperatingMode                 0x080053e0   Section        0  sx126x.o(i.SX126xGetOperatingMode)
    i.SX126xGetPaSelect                      0x080053ec   Section        0  sx126x-board.o(i.SX126xGetPaSelect)
    i.SX126xGetPacketStatus                  0x080053f0   Section        0  sx126x.o(i.SX126xGetPacketStatus)
    i.SX126xGetPacketType                    0x0800546c   Section        0  sx126x.o(i.SX126xGetPacketType)
    i.SX126xGetPayload                       0x08005478   Section        0  sx126x.o(i.SX126xGetPayload)
    i.SX126xGetRssiInst                      0x080054a4   Section        0  sx126x.o(i.SX126xGetRssiInst)
    i.SX126xGetRxBufferStatus                0x080054bc   Section        0  sx126x.o(i.SX126xGetRxBufferStatus)
    i.SX126xInit                             0x08005500   Section        0  sx126x.o(i.SX126xInit)
    i.SX126xReadBuffer                       0x08005524   Section        0  sx126x-board.o(i.SX126xReadBuffer)
    i.SX126xReadCommand                      0x08005568   Section        0  sx126x-board.o(i.SX126xReadCommand)
    i.SX126xReadRegister                     0x080055a6   Section        0  sx126x-board.o(i.SX126xReadRegister)
    i.SX126xReadRegisters                    0x080055b6   Section        0  sx126x-board.o(i.SX126xReadRegisters)
    i.SX126xReset                            0x08005600   Section        0  sx126x-board.o(i.SX126xReset)
    i.SX126xSendPayload                      0x08005624   Section        0  sx126x.o(i.SX126xSendPayload)
    i.SX126xSetBufferBaseAddress             0x08005634   Section        0  sx126x.o(i.SX126xSetBufferBaseAddress)
    i.SX126xSetCad                           0x08005648   Section        0  sx126x.o(i.SX126xSetCad)
    i.SX126xSetCadParams                     0x08005660   Section        0  sx126x.o(i.SX126xSetCadParams)
    i.SX126xSetCrcPolynomial                 0x08005690   Section        0  sx126x.o(i.SX126xSetCrcPolynomial)
    i.SX126xSetCrcSeed                       0x080056b4   Section        0  sx126x.o(i.SX126xSetCrcSeed)
    i.SX126xSetDio2AsRfSwitchCtrl            0x080056d8   Section        0  sx126x.o(i.SX126xSetDio2AsRfSwitchCtrl)
    i.SX126xSetDioIrqParams                  0x080056e6   Section        0  sx126x.o(i.SX126xSetDioIrqParams)
    i.SX126xSetFs                            0x08005710   Section        0  sx126x.o(i.SX126xSetFs)
    i.SX126xSetLoRaSymbNumTimeout            0x08005728   Section        0  sx126x.o(i.SX126xSetLoRaSymbNumTimeout)
    i.SX126xSetModulationParams              0x08005738   Section        0  sx126x.o(i.SX126xSetModulationParams)
    i.SX126xSetPaConfig                      0x080057d8   Section        0  sx126x.o(i.SX126xSetPaConfig)
    i.SX126xSetPacketParams                  0x080057f0   Section        0  sx126x.o(i.SX126xSetPacketParams)
    i.SX126xSetPacketType                    0x080058a4   Section        0  sx126x.o(i.SX126xSetPacketType)
    i.SX126xSetPayload                       0x080058c0   Section        0  sx126x.o(i.SX126xSetPayload)
    i.SX126xSetRegulatorMode                 0x080058ce   Section        0  sx126x.o(i.SX126xSetRegulatorMode)
    i.SX126xSetRfFrequency                   0x080058dc   Section        0  sx126x.o(i.SX126xSetRfFrequency)
    i.SX126xSetRfTxPower                     0x08005928   Section        0  sx126x-board.o(i.SX126xSetRfTxPower)
    i.SX126xSetRx                            0x08005934   Section        0  sx126x.o(i.SX126xSetRx)
    i.SX126xSetRxBoosted                     0x08005958   Section        0  sx126x.o(i.SX126xSetRxBoosted)
    i.SX126xSetRxDutyCycle                   0x0800598c   Section        0  sx126x.o(i.SX126xSetRxDutyCycle)
    i.SX126xSetRxTxFallbackMode              0x080059bc   Section        0  sx126x.o(i.SX126xSetRxTxFallbackMode)
    i.SX126xSetSleep                         0x080059cc   Section        0  sx126x.o(i.SX126xSetSleep)
    i.SX126xSetStandby                       0x080059e8   Section        0  sx126x.o(i.SX126xSetStandby)
    i.SX126xSetStopRxTimerOnPreambleDetect   0x08005a0c   Section        0  sx126x.o(i.SX126xSetStopRxTimerOnPreambleDetect)
    i.SX126xSetSyncWord                      0x08005a1a   Section        0  sx126x.o(i.SX126xSetSyncWord)
    i.SX126xSetTx                            0x08005a2c   Section        0  sx126x.o(i.SX126xSetTx)
    i.SX126xSetTxContinuousWave              0x08005a50   Section        0  sx126x.o(i.SX126xSetTxContinuousWave)
    i.SX126xSetTxParams                      0x08005a60   Section        0  sx126x.o(i.SX126xSetTxParams)
    i.SX126xSetWhiteningSeed                 0x08005ae0   Section        0  sx126x.o(i.SX126xSetWhiteningSeed)
    i.SX126xWaitOnBusy                       0x08005b14   Section        0  sx126x-board.o(i.SX126xWaitOnBusy)
    i.SX126xWakeup                           0x08005b24   Section        0  sx126x-board.o(i.SX126xWakeup)
    i.SX126xWriteBuffer                      0x08005b44   Section        0  sx126x-board.o(i.SX126xWriteBuffer)
    i.SX126xWriteCommand                     0x08005b80   Section        0  sx126x-board.o(i.SX126xWriteCommand)
    i.SX126xWriteRegister                    0x08005bba   Section        0  sx126x-board.o(i.SX126xWriteRegister)
    i.SX126xWriteRegisters                   0x08005bc6   Section        0  sx126x-board.o(i.SX126xWriteRegisters)
    i.SaveRunStat                            0x08005c08   Section        0  kmachine.o(i.SaveRunStat)
    i.SendPacket                             0x08005c80   Section        0  functions.o(i.SendPacket)
    i.SetAddrBit                             0x08005cb8   Section        0  modbusrtu.o(i.SetAddrBit)
    SetAddrBit                               0x08005cb9   Thumb Code    16  modbusrtu.o(i.SetAddrBit)
    i.SetBitValue                            0x08005cc8   Section        0  klink.o(i.SetBitValue)
    SetBitValue                              0x08005cc9   Thumb Code    24  klink.o(i.SetBitValue)
    i.SetBitValue                            0x08005ce0   Section        0  modbusrtu.o(i.SetBitValue)
    SetBitValue                              0x08005ce1   Thumb Code    18  modbusrtu.o(i.SetBitValue)
    i.SetBitValue                            0x08005cf2   Section        0  kmachine.o(i.SetBitValue)
    SetBitValue                              0x08005cf3   Thumb Code    24  kmachine.o(i.SetBitValue)
    i.SetCoilValue                           0x08005d0c   Section        0  kmachine.o(i.SetCoilValue)
    i.SetErr2Led                             0x08005d9c   Section        0  functions.o(i.SetErr2Led)
    i.SetErrLed                              0x08005db4   Section        0  functions.o(i.SetErrLed)
    i.SetOutStat                             0x08005dcc   Section        0  functions.o(i.SetOutStat)
    i.SetRunLed                              0x08005de0   Section        0  functions.o(i.SetRunLed)
    i.SetVarData                             0x08005df8   Section        0  kmachine.o(i.SetVarData)
    i.ShowInitInfo                           0x08005ec0   Section        0  debug.o(i.ShowInitInfo)
    i.SpiInOut                               0x08006040   Section        0  spi.o(i.SpiInOut)
    i.StartPLC                               0x08006084   Section        0  plcfunctions.o(i.StartPLC)
    i.StopPLC                                0x080060f4   Section        0  plcfunctions.o(i.StopPLC)
    i.StopTimer                              0x08006134   Section        0  plcfunctions.o(i.StopTimer)
    i.SysTick_Handler                        0x08006178   Section        0  stm32f0xx_it.o(i.SysTick_Handler)
    i.SystemClock_Config                     0x08006184   Section        0  bsp.o(i.SystemClock_Config)
    i.SystemInit                             0x08006228   Section        0  system_stm32f0xx.o(i.SystemInit)
    i.TIM6_IRQHandler                        0x08006284   Section        0  stm32f0xx_it.o(i.TIM6_IRQHandler)
    i.USART1_IRQHandler                      0x0800629c   Section        0  stm32f0xx_it.o(i.USART1_IRQHandler)
    i.USART2_IRQHandler                      0x08006324   Section        0  stm32f0xx_it.o(i.USART2_IRQHandler)
    i.Uart1RecvDone                          0x08006370   Section        0  functions.o(i.Uart1RecvDone)
    i.Uart1SendDMA                           0x08006390   Section        0  functions.o(i.Uart1SendDMA)
    i.Uart1SendDone                          0x080063f0   Section        0  functions.o(i.Uart1SendDone)
    i.Uart1TriggerSendDMA                    0x08006400   Section        0  functions.o(i.Uart1TriggerSendDMA)
    i.Uart2RecvDMA                           0x08006430   Section        0  functions.o(i.Uart2RecvDMA)
    i.Uart2RecvDone                          0x08006490   Section        0  functions.o(i.Uart2RecvDone)
    i.Uart2SendDMA                           0x080064d0   Section        0  functions.o(i.Uart2SendDMA)
    i.Uart2SendDone                          0x08006530   Section        0  functions.o(i.Uart2SendDone)
    i.WriteFactoryData                       0x08006540   Section        0  kmachine.o(i.WriteFactoryData)
    i.WriteProgram                           0x08006558   Section        0  kmachine.o(i.WriteProgram)
    i.WriteSysCfgToFlash                     0x08006598   Section        0  kmachine.o(i.WriteSysCfgToFlash)
    i.WriteToFlashMemNoErase                 0x080065f4   Section        0  kmachine.o(i.WriteToFlashMemNoErase)
    i._Error_Handler                         0x0800663c   Section        0  main.o(i._Error_Handler)
    i.__0sprintf$8                           0x08006640   Section        0  printf8.o(i.__0sprintf$8)
    i.__ARM_clz                              0x08006668   Section        0  depilogue.o(i.__ARM_clz)
    i.__ARM_common_switch8                   0x08006696   Section        0  kbus.o(i.__ARM_common_switch8)
    i.__scatterload_copy                     0x080066b0   Section       14  handlers.o(i.__scatterload_copy)
    i.__scatterload_null                     0x080066be   Section        2  handlers.o(i.__scatterload_null)
    i.__scatterload_zeroinit                 0x080066c0   Section       14  handlers.o(i.__scatterload_zeroinit)
    i._printf_core                           0x080066d0   Section        0  printf8.o(i._printf_core)
    _printf_core                             0x080066d1   Thumb Code  1020  printf8.o(i._printf_core)
    i._printf_post_padding                   0x08006af8   Section        0  printf8.o(i._printf_post_padding)
    _printf_post_padding                     0x08006af9   Thumb Code    32  printf8.o(i._printf_post_padding)
    i._printf_pre_padding                    0x08006b18   Section        0  printf8.o(i._printf_pre_padding)
    _printf_pre_padding                      0x08006b19   Thumb Code    44  printf8.o(i._printf_pre_padding)
    i._sputc                                 0x08006b44   Section        0  printf8.o(i._sputc)
    _sputc                                   0x08006b45   Thumb Code    10  printf8.o(i._sputc)
    i.ceil                                   0x08006b50   Section        0  ceil.o(i.ceil)
    i.clearscreen                            0x08006c18   Section        0  debug.o(i.clearscreen)
    i.crc16bitbybit                          0x08006c30   Section        0  functions.o(i.crc16bitbybit)
    i.crc16table                             0x08006c68   Section        0  functions.o(i.crc16table)
    i.crc16tablefast                         0x08006c98   Section        0  modbusrtu.o(i.crc16tablefast)
    i.crc_check                              0x08006cd8   Section        0  functions.o(i.crc_check)
    i.displayInput                           0x08006d04   Section        0  functions.o(i.displayInput)
    i.floor                                  0x08006d38   Section        0  floor.o(i.floor)
    i.initQueue                              0x08006e00   Section        0  myqueue.o(i.initQueue)
    i.main                                   0x08006e18   Section        0  main.o(i.main)
    i.rint                                   0x08007338   Section        0  rint.o(i.rint)
    .constdata                               0x08007340   Section       16  debug.o(.constdata)
    .constdata                               0x08007350   Section     1030  functions.o(.constdata)
    CHANNEL_OFFSET_TAB                       0x08007350   Data           5  functions.o(.constdata)
    .constdata                               0x08007756   Section       32  modbusrtu.o(.constdata)
    .constdata                               0x08007776   Section       24  kmachine.o(.constdata)
    .constdata                               0x08007790   Section      144  kmachine.o(.constdata)
    .constdata                               0x08007820   Section        5  bsp.o(.constdata)
    CHANNEL_OFFSET_TAB                       0x08007820   Data           5  bsp.o(.constdata)
    .constdata                               0x08007825   Section        5  stm32f0xx_it.o(.constdata)
    CHANNEL_OFFSET_TAB                       0x08007825   Data           5  stm32f0xx_it.o(.constdata)
    .constdata                               0x0800782c   Section      108  radio.o(.constdata)
    .constdata                               0x08007898   Section      180  radio.o(.constdata)
    .constdata                               0x0800794c   Section       16  system_stm32f0xx.o(.constdata)
    .constdata                               0x0800795c   Section        8  system_stm32f0xx.o(.constdata)
    .data                                    0x20000000   Section       20  debug.o(.data)
    CurChannel                               0x20000010   Data           4  debug.o(.data)
    .data                                    0x20000014   Section        4  functions.o(.data)
    .data                                    0x20000018   Section       24  functions.o(.data)
    .data                                    0x20000030   Section        4  globaldef.o(.data)
    .data                                    0x20000034   Section        4  globaldef.o(.data)
    .data                                    0x20000038   Section        4  globaldef.o(.data)
    .data                                    0x2000003c   Section        4  globaldef.o(.data)
    .data                                    0x20000040   Section        4  globaldef.o(.data)
    .data                                    0x20000044   Section        4  globaldef.o(.data)
    .data                                    0x20000048   Section        4  globaldef.o(.data)
    .data                                    0x2000004c   Section       56  kbus.o(.data)
    .data                                    0x20000084   Section       12  klink.o(.data)
    .data                                    0x20000090   Section        1  modbusrtu.o(.data)
    .data                                    0x20000094   Section        4  plcfunctions.o(.data)
    .data                                    0x20000098   Section       36  kmachine.o(.data)
    .data                                    0x200000bc   Section        4  kmachine.o(.data)
    .data                                    0x200000c0   Section        4  kmachine.o(.data)
    .data                                    0x200000c4   Section        4  kmachine.o(.data)
    .data                                    0x200000c8   Section       40  main.o(.data)
    Count                                    0x200000d4   Data           4  main.o(.data)
    .data                                    0x200000f0   Section        8  kwireless.o(.data)
    .data                                    0x200000f8   Section      216  radio.o(.data)
    RadioPublicNetwork                       0x200000fb   Data           2  radio.o(.data)
    RadioEvents                              0x20000108   Data           4  radio.o(.data)
    RadioLoRaSymbTime                        0x20000110   Data         192  radio.o(.data)
    .data                                    0x200001d0   Section        8  sx126x.o(.data)
    ImageCalibrated                          0x200001d0   Data           1  sx126x.o(.data)
    OperatingMode                            0x200001d1   Data           1  sx126x.o(.data)
    PacketType                               0x200001d2   Data           1  sx126x.o(.data)
    .data                                    0x200001d8   Section        4  system_stm32f0xx.o(.data)
    .data                                    0x200001dc   Section        4  stm32f0xx_hal.o(.data)
    .bss                                     0x200001e0   Section      256  debug.o(.bss)
    .bss                                     0x200002e0   Section      148  globaldef.o(.bss)
    .bss                                     0x20000374   Section      148  globaldef.o(.bss)
    .bss                                     0x20000408   Section      128  globaldef.o(.bss)
    .bss                                     0x20000488   Section      128  globaldef.o(.bss)
    .bss                                     0x20000508   Section     1184  kbus.o(.bss)
    .bss                                     0x200009a8   Section      272  klink.o(.bss)
    .bss                                     0x20000ab8   Section      128  modbusrtu.o(.bss)
    .bss                                     0x20000b38   Section      520  plcfunctions.o(.bss)
    .bss                                     0x20000d40   Section      128  kmachine.o(.bss)
    .bss                                     0x20000dc0   Section     2004  kmachine.o(.bss)
    .bss                                     0x20001594   Section      516  main.o(.bss)
    .bss                                     0x20001798   Section      208  kwireless.o(.bss)
    RadioEvents                              0x20001798   Data          28  kwireless.o(.bss)
    .bss                                     0x20001868   Section      336  radio.o(.bss)
    .bss                                     0x200019b8   Section       32  stm32f0xx_hal_flash.o(.bss)
    STACK                                    0x200019d8   Section     1024  startup_stm32f030x8.o(STACK)
 
    Global Symbols
 
    Symbol Name                              Value     Ov Type        Size  Object(Section)
 
    BuildAttributes$$THM_ISAv3M$S$PE$A:L22$X:L11$S22$IEEE1$IW$USESV6$~STKCKD$USESV7$~SHL$OTIME$ROPI$IEEEJ$EBA8$MICROLIB$REQ8$PRES8$EABIv2 0x00000000   Number         0  anon$$obj.o ABSOLUTE
    __ARM_use_no_argv                        0x00000000   Number         0  main.o ABSOLUTE
    _printf_a                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_c                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_charcount                        0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_d                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_e                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_f                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_flags                            0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_fp_dec                           0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_fp_hex                           0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_g                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_i                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_int_dec                          0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_l                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_lc                               0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_ll                               0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_lld                              0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_lli                              0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_llo                              0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_llu                              0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_llx                              0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_longlong_dec                     0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_longlong_hex                     0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_longlong_oct                     0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_ls                               0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_mbtowc                           0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_n                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_o                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_p                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_percent                          0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_pre_padding                      0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_return_value                     0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_s                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_sizespec                         0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_str                              0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_truncate_signed                  0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_truncate_unsigned                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_u                                0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_wc                               0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_wctomb                           0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_widthprec                        0x00000000   Number         0  stubs.o ABSOLUTE
    _printf_x                                0x00000000   Number         0  stubs.o ABSOLUTE
    __cpp_initialize__aeabi_                  - Undefined Weak Reference
    __cxa_finalize                            - Undefined Weak Reference
    _clock_init                               - Undefined Weak Reference
    _microlib_exit                            - Undefined Weak Reference
    __Vectors_Size                           0x000000b4   Number         0  startup_stm32f030x8.o ABSOLUTE
    __Vectors                                0x08000000   Data           4  startup_stm32f030x8.o(RESET)
    __Vectors_End                            0x080000b4   Data           0  startup_stm32f030x8.o(RESET)
    __main                                   0x080000b5   Thumb Code     0  entry.o(.ARM.Collect$$$$00000000)
    _main_stk                                0x080000b5   Thumb Code     0  entry2.o(.ARM.Collect$$$$00000001)
    _main_scatterload                        0x080000b9   Thumb Code     0  entry5.o(.ARM.Collect$$$$00000004)
    __main_after_scatterload                 0x080000bd   Thumb Code     0  entry5.o(.ARM.Collect$$$$00000004)
    _main_clock                              0x080000bd   Thumb Code     0  entry7b.o(.ARM.Collect$$$$00000008)
    _main_cpp_init                           0x080000bd   Thumb Code     0  entry8b.o(.ARM.Collect$$$$0000000A)
    _main_init                               0x080000bd   Thumb Code     0  entry9a.o(.ARM.Collect$$$$0000000B)
    __rt_final_cpp                           0x080000c5   Thumb Code     0  entry10a.o(.ARM.Collect$$$$0000000D)
    __rt_final_exit                          0x080000c5   Thumb Code     0  entry11a.o(.ARM.Collect$$$$0000000F)
    add1                                     0x080000c9   Thumb Code     4  debug.o(.emb_text)
    Reset_Handler                            0x080000cd   Thumb Code     8  startup_stm32f030x8.o(.text)
    ADC1_IRQHandler                          0x080000df   Thumb Code     0  startup_stm32f030x8.o(.text)
    DMA1_Channel1_IRQHandler                 0x080000df   Thumb Code     0  startup_stm32f030x8.o(.text)
    EXTI0_1_IRQHandler                       0x080000df   Thumb Code     0  startup_stm32f030x8.o(.text)
    EXTI2_3_IRQHandler                       0x080000df   Thumb Code     0  startup_stm32f030x8.o(.text)
    EXTI4_15_IRQHandler                      0x080000df   Thumb Code     0  startup_stm32f030x8.o(.text)
    FLASH_IRQHandler                         0x080000df   Thumb Code     0  startup_stm32f030x8.o(.text)
    I2C1_IRQHandler                          0x080000df   Thumb Code     0  startup_stm32f030x8.o(.text)
    I2C2_IRQHandler                          0x080000df   Thumb Code     0  startup_stm32f030x8.o(.text)
    RCC_IRQHandler                           0x080000df   Thumb Code     0  startup_stm32f030x8.o(.text)
    RTC_IRQHandler                           0x080000df   Thumb Code     0  startup_stm32f030x8.o(.text)
    SPI2_IRQHandler                          0x080000df   Thumb Code     0  startup_stm32f030x8.o(.text)
    TIM14_IRQHandler                         0x080000df   Thumb Code     0  startup_stm32f030x8.o(.text)
    TIM15_IRQHandler                         0x080000df   Thumb Code     0  startup_stm32f030x8.o(.text)
    TIM16_IRQHandler                         0x080000df   Thumb Code     0  startup_stm32f030x8.o(.text)
    TIM17_IRQHandler                         0x080000df   Thumb Code     0  startup_stm32f030x8.o(.text)
    TIM1_BRK_UP_TRG_COM_IRQHandler           0x080000df   Thumb Code     0  startup_stm32f030x8.o(.text)
    TIM1_CC_IRQHandler                       0x080000df   Thumb Code     0  startup_stm32f030x8.o(.text)
    TIM3_IRQHandler                          0x080000df   Thumb Code     0  startup_stm32f030x8.o(.text)
    WWDG_IRQHandler                          0x080000df   Thumb Code     0  startup_stm32f030x8.o(.text)
    __aeabi_uidiv                            0x080000e9   Thumb Code     0  uidiv.o(.text)
    __aeabi_uidivmod                         0x080000e9   Thumb Code    44  uidiv.o(.text)
    __aeabi_idiv                             0x08000115   Thumb Code     0  idiv.o(.text)
    __aeabi_idivmod                          0x08000115   Thumb Code    40  idiv.o(.text)
    __aeabi_ldivmod                          0x0800013d   Thumb Code    76  ldiv.o(.text)
    __aeabi_llsr                             0x08000189   Thumb Code    34  llushr.o(.text)
    _ll_ushift_r                             0x08000189   Thumb Code     0  llushr.o(.text)
    __aeabi_memcpy                           0x080001ab   Thumb Code    36  memcpya.o(.text)
    __aeabi_memcpy4                          0x080001ab   Thumb Code     0  memcpya.o(.text)
    __aeabi_memcpy8                          0x080001ab   Thumb Code     0  memcpya.o(.text)
    __aeabi_memset                           0x080001cf   Thumb Code    14  memseta.o(.text)
    __aeabi_memset4                          0x080001cf   Thumb Code     0  memseta.o(.text)
    __aeabi_memset8                          0x080001cf   Thumb Code     0  memseta.o(.text)
    __aeabi_memclr                           0x080001dd   Thumb Code     4  memseta.o(.text)
    __aeabi_memclr4                          0x080001dd   Thumb Code     0  memseta.o(.text)
    __aeabi_memclr8                          0x080001dd   Thumb Code     0  memseta.o(.text)
    _memset$wrapper                          0x080001e1   Thumb Code    18  memseta.o(.text)
    __aeabi_uread4                           0x080001f3   Thumb Code    20  uread4.o(.text)
    __rt_uread4                              0x080001f3   Thumb Code     0  uread4.o(.text)
    _uread4                                  0x080001f3   Thumb Code     0  uread4.o(.text)
    __aeabi_dadd                             0x08000209   Thumb Code   328  dadd.o(.text)
    __aeabi_dsub                             0x08000351   Thumb Code    12  dadd.o(.text)
    __aeabi_drsub                            0x0800035d   Thumb Code    12  dadd.o(.text)
    __aeabi_dmul                             0x0800036d   Thumb Code   202  dmul.o(.text)
    __aeabi_ddiv                             0x0800043d   Thumb Code   234  ddiv.o(.text)
    __ARM_scalbn                             0x0800052d   Thumb Code    44  dscalb.o(.text)
    scalbn                                   0x0800052d   Thumb Code     0  dscalb.o(.text)
    __aeabi_i2d                              0x08000559   Thumb Code    34  dflti.o(.text)
    __aeabi_ui2d                             0x08000581   Thumb Code    24  dfltui.o(.text)
    __aeabi_d2uiz                            0x0800059d   Thumb Code    50  dfixui.o(.text)
    __aeabi_cdrcmple                         0x080005d9   Thumb Code    38  cdrcmple.o(.text)
    __aeabi_uldivmod                         0x08000601   Thumb Code    96  uldiv.o(.text)
    __aeabi_llsl                             0x08000661   Thumb Code    32  llshl.o(.text)
    _ll_shift_l                              0x08000661   Thumb Code     0  llshl.o(.text)
    __aeabi_lasr                             0x08000681   Thumb Code    38  llsshr.o(.text)
    _ll_sshift_r                             0x08000681   Thumb Code     0  llsshr.o(.text)
    __I$use$fp                               0x080006a7   Thumb Code     0  iusefp.o(.text)
    _double_round                            0x080006a7   Thumb Code    26  depilogue.o(.text)
    _double_epilogue                         0x080006c1   Thumb Code   164  depilogue.o(.text)
    _drnd                                    0x08000765   Thumb Code   114  drnd.o(.text)
    __scatterload                            0x080007e1   Thumb Code    28  init.o(.text)
    __scatterload_rt2                        0x080007e1   Thumb Code     0  init.o(.text)
    __decompress                             0x08000805   Thumb Code     0  __dczerorl2.o(.text)
    __decompress1                            0x08000805   Thumb Code    86  __dczerorl2.o(.text)
    ADCProcess                               0x0800085d   Thumb Code   116  debug.o(i.ADCProcess)
    AddEventLog                              0x08000901   Thumb Code   114  kmachine.o(i.AddEventLog)
    AddSpace                                 0x08000985   Thumb Code    44  myqueue.o(i.AddSpace)
    CheckEventLog                            0x080009b1   Thumb Code   120  kmachine.o(i.CheckEventLog)
    ClearEventLog                            0x08000a39   Thumb Code    28  kmachine.o(i.ClearEventLog)
    ComputeCrc                               0x08000a5d   Thumb Code    44  crc.o(i.ComputeCrc)
    DMA1_Channel2_3_IRQHandler               0x08000a89   Thumb Code   144  stm32f0xx_it.o(i.DMA1_Channel2_3_IRQHandler)
    DMA1_Channel4_5_IRQHandler               0x08000b29   Thumb Code    46  stm32f0xx_it.o(i.DMA1_Channel4_5_IRQHandler)
    DelData                                  0x08000b61   Thumb Code    44  myqueue.o(i.DelData)
    Enable595                                0x08000b8d   Thumb Code    20  functions.o(i.Enable595)
    EnableDisIn                              0x08000ba1   Thumb Code    18  functions.o(i.EnableDisIn)
    EraseAndWriteToFlashMem                  0x08000bb9   Thumb Code    66  kmachine.o(i.EraseAndWriteToFlashMem)
    EraseFlashMem                            0x08000bfb   Thumb Code    32  kmachine.o(i.EraseFlashMem)
    FLASH_PageErase                          0x08000c41   Thumb Code    28  stm32f0xx_hal_flash_ex.o(i.FLASH_PageErase)
    FLASH_WaitForLastOperation               0x08000cbd   Thumb Code    76  stm32f0xx_hal_flash.o(i.FLASH_WaitForLastOperation)
    GetCoilValue                             0x08000d35   Thumb Code   156  kmachine.o(i.GetCoilValue)
    GetContinueData                          0x08000dd5   Thumb Code    38  myqueue.o(i.GetContinueData)
    GetContinueEmptyRoom                     0x08000dfb   Thumb Code    38  myqueue.o(i.GetContinueEmptyRoom)
    GetEventLogAddr                          0x08000e21   Thumb Code    28  kmachine.o(i.GetEventLogAddr)
    GetInput                                 0x08000e45   Thumb Code    10  functions.o(i.GetInput)
    GetTick                                  0x08000e51   Thumb Code     6  functions.o(i.GetTick)
    GetVarData                               0x08000e5d   Thumb Code   208  kmachine.o(i.GetVarData)
    GetuS                                    0x08000f35   Thumb Code    30  functions.o(i.GetuS)
    HAL_Delay                                0x08000f61   Thumb Code    28  stm32f0xx_hal.o(i.HAL_Delay)
    HAL_Delay_nMS                            0x08000f7d   Thumb Code     8  delay.o(i.HAL_Delay_nMS)
    HAL_FLASHEx_Erase                        0x08000f85   Thumb Code   148  stm32f0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase)
    HAL_FLASH_Lock                           0x08001025   Thumb Code    14  stm32f0xx_hal_flash.o(i.HAL_FLASH_Lock)
    HAL_FLASH_Program                        0x08001039   Thumb Code   110  stm32f0xx_hal_flash.o(i.HAL_FLASH_Program)
    HAL_FLASH_Unlock                         0x080010b5   Thumb Code    24  stm32f0xx_hal_flash.o(i.HAL_FLASH_Unlock)
    HAL_GetTick                              0x080010d9   Thumb Code     6  stm32f0xx_hal.o(i.HAL_GetTick)
    HAL_IncTick                              0x080010e5   Thumb Code    10  stm32f0xx_hal.o(i.HAL_IncTick)
    HAL_Init                                 0x080010f5   Thumb Code    26  stm32f0xx_hal.o(i.HAL_Init)
    HAL_InitTick                             0x08001115   Thumb Code    34  stm32f0xx_hal.o(i.HAL_InitTick)
    HAL_MspInit                              0x08001139   Thumb Code    64  stm32f0xx_hal_msp.o(i.HAL_MspInit)
    HAL_NVIC_SetPriority                     0x0800117d   Thumb Code     8  stm32f0xx_hal_cortex.o(i.HAL_NVIC_SetPriority)
    HAL_RCCEx_PeriphCLKConfig                0x08001185   Thumb Code   218  stm32f0xx_hal_rcc_ex.o(i.HAL_RCCEx_PeriphCLKConfig)
    HAL_RCC_ClockConfig                      0x0800126d   Thumb Code   280  stm32f0xx_hal_rcc.o(i.HAL_RCC_ClockConfig)
    HAL_RCC_GetHCLKFreq                      0x08001399   Thumb Code     6  stm32f0xx_hal_rcc.o(i.HAL_RCC_GetHCLKFreq)
    HAL_RCC_GetSysClockFreq                  0x080013a5   Thumb Code    76  stm32f0xx_hal_rcc.o(i.HAL_RCC_GetSysClockFreq)
    HAL_RCC_OscConfig                        0x0800141d   Thumb Code   840  stm32f0xx_hal_rcc.o(i.HAL_RCC_OscConfig)
    HAL_SYSTICK_CLKSourceConfig              0x08001771   Thumb Code    20  stm32f0xx_hal_cortex.o(i.HAL_SYSTICK_CLKSourceConfig)
    HAL_SYSTICK_Callback                     0x08001789   Thumb Code    86  main.o(i.HAL_SYSTICK_Callback)
    HAL_SYSTICK_Config                       0x080017fd   Thumb Code    38  stm32f0xx_hal_cortex.o(i.HAL_SYSTICK_Config)
    HAL_SYSTICK_IRQHandler                   0x0800182d   Thumb Code     8  stm32f0xx_hal_cortex.o(i.HAL_SYSTICK_IRQHandler)
    HardFault_Handler                        0x08001835   Thumb Code     2  stm32f0xx_it.o(i.HardFault_Handler)
    InitPLC                                  0x08001839   Thumb Code    68  plcfunctions.o(i.InitPLC)
    InitTimer                                0x08001885   Thumb Code    56  plcfunctions.o(i.InitTimer)
    InitUartstat                             0x080018c5   Thumb Code    30  functions.o(i.InitUartstat)
    InituS                                   0x080018e5   Thumb Code    68  functions.o(i.InituS)
    Input165Cfg                              0x08001939   Thumb Code    54  functions.o(i.Input165Cfg)
    Input165_R                               0x08001975   Thumb Code    72  functions.o(i.Input165_R)
    KBusBCC                                  0x080019c1   Thumb Code    22  kbus.o(i.KBusBCC)
    KBusCheckPacket                          0x080019d9   Thumb Code   234  kbus.o(i.KBusCheckPacket)
    KBusMakePacket                           0x08001add   Thumb Code   126  kbus.o(i.KBusMakePacket)
    KBusMasterFunc                           0x08001b5d   Thumb Code   400  kbus.o(i.KBusMasterFunc)
    KBusMasterParsePacket                    0x08001d15   Thumb Code   328  kbus.o(i.KBusMasterParsePacket)
    KBusParsePacket                          0x08001e79   Thumb Code   114  kbus.o(i.KBusParsePacket)
    KBusSlaveCheckPacket                     0x08001ef9   Thumb Code   134  kbus.o(i.KBusSlaveCheckPacket)
    KBusSlaveParsePacket                     0x08001f89   Thumb Code   366  kbus.o(i.KBusSlaveParsePacket)
    KLBCC                                    0x08002109   Thumb Code    22  klink.o(i.KLBCC)
    KLCheckPacket                            0x0800211f   Thumb Code    50  klink.o(i.KLCheckPacket)
    KLMakeRplyPacket                         0x08002151   Thumb Code    58  klink.o(i.KLMakeRplyPacket)
    KLParsePacket                            0x0800218d   Thumb Code    70  klink.o(i.KLParsePacket)
    KLParseReqPacket                         0x080021dd   Thumb Code  1726  klink.o(i.KLParseReqPacket)
    KMachineInit                             0x080028c1   Thumb Code    94  kmachine.o(i.KMachineInit)
    KWLMasterParsePkt                        0x08002931   Thumb Code   222  kwireless.o(i.KWLMasterParsePkt)
    KWLMasterSendReqPkt                      0x08002a25   Thumb Code   178  kwireless.o(i.KWLMasterSendReqPkt)
    KWLSlaveParsePkt                         0x08002aed   Thumb Code   238  kwireless.o(i.KWLSlaveParsePkt)
    KWLSlaveSendRplyPkt                      0x08002bf1   Thumb Code   164  kwireless.o(i.KWLSlaveSendRplyPkt)
    KWL_Process                              0x08002ca5   Thumb Code   194  kwireless.o(i.KWL_Process)
    KWireLessInit                            0x08002d8d   Thumb Code   172  kwireless.o(i.KWireLessInit)
    KWireLessStart                           0x08002e69   Thumb Code    48  kwireless.o(i.KWireLessStart)
    LL_ADC_Init                              0x08002ea5   Thumb Code    38  stm32f0xx_ll_adc.o(i.LL_ADC_Init)
    LL_ADC_REG_Init                          0x08002ed1   Thumb Code    44  stm32f0xx_ll_adc.o(i.LL_ADC_REG_Init)
    LL_GPIO_Init                             0x080030a1   Thumb Code   168  stm32f0xx_ll_gpio.o(i.LL_GPIO_Init)
    LL_RCC_GetSystemClocksFreq               0x08003149   Thumb Code    24  stm32f0xx_ll_rcc.o(i.LL_RCC_GetSystemClocksFreq)
    LL_RCC_GetUSARTClockFreq                 0x08003161   Thumb Code    76  stm32f0xx_ll_rcc.o(i.LL_RCC_GetUSARTClockFreq)
    LL_SPI_Init                              0x080031b5   Thumb Code    92  stm32f0xx_ll_spi.o(i.LL_SPI_Init)
    LL_TIM_Init                              0x08003219   Thumb Code   108  stm32f0xx_ll_tim.o(i.LL_TIM_Init)
    LL_USART_Init                            0x080032b1   Thumb Code   156  stm32f0xx_ll_usart.o(i.LL_USART_Init)
    LedToggle                                0x0800335d   Thumb Code    14  kwireless.o(i.LedToggle)
    LoadDefaultSysCfg                        0x08003371   Thumb Code    14  kmachine.o(i.LoadDefaultSysCfg)
    LoadRunStat                              0x08003385   Thumb Code   104  kmachine.o(i.LoadRunStat)
    Locate                                   0x080033f9   Thumb Code    24  debug.o(i.Locate)
    MX_ADC_Init                              0x0800341d   Thumb Code   152  bsp.o(i.MX_ADC_Init)
    MX_DMA_Init                              0x080034c1   Thumb Code    38  bsp.o(i.MX_DMA_Init)
    MX_GPIO_Init                             0x080034e9   Thumb Code   254  bsp.o(i.MX_GPIO_Init)
    MX_IWDG_Init                             0x080035f9   Thumb Code    32  bsp.o(i.MX_IWDG_Init)
    MX_SPI1_Init                             0x0800362d   Thumb Code   184  bsp.o(i.MX_SPI1_Init)
    MX_SPI2_Init                             0x080036ed   Thumb Code   172  bsp.o(i.MX_SPI2_Init)
    MX_TIM6_Init                             0x080037a1   Thumb Code    74  bsp.o(i.MX_TIM6_Init)
    MX_USART1_UART_Init                      0x080037f5   Thumb Code   278  bsp.o(i.MX_USART1_UART_Init)
    MX_USART2_UART_Init                      0x08003919   Thumb Code   332  bsp.o(i.MX_USART2_UART_Init)
    ModBusSlaveCheckPkg                      0x08003a71   Thumb Code    56  modbusrtu.o(i.ModBusSlaveCheckPkg)
    ModBusSlaveParsePkg                      0x08003aa9   Thumb Code   780  modbusrtu.o(i.ModBusSlaveParsePkg)
    NMI_Handler                              0x08003dc1   Thumb Code     2  stm32f0xx_it.o(i.NMI_Handler)
    OnCadDone                                0x08003e61   Thumb Code    10  kwireless.o(i.OnCadDone)
    OnRxDone                                 0x08003e71   Thumb Code   114  kwireless.o(i.OnRxDone)
    OnRxError                                0x08003ef5   Thumb Code   128  kwireless.o(i.OnRxError)
    OnRxTimeout                              0x08003f8d   Thumb Code   156  kwireless.o(i.OnRxTimeout)
    OnTxDone                                 0x08004045   Thumb Code   112  kwireless.o(i.OnTxDone)
    OnTxTimeout                              0x080040cd   Thumb Code    28  kwireless.o(i.OnTxTimeout)
    PendSV_Handler                           0x080040f1   Thumb Code    24  stm32f0xx_it.o(i.PendSV_Handler)
    PendSvCallBack                           0x08004111   Thumb Code    38  functions.o(i.PendSvCallBack)
    PopOutVal                                0x08004145   Thumb Code    28  plcfunctions.o(i.PopOutVal)
    PowerDownProcess                         0x08004165   Thumb Code    36  debug.o(i.PowerDownProcess)
    PowerRecoverProcess                      0x08004195   Thumb Code    12  debug.o(i.PowerRecoverProcess)
    ProcessPLCBinProg                        0x080041a5   Thumb Code  1400  plcfunctions.o(i.ProcessPLCBinProg)
    ProcessTimer                             0x08004721   Thumb Code   192  plcfunctions.o(i.ProcessTimer)
    PushIn                                   0x080047ed   Thumb Code   130  myqueue.o(i.PushIn)
    PushInVal                                0x08004871   Thumb Code    30  plcfunctions.o(i.PushInVal)
    PutOutput                                0x08004895   Thumb Code     8  functions.o(i.PutOutput)
    PutOutputSPI2                            0x0800489d   Thumb Code    82  functions.o(i.PutOutputSPI2)
    PutStr                                   0x080048fd   Thumb Code    22  functions.o(i.PutStr)
    PutStr1                                  0x08004919   Thumb Code    22  functions.o(i.PutStr1)
    PutStr2                                  0x08004935   Thumb Code    12  functions.o(i.PutStr2)
    RCC_GetHCLKClockFreq                     0x08004941   Thumb Code    18  stm32f0xx_ll_rcc.o(i.RCC_GetHCLKClockFreq)
    RCC_GetPCLK1ClockFreq                    0x0800495d   Thumb Code    16  stm32f0xx_ll_rcc.o(i.RCC_GetPCLK1ClockFreq)
    RCC_GetSystemClockFreq                   0x08004975   Thumb Code    28  stm32f0xx_ll_rcc.o(i.RCC_GetSystemClockFreq)
    RCC_PLL_GetFreqDomain_SYS                0x08004999   Thumb Code    50  stm32f0xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SYS)
    RadioCheckRfFrequency                    0x080049d5   Thumb Code     4  radio.o(i.RadioCheckRfFrequency)
    RadioComputeCRC                          0x080049d9   Thumb Code    52  crc.o(i.RadioComputeCRC)
    RadioGetStatus                           0x08004a1d   Thumb Code    30  radio.o(i.RadioGetStatus)
    RadioGetWakeupTime                       0x08004a3b   Thumb Code     4  radio.o(i.RadioGetWakeupTime)
    RadioInit                                0x08004a41   Thumb Code    58  radio.o(i.RadioInit)
    RadioIrqProcess                          0x08004a89   Thumb Code   240  radio.o(i.RadioIrqProcess)
    RadioIsChannelFree                       0x08004b85   Thumb Code    36  radio.o(i.RadioIsChannelFree)
    RadioOnDioIrq                            0x08004ba9   Thumb Code     8  radio.o(i.RadioOnDioIrq)
    RadioRandom                              0x08004bb5   Thumb Code    52  radio.o(i.RadioRandom)
    RadioRead                                0x08004be9   Thumb Code     8  radio.o(i.RadioRead)
    RadioReadBuffer                          0x08004bf1   Thumb Code     8  radio.o(i.RadioReadBuffer)
    RadioRssi                                0x08004bf9   Thumb Code     8  radio.o(i.RadioRssi)
    RadioRx                                  0x08004c01   Thumb Code    36  radio.o(i.RadioRx)
    RadioRxBoosted                           0x08004c31   Thumb Code    36  radio.o(i.RadioRxBoosted)
    RadioSend                                0x08004c61   Thumb Code    54  radio.o(i.RadioSend)
    RadioSetChannel                          0x08004ca1   Thumb Code     8  radio.o(i.RadioSetChannel)
    RadioSetMaxPayloadLength                 0x08004ca9   Thumb Code    34  radio.o(i.RadioSetMaxPayloadLength)
    RadioSetModem                            0x08004cd5   Thumb Code    42  radio.o(i.RadioSetModem)
    RadioSetPublicNetwork                    0x08004d05   Thumb Code    52  radio.o(i.RadioSetPublicNetwork)
    RadioSetRxConfig                         0x08004d3d   Thumb Code   416  radio.o(i.RadioSetRxConfig)
    RadioSetRxDutyCycle                      0x08004f01   Thumb Code     8  radio.o(i.RadioSetRxDutyCycle)
    RadioSetTxConfig                         0x08004f09   Thumb Code   260  radio.o(i.RadioSetTxConfig)
    RadioSetTxContinuousWave                 0x08005025   Thumb Code    20  radio.o(i.RadioSetTxContinuousWave)
    RadioSleep                               0x08005039   Thumb Code    32  radio.o(i.RadioSleep)
    RadioStandby                             0x08005059   Thumb Code     8  radio.o(i.RadioStandby)
    RadioStartCad                            0x08005061   Thumb Code     8  radio.o(i.RadioStartCad)
    RadioTimeOnAir                           0x08005069   Thumb Code   354  radio.o(i.RadioTimeOnAir)
    RadioWrite                               0x080051ed   Thumb Code     8  radio.o(i.RadioWrite)
    RadioWriteBuffer                         0x080051f5   Thumb Code     8  radio.o(i.RadioWriteBuffer)
    ReadConfig_5                             0x080051fd   Thumb Code    12  functions.o(i.ReadConfig_5)
    ReadFlashMem                             0x08005209   Thumb Code    54  kmachine.o(i.ReadFlashMem)
    ReadJumperSW                             0x0800523f   Thumb Code     8  functions.o(i.ReadJumperSW)
    ReadSysCfgFromFlash                      0x08005249   Thumb Code    78  kmachine.o(i.ReadSysCfgFromFlash)
    RunTimer                                 0x080052b5   Thumb Code    68  plcfunctions.o(i.RunTimer)
    SPI1_IRQHandler                          0x08005301   Thumb Code     8  stm32f0xx_it.o(i.SPI1_IRQHandler)
    SPI1_IRQ_CallBack                        0x08005309   Thumb Code    14  functions.o(i.SPI1_IRQ_CallBack)
    SVC_Handler                              0x0800531d   Thumb Code     2  stm32f0xx_it.o(i.SVC_Handler)
    SX126xAntSwOff                           0x0800531f   Thumb Code     2  sx126x-board.o(i.SX126xAntSwOff)
    SX126xAntSwOn                            0x08005321   Thumb Code     2  sx126x-board.o(i.SX126xAntSwOn)
    SX126xCalibrateImage                     0x08005325   Thumb Code    94  sx126x.o(i.SX126xCalibrateImage)
    SX126xCheckDeviceReady                   0x08005399   Thumb Code    28  sx126x.o(i.SX126xCheckDeviceReady)
    SX126xClearIrqStatus                     0x080053b9   Thumb Code    20  sx126x.o(i.SX126xClearIrqStatus)
    SX126xGetIrqStatus                       0x080053cd   Thumb Code    20  sx126x.o(i.SX126xGetIrqStatus)
    SX126xGetOperatingMode                   0x080053e1   Thumb Code     6  sx126x.o(i.SX126xGetOperatingMode)
    SX126xGetPaSelect                        0x080053ed   Thumb Code     4  sx126x-board.o(i.SX126xGetPaSelect)
    SX126xGetPacketStatus                    0x080053f1   Thumb Code   120  sx126x.o(i.SX126xGetPacketStatus)
    SX126xGetPacketType                      0x0800546d   Thumb Code     6  sx126x.o(i.SX126xGetPacketType)
    SX126xGetPayload                         0x08005479   Thumb Code    44  sx126x.o(i.SX126xGetPayload)
    SX126xGetRssiInst                        0x080054a5   Thumb Code    24  sx126x.o(i.SX126xGetRssiInst)
    SX126xGetRxBufferStatus                  0x080054bd   Thumb Code    58  sx126x.o(i.SX126xGetRxBufferStatus)
    SX126xInit                               0x08005501   Thumb Code    30  sx126x.o(i.SX126xInit)
    SX126xReadBuffer                         0x08005525   Thumb Code    68  sx126x-board.o(i.SX126xReadBuffer)
    SX126xReadCommand                        0x08005569   Thumb Code    62  sx126x-board.o(i.SX126xReadCommand)
    SX126xReadRegister                       0x080055a7   Thumb Code    16  sx126x-board.o(i.SX126xReadRegister)
    SX126xReadRegisters                      0x080055b7   Thumb Code    74  sx126x-board.o(i.SX126xReadRegisters)
    SX126xReset                              0x08005601   Thumb Code    32  sx126x-board.o(i.SX126xReset)
    SX126xSendPayload                        0x08005625   Thumb Code    16  sx126x.o(i.SX126xSendPayload)
    SX126xSetBufferBaseAddress               0x08005635   Thumb Code    20  sx126x.o(i.SX126xSetBufferBaseAddress)
    SX126xSetCad                             0x08005649   Thumb Code    20  sx126x.o(i.SX126xSetCad)
    SX126xSetCadParams                       0x08005661   Thumb Code    42  sx126x.o(i.SX126xSetCadParams)
    SX126xSetCrcPolynomial                   0x08005691   Thumb Code    28  sx126x.o(i.SX126xSetCrcPolynomial)
    SX126xSetCrcSeed                         0x080056b5   Thumb Code    28  sx126x.o(i.SX126xSetCrcSeed)
    SX126xSetDio2AsRfSwitchCtrl              0x080056d9   Thumb Code    14  sx126x.o(i.SX126xSetDio2AsRfSwitchCtrl)
    SX126xSetDioIrqParams                    0x080056e7   Thumb Code    40  sx126x.o(i.SX126xSetDioIrqParams)
    SX126xSetFs                              0x08005711   Thumb Code    20  sx126x.o(i.SX126xSetFs)
    SX126xSetLoRaSymbNumTimeout              0x08005729   Thumb Code    14  sx126x.o(i.SX126xSetLoRaSymbNumTimeout)
    SX126xSetModulationParams                0x08005739   Thumb Code   148  sx126x.o(i.SX126xSetModulationParams)
    SX126xSetPaConfig                        0x080057d9   Thumb Code    24  sx126x.o(i.SX126xSetPaConfig)
    SX126xSetPacketParams                    0x080057f1   Thumb Code   158  sx126x.o(i.SX126xSetPacketParams)
    SX126xSetPacketType                      0x080058a5   Thumb Code    22  sx126x.o(i.SX126xSetPacketType)
    SX126xSetPayload                         0x080058c1   Thumb Code    14  sx126x.o(i.SX126xSetPayload)
    SX126xSetRegulatorMode                   0x080058cf   Thumb Code    14  sx126x.o(i.SX126xSetRegulatorMode)
    SX126xSetRfFrequency                     0x080058dd   Thumb Code    66  sx126x.o(i.SX126xSetRfFrequency)
    SX126xSetRfTxPower                       0x08005929   Thumb Code    10  sx126x-board.o(i.SX126xSetRfTxPower)
    SX126xSetRx                              0x08005935   Thumb Code    30  sx126x.o(i.SX126xSetRx)
    SX126xSetRxBoosted                       0x08005959   Thumb Code    42  sx126x.o(i.SX126xSetRxBoosted)
    SX126xSetRxDutyCycle                     0x0800598d   Thumb Code    42  sx126x.o(i.SX126xSetRxDutyCycle)
    SX126xSetRxTxFallbackMode                0x080059bd   Thumb Code    14  sx126x.o(i.SX126xSetRxTxFallbackMode)
    SX126xSetSleep                           0x080059cd   Thumb Code    24  sx126x.o(i.SX126xSetSleep)
    SX126xSetStandby                         0x080059e9   Thumb Code    32  sx126x.o(i.SX126xSetStandby)
    SX126xSetStopRxTimerOnPreambleDetect     0x08005a0d   Thumb Code    14  sx126x.o(i.SX126xSetStopRxTimerOnPreambleDetect)
    SX126xSetSyncWord                        0x08005a1b   Thumb Code    18  sx126x.o(i.SX126xSetSyncWord)
    SX126xSetTx                              0x08005a2d   Thumb Code    30  sx126x.o(i.SX126xSetTx)
    SX126xSetTxContinuousWave                0x08005a51   Thumb Code    14  sx126x.o(i.SX126xSetTxContinuousWave)
    SX126xSetTxParams                        0x08005a61   Thumb Code   122  sx126x.o(i.SX126xSetTxParams)
    SX126xSetWhiteningSeed                   0x08005ae1   Thumb Code    48  sx126x.o(i.SX126xSetWhiteningSeed)
    SX126xWaitOnBusy                         0x08005b15   Thumb Code    12  sx126x-board.o(i.SX126xWaitOnBusy)
    SX126xWakeup                             0x08005b25   Thumb Code    32  sx126x-board.o(i.SX126xWakeup)
    SX126xWriteBuffer                        0x08005b45   Thumb Code    60  sx126x-board.o(i.SX126xWriteBuffer)
    SX126xWriteCommand                       0x08005b81   Thumb Code    58  sx126x-board.o(i.SX126xWriteCommand)
    SX126xWriteRegister                      0x08005bbb   Thumb Code    12  sx126x-board.o(i.SX126xWriteRegister)
    SX126xWriteRegisters                     0x08005bc7   Thumb Code    66  sx126x-board.o(i.SX126xWriteRegisters)
    SaveRunStat                              0x08005c09   Thumb Code   100  kmachine.o(i.SaveRunStat)
    SendPacket                               0x08005c81   Thumb Code    48  functions.o(i.SendPacket)
    SetCoilValue                             0x08005d0d   Thumb Code   134  kmachine.o(i.SetCoilValue)
    SetErr2Led                               0x08005d9d   Thumb Code    18  functions.o(i.SetErr2Led)
    SetErrLed                                0x08005db5   Thumb Code    18  functions.o(i.SetErrLed)
    SetOutStat                               0x08005dcd   Thumb Code    20  functions.o(i.SetOutStat)
    SetRunLed                                0x08005de1   Thumb Code    18  functions.o(i.SetRunLed)
    SetVarData                               0x08005df9   Thumb Code   196  kmachine.o(i.SetVarData)
    ShowInitInfo                             0x08005ec1   Thumb Code   246  debug.o(i.ShowInitInfo)
    SpiInOut                                 0x08006041   Thumb Code    64  spi.o(i.SpiInOut)
    StartPLC                                 0x08006085   Thumb Code    98  plcfunctions.o(i.StartPLC)
    StopPLC                                  0x080060f5   Thumb Code    54  plcfunctions.o(i.StopPLC)
    StopTimer                                0x08006135   Thumb Code    60  plcfunctions.o(i.StopTimer)
    SysTick_Handler                          0x08006179   Thumb Code    12  stm32f0xx_it.o(i.SysTick_Handler)
    SystemClock_Config                       0x08006185   Thumb Code   142  bsp.o(i.SystemClock_Config)
    SystemInit                               0x08006229   Thumb Code    78  system_stm32f0xx.o(i.SystemInit)
    TIM6_IRQHandler                          0x08006285   Thumb Code    18  stm32f0xx_it.o(i.TIM6_IRQHandler)
    USART1_IRQHandler                        0x0800629d   Thumb Code   110  stm32f0xx_it.o(i.USART1_IRQHandler)
    USART2_IRQHandler                        0x08006325   Thumb Code    68  stm32f0xx_it.o(i.USART2_IRQHandler)
    Uart1RecvDone                            0x08006371   Thumb Code    22  functions.o(i.Uart1RecvDone)
    Uart1SendDMA                             0x08006391   Thumb Code    82  functions.o(i.Uart1SendDMA)
    Uart1SendDone                            0x080063f1   Thumb Code    10  functions.o(i.Uart1SendDone)
    Uart1TriggerSendDMA                      0x08006401   Thumb Code    42  functions.o(i.Uart1TriggerSendDMA)
    Uart2RecvDMA                             0x08006431   Thumb Code    82  functions.o(i.Uart2RecvDMA)
    Uart2RecvDone                            0x08006491   Thumb Code    44  functions.o(i.Uart2RecvDone)
    Uart2SendDMA                             0x080064d1   Thumb Code    82  functions.o(i.Uart2SendDMA)
    Uart2SendDone                            0x08006531   Thumb Code    10  functions.o(i.Uart2SendDone)
    WriteFactoryData                         0x08006541   Thumb Code    20  kmachine.o(i.WriteFactoryData)
    WriteProgram                             0x08006559   Thumb Code    50  kmachine.o(i.WriteProgram)
    WriteSysCfgToFlash                       0x08006599   Thumb Code    78  kmachine.o(i.WriteSysCfgToFlash)
    WriteToFlashMemNoErase                   0x080065f5   Thumb Code    72  kmachine.o(i.WriteToFlashMemNoErase)
    _Error_Handler                           0x0800663d   Thumb Code     2  main.o(i._Error_Handler)
    __0sprintf$8                             0x08006641   Thumb Code    36  printf8.o(i.__0sprintf$8)
    __1sprintf$8                             0x08006641   Thumb Code     0  printf8.o(i.__0sprintf$8)
    __2sprintf                               0x08006641   Thumb Code     0  printf8.o(i.__0sprintf$8)
    __ARM_clz                                0x08006669   Thumb Code    46  depilogue.o(i.__ARM_clz)
    __ARM_common_switch8                     0x08006697   Thumb Code    26  kbus.o(i.__ARM_common_switch8)
    __scatterload_copy                       0x080066b1   Thumb Code    14  handlers.o(i.__scatterload_copy)
    __scatterload_null                       0x080066bf   Thumb Code     2  handlers.o(i.__scatterload_null)
    __scatterload_zeroinit                   0x080066c1   Thumb Code    14  handlers.o(i.__scatterload_zeroinit)
    ceil                                     0x08006b51   Thumb Code   180  ceil.o(i.ceil)
    clearscreen                              0x08006c19   Thumb Code    12  debug.o(i.clearscreen)
    crc16bitbybit                            0x08006c31   Thumb Code    46  functions.o(i.crc16bitbybit)
    crc16table                               0x08006c69   Thumb Code    42  functions.o(i.crc16table)
    crc16tablefast                           0x08006c99   Thumb Code    54  modbusrtu.o(i.crc16tablefast)
    crc_check                                0x08006cd9   Thumb Code    34  functions.o(i.crc_check)
    displayInput                             0x08006d05   Thumb Code    48  functions.o(i.displayInput)
    floor                                    0x08006d39   Thumb Code   180  floor.o(i.floor)
    initQueue                                0x08006e01   Thumb Code    22  myqueue.o(i.initQueue)
    main                                     0x08006e19   Thumb Code  1284  main.o(i.main)
    rint                                     0x08007339   Thumb Code     8  rint.o(i.rint)
    buf1                                     0x08007340   Data          16  debug.o(.constdata)
    crc16_table                              0x08007356   Data         512  functions.o(.constdata)
    crctablehi                               0x08007556   Data         256  functions.o(.constdata)
    crctablelo                               0x08007656   Data         256  functions.o(.constdata)
    crctalbeabs                              0x08007756   Data          32  modbusrtu.o(.constdata)
    KMInfoBlock                              0x08007776   Data          24  kmachine.o(.constdata)
    KMDefaultSysCfg                          0x08007790   Data         128  kmachine.o(.constdata)
    Radio                                    0x0800782c   Data         108  radio.o(.constdata)
    Bandwidths                               0x08007898   Data           3  radio.o(.constdata)
    FskBandwidths                            0x0800789c   Data         176  radio.o(.constdata)
    AHBPrescTable                            0x0800794c   Data          16  system_stm32f0xx.o(.constdata)
    APBPrescTable                            0x0800795c   Data           8  system_stm32f0xx.o(.constdata)
    Region$$Table$$Base                      0x08007964   Number         0  anon$$obj.o(Region$$Table)
    Region$$Table$$Limit                     0x08007984   Number         0  anon$$obj.o(Region$$Table)
    sprintftime                              0x20000000   Data           4  debug.o(.data)
    putstrtime                               0x20000004   Data           4  debug.o(.data)
    LineCount                                0x20000008   Data           4  debug.o(.data)
    Uart1baudval                             0x2000000c   Data           4  debug.o(.data)
    TickFreq                                 0x20000014   Data           4  functions.o(.data)
    ClkuS                                    0x20000018   Data           2  functions.o(.data)
    nCurTick                                 0x2000001c   Data           4  functions.o(.data)
    CurTickuS                                0x20000020   Data           4  functions.o(.data)
    CoreClkMHz                               0x20000024   Data           4  functions.o(.data)
    TickPriodClk                             0x20000028   Data           4  functions.o(.data)
    TickPrioduS                              0x2000002c   Data           4  functions.o(.data)
    PendSvCount                              0x20000030   Data           4  globaldef.o(.data)
    Uart1Baud                                0x20000034   Data           4  globaldef.o(.data)
    Uart2Baud                                0x20000038   Data           4  globaldef.o(.data)
    Uart1RecvBuf1DataLen                     0x2000003c   Data           4  globaldef.o(.data)
    Uart2RecvBuf1DataLen                     0x20000040   Data           4  globaldef.o(.data)
    Uart1BaudGot                             0x20000044   Data           4  globaldef.o(.data)
    Uart1BaudFirstGot                        0x20000048   Data           4  globaldef.o(.data)
    bKBusMaster                              0x2000004c   Data           1  kbus.o(.data)
    bKBusSlave                               0x2000004d   Data           1  kbus.o(.data)
    KBusDiagnosis                            0x2000004e   Data           1  kbus.o(.data)
    KBusSnapPos                              0x2000004f   Data           1  kbus.o(.data)
    nStationID                               0x20000050   Data           1  kbus.o(.data)
    nCurPollId                               0x20000051   Data           1  kbus.o(.data)
    nSeq                                     0x20000052   Data           1  kbus.o(.data)
    KBusMasterRecved                         0x20000053   Data           1  kbus.o(.data)
    KBusMasterRecvOK                         0x20000054   Data           1  kbus.o(.data)
    KBusSlaveRecved                          0x20000055   Data           1  kbus.o(.data)
    nClientDataIndex                         0x20000056   Data           1  kbus.o(.data)
    nChilds                                  0x20000057   Data           1  kbus.o(.data)
    KBusSendTimeuS                           0x20000058   Data           4  kbus.o(.data)
    KBusRecvTimeuS                           0x2000005c   Data           4  kbus.o(.data)
    KBusDelayuS                              0x20000060   Data           4  kbus.o(.data)
    KBusMaxDelayuS                           0x20000064   Data           4  kbus.o(.data)
    nSlaveTick                               0x20000068   Data           4  kbus.o(.data)
    nCount2                                  0x2000006c   Data           4  kbus.o(.data)
    TimeOutCount                             0x20000070   Data           4  kbus.o(.data)
    LastCircleStartTime                      0x20000074   Data           4  kbus.o(.data)
    CircleTime                               0x20000078   Data           4  kbus.o(.data)
    ThisuS                                   0x2000007c   Data           4  kbus.o(.data)
    SendTime                                 0x20000080   Data           4  kbus.o(.data)
    nKLStationId                             0x20000084   Data           1  klink.o(.data)
    nKLStatus                                0x20000085   Data           1  klink.o(.data)
    KLThisuS                                 0x20000088   Data           4  klink.o(.data)
    KLRecvTimeuS                             0x2000008c   Data           4  klink.o(.data)
    MyAddr                                   0x20000090   Data           1  modbusrtu.o(.data)
    nSizeProg1                               0x20000094   Data           4  plcfunctions.o(.data)
    nMaxRunStatIndex                         0x20000098   Data           4  kmachine.o(.data)
    nMaxRunStatSeq                           0x2000009c   Data           4  kmachine.o(.data)
    nNextRunStatSpace                        0x200000a0   Data           4  kmachine.o(.data)
    nEventCount                              0x200000a4   Data           4  kmachine.o(.data)
    nEventMaxSeq                             0x200000a8   Data           4  kmachine.o(.data)
    nMaxCurTime                              0x200000ac   Data           4  kmachine.o(.data)
    nEventMinIndex                           0x200000b0   Data           4  kmachine.o(.data)
    nEventMaxIndex                           0x200000b4   Data           4  kmachine.o(.data)
    nEventNextSpace                          0x200000b8   Data           4  kmachine.o(.data)
    PowerDownEvent                           0x200000bc   Data           4  kmachine.o(.data)
    OldPowerDownEvent                        0x200000c0   Data           4  kmachine.o(.data)
    OldPowerDownEventTime                    0x200000c4   Data           4  kmachine.o(.data)
    SlowFlicker                              0x200000c8   Data           1  main.o(.data)
    FastFlicker                              0x200000c9   Data           1  main.o(.data)
    Uart1IdelTimer                           0x200000cc   Data           4  main.o(.data)
    pProgs                                   0x200000d0   Data           4  main.o(.data)
    us1                                      0x200000d8   Data           4  main.o(.data)
    us2                                      0x200000dc   Data           4  main.o(.data)
    us3                                      0x200000e0   Data           4  main.o(.data)
    us4                                      0x200000e4   Data           4  main.o(.data)
    us5                                      0x200000e8   Data           4  main.o(.data)
    us6                                      0x200000ec   Data           4  main.o(.data)
    RadioEnableMaster                        0x200000f0   Data           1  kwireless.o(.data)
    nRadioChannel                            0x200000f1   Data           1  kwireless.o(.data)
    nRadioAddr                               0x200000f2   Data           1  kwireless.o(.data)
    RssiValue                                0x200000f3   Data           1  kwireless.o(.data)
    SnrValue                                 0x200000f4   Data           1  kwireless.o(.data)
    bThisRxError                             0x200000f5   Data           1  kwireless.o(.data)
    crc_value                                0x200000f6   Data           2  kwireless.o(.data)
    MaxPayloadLength                         0x200000f8   Data           1  radio.o(.data)
    RxContinuous                             0x200000f9   Data           1  radio.o(.data)
    IrqFired                                 0x200000fa   Data           1  radio.o(.data)
    TxTimeout                                0x20000100   Data           4  radio.o(.data)
    RxTimeout                                0x20000104   Data           4  radio.o(.data)
    FrequencyError                           0x200001d4   Data           4  sx126x.o(.data)
    SystemCoreClock                          0x200001d8   Data           4  system_stm32f0xx.o(.data)
    uwTick                                   0x200001dc   Data           4  stm32f0xx_hal.o(.data)
    str1                                     0x200001e0   Data         256  debug.o(.bss)
    Uart1Stat                                0x200002e0   Data         148  globaldef.o(.bss)
    Uart2Stat                                0x20000374   Data         148  globaldef.o(.bss)
    Uart1RecvBuf1                            0x20000408   Data         128  globaldef.o(.bss)
    Uart2RecvBuf1                            0x20000488   Data         128  globaldef.o(.bss)
    BufferIn                                 0x20000508   Data          16  kbus.o(.bss)
    BufferOut                                0x20000518   Data          16  kbus.o(.bss)
    PacketBuf1                               0x20000528   Data         128  kbus.o(.bss)
    PacketBuf2                               0x200005a8   Data         128  kbus.o(.bss)
    KBusChnStats                             0x20000628   Data         768  kbus.o(.bss)
    Datas                                    0x20000928   Data         128  kbus.o(.bss)
    KLBufferOut                              0x200009a8   Data          16  klink.o(.bss)
    KLPacketBuf2                             0x200009b8   Data         256  klink.o(.bss)
    Pkgbuf                                   0x20000ab8   Data         128  modbusrtu.o(.bss)
    PLCMem                                   0x20000b38   Data         520  plcfunctions.o(.bss)
    storedKMSysCfg                           0x20000d40   Data         128  kmachine.o(.bss)
    KMem                                     0x20000dc0   Data        1972  kmachine.o(.bss)
    KMRunStat                                0x20001574   Data          32  kmachine.o(.bss)
    Uart1RxBuf                               0x20001594   Data         128  main.o(.bss)
    Uart1TxBuf                               0x20001614   Data         260  main.o(.bss)
    Uart2RxBuf                               0x20001718   Data          64  main.o(.bss)
    Uart2TxBuf                               0x20001758   Data          64  main.o(.bss)
    KwRunStat                                0x200017b4   Data         116  kwireless.o(.bss)
    TX_Buffer                                0x20001828   Data          32  kwireless.o(.bss)
    RX_Buffer                                0x20001848   Data          32  kwireless.o(.bss)
    RadioPktStatus                           0x20001868   Data          20  radio.o(.bss)
    RadioRxPayload                           0x2000187c   Data         255  radio.o(.bss)
    SX126x                                   0x2000197c   Data          60  radio.o(.bss)
    pFlash                                   0x200019b8   Data          32  stm32f0xx_hal_flash.o(.bss)
    __initial_sp                             0x20001dd8   Data           0  startup_stm32f030x8.o(STACK)
 
 
 
==============================================================================
 
Memory Map of the image
 
  Image Entry point : 0x080000b5
 
  Load Region LR_IROM1 (Base: 0x08000000, Size: 0x00007b64, Max: 0x00010000, ABSOLUTE, COMPRESSED[0x000079e4])
 
    Execution Region ER_IROM1 (Base: 0x08000000, Size: 0x00007984, Max: 0x00010000, ABSOLUTE)
 
    Base Addr    Size         Type   Attr      Idx    E Section Name        Object
 
    0x08000000   0x000000b4   Data   RO            3    RESET               startup_stm32f030x8.o
    0x080000b4   0x00000000   Code   RO         4823  * .ARM.Collect$$$$00000000  mc_p.l(entry.o)
    0x080000b4   0x00000004   Code   RO         5119    .ARM.Collect$$$$00000001  mc_p.l(entry2.o)
    0x080000b8   0x00000004   Code   RO         5122    .ARM.Collect$$$$00000004  mc_p.l(entry5.o)
    0x080000bc   0x00000000   Code   RO         5124    .ARM.Collect$$$$00000008  mc_p.l(entry7b.o)
    0x080000bc   0x00000000   Code   RO         5126    .ARM.Collect$$$$0000000A  mc_p.l(entry8b.o)
    0x080000bc   0x00000008   Code   RO         5127    .ARM.Collect$$$$0000000B  mc_p.l(entry9a.o)
    0x080000c4   0x00000000   Code   RO         5129    .ARM.Collect$$$$0000000D  mc_p.l(entry10a.o)
    0x080000c4   0x00000000   Code   RO         5131    .ARM.Collect$$$$0000000F  mc_p.l(entry11a.o)
    0x080000c4   0x00000004   Code   RO         5120    .ARM.Collect$$$$00002712  mc_p.l(entry2.o)
    0x080000c8   0x00000004   Code   RO           12    .emb_text           debug.o
    0x080000cc   0x0000001c   Code   RO            4    .text               startup_stm32f030x8.o
    0x080000e8   0x0000002c   Code   RO         4826    .text               mc_p.l(uidiv.o)
    0x08000114   0x00000028   Code   RO         4828    .text               mc_p.l(idiv.o)
    0x0800013c   0x0000004c   Code   RO         4830    .text               mc_p.l(ldiv.o)
    0x08000188   0x00000022   Code   RO         4832    .text               mc_p.l(llushr.o)
    0x080001aa   0x00000024   Code   RO         4834    .text               mc_p.l(memcpya.o)
    0x080001ce   0x00000024   Code   RO         4836    .text               mc_p.l(memseta.o)
    0x080001f2   0x00000014   Code   RO         5101    .text               mc_p.l(uread4.o)
    0x08000206   0x00000002   PAD
    0x08000208   0x00000164   Code   RO         5103    .text               mf_p.l(dadd.o)
    0x0800036c   0x000000d0   Code   RO         5105    .text               mf_p.l(dmul.o)
    0x0800043c   0x000000f0   Code   RO         5107    .text               mf_p.l(ddiv.o)
    0x0800052c   0x0000002c   Code   RO         5109    .text               mf_p.l(dscalb.o)
    0x08000558   0x00000028   Code   RO         5111    .text               mf_p.l(dflti.o)
    0x08000580   0x0000001c   Code   RO         5113    .text               mf_p.l(dfltui.o)
    0x0800059c   0x0000003c   Code   RO         5115    .text               mf_p.l(dfixui.o)
    0x080005d8   0x00000028   Code   RO         5117    .text               mf_p.l(cdrcmple.o)
    0x08000600   0x00000060   Code   RO         5136    .text               mc_p.l(uldiv.o)
    0x08000660   0x00000020   Code   RO         5138    .text               mc_p.l(llshl.o)
    0x08000680   0x00000026   Code   RO         5140    .text               mc_p.l(llsshr.o)
    0x080006a6   0x00000000   Code   RO         5142    .text               mc_p.l(iusefp.o)
    0x080006a6   0x000000be   Code   RO         5143    .text               mf_p.l(depilogue.o)
    0x08000764   0x0000007c   Code   RO         5147    .text               mf_p.l(drnd.o)
    0x080007e0   0x00000024   Code   RO         5151    .text               mc_p.l(init.o)
    0x08000804   0x00000056   Code   RO         5163    .text               mc_p.l(__dczerorl2.o)
    0x0800085a   0x00000002   PAD
    0x0800085c   0x000000a4   Code   RO           13    i.ADCProcess        debug.o
    0x08000900   0x00000084   Code   RO         1457    i.AddEventLog       kmachine.o
    0x08000984   0x0000002c   Code   RO         1159    i.AddSpace          myqueue.o
    0x080009b0   0x00000088   Code   RO         1458    i.CheckEventLog     kmachine.o
    0x08000a38   0x00000024   Code   RO         1460    i.ClearEventLog     kmachine.o
    0x08000a5c   0x0000002c   Code   RO         2329    i.ComputeCrc        crc.o
    0x08000a88   0x000000a0   Code   RO         1925    i.DMA1_Channel2_3_IRQHandler  stm32f0xx_it.o
    0x08000b28   0x00000038   Code   RO         1926    i.DMA1_Channel4_5_IRQHandler  stm32f0xx_it.o
    0x08000b60   0x0000002c   Code   RO         1161    i.DelData           myqueue.o
    0x08000b8c   0x00000014   Code   RO          242    i.Enable595         functions.o
    0x08000ba0   0x00000018   Code   RO          243    i.EnableDisIn       functions.o
    0x08000bb8   0x00000042   Code   RO         1461    i.EraseAndWriteToFlashMem  kmachine.o
    0x08000bfa   0x00000020   Code   RO         1462    i.EraseFlashMem     kmachine.o
    0x08000c1a   0x00000002   PAD
    0x08000c1c   0x00000024   Code   RO         4531    i.FLASH_MassErase   stm32f0xx_hal_flash_ex.o
    0x08000c40   0x00000024   Code   RO         4536    i.FLASH_PageErase   stm32f0xx_hal_flash_ex.o
    0x08000c64   0x00000020   Code   RO         4432    i.FLASH_Program_HalfWord  stm32f0xx_hal_flash.o
    0x08000c84   0x00000038   Code   RO         4433    i.FLASH_SetErrorCode  stm32f0xx_hal_flash.o
    0x08000cbc   0x00000050   Code   RO         4434    i.FLASH_WaitForLastOperation  stm32f0xx_hal_flash.o
    0x08000d0c   0x00000014   Code   RO         1083    i.GetBitValue       modbusrtu.o
    0x08000d20   0x00000014   Code   RO         1463    i.GetBitValue       kmachine.o
    0x08000d34   0x000000a0   Code   RO         1464    i.GetCoilValue      kmachine.o
    0x08000dd4   0x00000026   Code   RO         1163    i.GetContinueData   myqueue.o
    0x08000dfa   0x00000026   Code   RO         1164    i.GetContinueEmptyRoom  myqueue.o
    0x08000e20   0x00000024   Code   RO         1465    i.GetEventLogAddr   kmachine.o
    0x08000e44   0x0000000a   Code   RO          244    i.GetInput          functions.o
    0x08000e4e   0x00000002   PAD
    0x08000e50   0x0000000c   Code   RO          603    i.GetTick           functions.o
    0x08000e5c   0x000000d8   Code   RO         1466    i.GetVarData        kmachine.o
    0x08000f34   0x0000002c   Code   RO          597    i.GetuS             functions.o
    0x08000f60   0x0000001c   Code   RO         3486    i.HAL_Delay         stm32f0xx_hal.o
    0x08000f7c   0x00000008   Code   RO         2111    i.HAL_Delay_nMS     delay.o
    0x08000f84   0x000000a0   Code   RO         4537    i.HAL_FLASHEx_Erase  stm32f0xx_hal_flash_ex.o
    0x08001024   0x00000014   Code   RO         4438    i.HAL_FLASH_Lock    stm32f0xx_hal_flash.o
    0x08001038   0x0000007c   Code   RO         4443    i.HAL_FLASH_Program  stm32f0xx_hal_flash.o
    0x080010b4   0x00000024   Code   RO         4445    i.HAL_FLASH_Unlock  stm32f0xx_hal_flash.o
    0x080010d8   0x0000000c   Code   RO         3490    i.HAL_GetTick       stm32f0xx_hal.o
    0x080010e4   0x00000010   Code   RO         3494    i.HAL_IncTick       stm32f0xx_hal.o
    0x080010f4   0x00000020   Code   RO         3495    i.HAL_Init          stm32f0xx_hal.o
    0x08001114   0x00000022   Code   RO         3496    i.HAL_InitTick      stm32f0xx_hal.o
    0x08001136   0x00000002   PAD
    0x08001138   0x00000044   Code   RO         1424    i.HAL_MspInit       stm32f0xx_hal_msp.o
    0x0800117c   0x00000008   Code   RO         4244    i.HAL_NVIC_SetPriority  stm32f0xx_hal_cortex.o
    0x08001184   0x000000e8   Code   RO         3451    i.HAL_RCCEx_PeriphCLKConfig  stm32f0xx_hal_rcc_ex.o
    0x0800126c   0x0000012c   Code   RO         3358    i.HAL_RCC_ClockConfig  stm32f0xx_hal_rcc.o
    0x08001398   0x0000000c   Code   RO         3363    i.HAL_RCC_GetHCLKFreq  stm32f0xx_hal_rcc.o
    0x080013a4   0x00000078   Code   RO         3366    i.HAL_RCC_GetSysClockFreq  stm32f0xx_hal_rcc.o
    0x0800141c   0x00000354   Code   RO         3369    i.HAL_RCC_OscConfig  stm32f0xx_hal_rcc.o
    0x08001770   0x00000018   Code   RO         4246    i.HAL_SYSTICK_CLKSourceConfig  stm32f0xx_hal_cortex.o
    0x08001788   0x00000074   Code   RO         2019    i.HAL_SYSTICK_Callback  main.o
    0x080017fc   0x00000030   Code   RO         4248    i.HAL_SYSTICK_Config  stm32f0xx_hal_cortex.o
    0x0800182c   0x00000008   Code   RO         4249    i.HAL_SYSTICK_IRQHandler  stm32f0xx_hal_cortex.o
    0x08001834   0x00000002   Code   RO         1927    i.HardFault_Handler  stm32f0xx_it.o
    0x08001836   0x00000002   PAD
    0x08001838   0x0000004c   Code   RO         1238    i.InitPLC           plcfunctions.o
    0x08001884   0x00000040   Code   RO         1239    i.InitTimer         plcfunctions.o
    0x080018c4   0x0000001e   Code   RO          245    i.InitUartstat      functions.o
    0x080018e2   0x00000002   PAD
    0x080018e4   0x00000054   Code   RO          246    i.InituS            functions.o
    0x08001938   0x0000003c   Code   RO          248    i.Input165Cfg       functions.o
    0x08001974   0x0000004c   Code   RO          250    i.Input165_R        functions.o
    0x080019c0   0x00000016   Code   RO          742    i.KBusBCC           kbus.o
    0x080019d6   0x00000002   PAD
    0x080019d8   0x00000104   Code   RO          743    i.KBusCheckPacket   kbus.o
    0x08001adc   0x0000007e   Code   RO          744    i.KBusMakePacket    kbus.o
    0x08001b5a   0x00000002   PAD
    0x08001b5c   0x000001b8   Code   RO          745    i.KBusMasterFunc    kbus.o
    0x08001d14   0x00000164   Code   RO          746    i.KBusMasterParsePacket  kbus.o
    0x08001e78   0x00000080   Code   RO          747    i.KBusParsePacket   kbus.o
    0x08001ef8   0x00000090   Code   RO          749    i.KBusSlaveCheckPacket  kbus.o
    0x08001f88   0x00000180   Code   RO          751    i.KBusSlaveParsePacket  kbus.o
    0x08002108   0x00000016   Code   RO          892    i.KLBCC             klink.o
    0x0800211e   0x00000032   Code   RO          893    i.KLCheckPacket     klink.o
    0x08002150   0x0000003a   Code   RO          894    i.KLMakeRplyPacket  klink.o
    0x0800218a   0x00000002   PAD
    0x0800218c   0x00000050   Code   RO          895    i.KLParsePacket     klink.o
    0x080021dc   0x000006e4   Code   RO          896    i.KLParseReqPacket  klink.o
    0x080028c0   0x00000070   Code   RO         1467    i.KMachineInit      kmachine.o
    0x08002930   0x000000f4   Code   RO         2196    i.KWLMasterParsePkt  kwireless.o
    0x08002a24   0x000000c8   Code   RO         2198    i.KWLMasterSendReqPkt  kwireless.o
    0x08002aec   0x00000104   Code   RO         2199    i.KWLSlaveParsePkt  kwireless.o
    0x08002bf0   0x000000b4   Code   RO         2201    i.KWLSlaveSendRplyPkt  kwireless.o
    0x08002ca4   0x000000e8   Code   RO         2202    i.KWL_Process       kwireless.o
    0x08002d8c   0x000000dc   Code   RO         2203    i.KWireLessInit     kwireless.o
    0x08002e68   0x0000003c   Code   RO         2204    i.KWireLessStart    kwireless.o
    0x08002ea4   0x0000002c   Code   RO         3090    i.LL_ADC_Init       stm32f0xx_ll_adc.o
    0x08002ed0   0x00000030   Code   RO         3091    i.LL_ADC_REG_Init   stm32f0xx_ll_adc.o
    0x08002f00   0x00000018   Code   RO         1744    i.LL_AHB1_GRP1_EnableClock  bsp.o
    0x08002f18   0x00000018   Code   RO         1745    i.LL_APB1_GRP1_EnableClock  bsp.o
    0x08002f30   0x00000018   Code   RO         1746    i.LL_APB1_GRP2_EnableClock  bsp.o
    0x08002f48   0x0000002c   Code   RO          251    i.LL_DMA_ConfigAddresses  functions.o
    0x08002f74   0x00000018   Code   RO          252    i.LL_DMA_DisableChannel  functions.o
    0x08002f8c   0x00000018   Code   RO          253    i.LL_DMA_EnableChannel  functions.o
    0x08002fa4   0x00000018   Code   RO          254    i.LL_DMA_EnableIT_TC  functions.o
    0x08002fbc   0x0000001c   Code   RO         1747    i.LL_DMA_SetChannelPriorityLevel  bsp.o
    0x08002fd8   0x0000001c   Code   RO          255    i.LL_DMA_SetDataLength  functions.o
    0x08002ff4   0x00000020   Code   RO         1748    i.LL_DMA_SetDataTransferDirection  bsp.o
    0x08003014   0x0000001c   Code   RO         1749    i.LL_DMA_SetMemoryIncMode  bsp.o
    0x08003030   0x0000001c   Code   RO         1750    i.LL_DMA_SetMemorySize  bsp.o
    0x0800304c   0x0000001c   Code   RO         1751    i.LL_DMA_SetMode    bsp.o
    0x08003068   0x0000001c   Code   RO         1752    i.LL_DMA_SetPeriphIncMode  bsp.o
    0x08003084   0x0000001c   Code   RO         1753    i.LL_DMA_SetPeriphSize  bsp.o
    0x080030a0   0x000000a8   Code   RO         3008    i.LL_GPIO_Init      stm32f0xx_ll_gpio.o
    0x08003148   0x00000018   Code   RO         3296    i.LL_RCC_GetSystemClocksFreq  stm32f0xx_ll_rcc.o
    0x08003160   0x00000054   Code   RO         3297    i.LL_RCC_GetUSARTClockFreq  stm32f0xx_ll_rcc.o
    0x080031b4   0x00000064   Code   RO         3182    i.LL_SPI_Init       stm32f0xx_ll_spi.o
    0x08003218   0x00000084   Code   RO         4701    i.LL_TIM_Init       stm32f0xx_ll_tim.o
    0x0800329c   0x00000014   Code   RO         1754    i.LL_USART_ConfigAsyncMode  bsp.o
    0x080032b0   0x000000ac   Code   RO         3250    i.LL_USART_Init     stm32f0xx_ll_usart.o
    0x0800335c   0x00000014   Code   RO         2205    i.LedToggle         kwireless.o
    0x08003370   0x00000014   Code   RO         1469    i.LoadDefaultSysCfg  kmachine.o
    0x08003384   0x00000074   Code   RO         1471    i.LoadRunStat       kmachine.o
    0x080033f8   0x00000024   Code   RO           15    i.Locate            debug.o
    0x0800341c   0x000000a4   Code   RO         1755    i.MX_ADC_Init       bsp.o
    0x080034c0   0x00000026   Code   RO         1756    i.MX_DMA_Init       bsp.o
    0x080034e6   0x00000002   PAD
    0x080034e8   0x00000110   Code   RO         1757    i.MX_GPIO_Init      bsp.o
    0x080035f8   0x00000034   Code   RO         1758    i.MX_IWDG_Init      bsp.o
    0x0800362c   0x000000c0   Code   RO         1759    i.MX_SPI1_Init      bsp.o
    0x080036ec   0x000000b4   Code   RO         1760    i.MX_SPI2_Init      bsp.o
    0x080037a0   0x00000054   Code   RO         1761    i.MX_TIM6_Init      bsp.o
    0x080037f4   0x00000124   Code   RO         1762    i.MX_USART1_UART_Init  bsp.o
    0x08003918   0x00000158   Code   RO         1763    i.MX_USART2_UART_Init  bsp.o
    0x08003a70   0x00000038   Code   RO         1085    i.ModBusSlaveCheckPkg  modbusrtu.o
    0x08003aa8   0x00000318   Code   RO         1086    i.ModBusSlaveParsePkg  modbusrtu.o
    0x08003dc0   0x00000002   Code   RO         1928    i.NMI_Handler       stm32f0xx_it.o
    0x08003dc2   0x00000002   PAD
    0x08003dc4   0x00000014   Code   RO         1764    i.NVIC_EnableIRQ    bsp.o
    0x08003dd8   0x00000044   Code   RO         1765    i.NVIC_SetPriority  bsp.o
    0x08003e1c   0x00000044   Code   RO         4250    i.NVIC_SetPriority  stm32f0xx_hal_cortex.o
    0x08003e60   0x00000010   Code   RO         2206    i.OnCadDone         kwireless.o
    0x08003e70   0x00000084   Code   RO         2207    i.OnRxDone          kwireless.o
    0x08003ef4   0x00000098   Code   RO         2208    i.OnRxError         kwireless.o
    0x08003f8c   0x000000b8   Code   RO         2209    i.OnRxTimeout       kwireless.o
    0x08004044   0x00000088   Code   RO         2210    i.OnTxDone          kwireless.o
    0x080040cc   0x00000024   Code   RO         2211    i.OnTxTimeout       kwireless.o
    0x080040f0   0x00000020   Code   RO         1929    i.PendSV_Handler    stm32f0xx_it.o
    0x08004110   0x00000034   Code   RO          258    i.PendSvCallBack    functions.o
    0x08004144   0x00000020   Code   RO         1241    i.PopOutVal         plcfunctions.o
    0x08004164   0x00000030   Code   RO           16    i.PowerDownProcess  debug.o
    0x08004194   0x00000010   Code   RO           17    i.PowerRecoverProcess  debug.o
    0x080041a4   0x0000057c   Code   RO         1242    i.ProcessPLCBinProg  plcfunctions.o
    0x08004720   0x000000cc   Code   RO         1243    i.ProcessTimer      plcfunctions.o
    0x080047ec   0x00000082   Code   RO         1167    i.PushIn            myqueue.o
    0x0800486e   0x00000002   PAD
    0x08004870   0x00000024   Code   RO         1244    i.PushInVal         plcfunctions.o
    0x08004894   0x00000008   Code   RO          259    i.PutOutput         functions.o
    0x0800489c   0x00000060   Code   RO          260    i.PutOutputSPI2     functions.o
    0x080048fc   0x0000001c   Code   RO          261    i.PutStr            functions.o
    0x08004918   0x0000001c   Code   RO          262    i.PutStr1           functions.o
    0x08004934   0x0000000c   Code   RO          263    i.PutStr2           functions.o
    0x08004940   0x0000001c   Code   RO         3298    i.RCC_GetHCLKClockFreq  stm32f0xx_ll_rcc.o
    0x0800495c   0x00000018   Code   RO         3299    i.RCC_GetPCLK1ClockFreq  stm32f0xx_ll_rcc.o
    0x08004974   0x00000024   Code   RO         3300    i.RCC_GetSystemClockFreq  stm32f0xx_ll_rcc.o
    0x08004998   0x0000003c   Code   RO         3301    i.RCC_PLL_GetFreqDomain_SYS  stm32f0xx_ll_rcc.o
    0x080049d4   0x00000004   Code   RO         2349    i.RadioCheckRfFrequency  radio.o
    0x080049d8   0x00000044   Code   RO         2330    i.RadioComputeCRC   crc.o
    0x08004a1c   0x0000001e   Code   RO         2350    i.RadioGetStatus    radio.o
    0x08004a3a   0x00000004   Code   RO         2351    i.RadioGetWakeupTime  radio.o
    0x08004a3e   0x00000002   PAD
    0x08004a40   0x00000048   Code   RO         2352    i.RadioInit         radio.o
    0x08004a88   0x000000fc   Code   RO         2353    i.RadioIrqProcess   radio.o
    0x08004b84   0x00000024   Code   RO         2354    i.RadioIsChannelFree  radio.o
    0x08004ba8   0x0000000c   Code   RO         2355    i.RadioOnDioIrq     radio.o
    0x08004bb4   0x00000034   Code   RO         2358    i.RadioRandom       radio.o
    0x08004be8   0x00000008   Code   RO         2359    i.RadioRead         radio.o
    0x08004bf0   0x00000008   Code   RO         2360    i.RadioReadBuffer   radio.o
    0x08004bf8   0x00000008   Code   RO         2362    i.RadioRssi         radio.o
    0x08004c00   0x00000030   Code   RO         2363    i.RadioRx           radio.o
    0x08004c30   0x00000030   Code   RO         2364    i.RadioRxBoosted    radio.o
    0x08004c60   0x00000040   Code   RO         2365    i.RadioSend         radio.o
    0x08004ca0   0x00000008   Code   RO         2366    i.RadioSetChannel   radio.o
    0x08004ca8   0x0000002c   Code   RO         2367    i.RadioSetMaxPayloadLength  radio.o
    0x08004cd4   0x00000030   Code   RO         2368    i.RadioSetModem     radio.o
    0x08004d04   0x00000038   Code   RO         2369    i.RadioSetPublicNetwork  radio.o
    0x08004d3c   0x000001c4   Code   RO         2370    i.RadioSetRxConfig  radio.o
    0x08004f00   0x00000008   Code   RO         2371    i.RadioSetRxDutyCycle  radio.o
    0x08004f08   0x0000011c   Code   RO         2372    i.RadioSetTxConfig  radio.o
    0x08005024   0x00000014   Code   RO         2373    i.RadioSetTxContinuousWave  radio.o
    0x08005038   0x00000020   Code   RO         2374    i.RadioSleep        radio.o
    0x08005058   0x00000008   Code   RO         2375    i.RadioStandby      radio.o
    0x08005060   0x00000008   Code   RO         2376    i.RadioStartCad     radio.o
    0x08005068   0x00000184   Code   RO         2377    i.RadioTimeOnAir    radio.o
    0x080051ec   0x00000008   Code   RO         2379    i.RadioWrite        radio.o
    0x080051f4   0x00000008   Code   RO         2380    i.RadioWriteBuffer  radio.o
    0x080051fc   0x0000000c   Code   RO          270    i.ReadConfig_5      functions.o
    0x08005208   0x00000036   Code   RO         1473    i.ReadFlashMem      kmachine.o
    0x0800523e   0x00000008   Code   RO          271    i.ReadJumperSW      functions.o
    0x08005246   0x00000002   PAD
    0x08005248   0x0000005c   Code   RO         1475    i.ReadSysCfgFromFlash  kmachine.o
    0x080052a4   0x00000010   Code   RO         1087    i.ResetBit          modbusrtu.o
    0x080052b4   0x0000004c   Code   RO         1246    i.RunTimer          plcfunctions.o
    0x08005300   0x00000008   Code   RO         1930    i.SPI1_IRQHandler   stm32f0xx_it.o
    0x08005308   0x00000014   Code   RO          272    i.SPI1_IRQ_CallBack  functions.o
    0x0800531c   0x00000002   Code   RO         1931    i.SVC_Handler       stm32f0xx_it.o
    0x0800531e   0x00000002   Code   RO         2858    i.SX126xAntSwOff    sx126x-board.o
    0x08005320   0x00000002   Code   RO         2859    i.SX126xAntSwOn     sx126x-board.o
    0x08005322   0x00000002   PAD
    0x08005324   0x00000074   Code   RO         2576    i.SX126xCalibrateImage  sx126x.o
    0x08005398   0x00000020   Code   RO         2577    i.SX126xCheckDeviceReady  sx126x.o
    0x080053b8   0x00000014   Code   RO         2579    i.SX126xClearIrqStatus  sx126x.o
    0x080053cc   0x00000014   Code   RO         2581    i.SX126xGetIrqStatus  sx126x.o
    0x080053e0   0x0000000c   Code   RO         2582    i.SX126xGetOperatingMode  sx126x.o
    0x080053ec   0x00000004   Code   RO         2861    i.SX126xGetPaSelect  sx126x-board.o
    0x080053f0   0x0000007c   Code   RO         2583    i.SX126xGetPacketStatus  sx126x.o
    0x0800546c   0x0000000c   Code   RO         2584    i.SX126xGetPacketType  sx126x.o
    0x08005478   0x0000002c   Code   RO         2585    i.SX126xGetPayload  sx126x.o
    0x080054a4   0x00000018   Code   RO         2587    i.SX126xGetRssiInst  sx126x.o
    0x080054bc   0x00000044   Code   RO         2588    i.SX126xGetRxBufferStatus  sx126x.o
    0x08005500   0x00000024   Code   RO         2590    i.SX126xInit        sx126x.o
    0x08005524   0x00000044   Code   RO         2862    i.SX126xReadBuffer  sx126x-board.o
    0x08005568   0x0000003e   Code   RO         2863    i.SX126xReadCommand  sx126x-board.o
    0x080055a6   0x00000010   Code   RO         2864    i.SX126xReadRegister  sx126x-board.o
    0x080055b6   0x0000004a   Code   RO         2865    i.SX126xReadRegisters  sx126x-board.o
    0x08005600   0x00000024   Code   RO         2866    i.SX126xReset       sx126x-board.o
    0x08005624   0x00000010   Code   RO         2591    i.SX126xSendPayload  sx126x.o
    0x08005634   0x00000014   Code   RO         2592    i.SX126xSetBufferBaseAddress  sx126x.o
    0x08005648   0x00000018   Code   RO         2593    i.SX126xSetCad      sx126x.o
    0x08005660   0x00000030   Code   RO         2594    i.SX126xSetCadParams  sx126x.o
    0x08005690   0x00000024   Code   RO         2595    i.SX126xSetCrcPolynomial  sx126x.o
    0x080056b4   0x00000024   Code   RO         2596    i.SX126xSetCrcSeed  sx126x.o
    0x080056d8   0x0000000e   Code   RO         2597    i.SX126xSetDio2AsRfSwitchCtrl  sx126x.o
    0x080056e6   0x00000028   Code   RO         2599    i.SX126xSetDioIrqParams  sx126x.o
    0x0800570e   0x00000002   PAD
    0x08005710   0x00000018   Code   RO         2600    i.SX126xSetFs       sx126x.o
    0x08005728   0x0000000e   Code   RO         2601    i.SX126xSetLoRaSymbNumTimeout  sx126x.o
    0x08005736   0x00000002   PAD
    0x08005738   0x000000a0   Code   RO         2602    i.SX126xSetModulationParams  sx126x.o
    0x080057d8   0x00000018   Code   RO         2603    i.SX126xSetPaConfig  sx126x.o
    0x080057f0   0x000000b4   Code   RO         2604    i.SX126xSetPacketParams  sx126x.o
    0x080058a4   0x0000001c   Code   RO         2605    i.SX126xSetPacketType  sx126x.o
    0x080058c0   0x0000000e   Code   RO         2606    i.SX126xSetPayload  sx126x.o
    0x080058ce   0x0000000e   Code   RO         2607    i.SX126xSetRegulatorMode  sx126x.o
    0x080058dc   0x0000004c   Code   RO         2608    i.SX126xSetRfFrequency  sx126x.o
    0x08005928   0x0000000a   Code   RO         2867    i.SX126xSetRfTxPower  sx126x-board.o
    0x08005932   0x00000002   PAD
    0x08005934   0x00000024   Code   RO         2609    i.SX126xSetRx       sx126x.o
    0x08005958   0x00000034   Code   RO         2610    i.SX126xSetRxBoosted  sx126x.o
    0x0800598c   0x00000030   Code   RO         2611    i.SX126xSetRxDutyCycle  sx126x.o
    0x080059bc   0x0000000e   Code   RO         2612    i.SX126xSetRxTxFallbackMode  sx126x.o
    0x080059ca   0x00000002   PAD
    0x080059cc   0x0000001c   Code   RO         2613    i.SX126xSetSleep    sx126x.o
    0x080059e8   0x00000024   Code   RO         2614    i.SX126xSetStandby  sx126x.o
    0x08005a0c   0x0000000e   Code   RO         2615    i.SX126xSetStopRxTimerOnPreambleDetect  sx126x.o
    0x08005a1a   0x00000012   Code   RO         2616    i.SX126xSetSyncWord  sx126x.o
    0x08005a2c   0x00000024   Code   RO         2617    i.SX126xSetTx       sx126x.o
    0x08005a50   0x0000000e   Code   RO         2618    i.SX126xSetTxContinuousWave  sx126x.o
    0x08005a5e   0x00000002   PAD
    0x08005a60   0x00000080   Code   RO         2620    i.SX126xSetTxParams  sx126x.o
    0x08005ae0   0x00000034   Code   RO         2621    i.SX126xSetWhiteningSeed  sx126x.o
    0x08005b14   0x00000010   Code   RO         2868    i.SX126xWaitOnBusy  sx126x-board.o
    0x08005b24   0x00000020   Code   RO         2869    i.SX126xWakeup      sx126x-board.o
    0x08005b44   0x0000003c   Code   RO         2870    i.SX126xWriteBuffer  sx126x-board.o
    0x08005b80   0x0000003a   Code   RO         2871    i.SX126xWriteCommand  sx126x-board.o
    0x08005bba   0x0000000c   Code   RO         2872    i.SX126xWriteRegister  sx126x-board.o
    0x08005bc6   0x00000042   Code   RO         2873    i.SX126xWriteRegisters  sx126x-board.o
    0x08005c08   0x00000078   Code   RO         1476    i.SaveRunStat       kmachine.o
    0x08005c80   0x00000038   Code   RO          273    i.SendPacket        functions.o
    0x08005cb8   0x00000010   Code   RO         1088    i.SetAddrBit        modbusrtu.o
    0x08005cc8   0x00000018   Code   RO          897    i.SetBitValue       klink.o
    0x08005ce0   0x00000012   Code   RO         1089    i.SetBitValue       modbusrtu.o
    0x08005cf2   0x00000018   Code   RO         1477    i.SetBitValue       kmachine.o
    0x08005d0a   0x00000002   PAD
    0x08005d0c   0x00000090   Code   RO         1478    i.SetCoilValue      kmachine.o
    0x08005d9c   0x00000018   Code   RO          274    i.SetErr2Led        functions.o
    0x08005db4   0x00000018   Code   RO          275    i.SetErrLed         functions.o
    0x08005dcc   0x00000014   Code   RO          276    i.SetOutStat        functions.o
    0x08005de0   0x00000018   Code   RO          277    i.SetRunLed         functions.o
    0x08005df8   0x000000c8   Code   RO         1479    i.SetVarData        kmachine.o
    0x08005ec0   0x00000180   Code   RO           18    i.ShowInitInfo      debug.o
    0x08006040   0x00000044   Code   RO         2163    i.SpiInOut          spi.o
    0x08006084   0x00000070   Code   RO         1248    i.StartPLC          plcfunctions.o
    0x080060f4   0x00000040   Code   RO         1249    i.StopPLC           plcfunctions.o
    0x08006134   0x00000044   Code   RO         1250    i.StopTimer         plcfunctions.o
    0x08006178   0x0000000c   Code   RO         1932    i.SysTick_Handler   stm32f0xx_it.o
    0x08006184   0x000000a4   Code   RO         1766    i.SystemClock_Config  bsp.o
    0x08006228   0x0000005c   Code   RO         2972    i.SystemInit        system_stm32f0xx.o
    0x08006284   0x00000018   Code   RO         1933    i.TIM6_IRQHandler   stm32f0xx_it.o
    0x0800629c   0x00000088   Code   RO         1934    i.USART1_IRQHandler  stm32f0xx_it.o
    0x08006324   0x0000004c   Code   RO         1935    i.USART2_IRQHandler  stm32f0xx_it.o
    0x08006370   0x00000020   Code   RO          283    i.Uart1RecvDone     functions.o
    0x08006390   0x00000060   Code   RO          284    i.Uart1SendDMA      functions.o
    0x080063f0   0x00000010   Code   RO          285    i.Uart1SendDone     functions.o
    0x08006400   0x00000030   Code   RO          286    i.Uart1TriggerSendDMA  functions.o
    0x08006430   0x00000060   Code   RO          287    i.Uart2RecvDMA      functions.o
    0x08006490   0x00000040   Code   RO          288    i.Uart2RecvDone     functions.o
    0x080064d0   0x00000060   Code   RO          289    i.Uart2SendDMA      functions.o
    0x08006530   0x00000010   Code   RO          290    i.Uart2SendDone     functions.o
    0x08006540   0x00000018   Code   RO         1480    i.WriteFactoryData  kmachine.o
    0x08006558   0x00000040   Code   RO         1481    i.WriteProgram      kmachine.o
    0x08006598   0x0000005c   Code   RO         1482    i.WriteSysCfgToFlash  kmachine.o
    0x080065f4   0x00000048   Code   RO         1483    i.WriteToFlashMemNoErase  kmachine.o
    0x0800663c   0x00000002   Code   RO         2021    i._Error_Handler    main.o
    0x0800663e   0x00000002   PAD
    0x08006640   0x00000028   Code   RO         5049    i.__0sprintf$8      mc_p.l(printf8.o)
    0x08006668   0x0000002e   Code   RO         5145    i.__ARM_clz         mf_p.l(depilogue.o)
    0x08006696   0x0000001a   Code   RO          821    i.__ARM_common_switch8  kbus.o
    0x080066b0   0x0000000e   Code   RO         5157    i.__scatterload_copy  mc_p.l(handlers.o)
    0x080066be   0x00000002   Code   RO         5158    i.__scatterload_null  mc_p.l(handlers.o)
    0x080066c0   0x0000000e   Code   RO         5159    i.__scatterload_zeroinit  mc_p.l(handlers.o)
    0x080066ce   0x00000002   PAD
    0x080066d0   0x00000428   Code   RO         5054    i._printf_core      mc_p.l(printf8.o)
    0x08006af8   0x00000020   Code   RO         5055    i._printf_post_padding  mc_p.l(printf8.o)
    0x08006b18   0x0000002c   Code   RO         5056    i._printf_pre_padding  mc_p.l(printf8.o)
    0x08006b44   0x0000000a   Code   RO         5058    i._sputc            mc_p.l(printf8.o)
    0x08006b4e   0x00000002   PAD
    0x08006b50   0x000000c8   Code   RO         4814    i.ceil              m_ps.l(ceil.o)
    0x08006c18   0x00000018   Code   RO           20    i.clearscreen       debug.o
    0x08006c30   0x00000038   Code   RO          294    i.crc16bitbybit     functions.o
    0x08006c68   0x00000030   Code   RO          295    i.crc16table        functions.o
    0x08006c98   0x00000040   Code   RO         1090    i.crc16tablefast    modbusrtu.o
    0x08006cd8   0x0000002c   Code   RO          296    i.crc_check         functions.o
    0x08006d04   0x00000034   Code   RO          297    i.displayInput      functions.o
    0x08006d38   0x000000c8   Code   RO         4818    i.floor             m_ps.l(floor.o)
    0x08006e00   0x00000016   Code   RO         1169    i.initQueue         myqueue.o
    0x08006e16   0x00000002   PAD
    0x08006e18   0x00000520   Code   RO         2022    i.main              main.o
    0x08007338   0x00000008   Code   RO         4821    i.rint              m_ps.l(rint.o)
    0x08007340   0x00000010   Data   RO           22    .constdata          debug.o
    0x08007350   0x00000406   Data   RO          300    .constdata          functions.o
    0x08007756   0x00000020   Data   RO         1093    .constdata          modbusrtu.o
    0x08007776   0x00000018   Data   RO         1488    .constdata          kmachine.o
    0x0800778e   0x00000002   PAD
    0x08007790   0x00000090   Data   RO         1489    .constdata          kmachine.o
    0x08007820   0x00000005   Data   RO         1767    .constdata          bsp.o
    0x08007825   0x00000005   Data   RO         1936    .constdata          stm32f0xx_it.o
    0x0800782a   0x00000002   PAD
    0x0800782c   0x0000006c   Data   RO         2383    .constdata          radio.o
    0x08007898   0x000000b4   Data   RO         2384    .constdata          radio.o
    0x0800794c   0x00000010   Data   RO         2973    .constdata          system_stm32f0xx.o
    0x0800795c   0x00000008   Data   RO         2974    .constdata          system_stm32f0xx.o
    0x08007964   0x00000020   Data   RO         5155    Region$$Table       anon$$obj.o
 
 
    Execution Region RW_IRAM1 (Base: 0x20000000, Size: 0x00001dd8, Max: 0x00002000, ABSOLUTE, COMPRESSED[0x00000060])
 
    Base Addr    Size         Type   Attr      Idx    E Section Name        Object
 
    0x20000000   0x00000014   Data   RW           24    .data               debug.o
    0x20000014   0x00000004   Data   RW          303    .data               functions.o
    0x20000018   0x00000018   Data   RW          304    .data               functions.o
    0x20000030   0x00000004   Data   RW          715    .data               globaldef.o
    0x20000034   0x00000004   Data   RW          716    .data               globaldef.o
    0x20000038   0x00000004   Data   RW          717    .data               globaldef.o
    0x2000003c   0x00000004   Data   RW          718    .data               globaldef.o
    0x20000040   0x00000004   Data   RW          720    .data               globaldef.o
    0x20000044   0x00000004   Data   RW          722    .data               globaldef.o
    0x20000048   0x00000004   Data   RW          723    .data               globaldef.o
    0x2000004c   0x00000038   Data   RW          754    .data               kbus.o
    0x20000084   0x0000000c   Data   RW          901    .data               klink.o
    0x20000090   0x00000001   Data   RW         1094    .data               modbusrtu.o
    0x20000091   0x00000003   PAD
    0x20000094   0x00000004   Data   RW         1253    .data               plcfunctions.o
    0x20000098   0x00000024   Data   RW         1490    .data               kmachine.o
    0x200000bc   0x00000004   Data   RW         1492    .data               kmachine.o
    0x200000c0   0x00000004   Data   RW         1493    .data               kmachine.o
    0x200000c4   0x00000004   Data   RW         1494    .data               kmachine.o
    0x200000c8   0x00000028   Data   RW         2025    .data               main.o
    0x200000f0   0x00000008   Data   RW         2215    .data               kwireless.o
    0x200000f8   0x000000d8   Data   RW         2385    .data               radio.o
    0x200001d0   0x00000008   Data   RW         2622    .data               sx126x.o
    0x200001d8   0x00000004   Data   RW         2975    .data               system_stm32f0xx.o
    0x200001dc   0x00000004   Data   RW         3501    .data               stm32f0xx_hal.o
    0x200001e0   0x00000100   Zero   RW           21    .bss                debug.o
    0x200002e0   0x00000094   Zero   RW          709    .bss                globaldef.o
    0x20000374   0x00000094   Zero   RW          710    .bss                globaldef.o
    0x20000408   0x00000080   Zero   RW          711    .bss                globaldef.o
    0x20000488   0x00000080   Zero   RW          713    .bss                globaldef.o
    0x20000508   0x000004a0   Zero   RW          752    .bss                kbus.o
    0x200009a8   0x00000110   Zero   RW          899    .bss                klink.o
    0x20000ab8   0x00000080   Zero   RW         1092    .bss                modbusrtu.o
    0x20000b38   0x00000208   Zero   RW         1251    .bss                plcfunctions.o
    0x20000d40   0x00000080   Zero   RW         1486    .bss                kmachine.o
    0x20000dc0   0x000007d4   Zero   RW         1487    .bss                kmachine.o
    0x20001594   0x00000204   Zero   RW         2023    .bss                main.o
    0x20001798   0x000000d0   Zero   RW         2212    .bss                kwireless.o
    0x20001868   0x00000150   Zero   RW         2382    .bss                radio.o
    0x200019b8   0x00000020   Zero   RW         4446    .bss                stm32f0xx_hal_flash.o
    0x200019d8   0x00000400   Zero   RW            1    STACK               startup_stm32f030x8.o
 
 
==============================================================================
 
Image component sizes
 
 
      Code (inc. data)   RO Data    RW Data    ZI Data      Debug   Object Name
 
      2162        196          5          0          0     106356   bsp.o
       112         16          0          0          0       1711   crc.o
       676        226         16         20        256     260557   debug.o
         8          0          0          0          0        472   delay.o
      1580        274       1030         28          0     243879   functions.o
         0          0          0         28        552       2473   globaldef.o
      1886        176          0         56       1184      12888   kbus.o
      1998        112          0         12        272      10473   klink.o
      1968        224        168         48       2132      28158   kmachine.o
      2072        294          0          8        208      18089   kwireless.o
      1430        234          0         40        516      65951   main.o
       982         42         32          1        128       8025   modbusrtu.o
       316          0          0          0          0       5363   myqueue.o
      2136        200          0          4        520     189562   plcfunctions.o
      2018        178        288        216        336      24632   radio.o
        68          4          0          0          0       8551   spi.o
        28          8        180          0       1024        612   startup_stm32f030x8.o
       122         18          0          4          0       3503   stm32f0xx_hal.o
       156         22          0          0          0       9303   stm32f0xx_hal_cortex.o
       348         56          0          0         32       4582   stm32f0xx_hal_flash.o
       232         30          0          0          0       2997   stm32f0xx_hal_flash_ex.o
        68          4          0          0          0      12870   stm32f0xx_hal_msp.o
      1284         82          0          0          0       4362   stm32f0xx_hal_rcc.o
       232         14          0          0          0       1328   stm32f0xx_hal_rcc_ex.o
       510         74          5          0          0      54769   stm32f0xx_it.o
        92         10          0          0          0      26484   stm32f0xx_ll_adc.o
       168          0          0          0          0       6691   stm32f0xx_ll_gpio.o
       256         44          0          0          0      16752   stm32f0xx_ll_rcc.o
       100          8          0          0          0      11198   stm32f0xx_ll_spi.o
       132         24          0          0          0      30526   stm32f0xx_ll_tim.o
       172         16          0          0          0      16868   stm32f0xx_ll_usart.o
       518          8          0          0          0      14306   sx126x-board.o
      1752        184          0          8          0      23178   sx126x.o
        92         14         24          4          0       1119   system_stm32f0xx.o
 
    ----------------------------------------------------------------------
     25718       2792       1784        480       7160    1228588   Object Totals
         0          0         32          0          0          0   (incl. Generated)
        44          0          4          3          0          0   (incl. Padding)
 
    ----------------------------------------------------------------------
 
      Code (inc. data)   RO Data    RW Data    ZI Data      Debug   Library Member Name
 
       200         20          0          0          0         76   ceil.o
       200         20          0          0          0         76   floor.o
         8          0          0          0          0         68   rint.o
        86          0          0          0          0          0   __dczerorl2.o
         0          0          0          0          0          0   entry.o
         0          0          0          0          0          0   entry10a.o
         0          0          0          0          0          0   entry11a.o
         8          4          0          0          0          0   entry2.o
         4          0          0          0          0          0   entry5.o
         0          0          0          0          0          0   entry7b.o
         0          0          0          0          0          0   entry8b.o
         8          4          0          0          0          0   entry9a.o
        30          0          0          0          0          0   handlers.o
        40          0          0          0          0         72   idiv.o
        36          8          0          0          0         68   init.o
         0          0          0          0          0          0   iusefp.o
        76          0          0          0          0         76   ldiv.o
        32          0          0          0          0         68   llshl.o
        38          0          0          0          0         68   llsshr.o
        34          0          0          0          0         68   llushr.o
        36          0          0          0          0         60   memcpya.o
        36          0          0          0          0        100   memseta.o
      1190         48          0          0          0        384   printf8.o
        44          0          0          0          0         72   uidiv.o
        96          0          0          0          0         84   uldiv.o
        20          0          0          0          0         60   uread4.o
        40          2          0          0          0         68   cdrcmple.o
       356          4          0          0          0        140   dadd.o
       240          6          0          0          0         84   ddiv.o
       236          0          0          0          0        216   depilogue.o
        60         10          0          0          0         68   dfixui.o
        40          6          0          0          0         68   dflti.o
        28          4          0          0          0         68   dfltui.o
       208          6          0          0          0         88   dmul.o
       124         10          0          0          0         76   drnd.o
        44          0          0          0          0         72   dscalb.o
 
    ----------------------------------------------------------------------
      3606        152          0          0          0       2348   Library Totals
         8          0          0          0          0          0   (incl. Padding)
 
    ----------------------------------------------------------------------
 
      Code (inc. data)   RO Data    RW Data    ZI Data      Debug   Library Name
 
       408         40          0          0          0        220   m_ps.l
      1814         64          0          0          0       1180   mc_p.l
      1376         48          0          0          0        948   mf_p.l
 
    ----------------------------------------------------------------------
      3606        152          0          0          0       2348   Library Totals
 
    ----------------------------------------------------------------------
 
==============================================================================
 
 
      Code (inc. data)   RO Data    RW Data    ZI Data      Debug   
 
     29324       2944       1784        480       7160    1217636   Grand Totals
     29324       2944       1784         96       7160    1217636   ELF Image Totals (compressed)
     29324       2944       1784         96          0          0   ROM Totals
 
==============================================================================
 
    Total RO  Size (Code + RO Data)                31108 (  30.38kB)
    Total RW  Size (RW Data + ZI Data)              7640 (   7.46kB)
    Total ROM Size (Code + RO Data + RW Data)      31204 (  30.47kB)
 
==============================================================================