STM32G0_ProjectBase.map
237.7 KB
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
Component: ARM Compiler 5.06 update 6 (build 750) Tool: armlink [4d35ed]
==============================================================================
Section Cross References
startup_stm32g030xx.o(RESET) refers to startup_stm32g030xx.o(STACK) for __initial_sp
startup_stm32g030xx.o(RESET) refers to startup_stm32g030xx.o(.text) for Reset_Handler
startup_stm32g030xx.o(RESET) refers to stm32g0xx_it.o(i.NMI_Handler) for NMI_Handler
startup_stm32g030xx.o(RESET) refers to stm32g0xx_it.o(i.HardFault_Handler) for HardFault_Handler
startup_stm32g030xx.o(RESET) refers to port.o(i.SVC_Handler) for SVC_Handler
startup_stm32g030xx.o(RESET) refers to port.o(.emb_text) for PendSV_Handler
startup_stm32g030xx.o(RESET) refers to port.o(i.SysTick_Handler) for SysTick_Handler
startup_stm32g030xx.o(RESET) refers to stm32g0xx_it.o(i.DMA1_Channel1_IRQHandler) for DMA1_Channel1_IRQHandler
startup_stm32g030xx.o(RESET) refers to stm32g0xx_it.o(i.TIM16_IRQHandler) for TIM16_IRQHandler
startup_stm32g030xx.o(RESET) refers to stm32g0xx_it.o(i.USART1_IRQHandler) for USART1_IRQHandler
startup_stm32g030xx.o(.text) refers to system_stm32g0xx.o(i.SystemInit) for SystemInit
startup_stm32g030xx.o(.text) refers to entry.o(.ARM.Collect$$$$00000000) for __main
main.o(i.HAL_TIM_PeriodElapsedCallback) refers to stm32g0xx_hal.o(i.HAL_IncTick) for HAL_IncTick
main.o(i.SystemClock_Config) refers to stm32g0xx_ll_utils.o(i.LL_SetSystemCoreClock) for LL_SetSystemCoreClock
main.o(i.SystemClock_Config) refers to stm32g0xx_hal_timebase_tim.o(i.HAL_InitTick) for HAL_InitTick
main.o(i.main) refers to stm32g0xx_hal.o(i.HAL_Init) for HAL_Init
main.o(i.main) refers to main.o(i.SystemClock_Config) for SystemClock_Config
main.o(i.main) refers to gpio.o(i.MX_GPIO_Init) for MX_GPIO_Init
main.o(i.main) refers to dma.o(i.MX_DMA_Init) for MX_DMA_Init
main.o(i.main) refers to adc.o(i.MX_ADC1_Init) for MX_ADC1_Init
main.o(i.main) refers to tim.o(i.MX_TIM3_Init) for MX_TIM3_Init
main.o(i.main) refers to tim.o(i.MX_TIM14_Init) for MX_TIM14_Init
main.o(i.main) refers to usart.o(i.MX_USART1_UART_Init) for MX_USART1_UART_Init
main.o(i.main) refers to usart.o(i.MX_USART2_UART_Init) for MX_USART2_UART_Init
main.o(i.main) refers to uart_dma.o(i.UartDma_Init) for UartDma_Init
main.o(i.main) refers to adc_dma.o(i.Adc_Dma_Initialize) for Adc_Dma_Initialize
main.o(i.main) refers to app_freertos.o(i.MX_FREERTOS_Init) for MX_FREERTOS_Init
main.o(i.main) refers to cmsis_os.o(i.osKernelStart) for osKernelStart
gpio.o(i.MX_GPIO_Init) refers to gpio.o(i.LL_IOP_GRP1_EnableClock) for LL_IOP_GRP1_EnableClock
app_freertos.o(i.MX_FREERTOS_Init) refers to memcpya.o(.text) for __aeabi_memcpy4
app_freertos.o(i.MX_FREERTOS_Init) refers to cmsis_os.o(i.osThreadCreate) for osThreadCreate
app_freertos.o(i.MX_FREERTOS_Init) refers to app_freertos.o(.constdata) for .constdata
app_freertos.o(i.MX_FREERTOS_Init) refers to app_freertos.o(.data) for .data
app_freertos.o(i.StartDefaultTask) refers to cmsis_os.o(i.osDelay) for osDelay
app_freertos.o(.constdata) refers to app_freertos.o(.conststring) for .conststring
app_freertos.o(.constdata) refers to app_freertos.o(i.StartDefaultTask) for StartDefaultTask
adc.o(i.MX_ADC1_Init) refers to memseta.o(.text) for __aeabi_memclr4
adc.o(i.MX_ADC1_Init) refers to stm32g0xx_ll_gpio.o(i.LL_GPIO_Init) for LL_GPIO_Init
adc.o(i.MX_ADC1_Init) refers to stm32g0xx_ll_adc.o(i.LL_ADC_Init) for LL_ADC_Init
adc.o(i.MX_ADC1_Init) refers to stm32g0xx_ll_adc.o(i.LL_ADC_REG_Init) for LL_ADC_REG_Init
adc.o(i.MX_ADC1_Init) refers to adc.o(i.LL_ADC_SetSamplingTimeCommonChannels) for LL_ADC_SetSamplingTimeCommonChannels
adc.o(i.MX_ADC1_Init) refers to uidiv.o(.text) for __aeabi_uidivmod
adc.o(i.MX_ADC1_Init) refers to adc.o(i.LL_ADC_REG_SetSequencerRanks) for LL_ADC_REG_SetSequencerRanks
adc.o(i.MX_ADC1_Init) refers to adc.o(i.LL_ADC_SetChannelSamplingTime) for LL_ADC_SetChannelSamplingTime
adc.o(i.MX_ADC1_Init) refers to adc.o(.constdata) for .constdata
adc.o(i.MX_ADC1_Init) refers to system_stm32g0xx.o(.data) for SystemCoreClock
tim.o(i.LL_TIM_OC_DisableFast) refers to tim.o(.constdata) for .constdata
tim.o(i.LL_TIM_OC_EnablePreload) refers to tim.o(.constdata) for .constdata
tim.o(i.MX_TIM14_Init) refers to memseta.o(.text) for __aeabi_memclr4
tim.o(i.MX_TIM14_Init) refers to stm32g0xx_ll_tim.o(i.LL_TIM_Init) for LL_TIM_Init
tim.o(i.MX_TIM14_Init) refers to tim.o(i.LL_TIM_OC_EnablePreload) for LL_TIM_OC_EnablePreload
tim.o(i.MX_TIM14_Init) refers to stm32g0xx_ll_tim.o(i.LL_TIM_OC_Init) for LL_TIM_OC_Init
tim.o(i.MX_TIM14_Init) refers to tim.o(i.LL_TIM_OC_DisableFast) for LL_TIM_OC_DisableFast
tim.o(i.MX_TIM14_Init) refers to tim.o(i.LL_IOP_GRP1_EnableClock) for LL_IOP_GRP1_EnableClock
tim.o(i.MX_TIM14_Init) refers to stm32g0xx_ll_gpio.o(i.LL_GPIO_Init) for LL_GPIO_Init
tim.o(i.MX_TIM14_Init) refers to tim.o(i.Pwm_Start) for Pwm_Start
tim.o(i.MX_TIM3_Init) refers to memseta.o(.text) for __aeabi_memclr4
tim.o(i.MX_TIM3_Init) refers to stm32g0xx_ll_tim.o(i.LL_TIM_Init) for LL_TIM_Init
tim.o(i.MX_TIM3_Init) refers to tim.o(i.LL_TIM_OC_EnablePreload) for LL_TIM_OC_EnablePreload
tim.o(i.MX_TIM3_Init) refers to stm32g0xx_ll_tim.o(i.LL_TIM_OC_Init) for LL_TIM_OC_Init
tim.o(i.MX_TIM3_Init) refers to tim.o(i.LL_TIM_OC_DisableFast) for LL_TIM_OC_DisableFast
tim.o(i.MX_TIM3_Init) refers to tim.o(i.LL_IOP_GRP1_EnableClock) for LL_IOP_GRP1_EnableClock
tim.o(i.MX_TIM3_Init) refers to stm32g0xx_ll_gpio.o(i.LL_GPIO_Init) for LL_GPIO_Init
tim.o(i.MX_TIM3_Init) refers to tim.o(i.Pwm_Start) for Pwm_Start
usart.o(i.LL_DMA_SetChannelPriorityLevel) refers to usart.o(.constdata) for .constdata
usart.o(i.LL_DMA_SetDataTransferDirection) refers to usart.o(.constdata) for .constdata
usart.o(i.LL_DMA_SetMemoryIncMode) refers to usart.o(.constdata) for .constdata
usart.o(i.LL_DMA_SetMemorySize) refers to usart.o(.constdata) for .constdata
usart.o(i.LL_DMA_SetMode) refers to usart.o(.constdata) for .constdata
usart.o(i.LL_DMA_SetPeriphIncMode) refers to usart.o(.constdata) for .constdata
usart.o(i.LL_DMA_SetPeriphSize) refers to usart.o(.constdata) for .constdata
usart.o(i.MX_USART1_UART_Init) refers to memseta.o(.text) for __aeabi_memclr4
usart.o(i.MX_USART1_UART_Init) refers to usart.o(i.LL_IOP_GRP1_EnableClock) for LL_IOP_GRP1_EnableClock
usart.o(i.MX_USART1_UART_Init) refers to stm32g0xx_ll_gpio.o(i.LL_GPIO_Init) for LL_GPIO_Init
usart.o(i.MX_USART1_UART_Init) refers to usart.o(i.LL_DMA_SetPeriphRequest) for LL_DMA_SetPeriphRequest
usart.o(i.MX_USART1_UART_Init) refers to usart.o(i.LL_DMA_SetDataTransferDirection) for LL_DMA_SetDataTransferDirection
usart.o(i.MX_USART1_UART_Init) refers to usart.o(i.LL_DMA_SetChannelPriorityLevel) for LL_DMA_SetChannelPriorityLevel
usart.o(i.MX_USART1_UART_Init) refers to usart.o(i.LL_DMA_SetMode) for LL_DMA_SetMode
usart.o(i.MX_USART1_UART_Init) refers to usart.o(i.LL_DMA_SetPeriphIncMode) for LL_DMA_SetPeriphIncMode
usart.o(i.MX_USART1_UART_Init) refers to usart.o(i.LL_DMA_SetMemoryIncMode) for LL_DMA_SetMemoryIncMode
usart.o(i.MX_USART1_UART_Init) refers to usart.o(i.LL_DMA_SetPeriphSize) for LL_DMA_SetPeriphSize
usart.o(i.MX_USART1_UART_Init) refers to usart.o(i.LL_DMA_SetMemorySize) for LL_DMA_SetMemorySize
usart.o(i.MX_USART1_UART_Init) refers to stm32g0xx_ll_usart.o(i.LL_USART_Init) for LL_USART_Init
usart.o(i.MX_USART1_UART_Init) refers to usart.o(i.LL_USART_ConfigAsyncMode) for LL_USART_ConfigAsyncMode
usart.o(i.MX_USART2_UART_Init) refers to memseta.o(.text) for __aeabi_memclr4
usart.o(i.MX_USART2_UART_Init) refers to usart.o(i.LL_IOP_GRP1_EnableClock) for LL_IOP_GRP1_EnableClock
usart.o(i.MX_USART2_UART_Init) refers to stm32g0xx_ll_gpio.o(i.LL_GPIO_Init) for LL_GPIO_Init
usart.o(i.MX_USART2_UART_Init) refers to stm32g0xx_ll_usart.o(i.LL_USART_Init) for LL_USART_Init
usart.o(i.MX_USART2_UART_Init) refers to usart.o(i.LL_USART_ConfigAsyncMode) for LL_USART_ConfigAsyncMode
stm32g0xx_it.o(i.DMA1_Channel1_IRQHandler) refers to uart_dma.o(i.Dma_Recive_TC1) for Dma_Recive_TC1
stm32g0xx_it.o(i.TIM16_IRQHandler) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_IRQHandler) for HAL_TIM_IRQHandler
stm32g0xx_it.o(i.TIM16_IRQHandler) refers to stm32g0xx_hal_timebase_tim.o(.bss) for htim16
stm32g0xx_it.o(i.USART1_IRQHandler) refers to uart_dma.o(i.UartIDLE_Recive_Data) for UartIDLE_Recive_Data
stm32g0xx_hal_msp.o(i.HAL_MspInit) refers to stm32g0xx_hal_cortex.o(i.HAL_NVIC_SetPriority) for HAL_NVIC_SetPriority
stm32g0xx_hal_timebase_tim.o(i.HAL_InitTick) refers to stm32g0xx_hal_cortex.o(i.HAL_NVIC_SetPriority) for HAL_NVIC_SetPriority
stm32g0xx_hal_timebase_tim.o(i.HAL_InitTick) refers to stm32g0xx_hal_cortex.o(i.HAL_NVIC_EnableIRQ) for HAL_NVIC_EnableIRQ
stm32g0xx_hal_timebase_tim.o(i.HAL_InitTick) refers to stm32g0xx_hal_rcc.o(i.HAL_RCC_GetClockConfig) for HAL_RCC_GetClockConfig
stm32g0xx_hal_timebase_tim.o(i.HAL_InitTick) refers to stm32g0xx_hal_rcc.o(i.HAL_RCC_GetPCLK1Freq) for HAL_RCC_GetPCLK1Freq
stm32g0xx_hal_timebase_tim.o(i.HAL_InitTick) refers to uidiv.o(.text) for __aeabi_uidivmod
stm32g0xx_hal_timebase_tim.o(i.HAL_InitTick) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_Base_Init) for HAL_TIM_Base_Init
stm32g0xx_hal_timebase_tim.o(i.HAL_InitTick) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_Base_Start_IT) for HAL_TIM_Base_Start_IT
stm32g0xx_hal_timebase_tim.o(i.HAL_InitTick) refers to stm32g0xx_hal_timebase_tim.o(.bss) for .bss
stm32g0xx_hal_timebase_tim.o(i.HAL_ResumeTick) refers to stm32g0xx_hal_timebase_tim.o(.bss) for .bss
stm32g0xx_hal_timebase_tim.o(i.HAL_SuspendTick) refers to stm32g0xx_hal_timebase_tim.o(.bss) for .bss
stm32g0xx_ll_utils.o(i.LL_Init1msTick) refers to uidiv.o(.text) for __aeabi_uidivmod
stm32g0xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSE) refers to stm32g0xx_ll_utils.o(i.UTILS_PLL_IsBusy) for UTILS_PLL_IsBusy
stm32g0xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSE) refers to stm32g0xx_ll_utils.o(i.UTILS_GetPLLOutputFrequency) for UTILS_GetPLLOutputFrequency
stm32g0xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSE) refers to stm32g0xx_ll_utils.o(i.LL_RCC_PLL_ConfigDomain_SYS) for LL_RCC_PLL_ConfigDomain_SYS
stm32g0xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSE) refers to stm32g0xx_ll_utils.o(i.UTILS_EnablePLLAndSwitchSystem) for UTILS_EnablePLLAndSwitchSystem
stm32g0xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSI) refers to stm32g0xx_ll_utils.o(i.UTILS_PLL_IsBusy) for UTILS_PLL_IsBusy
stm32g0xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSI) refers to stm32g0xx_ll_utils.o(i.UTILS_GetPLLOutputFrequency) for UTILS_GetPLLOutputFrequency
stm32g0xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSI) refers to stm32g0xx_ll_utils.o(i.LL_RCC_PLL_ConfigDomain_SYS) for LL_RCC_PLL_ConfigDomain_SYS
stm32g0xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSI) refers to stm32g0xx_ll_utils.o(i.UTILS_EnablePLLAndSwitchSystem) for UTILS_EnablePLLAndSwitchSystem
stm32g0xx_ll_utils.o(i.LL_SetSystemCoreClock) refers to system_stm32g0xx.o(.data) for SystemCoreClock
stm32g0xx_ll_utils.o(i.UTILS_EnablePLLAndSwitchSystem) refers to stm32g0xx_ll_utils.o(i.LL_SetFlashLatency) for LL_SetFlashLatency
stm32g0xx_ll_utils.o(i.UTILS_EnablePLLAndSwitchSystem) refers to system_stm32g0xx.o(.constdata) for AHBPrescTable
stm32g0xx_ll_utils.o(i.UTILS_EnablePLLAndSwitchSystem) refers to system_stm32g0xx.o(.data) for SystemCoreClock
stm32g0xx_ll_utils.o(i.UTILS_GetPLLOutputFrequency) refers to uidiv.o(.text) for __aeabi_uidivmod
stm32g0xx_ll_gpio.o(i.LL_GPIO_DeInit) refers to stm32g0xx_ll_gpio.o(i.LL_IOP_GRP1_ForceReset) for LL_IOP_GRP1_ForceReset
stm32g0xx_ll_gpio.o(i.LL_GPIO_DeInit) refers to stm32g0xx_ll_gpio.o(i.LL_IOP_GRP1_ReleaseReset) for LL_IOP_GRP1_ReleaseReset
stm32g0xx_ll_dma.o(i.LL_DMA_DeInit) refers to stm32g0xx_ll_dma.o(i.LL_DMA_SetPeriphRequest) for LL_DMA_SetPeriphRequest
stm32g0xx_ll_dma.o(i.LL_DMA_Init) refers to stm32g0xx_ll_dma.o(i.LL_DMA_SetPeriphRequest) for LL_DMA_SetPeriphRequest
stm32g0xx_ll_dma.o(i.LL_DMA_Init) refers to stm32g0xx_ll_dma.o(.constdata) for .constdata
stm32g0xx_ll_rcc.o(i.LL_RCC_GetADCClockFreq) refers to stm32g0xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_ADC) for RCC_PLL_GetFreqDomain_ADC
stm32g0xx_ll_rcc.o(i.LL_RCC_GetADCClockFreq) refers to stm32g0xx_ll_rcc.o(i.RCC_GetSystemClockFreq) for RCC_GetSystemClockFreq
stm32g0xx_ll_rcc.o(i.LL_RCC_GetI2CClockFreq) refers to stm32g0xx_ll_rcc.o(i.RCC_GetSystemClockFreq) for RCC_GetSystemClockFreq
stm32g0xx_ll_rcc.o(i.LL_RCC_GetI2CClockFreq) refers to stm32g0xx_ll_rcc.o(i.RCC_GetHCLKClockFreq) for RCC_GetHCLKClockFreq
stm32g0xx_ll_rcc.o(i.LL_RCC_GetI2CClockFreq) refers to stm32g0xx_ll_rcc.o(i.RCC_GetPCLK1ClockFreq) for RCC_GetPCLK1ClockFreq
stm32g0xx_ll_rcc.o(i.LL_RCC_GetI2SClockFreq) refers to stm32g0xx_ll_rcc.o(i.RCC_GetSystemClockFreq) for RCC_GetSystemClockFreq
stm32g0xx_ll_rcc.o(i.LL_RCC_GetI2SClockFreq) refers to stm32g0xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_I2S1) for RCC_PLL_GetFreqDomain_I2S1
stm32g0xx_ll_rcc.o(i.LL_RCC_GetSystemClocksFreq) refers to stm32g0xx_ll_rcc.o(i.RCC_GetSystemClockFreq) for RCC_GetSystemClockFreq
stm32g0xx_ll_rcc.o(i.LL_RCC_GetSystemClocksFreq) refers to stm32g0xx_ll_rcc.o(i.RCC_GetHCLKClockFreq) for RCC_GetHCLKClockFreq
stm32g0xx_ll_rcc.o(i.LL_RCC_GetSystemClocksFreq) refers to stm32g0xx_ll_rcc.o(i.RCC_GetPCLK1ClockFreq) for RCC_GetPCLK1ClockFreq
stm32g0xx_ll_rcc.o(i.LL_RCC_GetUSARTClockFreq) refers to stm32g0xx_ll_rcc.o(i.RCC_GetSystemClockFreq) for RCC_GetSystemClockFreq
stm32g0xx_ll_rcc.o(i.LL_RCC_GetUSARTClockFreq) refers to stm32g0xx_ll_rcc.o(i.RCC_GetHCLKClockFreq) for RCC_GetHCLKClockFreq
stm32g0xx_ll_rcc.o(i.LL_RCC_GetUSARTClockFreq) refers to stm32g0xx_ll_rcc.o(i.RCC_GetPCLK1ClockFreq) for RCC_GetPCLK1ClockFreq
stm32g0xx_ll_rcc.o(i.RCC_GetHCLKClockFreq) refers to system_stm32g0xx.o(.constdata) for AHBPrescTable
stm32g0xx_ll_rcc.o(i.RCC_GetPCLK1ClockFreq) refers to system_stm32g0xx.o(.constdata) for APBPrescTable
stm32g0xx_ll_rcc.o(i.RCC_GetSystemClockFreq) refers to uidiv.o(.text) for __aeabi_uidivmod
stm32g0xx_ll_rcc.o(i.RCC_GetSystemClockFreq) refers to stm32g0xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SYS) for RCC_PLL_GetFreqDomain_SYS
stm32g0xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_ADC) refers to uidiv.o(.text) for __aeabi_uidivmod
stm32g0xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_I2S1) refers to uidiv.o(.text) for __aeabi_uidivmod
stm32g0xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SYS) refers to uidiv.o(.text) for __aeabi_uidivmod
stm32g0xx_hal_rcc.o(i.HAL_RCC_ClockConfig) refers to stm32g0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
stm32g0xx_hal_rcc.o(i.HAL_RCC_ClockConfig) refers to stm32g0xx_hal_rcc.o(i.HAL_RCC_GetSysClockFreq) for HAL_RCC_GetSysClockFreq
stm32g0xx_hal_rcc.o(i.HAL_RCC_ClockConfig) refers to stm32g0xx_hal_timebase_tim.o(i.HAL_InitTick) for HAL_InitTick
stm32g0xx_hal_rcc.o(i.HAL_RCC_ClockConfig) refers to system_stm32g0xx.o(.constdata) for AHBPrescTable
stm32g0xx_hal_rcc.o(i.HAL_RCC_ClockConfig) refers to system_stm32g0xx.o(.data) for SystemCoreClock
stm32g0xx_hal_rcc.o(i.HAL_RCC_ClockConfig) refers to stm32g0xx_hal.o(.data) for uwTickPrio
stm32g0xx_hal_rcc.o(i.HAL_RCC_DeInit) refers to stm32g0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
stm32g0xx_hal_rcc.o(i.HAL_RCC_DeInit) refers to stm32g0xx_hal_timebase_tim.o(i.HAL_InitTick) for HAL_InitTick
stm32g0xx_hal_rcc.o(i.HAL_RCC_DeInit) refers to system_stm32g0xx.o(.data) for SystemCoreClock
stm32g0xx_hal_rcc.o(i.HAL_RCC_DeInit) refers to stm32g0xx_hal.o(.data) for uwTickPrio
stm32g0xx_hal_rcc.o(i.HAL_RCC_GetHCLKFreq) refers to system_stm32g0xx.o(.data) for SystemCoreClock
stm32g0xx_hal_rcc.o(i.HAL_RCC_GetPCLK1Freq) refers to system_stm32g0xx.o(.data) for SystemCoreClock
stm32g0xx_hal_rcc.o(i.HAL_RCC_GetPCLK1Freq) refers to system_stm32g0xx.o(.constdata) for APBPrescTable
stm32g0xx_hal_rcc.o(i.HAL_RCC_GetSysClockFreq) refers to uidiv.o(.text) for __aeabi_uidivmod
stm32g0xx_hal_rcc.o(i.HAL_RCC_MCOConfig) refers to stm32g0xx_hal_gpio.o(i.HAL_GPIO_Init) for HAL_GPIO_Init
stm32g0xx_hal_rcc.o(i.HAL_RCC_NMI_IRQHandler) refers to stm32g0xx_hal_rcc.o(i.HAL_RCC_CSSCallback) for HAL_RCC_CSSCallback
stm32g0xx_hal_rcc.o(i.HAL_RCC_NMI_IRQHandler) refers to stm32g0xx_hal_rcc.o(i.HAL_RCC_LSECSSCallback) for HAL_RCC_LSECSSCallback
stm32g0xx_hal_rcc.o(i.HAL_RCC_OscConfig) refers to stm32g0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
stm32g0xx_hal_rcc.o(i.HAL_RCC_OscConfig) refers to uidiv.o(.text) for __aeabi_uidivmod
stm32g0xx_hal_rcc.o(i.HAL_RCC_OscConfig) refers to stm32g0xx_hal_timebase_tim.o(i.HAL_InitTick) for HAL_InitTick
stm32g0xx_hal_rcc.o(i.HAL_RCC_OscConfig) refers to system_stm32g0xx.o(.data) for SystemCoreClock
stm32g0xx_hal_rcc.o(i.HAL_RCC_OscConfig) refers to stm32g0xx_hal.o(.data) for uwTickPrio
stm32g0xx_hal_rcc_ex.o(i.HAL_RCCEx_DisableLSCO) refers to stm32g0xx_hal_pwr.o(i.HAL_PWR_EnableBkUpAccess) for HAL_PWR_EnableBkUpAccess
stm32g0xx_hal_rcc_ex.o(i.HAL_RCCEx_DisableLSCO) refers to stm32g0xx_hal_pwr.o(i.HAL_PWR_DisableBkUpAccess) for HAL_PWR_DisableBkUpAccess
stm32g0xx_hal_rcc_ex.o(i.HAL_RCCEx_EnableLSCO) refers to stm32g0xx_hal_gpio.o(i.HAL_GPIO_Init) for HAL_GPIO_Init
stm32g0xx_hal_rcc_ex.o(i.HAL_RCCEx_EnableLSCO) refers to stm32g0xx_hal_pwr.o(i.HAL_PWR_EnableBkUpAccess) for HAL_PWR_EnableBkUpAccess
stm32g0xx_hal_rcc_ex.o(i.HAL_RCCEx_EnableLSCO) refers to stm32g0xx_hal_pwr.o(i.HAL_PWR_DisableBkUpAccess) for HAL_PWR_DisableBkUpAccess
stm32g0xx_hal_rcc_ex.o(i.HAL_RCCEx_GetPeriphCLKFreq) refers to uidiv.o(.text) for __aeabi_uidivmod
stm32g0xx_hal_rcc_ex.o(i.HAL_RCCEx_GetPeriphCLKFreq) refers to stm32g0xx_hal_rcc.o(i.HAL_RCC_GetPCLK1Freq) for HAL_RCC_GetPCLK1Freq
stm32g0xx_hal_rcc_ex.o(i.HAL_RCCEx_GetPeriphCLKFreq) refers to stm32g0xx_hal_rcc.o(i.HAL_RCC_GetSysClockFreq) for HAL_RCC_GetSysClockFreq
stm32g0xx_hal_rcc_ex.o(i.HAL_RCCEx_PeriphCLKConfig) refers to stm32g0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
stm32g0xx_hal_flash.o(i.FLASH_WaitForLastOperation) refers to stm32g0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
stm32g0xx_hal_flash.o(i.FLASH_WaitForLastOperation) refers to stm32g0xx_hal_flash.o(.bss) for .bss
stm32g0xx_hal_flash.o(i.HAL_FLASH_GetError) refers to stm32g0xx_hal_flash.o(.bss) for .bss
stm32g0xx_hal_flash.o(i.HAL_FLASH_IRQHandler) refers to stm32g0xx_hal_flash.o(i.HAL_FLASH_OperationErrorCallback) for HAL_FLASH_OperationErrorCallback
stm32g0xx_hal_flash.o(i.HAL_FLASH_IRQHandler) refers to stm32g0xx_hal_flash_ex.o(i.FLASH_PageErase) for FLASH_PageErase
stm32g0xx_hal_flash.o(i.HAL_FLASH_IRQHandler) refers to stm32g0xx_hal_flash.o(i.HAL_FLASH_EndOfOperationCallback) for HAL_FLASH_EndOfOperationCallback
stm32g0xx_hal_flash.o(i.HAL_FLASH_IRQHandler) refers to stm32g0xx_hal_flash.o(.bss) for .bss
stm32g0xx_hal_flash.o(i.HAL_FLASH_Program) refers to stm32g0xx_hal_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
stm32g0xx_hal_flash.o(i.HAL_FLASH_Program) refers to stm32g0xx_hal_flash.o(i.FLASH_Program_Fast) for FLASH_Program_Fast
stm32g0xx_hal_flash.o(i.HAL_FLASH_Program) refers to stm32g0xx_hal_flash.o(i.FLASH_Program_DoubleWord) for FLASH_Program_DoubleWord
stm32g0xx_hal_flash.o(i.HAL_FLASH_Program) refers to stm32g0xx_hal_flash.o(.bss) for .bss
stm32g0xx_hal_flash.o(i.HAL_FLASH_Program_IT) refers to stm32g0xx_hal_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
stm32g0xx_hal_flash.o(i.HAL_FLASH_Program_IT) refers to stm32g0xx_hal_flash.o(i.FLASH_Program_Fast) for FLASH_Program_Fast
stm32g0xx_hal_flash.o(i.HAL_FLASH_Program_IT) refers to stm32g0xx_hal_flash.o(i.FLASH_Program_DoubleWord) for FLASH_Program_DoubleWord
stm32g0xx_hal_flash.o(i.HAL_FLASH_Program_IT) refers to stm32g0xx_hal_flash.o(.bss) for .bss
stm32g0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase) refers to stm32g0xx_hal_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
stm32g0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase) refers to stm32g0xx_hal_flash_ex.o(i.FLASH_MassErase) for FLASH_MassErase
stm32g0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase) refers to stm32g0xx_hal_flash_ex.o(i.FLASH_PageErase) for FLASH_PageErase
stm32g0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase) refers to stm32g0xx_hal_flash.o(.bss) for pFlash
stm32g0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase_IT) refers to stm32g0xx_hal_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
stm32g0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase_IT) refers to stm32g0xx_hal_flash_ex.o(i.FLASH_PageErase) for FLASH_PageErase
stm32g0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase_IT) refers to stm32g0xx_hal_flash_ex.o(i.FLASH_MassErase) for FLASH_MassErase
stm32g0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase_IT) refers to stm32g0xx_hal_flash.o(.bss) for pFlash
stm32g0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBGetConfig) refers to stm32g0xx_hal_flash_ex.o(i.FLASH_OB_GetRDP) for FLASH_OB_GetRDP
stm32g0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBGetConfig) refers to stm32g0xx_hal_flash_ex.o(i.FLASH_OB_GetUser) for FLASH_OB_GetUser
stm32g0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBProgram) refers to stm32g0xx_hal_flash_ex.o(i.FLASH_OB_GetUser) for FLASH_OB_GetUser
stm32g0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBProgram) refers to stm32g0xx_hal_flash_ex.o(i.FLASH_OB_GetRDP) for FLASH_OB_GetRDP
stm32g0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBProgram) refers to stm32g0xx_hal_flash_ex.o(i.FLASH_OB_OptrConfig) for FLASH_OB_OptrConfig
stm32g0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBProgram) refers to stm32g0xx_hal_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
stm32g0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBProgram) refers to stm32g0xx_hal_flash.o(.bss) for pFlash
stm32g0xx_hal_gpio.o(i.HAL_GPIO_EXTI_IRQHandler) refers to stm32g0xx_hal_gpio.o(i.HAL_GPIO_EXTI_Rising_Callback) for HAL_GPIO_EXTI_Rising_Callback
stm32g0xx_hal_gpio.o(i.HAL_GPIO_EXTI_IRQHandler) refers to stm32g0xx_hal_gpio.o(i.HAL_GPIO_EXTI_Falling_Callback) for HAL_GPIO_EXTI_Falling_Callback
stm32g0xx_hal_dma.o(i.DMA_CalcDMAMUXChannelBaseAndMask) refers to uidiv.o(.text) for __aeabi_uidivmod
stm32g0xx_hal_dma.o(i.HAL_DMA_DeInit) refers to uidiv.o(.text) for __aeabi_uidivmod
stm32g0xx_hal_dma.o(i.HAL_DMA_DeInit) refers to stm32g0xx_hal_dma.o(i.DMA_CalcDMAMUXChannelBaseAndMask) for DMA_CalcDMAMUXChannelBaseAndMask
stm32g0xx_hal_dma.o(i.HAL_DMA_DeInit) refers to stm32g0xx_hal_dma.o(i.DMA_CalcDMAMUXRequestGenBaseAndMask) for DMA_CalcDMAMUXRequestGenBaseAndMask
stm32g0xx_hal_dma.o(i.HAL_DMA_Init) refers to uidiv.o(.text) for __aeabi_uidivmod
stm32g0xx_hal_dma.o(i.HAL_DMA_Init) refers to stm32g0xx_hal_dma.o(i.DMA_CalcDMAMUXChannelBaseAndMask) for DMA_CalcDMAMUXChannelBaseAndMask
stm32g0xx_hal_dma.o(i.HAL_DMA_Init) refers to stm32g0xx_hal_dma.o(i.DMA_CalcDMAMUXRequestGenBaseAndMask) for DMA_CalcDMAMUXRequestGenBaseAndMask
stm32g0xx_hal_dma.o(i.HAL_DMA_PollForTransfer) refers to stm32g0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
stm32g0xx_hal_dma.o(i.HAL_DMA_Start) refers to stm32g0xx_hal_dma.o(i.DMA_SetConfig) for DMA_SetConfig
stm32g0xx_hal_dma.o(i.HAL_DMA_Start_IT) refers to stm32g0xx_hal_dma.o(i.DMA_SetConfig) for DMA_SetConfig
stm32g0xx_hal_dma.o(i.HAL_DMA_UnRegisterCallback) refers to stm32g0xx_hal_dma.o(i.__ARM_common_switch8) for __ARM_common_switch8
stm32g0xx_hal_pwr.o(i.HAL_PWR_EnterSLEEPMode) refers to stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_EnableLowPowerRunMode) for HAL_PWREx_EnableLowPowerRunMode
stm32g0xx_hal_pwr.o(i.HAL_PWR_EnterSLEEPMode) refers to stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_DisableLowPowerRunMode) for HAL_PWREx_DisableLowPowerRunMode
stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_ControlVoltageScaling) refers to uidiv.o(.text) for __aeabi_uidivmod
stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_ControlVoltageScaling) refers to system_stm32g0xx.o(.data) for SystemCoreClock
stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_DisableGPIOPullDown) refers to stm32g0xx_hal_dma.o(i.__ARM_common_switch8) for __ARM_common_switch8
stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_DisableGPIOPullUp) refers to stm32g0xx_hal_dma.o(i.__ARM_common_switch8) for __ARM_common_switch8
stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_DisableLowPowerRunMode) refers to uidiv.o(.text) for __aeabi_uidivmod
stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_DisableLowPowerRunMode) refers to system_stm32g0xx.o(.data) for SystemCoreClock
stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_EnableGPIOPullDown) refers to stm32g0xx_hal_dma.o(i.__ARM_common_switch8) for __ARM_common_switch8
stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_EnableGPIOPullUp) refers to stm32g0xx_hal_dma.o(i.__ARM_common_switch8) for __ARM_common_switch8
stm32g0xx_hal_cortex.o(i.HAL_NVIC_SetPriority) refers to stm32g0xx_hal_cortex.o(i.__NVIC_SetPriority) for __NVIC_SetPriority
stm32g0xx_hal_cortex.o(i.HAL_SYSTICK_Config) refers to stm32g0xx_hal_cortex.o(i.__NVIC_SetPriority) for __NVIC_SetPriority
stm32g0xx_hal_cortex.o(i.HAL_SYSTICK_IRQHandler) refers to stm32g0xx_hal_cortex.o(i.HAL_SYSTICK_Callback) for HAL_SYSTICK_Callback
stm32g0xx_hal.o(i.HAL_DeInit) refers to stm32g0xx_hal.o(i.HAL_MspDeInit) for HAL_MspDeInit
stm32g0xx_hal.o(i.HAL_Delay) refers to stm32g0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
stm32g0xx_hal.o(i.HAL_Delay) refers to stm32g0xx_hal.o(.data) for .data
stm32g0xx_hal.o(i.HAL_GetTick) refers to stm32g0xx_hal.o(.data) for .data
stm32g0xx_hal.o(i.HAL_GetTickFreq) refers to stm32g0xx_hal.o(.data) for .data
stm32g0xx_hal.o(i.HAL_GetTickPrio) refers to stm32g0xx_hal.o(.data) for .data
stm32g0xx_hal.o(i.HAL_IncTick) refers to stm32g0xx_hal.o(.data) for .data
stm32g0xx_hal.o(i.HAL_Init) refers to stm32g0xx_hal_timebase_tim.o(i.HAL_InitTick) for HAL_InitTick
stm32g0xx_hal.o(i.HAL_Init) refers to stm32g0xx_hal_msp.o(i.HAL_MspInit) for HAL_MspInit
stm32g0xx_hal.o(i.HAL_InitTick) refers to uidiv.o(.text) for __aeabi_uidivmod
stm32g0xx_hal.o(i.HAL_InitTick) refers to stm32g0xx_hal_cortex.o(i.HAL_SYSTICK_Config) for HAL_SYSTICK_Config
stm32g0xx_hal.o(i.HAL_InitTick) refers to stm32g0xx_hal_cortex.o(i.HAL_NVIC_SetPriority) for HAL_NVIC_SetPriority
stm32g0xx_hal.o(i.HAL_InitTick) refers to stm32g0xx_hal.o(.data) for .data
stm32g0xx_hal.o(i.HAL_InitTick) refers to system_stm32g0xx.o(.data) for SystemCoreClock
stm32g0xx_hal.o(i.HAL_SetTickFreq) refers to stm32g0xx_hal_timebase_tim.o(i.HAL_InitTick) for HAL_InitTick
stm32g0xx_hal.o(i.HAL_SetTickFreq) refers to stm32g0xx_hal.o(.data) for .data
stm32g0xx_hal_tim.o(i.HAL_TIM_Base_DeInit) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_Base_MspDeInit) for HAL_TIM_Base_MspDeInit
stm32g0xx_hal_tim.o(i.HAL_TIM_Base_Init) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_Base_MspInit) for HAL_TIM_Base_MspInit
stm32g0xx_hal_tim.o(i.HAL_TIM_Base_Init) refers to stm32g0xx_hal_tim.o(i.TIM_Base_SetConfig) for TIM_Base_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_Base_Start_DMA) refers to stm32g0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
stm32g0xx_hal_tim.o(i.HAL_TIM_Base_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_DMAPeriodElapsedCplt) for TIM_DMAPeriodElapsedCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_Base_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_DMAPeriodElapsedHalfCplt) for TIM_DMAPeriodElapsedHalfCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_Base_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_DMAError) for TIM_DMAError
stm32g0xx_hal_tim.o(i.HAL_TIM_Base_Stop_DMA) refers to stm32g0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
stm32g0xx_hal_tim.o(i.HAL_TIM_ConfigClockSource) refers to stm32g0xx_hal_tim.o(i.TIM_ETR_SetConfig) for TIM_ETR_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_ConfigClockSource) refers to stm32g0xx_hal_tim.o(i.TIM_TI1_ConfigInputStage) for TIM_TI1_ConfigInputStage
stm32g0xx_hal_tim.o(i.HAL_TIM_ConfigClockSource) refers to stm32g0xx_hal_tim.o(i.TIM_TI2_ConfigInputStage) for TIM_TI2_ConfigInputStage
stm32g0xx_hal_tim.o(i.HAL_TIM_ConfigClockSource) refers to stm32g0xx_hal_tim.o(i.TIM_ITRx_SetConfig) for TIM_ITRx_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_ConfigOCrefClear) refers to stm32g0xx_hal_tim.o(i.TIM_ETR_SetConfig) for TIM_ETR_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiReadStart) refers to stm32g0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiReadStart) refers to stm32g0xx_hal_tim.o(i.TIM_DMAError) for TIM_DMAError
stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiReadStart) refers to stm32g0xx_hal_tim.o(i.TIM_DMACaptureCplt) for TIM_DMACaptureCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiReadStart) refers to stm32g0xx_hal_tim.o(i.TIM_DMACaptureHalfCplt) for TIM_DMACaptureHalfCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiReadStart) refers to stm32g0xx_hal_tim.o(i.TIM_DMATriggerCplt) for TIM_DMATriggerCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiReadStart) refers to stm32g0xx_hal_tim.o(i.TIM_DMATriggerHalfCplt) for TIM_DMATriggerHalfCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiReadStart) refers to stm32g0xx_hal_tim.o(i.TIM_DMAPeriodElapsedCplt) for TIM_DMAPeriodElapsedCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiReadStart) refers to stm32g0xx_hal_tim.o(i.TIM_DMAPeriodElapsedHalfCplt) for TIM_DMAPeriodElapsedHalfCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiReadStart) refers to stm32g0xx_hal_tim_ex.o(i.TIMEx_DMACommutationCplt) for TIMEx_DMACommutationCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiReadStart) refers to stm32g0xx_hal_tim_ex.o(i.TIMEx_DMACommutationHalfCplt) for TIMEx_DMACommutationHalfCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32g0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32g0xx_hal_tim.o(i.TIM_DMAError) for TIM_DMAError
stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32g0xx_hal_tim.o(i.TIM_DMADelayPulseCplt) for TIM_DMADelayPulseCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32g0xx_hal_tim.o(i.TIM_DMADelayPulseHalfCplt) for TIM_DMADelayPulseHalfCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32g0xx_hal_tim.o(i.TIM_DMATriggerCplt) for TIM_DMATriggerCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32g0xx_hal_tim.o(i.TIM_DMATriggerHalfCplt) for TIM_DMATriggerHalfCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32g0xx_hal_tim.o(i.TIM_DMAPeriodElapsedCplt) for TIM_DMAPeriodElapsedCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32g0xx_hal_tim.o(i.TIM_DMAPeriodElapsedHalfCplt) for TIM_DMAPeriodElapsedHalfCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32g0xx_hal_tim_ex.o(i.TIMEx_DMACommutationCplt) for TIMEx_DMACommutationCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32g0xx_hal_tim_ex.o(i.TIMEx_DMACommutationHalfCplt) for TIMEx_DMACommutationHalfCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_ReadStart) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiReadStart) for HAL_TIM_DMABurst_MultiReadStart
stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_ReadStop) refers to stm32g0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_WriteStart) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiWriteStart) for HAL_TIM_DMABurst_MultiWriteStart
stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_WriteStop) refers to stm32g0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_DeInit) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_MspDeInit) for HAL_TIM_Encoder_MspDeInit
stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_Init) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_MspInit) for HAL_TIM_Encoder_MspInit
stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_Init) refers to stm32g0xx_hal_tim.o(i.TIM_Base_SetConfig) for TIM_Base_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_Start) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_Start_DMA) refers to stm32g0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_DMACaptureCplt) for TIM_DMACaptureCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_DMACaptureHalfCplt) for TIM_DMACaptureHalfCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_DMAError) for TIM_DMAError
stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_Start_IT) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_Stop) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_Stop_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_Stop_DMA) refers to stm32g0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_Stop_IT) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_IC_ConfigChannel) refers to stm32g0xx_hal_tim.o(i.TIM_TI1_SetConfig) for TIM_TI1_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_IC_ConfigChannel) refers to stm32g0xx_hal_tim.o(i.TIM_TI2_SetConfig) for TIM_TI2_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_IC_DeInit) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_IC_MspDeInit) for HAL_TIM_IC_MspDeInit
stm32g0xx_hal_tim.o(i.HAL_TIM_IC_Init) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_IC_MspInit) for HAL_TIM_IC_MspInit
stm32g0xx_hal_tim.o(i.HAL_TIM_IC_Init) refers to stm32g0xx_hal_tim.o(i.TIM_Base_SetConfig) for TIM_Base_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_IC_Start) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_IC_Start_DMA) refers to stm32g0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
stm32g0xx_hal_tim.o(i.HAL_TIM_IC_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_IC_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_DMACaptureCplt) for TIM_DMACaptureCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_IC_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_DMACaptureHalfCplt) for TIM_DMACaptureHalfCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_IC_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_DMAError) for TIM_DMAError
stm32g0xx_hal_tim.o(i.HAL_TIM_IC_Start_IT) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_IC_Stop) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_IC_Stop_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_IC_Stop_DMA) refers to stm32g0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
stm32g0xx_hal_tim.o(i.HAL_TIM_IC_Stop_IT) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_IRQHandler) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_IC_CaptureCallback) for HAL_TIM_IC_CaptureCallback
stm32g0xx_hal_tim.o(i.HAL_TIM_IRQHandler) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_OC_DelayElapsedCallback) for HAL_TIM_OC_DelayElapsedCallback
stm32g0xx_hal_tim.o(i.HAL_TIM_IRQHandler) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_PulseFinishedCallback) for HAL_TIM_PWM_PulseFinishedCallback
stm32g0xx_hal_tim.o(i.HAL_TIM_IRQHandler) refers to main.o(i.HAL_TIM_PeriodElapsedCallback) for HAL_TIM_PeriodElapsedCallback
stm32g0xx_hal_tim.o(i.HAL_TIM_IRQHandler) refers to stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_BreakCallback) for HAL_TIMEx_BreakCallback
stm32g0xx_hal_tim.o(i.HAL_TIM_IRQHandler) refers to stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_Break2Callback) for HAL_TIMEx_Break2Callback
stm32g0xx_hal_tim.o(i.HAL_TIM_IRQHandler) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_TriggerCallback) for HAL_TIM_TriggerCallback
stm32g0xx_hal_tim.o(i.HAL_TIM_IRQHandler) refers to stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_CommutCallback) for HAL_TIMEx_CommutCallback
stm32g0xx_hal_tim.o(i.HAL_TIM_OC_ConfigChannel) refers to stm32g0xx_hal_tim.o(i.TIM_OC1_SetConfig) for TIM_OC1_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_OC_ConfigChannel) refers to stm32g0xx_hal_tim.o(i.TIM_OC2_SetConfig) for TIM_OC2_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_OC_ConfigChannel) refers to stm32g0xx_hal_tim.o(i.TIM_OC3_SetConfig) for TIM_OC3_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_OC_ConfigChannel) refers to stm32g0xx_hal_tim.o(i.TIM_OC4_SetConfig) for TIM_OC4_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_OC_ConfigChannel) refers to stm32g0xx_hal_tim.o(i.TIM_OC5_SetConfig) for TIM_OC5_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_OC_ConfigChannel) refers to stm32g0xx_hal_tim.o(i.TIM_OC6_SetConfig) for TIM_OC6_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_OC_DeInit) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_OC_MspDeInit) for HAL_TIM_OC_MspDeInit
stm32g0xx_hal_tim.o(i.HAL_TIM_OC_Init) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_OC_MspInit) for HAL_TIM_OC_MspInit
stm32g0xx_hal_tim.o(i.HAL_TIM_OC_Init) refers to stm32g0xx_hal_tim.o(i.TIM_Base_SetConfig) for TIM_Base_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_OC_Start) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_OC_Start_DMA) refers to stm32g0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
stm32g0xx_hal_tim.o(i.HAL_TIM_OC_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_OC_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_DMADelayPulseCplt) for TIM_DMADelayPulseCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_OC_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_DMADelayPulseHalfCplt) for TIM_DMADelayPulseHalfCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_OC_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_DMAError) for TIM_DMAError
stm32g0xx_hal_tim.o(i.HAL_TIM_OC_Start_IT) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_OC_Stop) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_OC_Stop_DMA) refers to stm32g0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
stm32g0xx_hal_tim.o(i.HAL_TIM_OC_Stop_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_OC_Stop_IT) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_OnePulse_ConfigChannel) refers to stm32g0xx_hal_tim.o(i.TIM_OC1_SetConfig) for TIM_OC1_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_OnePulse_ConfigChannel) refers to stm32g0xx_hal_tim.o(i.TIM_OC2_SetConfig) for TIM_OC2_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_OnePulse_ConfigChannel) refers to stm32g0xx_hal_tim.o(i.TIM_TI1_SetConfig) for TIM_TI1_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_OnePulse_ConfigChannel) refers to stm32g0xx_hal_tim.o(i.TIM_TI2_SetConfig) for TIM_TI2_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_OnePulse_DeInit) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_OnePulse_MspDeInit) for HAL_TIM_OnePulse_MspDeInit
stm32g0xx_hal_tim.o(i.HAL_TIM_OnePulse_Init) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_OnePulse_MspInit) for HAL_TIM_OnePulse_MspInit
stm32g0xx_hal_tim.o(i.HAL_TIM_OnePulse_Init) refers to stm32g0xx_hal_tim.o(i.TIM_Base_SetConfig) for TIM_Base_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_OnePulse_Start) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_OnePulse_Start_IT) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_OnePulse_Stop) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_OnePulse_Stop_IT) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_ConfigChannel) refers to stm32g0xx_hal_tim.o(i.TIM_OC1_SetConfig) for TIM_OC1_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_ConfigChannel) refers to stm32g0xx_hal_tim.o(i.TIM_OC2_SetConfig) for TIM_OC2_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_ConfigChannel) refers to stm32g0xx_hal_tim.o(i.TIM_OC3_SetConfig) for TIM_OC3_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_ConfigChannel) refers to stm32g0xx_hal_tim.o(i.TIM_OC4_SetConfig) for TIM_OC4_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_ConfigChannel) refers to stm32g0xx_hal_tim.o(i.TIM_OC5_SetConfig) for TIM_OC5_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_ConfigChannel) refers to stm32g0xx_hal_tim.o(i.TIM_OC6_SetConfig) for TIM_OC6_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_DeInit) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_MspDeInit) for HAL_TIM_PWM_MspDeInit
stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_Init) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_MspInit) for HAL_TIM_PWM_MspInit
stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_Init) refers to stm32g0xx_hal_tim.o(i.TIM_Base_SetConfig) for TIM_Base_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_Start) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_Start_DMA) refers to stm32g0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_DMADelayPulseCplt) for TIM_DMADelayPulseCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_DMADelayPulseHalfCplt) for TIM_DMADelayPulseHalfCplt
stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_DMAError) for TIM_DMAError
stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_Start_IT) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_Stop) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_Stop_DMA) refers to stm32g0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_Stop_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_Stop_IT) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim.o(i.HAL_TIM_SlaveConfigSynchro) refers to stm32g0xx_hal_tim.o(i.TIM_SlaveTimer_SetConfig) for TIM_SlaveTimer_SetConfig
stm32g0xx_hal_tim.o(i.HAL_TIM_SlaveConfigSynchro_IT) refers to stm32g0xx_hal_tim.o(i.TIM_SlaveTimer_SetConfig) for TIM_SlaveTimer_SetConfig
stm32g0xx_hal_tim.o(i.TIM_DMACaptureCplt) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_IC_CaptureCallback) for HAL_TIM_IC_CaptureCallback
stm32g0xx_hal_tim.o(i.TIM_DMACaptureHalfCplt) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_IC_CaptureHalfCpltCallback) for HAL_TIM_IC_CaptureHalfCpltCallback
stm32g0xx_hal_tim.o(i.TIM_DMADelayPulseCplt) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_PulseFinishedCallback) for HAL_TIM_PWM_PulseFinishedCallback
stm32g0xx_hal_tim.o(i.TIM_DMADelayPulseHalfCplt) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_PulseFinishedHalfCpltCallback) for HAL_TIM_PWM_PulseFinishedHalfCpltCallback
stm32g0xx_hal_tim.o(i.TIM_DMAError) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_ErrorCallback) for HAL_TIM_ErrorCallback
stm32g0xx_hal_tim.o(i.TIM_DMAPeriodElapsedCplt) refers to main.o(i.HAL_TIM_PeriodElapsedCallback) for HAL_TIM_PeriodElapsedCallback
stm32g0xx_hal_tim.o(i.TIM_DMAPeriodElapsedHalfCplt) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_PeriodElapsedHalfCpltCallback) for HAL_TIM_PeriodElapsedHalfCpltCallback
stm32g0xx_hal_tim.o(i.TIM_DMATriggerCplt) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_TriggerCallback) for HAL_TIM_TriggerCallback
stm32g0xx_hal_tim.o(i.TIM_DMATriggerHalfCplt) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_TriggerHalfCpltCallback) for HAL_TIM_TriggerHalfCpltCallback
stm32g0xx_hal_tim.o(i.TIM_SlaveTimer_SetConfig) refers to stm32g0xx_hal_dma.o(i.__ARM_common_switch8) for __ARM_common_switch8
stm32g0xx_hal_tim.o(i.TIM_SlaveTimer_SetConfig) refers to stm32g0xx_hal_tim.o(i.TIM_ETR_SetConfig) for TIM_ETR_SetConfig
stm32g0xx_hal_tim.o(i.TIM_SlaveTimer_SetConfig) refers to stm32g0xx_hal_tim.o(i.TIM_TI1_ConfigInputStage) for TIM_TI1_ConfigInputStage
stm32g0xx_hal_tim.o(i.TIM_SlaveTimer_SetConfig) refers to stm32g0xx_hal_tim.o(i.TIM_TI2_ConfigInputStage) for TIM_TI2_ConfigInputStage
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_ConfigCommutEvent_DMA) refers to stm32g0xx_hal_tim_ex.o(i.TIMEx_DMACommutationCplt) for TIMEx_DMACommutationCplt
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_ConfigCommutEvent_DMA) refers to stm32g0xx_hal_tim_ex.o(i.TIMEx_DMACommutationHalfCplt) for TIMEx_DMACommutationHalfCplt
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_ConfigCommutEvent_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_DMAError) for TIM_DMAError
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_DeInit) refers to stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_MspDeInit) for HAL_TIMEx_HallSensor_MspDeInit
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_Init) refers to stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_MspInit) for HAL_TIMEx_HallSensor_MspInit
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_Init) refers to stm32g0xx_hal_tim.o(i.TIM_Base_SetConfig) for TIM_Base_SetConfig
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_Init) refers to stm32g0xx_hal_tim.o(i.TIM_TI1_SetConfig) for TIM_TI1_SetConfig
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_Init) refers to stm32g0xx_hal_tim.o(i.TIM_OC2_SetConfig) for TIM_OC2_SetConfig
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_Start) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_Start_DMA) refers to stm32g0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_DMACaptureCplt) for TIM_DMACaptureCplt
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_DMACaptureHalfCplt) for TIM_DMACaptureHalfCplt
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_DMAError) for TIM_DMAError
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_Start_IT) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_Stop) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_Stop_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_Stop_DMA) refers to stm32g0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_Stop_IT) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OCN_Start) refers to stm32g0xx_hal_tim_ex.o(i.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OCN_Start_DMA) refers to stm32g0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OCN_Start_DMA) refers to stm32g0xx_hal_tim_ex.o(i.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OCN_Start_DMA) refers to stm32g0xx_hal_tim_ex.o(i.TIM_DMADelayPulseNCplt) for TIM_DMADelayPulseNCplt
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OCN_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_DMADelayPulseHalfCplt) for TIM_DMADelayPulseHalfCplt
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OCN_Start_DMA) refers to stm32g0xx_hal_tim_ex.o(i.TIM_DMAErrorCCxN) for TIM_DMAErrorCCxN
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OCN_Start_IT) refers to stm32g0xx_hal_tim_ex.o(i.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OCN_Stop) refers to stm32g0xx_hal_tim_ex.o(i.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OCN_Stop_DMA) refers to stm32g0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OCN_Stop_DMA) refers to stm32g0xx_hal_tim_ex.o(i.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OCN_Stop_IT) refers to stm32g0xx_hal_tim_ex.o(i.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OnePulseN_Start) refers to stm32g0xx_hal_tim_ex.o(i.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OnePulseN_Start) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OnePulseN_Start_IT) refers to stm32g0xx_hal_tim_ex.o(i.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OnePulseN_Start_IT) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OnePulseN_Stop) refers to stm32g0xx_hal_tim_ex.o(i.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OnePulseN_Stop) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OnePulseN_Stop_IT) refers to stm32g0xx_hal_tim_ex.o(i.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OnePulseN_Stop_IT) refers to stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd) for TIM_CCxChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_PWMN_Start) refers to stm32g0xx_hal_tim_ex.o(i.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_PWMN_Start_DMA) refers to stm32g0xx_hal_dma.o(i.HAL_DMA_Start_IT) for HAL_DMA_Start_IT
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_PWMN_Start_DMA) refers to stm32g0xx_hal_tim_ex.o(i.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_PWMN_Start_DMA) refers to stm32g0xx_hal_tim_ex.o(i.TIM_DMADelayPulseNCplt) for TIM_DMADelayPulseNCplt
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_PWMN_Start_DMA) refers to stm32g0xx_hal_tim.o(i.TIM_DMADelayPulseHalfCplt) for TIM_DMADelayPulseHalfCplt
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_PWMN_Start_DMA) refers to stm32g0xx_hal_tim_ex.o(i.TIM_DMAErrorCCxN) for TIM_DMAErrorCCxN
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_PWMN_Start_IT) refers to stm32g0xx_hal_tim_ex.o(i.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_PWMN_Stop) refers to stm32g0xx_hal_tim_ex.o(i.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_PWMN_Stop_DMA) refers to stm32g0xx_hal_dma.o(i.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_PWMN_Stop_DMA) refers to stm32g0xx_hal_tim_ex.o(i.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_PWMN_Stop_IT) refers to stm32g0xx_hal_tim_ex.o(i.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd
stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_ReArmBreakInput) refers to stm32g0xx_hal.o(i.HAL_GetTick) for HAL_GetTick
stm32g0xx_hal_tim_ex.o(i.TIMEx_DMACommutationCplt) refers to stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_CommutCallback) for HAL_TIMEx_CommutCallback
stm32g0xx_hal_tim_ex.o(i.TIMEx_DMACommutationHalfCplt) refers to stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_CommutHalfCpltCallback) for HAL_TIMEx_CommutHalfCpltCallback
stm32g0xx_hal_tim_ex.o(i.TIM_DMADelayPulseNCplt) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_PulseFinishedCallback) for HAL_TIM_PWM_PulseFinishedCallback
stm32g0xx_hal_tim_ex.o(i.TIM_DMAErrorCCxN) refers to stm32g0xx_hal_tim.o(i.HAL_TIM_ErrorCallback) for HAL_TIM_ErrorCallback
stm32g0xx_ll_tim.o(i.LL_TIM_DeInit) refers to stm32g0xx_ll_tim.o(i.LL_APB2_GRP1_ForceReset) for LL_APB2_GRP1_ForceReset
stm32g0xx_ll_tim.o(i.LL_TIM_DeInit) refers to stm32g0xx_ll_tim.o(i.LL_APB2_GRP1_ReleaseReset) for LL_APB2_GRP1_ReleaseReset
stm32g0xx_ll_tim.o(i.LL_TIM_OC_Init) refers to stm32g0xx_ll_tim.o(i.OC1Config) for OC1Config
stm32g0xx_ll_tim.o(i.LL_TIM_OC_Init) refers to stm32g0xx_ll_tim.o(i.OC2Config) for OC2Config
stm32g0xx_ll_tim.o(i.LL_TIM_OC_Init) refers to stm32g0xx_ll_tim.o(i.OC3Config) for OC3Config
stm32g0xx_ll_usart.o(i.LL_USART_Init) refers to stm32g0xx_ll_rcc.o(i.LL_RCC_GetUSARTClockFreq) for LL_RCC_GetUSARTClockFreq
stm32g0xx_ll_usart.o(i.LL_USART_Init) refers to stm32g0xx_ll_rcc.o(i.LL_RCC_GetSystemClocksFreq) for LL_RCC_GetSystemClocksFreq
stm32g0xx_ll_usart.o(i.LL_USART_Init) refers to uidiv.o(.text) for __aeabi_uidivmod
stm32g0xx_ll_usart.o(i.LL_USART_Init) refers to stm32g0xx_ll_usart.o(.constdata) for .constdata
system_stm32g0xx.o(i.SystemCoreClockUpdate) refers to uidiv.o(.text) for __aeabi_uidivmod
system_stm32g0xx.o(i.SystemCoreClockUpdate) refers to system_stm32g0xx.o(.data) for .data
system_stm32g0xx.o(i.SystemCoreClockUpdate) refers to system_stm32g0xx.o(.constdata) for .constdata
event_groups.o(i.vEventGroupClearBitsCallback) refers to event_groups.o(i.xEventGroupClearBits) for xEventGroupClearBits
event_groups.o(i.vEventGroupDelete) refers to tasks.o(i.vTaskSuspendAll) for vTaskSuspendAll
event_groups.o(i.vEventGroupDelete) refers to tasks.o(i.vTaskRemoveFromUnorderedEventList) for vTaskRemoveFromUnorderedEventList
event_groups.o(i.vEventGroupDelete) refers to heap_4.o(i.vPortFree) for vPortFree
event_groups.o(i.vEventGroupDelete) refers to tasks.o(i.xTaskResumeAll) for xTaskResumeAll
event_groups.o(i.vEventGroupSetBitsCallback) refers to event_groups.o(i.xEventGroupSetBits) for xEventGroupSetBits
event_groups.o(i.xEventGroupClearBits) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
event_groups.o(i.xEventGroupClearBits) refers to port.o(i.vPortExitCritical) for vPortExitCritical
event_groups.o(i.xEventGroupCreate) refers to heap_4.o(i.pvPortMalloc) for pvPortMalloc
event_groups.o(i.xEventGroupCreate) refers to list.o(i.vListInitialise) for vListInitialise
event_groups.o(i.xEventGroupGetBitsFromISR) refers to port.o(.emb_text) for ulSetInterruptMaskFromISR
event_groups.o(i.xEventGroupSetBits) refers to tasks.o(i.vTaskSuspendAll) for vTaskSuspendAll
event_groups.o(i.xEventGroupSetBits) refers to tasks.o(i.vTaskRemoveFromUnorderedEventList) for vTaskRemoveFromUnorderedEventList
event_groups.o(i.xEventGroupSetBits) refers to tasks.o(i.xTaskResumeAll) for xTaskResumeAll
event_groups.o(i.xEventGroupSync) refers to tasks.o(i.xTaskGetSchedulerState) for xTaskGetSchedulerState
event_groups.o(i.xEventGroupSync) refers to tasks.o(i.vTaskSuspendAll) for vTaskSuspendAll
event_groups.o(i.xEventGroupSync) refers to event_groups.o(i.xEventGroupSetBits) for xEventGroupSetBits
event_groups.o(i.xEventGroupSync) refers to tasks.o(i.vTaskPlaceOnUnorderedEventList) for vTaskPlaceOnUnorderedEventList
event_groups.o(i.xEventGroupSync) refers to tasks.o(i.xTaskResumeAll) for xTaskResumeAll
event_groups.o(i.xEventGroupSync) refers to port.o(i.vPortYield) for vPortYield
event_groups.o(i.xEventGroupSync) refers to tasks.o(i.uxTaskResetEventItemValue) for uxTaskResetEventItemValue
event_groups.o(i.xEventGroupSync) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
event_groups.o(i.xEventGroupSync) refers to port.o(i.vPortExitCritical) for vPortExitCritical
event_groups.o(i.xEventGroupWaitBits) refers to tasks.o(i.xTaskGetSchedulerState) for xTaskGetSchedulerState
event_groups.o(i.xEventGroupWaitBits) refers to tasks.o(i.vTaskSuspendAll) for vTaskSuspendAll
event_groups.o(i.xEventGroupWaitBits) refers to event_groups.o(i.prvTestWaitCondition) for prvTestWaitCondition
event_groups.o(i.xEventGroupWaitBits) refers to tasks.o(i.vTaskPlaceOnUnorderedEventList) for vTaskPlaceOnUnorderedEventList
event_groups.o(i.xEventGroupWaitBits) refers to tasks.o(i.xTaskResumeAll) for xTaskResumeAll
event_groups.o(i.xEventGroupWaitBits) refers to port.o(i.vPortYield) for vPortYield
event_groups.o(i.xEventGroupWaitBits) refers to tasks.o(i.uxTaskResetEventItemValue) for uxTaskResetEventItemValue
event_groups.o(i.xEventGroupWaitBits) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
event_groups.o(i.xEventGroupWaitBits) refers to port.o(i.vPortExitCritical) for vPortExitCritical
queue.o(i.pcQueueGetName) refers to queue.o(.bss) for .bss
queue.o(i.prvCopyDataFromQueue) refers to memcpya.o(.text) for __aeabi_memcpy
queue.o(i.prvCopyDataToQueue) refers to memcpya.o(.text) for __aeabi_memcpy
queue.o(i.prvCopyDataToQueue) refers to tasks.o(i.xTaskPriorityDisinherit) for xTaskPriorityDisinherit
queue.o(i.prvIsQueueEmpty) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
queue.o(i.prvIsQueueEmpty) refers to port.o(i.vPortExitCritical) for vPortExitCritical
queue.o(i.prvUnlockQueue) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
queue.o(i.prvUnlockQueue) refers to tasks.o(i.xTaskRemoveFromEventList) for xTaskRemoveFromEventList
queue.o(i.prvUnlockQueue) refers to tasks.o(i.vTaskMissedYield) for vTaskMissedYield
queue.o(i.prvUnlockQueue) refers to port.o(i.vPortExitCritical) for vPortExitCritical
queue.o(i.uxQueueMessagesWaiting) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
queue.o(i.uxQueueMessagesWaiting) refers to port.o(i.vPortExitCritical) for vPortExitCritical
queue.o(i.uxQueueSpacesAvailable) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
queue.o(i.uxQueueSpacesAvailable) refers to port.o(i.vPortExitCritical) for vPortExitCritical
queue.o(i.vQueueAddToRegistry) refers to queue.o(.bss) for .bss
queue.o(i.vQueueDelete) refers to queue.o(i.vQueueUnregisterQueue) for vQueueUnregisterQueue
queue.o(i.vQueueDelete) refers to heap_4.o(i.vPortFree) for vPortFree
queue.o(i.vQueueUnregisterQueue) refers to queue.o(.bss) for .bss
queue.o(i.xQueueCreateMutex) refers to queue.o(i.xQueueGenericCreate) for xQueueGenericCreate
queue.o(i.xQueueCreateMutex) refers to queue.o(i.xQueueGenericSend) for xQueueGenericSend
queue.o(i.xQueueGenericCreate) refers to heap_4.o(i.pvPortMalloc) for pvPortMalloc
queue.o(i.xQueueGenericCreate) refers to queue.o(i.xQueueGenericReset) for xQueueGenericReset
queue.o(i.xQueueGenericReset) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
queue.o(i.xQueueGenericReset) refers to list.o(i.vListInitialise) for vListInitialise
queue.o(i.xQueueGenericReset) refers to port.o(i.vPortExitCritical) for vPortExitCritical
queue.o(i.xQueueGenericReset) refers to tasks.o(i.xTaskRemoveFromEventList) for xTaskRemoveFromEventList
queue.o(i.xQueueGenericReset) refers to port.o(i.vPortYield) for vPortYield
queue.o(i.xQueueGenericSend) refers to tasks.o(i.xTaskGetSchedulerState) for xTaskGetSchedulerState
queue.o(i.xQueueGenericSend) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
queue.o(i.xQueueGenericSend) refers to queue.o(i.prvCopyDataToQueue) for prvCopyDataToQueue
queue.o(i.xQueueGenericSend) refers to tasks.o(i.xTaskRemoveFromEventList) for xTaskRemoveFromEventList
queue.o(i.xQueueGenericSend) refers to port.o(i.vPortYield) for vPortYield
queue.o(i.xQueueGenericSend) refers to port.o(i.vPortExitCritical) for vPortExitCritical
queue.o(i.xQueueGenericSend) refers to tasks.o(i.vTaskInternalSetTimeOutState) for vTaskInternalSetTimeOutState
queue.o(i.xQueueGenericSend) refers to tasks.o(i.vTaskSuspendAll) for vTaskSuspendAll
queue.o(i.xQueueGenericSend) refers to tasks.o(i.xTaskCheckForTimeOut) for xTaskCheckForTimeOut
queue.o(i.xQueueGenericSend) refers to queue.o(i.prvUnlockQueue) for prvUnlockQueue
queue.o(i.xQueueGenericSend) refers to tasks.o(i.xTaskResumeAll) for xTaskResumeAll
queue.o(i.xQueueGenericSend) refers to tasks.o(i.vTaskPlaceOnEventList) for vTaskPlaceOnEventList
queue.o(i.xQueueGenericSendFromISR) refers to port.o(.emb_text) for ulSetInterruptMaskFromISR
queue.o(i.xQueueGenericSendFromISR) refers to queue.o(i.prvCopyDataToQueue) for prvCopyDataToQueue
queue.o(i.xQueueGenericSendFromISR) refers to tasks.o(i.xTaskRemoveFromEventList) for xTaskRemoveFromEventList
queue.o(i.xQueueGiveFromISR) refers to port.o(.emb_text) for ulSetInterruptMaskFromISR
queue.o(i.xQueueGiveFromISR) refers to tasks.o(i.xTaskRemoveFromEventList) for xTaskRemoveFromEventList
queue.o(i.xQueuePeek) refers to tasks.o(i.xTaskGetSchedulerState) for xTaskGetSchedulerState
queue.o(i.xQueuePeek) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
queue.o(i.xQueuePeek) refers to queue.o(i.prvCopyDataFromQueue) for prvCopyDataFromQueue
queue.o(i.xQueuePeek) refers to tasks.o(i.xTaskRemoveFromEventList) for xTaskRemoveFromEventList
queue.o(i.xQueuePeek) refers to port.o(i.vPortYield) for vPortYield
queue.o(i.xQueuePeek) refers to port.o(i.vPortExitCritical) for vPortExitCritical
queue.o(i.xQueuePeek) refers to tasks.o(i.vTaskInternalSetTimeOutState) for vTaskInternalSetTimeOutState
queue.o(i.xQueuePeek) refers to tasks.o(i.vTaskSuspendAll) for vTaskSuspendAll
queue.o(i.xQueuePeek) refers to tasks.o(i.xTaskCheckForTimeOut) for xTaskCheckForTimeOut
queue.o(i.xQueuePeek) refers to queue.o(i.prvUnlockQueue) for prvUnlockQueue
queue.o(i.xQueuePeek) refers to tasks.o(i.xTaskResumeAll) for xTaskResumeAll
queue.o(i.xQueuePeek) refers to queue.o(i.prvIsQueueEmpty) for prvIsQueueEmpty
queue.o(i.xQueuePeek) refers to tasks.o(i.vTaskPlaceOnEventList) for vTaskPlaceOnEventList
queue.o(i.xQueuePeekFromISR) refers to port.o(.emb_text) for ulSetInterruptMaskFromISR
queue.o(i.xQueuePeekFromISR) refers to queue.o(i.prvCopyDataFromQueue) for prvCopyDataFromQueue
queue.o(i.xQueueReceive) refers to tasks.o(i.xTaskGetSchedulerState) for xTaskGetSchedulerState
queue.o(i.xQueueReceive) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
queue.o(i.xQueueReceive) refers to queue.o(i.prvCopyDataFromQueue) for prvCopyDataFromQueue
queue.o(i.xQueueReceive) refers to tasks.o(i.xTaskRemoveFromEventList) for xTaskRemoveFromEventList
queue.o(i.xQueueReceive) refers to port.o(i.vPortYield) for vPortYield
queue.o(i.xQueueReceive) refers to port.o(i.vPortExitCritical) for vPortExitCritical
queue.o(i.xQueueReceive) refers to tasks.o(i.vTaskInternalSetTimeOutState) for vTaskInternalSetTimeOutState
queue.o(i.xQueueReceive) refers to tasks.o(i.vTaskSuspendAll) for vTaskSuspendAll
queue.o(i.xQueueReceive) refers to tasks.o(i.xTaskCheckForTimeOut) for xTaskCheckForTimeOut
queue.o(i.xQueueReceive) refers to queue.o(i.prvUnlockQueue) for prvUnlockQueue
queue.o(i.xQueueReceive) refers to tasks.o(i.xTaskResumeAll) for xTaskResumeAll
queue.o(i.xQueueReceive) refers to queue.o(i.prvIsQueueEmpty) for prvIsQueueEmpty
queue.o(i.xQueueReceive) refers to tasks.o(i.vTaskPlaceOnEventList) for vTaskPlaceOnEventList
queue.o(i.xQueueReceiveFromISR) refers to port.o(.emb_text) for ulSetInterruptMaskFromISR
queue.o(i.xQueueReceiveFromISR) refers to queue.o(i.prvCopyDataFromQueue) for prvCopyDataFromQueue
queue.o(i.xQueueReceiveFromISR) refers to tasks.o(i.xTaskRemoveFromEventList) for xTaskRemoveFromEventList
queue.o(i.xQueueSemaphoreTake) refers to tasks.o(i.xTaskGetSchedulerState) for xTaskGetSchedulerState
queue.o(i.xQueueSemaphoreTake) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
queue.o(i.xQueueSemaphoreTake) refers to tasks.o(i.pvTaskIncrementMutexHeldCount) for pvTaskIncrementMutexHeldCount
queue.o(i.xQueueSemaphoreTake) refers to tasks.o(i.xTaskRemoveFromEventList) for xTaskRemoveFromEventList
queue.o(i.xQueueSemaphoreTake) refers to port.o(i.vPortYield) for vPortYield
queue.o(i.xQueueSemaphoreTake) refers to port.o(i.vPortExitCritical) for vPortExitCritical
queue.o(i.xQueueSemaphoreTake) refers to tasks.o(i.vTaskInternalSetTimeOutState) for vTaskInternalSetTimeOutState
queue.o(i.xQueueSemaphoreTake) refers to tasks.o(i.vTaskSuspendAll) for vTaskSuspendAll
queue.o(i.xQueueSemaphoreTake) refers to tasks.o(i.xTaskCheckForTimeOut) for xTaskCheckForTimeOut
queue.o(i.xQueueSemaphoreTake) refers to queue.o(i.prvUnlockQueue) for prvUnlockQueue
queue.o(i.xQueueSemaphoreTake) refers to tasks.o(i.xTaskResumeAll) for xTaskResumeAll
queue.o(i.xQueueSemaphoreTake) refers to queue.o(i.prvIsQueueEmpty) for prvIsQueueEmpty
queue.o(i.xQueueSemaphoreTake) refers to tasks.o(i.xTaskPriorityInherit) for xTaskPriorityInherit
queue.o(i.xQueueSemaphoreTake) refers to tasks.o(i.vTaskPlaceOnEventList) for vTaskPlaceOnEventList
queue.o(i.xQueueSemaphoreTake) refers to tasks.o(i.vTaskPriorityDisinheritAfterTimeout) for vTaskPriorityDisinheritAfterTimeout
stream_buffer.o(i.prvInitialiseNewStreamBuffer) refers to memseta.o(.text) for memset
stream_buffer.o(i.prvReadBytesFromBuffer) refers to memcpya.o(.text) for __aeabi_memcpy
stream_buffer.o(i.prvReadMessageFromBuffer) refers to stream_buffer.o(i.prvReadBytesFromBuffer) for prvReadBytesFromBuffer
stream_buffer.o(i.prvWriteBytesToBuffer) refers to memcpya.o(.text) for __aeabi_memcpy
stream_buffer.o(i.prvWriteMessageToBuffer) refers to stream_buffer.o(i.prvWriteBytesToBuffer) for prvWriteBytesToBuffer
stream_buffer.o(i.vStreamBufferDelete) refers to heap_4.o(i.vPortFree) for vPortFree
stream_buffer.o(i.vStreamBufferDelete) refers to memseta.o(.text) for __aeabi_memclr4
stream_buffer.o(i.xStreamBufferBytesAvailable) refers to stream_buffer.o(i.prvBytesInBuffer) for prvBytesInBuffer
stream_buffer.o(i.xStreamBufferGenericCreate) refers to heap_4.o(i.pvPortMalloc) for pvPortMalloc
stream_buffer.o(i.xStreamBufferGenericCreate) refers to stream_buffer.o(i.prvInitialiseNewStreamBuffer) for prvInitialiseNewStreamBuffer
stream_buffer.o(i.xStreamBufferIsFull) refers to stream_buffer.o(i.xStreamBufferSpacesAvailable) for xStreamBufferSpacesAvailable
stream_buffer.o(i.xStreamBufferNextMessageLengthBytes) refers to stream_buffer.o(i.prvBytesInBuffer) for prvBytesInBuffer
stream_buffer.o(i.xStreamBufferNextMessageLengthBytes) refers to stream_buffer.o(i.prvReadBytesFromBuffer) for prvReadBytesFromBuffer
stream_buffer.o(i.xStreamBufferReceive) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
stream_buffer.o(i.xStreamBufferReceive) refers to stream_buffer.o(i.prvBytesInBuffer) for prvBytesInBuffer
stream_buffer.o(i.xStreamBufferReceive) refers to tasks.o(i.xTaskNotifyStateClear) for xTaskNotifyStateClear
stream_buffer.o(i.xStreamBufferReceive) refers to tasks.o(i.xTaskGetCurrentTaskHandle) for xTaskGetCurrentTaskHandle
stream_buffer.o(i.xStreamBufferReceive) refers to port.o(i.vPortExitCritical) for vPortExitCritical
stream_buffer.o(i.xStreamBufferReceive) refers to tasks.o(i.xTaskNotifyWait) for xTaskNotifyWait
stream_buffer.o(i.xStreamBufferReceive) refers to stream_buffer.o(i.prvReadMessageFromBuffer) for prvReadMessageFromBuffer
stream_buffer.o(i.xStreamBufferReceive) refers to tasks.o(i.vTaskSuspendAll) for vTaskSuspendAll
stream_buffer.o(i.xStreamBufferReceive) refers to tasks.o(i.xTaskGenericNotify) for xTaskGenericNotify
stream_buffer.o(i.xStreamBufferReceive) refers to tasks.o(i.xTaskResumeAll) for xTaskResumeAll
stream_buffer.o(i.xStreamBufferReceiveCompletedFromISR) refers to port.o(.emb_text) for ulSetInterruptMaskFromISR
stream_buffer.o(i.xStreamBufferReceiveCompletedFromISR) refers to tasks.o(i.xTaskGenericNotifyFromISR) for xTaskGenericNotifyFromISR
stream_buffer.o(i.xStreamBufferReceiveFromISR) refers to stream_buffer.o(i.prvBytesInBuffer) for prvBytesInBuffer
stream_buffer.o(i.xStreamBufferReceiveFromISR) refers to stream_buffer.o(i.prvReadMessageFromBuffer) for prvReadMessageFromBuffer
stream_buffer.o(i.xStreamBufferReceiveFromISR) refers to port.o(.emb_text) for ulSetInterruptMaskFromISR
stream_buffer.o(i.xStreamBufferReceiveFromISR) refers to tasks.o(i.xTaskGenericNotifyFromISR) for xTaskGenericNotifyFromISR
stream_buffer.o(i.xStreamBufferReset) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
stream_buffer.o(i.xStreamBufferReset) refers to stream_buffer.o(i.prvInitialiseNewStreamBuffer) for prvInitialiseNewStreamBuffer
stream_buffer.o(i.xStreamBufferReset) refers to port.o(i.vPortExitCritical) for vPortExitCritical
stream_buffer.o(i.xStreamBufferSend) refers to tasks.o(i.vTaskSetTimeOutState) for vTaskSetTimeOutState
stream_buffer.o(i.xStreamBufferSend) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
stream_buffer.o(i.xStreamBufferSend) refers to stream_buffer.o(i.xStreamBufferSpacesAvailable) for xStreamBufferSpacesAvailable
stream_buffer.o(i.xStreamBufferSend) refers to tasks.o(i.xTaskNotifyStateClear) for xTaskNotifyStateClear
stream_buffer.o(i.xStreamBufferSend) refers to tasks.o(i.xTaskGetCurrentTaskHandle) for xTaskGetCurrentTaskHandle
stream_buffer.o(i.xStreamBufferSend) refers to port.o(i.vPortExitCritical) for vPortExitCritical
stream_buffer.o(i.xStreamBufferSend) refers to tasks.o(i.xTaskNotifyWait) for xTaskNotifyWait
stream_buffer.o(i.xStreamBufferSend) refers to tasks.o(i.xTaskCheckForTimeOut) for xTaskCheckForTimeOut
stream_buffer.o(i.xStreamBufferSend) refers to stream_buffer.o(i.prvWriteMessageToBuffer) for prvWriteMessageToBuffer
stream_buffer.o(i.xStreamBufferSend) refers to stream_buffer.o(i.prvBytesInBuffer) for prvBytesInBuffer
stream_buffer.o(i.xStreamBufferSend) refers to tasks.o(i.vTaskSuspendAll) for vTaskSuspendAll
stream_buffer.o(i.xStreamBufferSend) refers to tasks.o(i.xTaskGenericNotify) for xTaskGenericNotify
stream_buffer.o(i.xStreamBufferSend) refers to tasks.o(i.xTaskResumeAll) for xTaskResumeAll
stream_buffer.o(i.xStreamBufferSendCompletedFromISR) refers to port.o(.emb_text) for ulSetInterruptMaskFromISR
stream_buffer.o(i.xStreamBufferSendCompletedFromISR) refers to tasks.o(i.xTaskGenericNotifyFromISR) for xTaskGenericNotifyFromISR
stream_buffer.o(i.xStreamBufferSendFromISR) refers to stream_buffer.o(i.xStreamBufferSpacesAvailable) for xStreamBufferSpacesAvailable
stream_buffer.o(i.xStreamBufferSendFromISR) refers to stream_buffer.o(i.prvWriteMessageToBuffer) for prvWriteMessageToBuffer
stream_buffer.o(i.xStreamBufferSendFromISR) refers to stream_buffer.o(i.prvBytesInBuffer) for prvBytesInBuffer
stream_buffer.o(i.xStreamBufferSendFromISR) refers to port.o(.emb_text) for ulSetInterruptMaskFromISR
stream_buffer.o(i.xStreamBufferSendFromISR) refers to tasks.o(i.xTaskGenericNotifyFromISR) for xTaskGenericNotifyFromISR
tasks.o(i.pcTaskGetName) refers to tasks.o(.data) for .data
tasks.o(i.prvAddCurrentTaskToDelayedList) refers to list.o(i.uxListRemove) for uxListRemove
tasks.o(i.prvAddCurrentTaskToDelayedList) refers to list.o(i.vListInsertEnd) for vListInsertEnd
tasks.o(i.prvAddCurrentTaskToDelayedList) refers to list.o(i.vListInsert) for vListInsert
tasks.o(i.prvAddCurrentTaskToDelayedList) refers to tasks.o(.data) for .data
tasks.o(i.prvAddCurrentTaskToDelayedList) refers to tasks.o(.bss) for .bss
tasks.o(i.prvAddNewTaskToReadyList) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
tasks.o(i.prvAddNewTaskToReadyList) refers to list.o(i.vListInitialise) for vListInitialise
tasks.o(i.prvAddNewTaskToReadyList) refers to list.o(i.vListInsertEnd) for vListInsertEnd
tasks.o(i.prvAddNewTaskToReadyList) refers to port.o(i.vPortExitCritical) for vPortExitCritical
tasks.o(i.prvAddNewTaskToReadyList) refers to port.o(i.vPortYield) for vPortYield
tasks.o(i.prvAddNewTaskToReadyList) refers to tasks.o(.data) for .data
tasks.o(i.prvAddNewTaskToReadyList) refers to tasks.o(.bss) for .bss
tasks.o(i.prvDeleteTCB) refers to heap_4.o(i.vPortFree) for vPortFree
tasks.o(i.prvIdleTask) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
tasks.o(i.prvIdleTask) refers to list.o(i.uxListRemove) for uxListRemove
tasks.o(i.prvIdleTask) refers to port.o(i.vPortExitCritical) for vPortExitCritical
tasks.o(i.prvIdleTask) refers to tasks.o(i.prvDeleteTCB) for prvDeleteTCB
tasks.o(i.prvIdleTask) refers to port.o(i.vPortYield) for vPortYield
tasks.o(i.prvIdleTask) refers to tasks.o(.bss) for .bss
tasks.o(i.prvIdleTask) refers to tasks.o(.data) for .data
tasks.o(i.prvInitialiseNewTask) refers to list.o(i.vListInitialiseItem) for vListInitialiseItem
tasks.o(i.prvInitialiseNewTask) refers to port.o(i.pxPortInitialiseStack) for pxPortInitialiseStack
tasks.o(i.prvResetNextTaskUnblockTime) refers to tasks.o(.data) for .data
tasks.o(i.prvTaskIsTaskSuspended) refers to tasks.o(.bss) for .bss
tasks.o(i.pvTaskIncrementMutexHeldCount) refers to tasks.o(.data) for .data
tasks.o(i.ulTaskNotifyTake) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
tasks.o(i.ulTaskNotifyTake) refers to tasks.o(i.prvAddCurrentTaskToDelayedList) for prvAddCurrentTaskToDelayedList
tasks.o(i.ulTaskNotifyTake) refers to port.o(i.vPortYield) for vPortYield
tasks.o(i.ulTaskNotifyTake) refers to port.o(i.vPortExitCritical) for vPortExitCritical
tasks.o(i.ulTaskNotifyTake) refers to tasks.o(.data) for .data
tasks.o(i.ulTaskNotifyValueClear) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
tasks.o(i.ulTaskNotifyValueClear) refers to port.o(i.vPortExitCritical) for vPortExitCritical
tasks.o(i.ulTaskNotifyValueClear) refers to tasks.o(.data) for .data
tasks.o(i.uxTaskGetNumberOfTasks) refers to tasks.o(.data) for .data
tasks.o(i.uxTaskPriorityGet) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
tasks.o(i.uxTaskPriorityGet) refers to port.o(i.vPortExitCritical) for vPortExitCritical
tasks.o(i.uxTaskPriorityGet) refers to tasks.o(.data) for .data
tasks.o(i.uxTaskPriorityGetFromISR) refers to port.o(.emb_text) for ulSetInterruptMaskFromISR
tasks.o(i.uxTaskPriorityGetFromISR) refers to tasks.o(.data) for .data
tasks.o(i.uxTaskResetEventItemValue) refers to tasks.o(.data) for .data
tasks.o(i.vTaskDelay) refers to tasks.o(i.vTaskSuspendAll) for vTaskSuspendAll
tasks.o(i.vTaskDelay) refers to tasks.o(i.prvAddCurrentTaskToDelayedList) for prvAddCurrentTaskToDelayedList
tasks.o(i.vTaskDelay) refers to tasks.o(i.xTaskResumeAll) for xTaskResumeAll
tasks.o(i.vTaskDelay) refers to port.o(i.vPortYield) for vPortYield
tasks.o(i.vTaskDelay) refers to tasks.o(.data) for .data
tasks.o(i.vTaskDelete) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
tasks.o(i.vTaskDelete) refers to list.o(i.uxListRemove) for uxListRemove
tasks.o(i.vTaskDelete) refers to list.o(i.vListInsertEnd) for vListInsertEnd
tasks.o(i.vTaskDelete) refers to tasks.o(i.prvDeleteTCB) for prvDeleteTCB
tasks.o(i.vTaskDelete) refers to tasks.o(i.prvResetNextTaskUnblockTime) for prvResetNextTaskUnblockTime
tasks.o(i.vTaskDelete) refers to port.o(i.vPortExitCritical) for vPortExitCritical
tasks.o(i.vTaskDelete) refers to port.o(i.vPortYield) for vPortYield
tasks.o(i.vTaskDelete) refers to tasks.o(.data) for .data
tasks.o(i.vTaskDelete) refers to tasks.o(.bss) for .bss
tasks.o(i.vTaskEndScheduler) refers to port.o(i.vPortEndScheduler) for vPortEndScheduler
tasks.o(i.vTaskEndScheduler) refers to tasks.o(.data) for .data
tasks.o(i.vTaskInternalSetTimeOutState) refers to tasks.o(.data) for .data
tasks.o(i.vTaskMissedYield) refers to tasks.o(.data) for .data
tasks.o(i.vTaskNotifyGiveFromISR) refers to port.o(.emb_text) for ulSetInterruptMaskFromISR
tasks.o(i.vTaskNotifyGiveFromISR) refers to list.o(i.uxListRemove) for uxListRemove
tasks.o(i.vTaskNotifyGiveFromISR) refers to list.o(i.vListInsertEnd) for vListInsertEnd
tasks.o(i.vTaskNotifyGiveFromISR) refers to tasks.o(.data) for .data
tasks.o(i.vTaskNotifyGiveFromISR) refers to tasks.o(.bss) for .bss
tasks.o(i.vTaskPlaceOnEventList) refers to list.o(i.vListInsert) for vListInsert
tasks.o(i.vTaskPlaceOnEventList) refers to tasks.o(i.prvAddCurrentTaskToDelayedList) for prvAddCurrentTaskToDelayedList
tasks.o(i.vTaskPlaceOnEventList) refers to tasks.o(.data) for .data
tasks.o(i.vTaskPlaceOnUnorderedEventList) refers to list.o(i.vListInsertEnd) for vListInsertEnd
tasks.o(i.vTaskPlaceOnUnorderedEventList) refers to tasks.o(i.prvAddCurrentTaskToDelayedList) for prvAddCurrentTaskToDelayedList
tasks.o(i.vTaskPlaceOnUnorderedEventList) refers to tasks.o(.data) for .data
tasks.o(i.vTaskPriorityDisinheritAfterTimeout) refers to list.o(i.uxListRemove) for uxListRemove
tasks.o(i.vTaskPriorityDisinheritAfterTimeout) refers to list.o(i.vListInsertEnd) for vListInsertEnd
tasks.o(i.vTaskPriorityDisinheritAfterTimeout) refers to tasks.o(.data) for .data
tasks.o(i.vTaskPriorityDisinheritAfterTimeout) refers to tasks.o(.bss) for .bss
tasks.o(i.vTaskPrioritySet) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
tasks.o(i.vTaskPrioritySet) refers to list.o(i.uxListRemove) for uxListRemove
tasks.o(i.vTaskPrioritySet) refers to list.o(i.vListInsertEnd) for vListInsertEnd
tasks.o(i.vTaskPrioritySet) refers to port.o(i.vPortYield) for vPortYield
tasks.o(i.vTaskPrioritySet) refers to port.o(i.vPortExitCritical) for vPortExitCritical
tasks.o(i.vTaskPrioritySet) refers to tasks.o(.data) for .data
tasks.o(i.vTaskPrioritySet) refers to tasks.o(.bss) for .bss
tasks.o(i.vTaskRemoveFromUnorderedEventList) refers to list.o(i.uxListRemove) for uxListRemove
tasks.o(i.vTaskRemoveFromUnorderedEventList) refers to list.o(i.vListInsertEnd) for vListInsertEnd
tasks.o(i.vTaskRemoveFromUnorderedEventList) refers to tasks.o(.data) for .data
tasks.o(i.vTaskRemoveFromUnorderedEventList) refers to tasks.o(.bss) for .bss
tasks.o(i.vTaskResume) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
tasks.o(i.vTaskResume) refers to tasks.o(i.prvTaskIsTaskSuspended) for prvTaskIsTaskSuspended
tasks.o(i.vTaskResume) refers to list.o(i.uxListRemove) for uxListRemove
tasks.o(i.vTaskResume) refers to list.o(i.vListInsertEnd) for vListInsertEnd
tasks.o(i.vTaskResume) refers to port.o(i.vPortYield) for vPortYield
tasks.o(i.vTaskResume) refers to port.o(i.vPortExitCritical) for vPortExitCritical
tasks.o(i.vTaskResume) refers to tasks.o(.data) for .data
tasks.o(i.vTaskResume) refers to tasks.o(.bss) for .bss
tasks.o(i.vTaskSetTimeOutState) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
tasks.o(i.vTaskSetTimeOutState) refers to port.o(i.vPortExitCritical) for vPortExitCritical
tasks.o(i.vTaskSetTimeOutState) refers to tasks.o(.data) for .data
tasks.o(i.vTaskStartScheduler) refers to tasks.o(i.xTaskCreate) for xTaskCreate
tasks.o(i.vTaskStartScheduler) refers to port.o(i.xPortStartScheduler) for xPortStartScheduler
tasks.o(i.vTaskStartScheduler) refers to tasks.o(.data) for .data
tasks.o(i.vTaskStartScheduler) refers to tasks.o(i.prvIdleTask) for prvIdleTask
tasks.o(i.vTaskSuspend) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
tasks.o(i.vTaskSuspend) refers to list.o(i.uxListRemove) for uxListRemove
tasks.o(i.vTaskSuspend) refers to list.o(i.vListInsertEnd) for vListInsertEnd
tasks.o(i.vTaskSuspend) refers to port.o(i.vPortExitCritical) for vPortExitCritical
tasks.o(i.vTaskSuspend) refers to tasks.o(i.prvResetNextTaskUnblockTime) for prvResetNextTaskUnblockTime
tasks.o(i.vTaskSuspend) refers to port.o(i.vPortYield) for vPortYield
tasks.o(i.vTaskSuspend) refers to tasks.o(i.vTaskSwitchContext) for vTaskSwitchContext
tasks.o(i.vTaskSuspend) refers to tasks.o(.data) for .data
tasks.o(i.vTaskSuspend) refers to tasks.o(.bss) for .bss
tasks.o(i.vTaskSuspendAll) refers to tasks.o(.data) for .data
tasks.o(i.vTaskSwitchContext) refers to tasks.o(.data) for .data
tasks.o(i.vTaskSwitchContext) refers to tasks.o(.bss) for .bss
tasks.o(i.xTaskCatchUpTicks) refers to tasks.o(i.vTaskSuspendAll) for vTaskSuspendAll
tasks.o(i.xTaskCatchUpTicks) refers to tasks.o(i.xTaskResumeAll) for xTaskResumeAll
tasks.o(i.xTaskCatchUpTicks) refers to tasks.o(.data) for .data
tasks.o(i.xTaskCheckForTimeOut) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
tasks.o(i.xTaskCheckForTimeOut) refers to port.o(i.vPortExitCritical) for vPortExitCritical
tasks.o(i.xTaskCheckForTimeOut) refers to tasks.o(i.vTaskInternalSetTimeOutState) for vTaskInternalSetTimeOutState
tasks.o(i.xTaskCheckForTimeOut) refers to tasks.o(.data) for .data
tasks.o(i.xTaskCreate) refers to heap_4.o(i.pvPortMalloc) for pvPortMalloc
tasks.o(i.xTaskCreate) refers to tasks.o(i.prvInitialiseNewTask) for prvInitialiseNewTask
tasks.o(i.xTaskCreate) refers to tasks.o(i.prvAddNewTaskToReadyList) for prvAddNewTaskToReadyList
tasks.o(i.xTaskCreate) refers to heap_4.o(i.vPortFree) for vPortFree
tasks.o(i.xTaskGenericNotify) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
tasks.o(i.xTaskGenericNotify) refers to stm32g0xx_hal_dma.o(i.__ARM_common_switch8) for __ARM_common_switch8
tasks.o(i.xTaskGenericNotify) refers to list.o(i.uxListRemove) for uxListRemove
tasks.o(i.xTaskGenericNotify) refers to list.o(i.vListInsertEnd) for vListInsertEnd
tasks.o(i.xTaskGenericNotify) refers to port.o(i.vPortYield) for vPortYield
tasks.o(i.xTaskGenericNotify) refers to port.o(i.vPortExitCritical) for vPortExitCritical
tasks.o(i.xTaskGenericNotify) refers to tasks.o(.data) for .data
tasks.o(i.xTaskGenericNotify) refers to tasks.o(.bss) for .bss
tasks.o(i.xTaskGenericNotifyFromISR) refers to port.o(.emb_text) for ulSetInterruptMaskFromISR
tasks.o(i.xTaskGenericNotifyFromISR) refers to stm32g0xx_hal_dma.o(i.__ARM_common_switch8) for __ARM_common_switch8
tasks.o(i.xTaskGenericNotifyFromISR) refers to list.o(i.uxListRemove) for uxListRemove
tasks.o(i.xTaskGenericNotifyFromISR) refers to list.o(i.vListInsertEnd) for vListInsertEnd
tasks.o(i.xTaskGenericNotifyFromISR) refers to tasks.o(.data) for .data
tasks.o(i.xTaskGenericNotifyFromISR) refers to tasks.o(.bss) for .bss
tasks.o(i.xTaskGetCurrentTaskHandle) refers to tasks.o(.data) for .data
tasks.o(i.xTaskGetSchedulerState) refers to tasks.o(.data) for .data
tasks.o(i.xTaskGetTickCount) refers to tasks.o(.data) for .data
tasks.o(i.xTaskGetTickCountFromISR) refers to tasks.o(.data) for .data
tasks.o(i.xTaskIncrementTick) refers to tasks.o(i.prvResetNextTaskUnblockTime) for prvResetNextTaskUnblockTime
tasks.o(i.xTaskIncrementTick) refers to list.o(i.uxListRemove) for uxListRemove
tasks.o(i.xTaskIncrementTick) refers to list.o(i.vListInsertEnd) for vListInsertEnd
tasks.o(i.xTaskIncrementTick) refers to tasks.o(.data) for .data
tasks.o(i.xTaskIncrementTick) refers to tasks.o(.bss) for .bss
tasks.o(i.xTaskNotifyStateClear) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
tasks.o(i.xTaskNotifyStateClear) refers to port.o(i.vPortExitCritical) for vPortExitCritical
tasks.o(i.xTaskNotifyStateClear) refers to tasks.o(.data) for .data
tasks.o(i.xTaskNotifyWait) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
tasks.o(i.xTaskNotifyWait) refers to tasks.o(i.prvAddCurrentTaskToDelayedList) for prvAddCurrentTaskToDelayedList
tasks.o(i.xTaskNotifyWait) refers to port.o(i.vPortYield) for vPortYield
tasks.o(i.xTaskNotifyWait) refers to port.o(i.vPortExitCritical) for vPortExitCritical
tasks.o(i.xTaskNotifyWait) refers to tasks.o(.data) for .data
tasks.o(i.xTaskPriorityDisinherit) refers to list.o(i.uxListRemove) for uxListRemove
tasks.o(i.xTaskPriorityDisinherit) refers to list.o(i.vListInsertEnd) for vListInsertEnd
tasks.o(i.xTaskPriorityDisinherit) refers to tasks.o(.data) for .data
tasks.o(i.xTaskPriorityDisinherit) refers to tasks.o(.bss) for .bss
tasks.o(i.xTaskPriorityInherit) refers to list.o(i.uxListRemove) for uxListRemove
tasks.o(i.xTaskPriorityInherit) refers to list.o(i.vListInsertEnd) for vListInsertEnd
tasks.o(i.xTaskPriorityInherit) refers to tasks.o(.data) for .data
tasks.o(i.xTaskPriorityInherit) refers to tasks.o(.bss) for .bss
tasks.o(i.xTaskRemoveFromEventList) refers to list.o(i.uxListRemove) for uxListRemove
tasks.o(i.xTaskRemoveFromEventList) refers to list.o(i.vListInsertEnd) for vListInsertEnd
tasks.o(i.xTaskRemoveFromEventList) refers to tasks.o(.data) for .data
tasks.o(i.xTaskRemoveFromEventList) refers to tasks.o(.bss) for .bss
tasks.o(i.xTaskResumeAll) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
tasks.o(i.xTaskResumeAll) refers to list.o(i.uxListRemove) for uxListRemove
tasks.o(i.xTaskResumeAll) refers to list.o(i.vListInsertEnd) for vListInsertEnd
tasks.o(i.xTaskResumeAll) refers to tasks.o(i.prvResetNextTaskUnblockTime) for prvResetNextTaskUnblockTime
tasks.o(i.xTaskResumeAll) refers to tasks.o(i.xTaskIncrementTick) for xTaskIncrementTick
tasks.o(i.xTaskResumeAll) refers to port.o(i.vPortYield) for vPortYield
tasks.o(i.xTaskResumeAll) refers to port.o(i.vPortExitCritical) for vPortExitCritical
tasks.o(i.xTaskResumeAll) refers to tasks.o(.data) for .data
tasks.o(i.xTaskResumeAll) refers to tasks.o(.bss) for .bss
tasks.o(i.xTaskResumeFromISR) refers to port.o(.emb_text) for ulSetInterruptMaskFromISR
tasks.o(i.xTaskResumeFromISR) refers to tasks.o(i.prvTaskIsTaskSuspended) for prvTaskIsTaskSuspended
tasks.o(i.xTaskResumeFromISR) refers to list.o(i.uxListRemove) for uxListRemove
tasks.o(i.xTaskResumeFromISR) refers to list.o(i.vListInsertEnd) for vListInsertEnd
tasks.o(i.xTaskResumeFromISR) refers to tasks.o(.data) for .data
tasks.o(i.xTaskResumeFromISR) refers to tasks.o(.bss) for .bss
cmsis_os.o(i.osDelay) refers to tasks.o(i.vTaskDelay) for vTaskDelay
cmsis_os.o(i.osKernelRunning) refers to tasks.o(i.xTaskGetSchedulerState) for xTaskGetSchedulerState
cmsis_os.o(i.osKernelStart) refers to tasks.o(i.vTaskStartScheduler) for vTaskStartScheduler
cmsis_os.o(i.osKernelSysTick) refers to cmsis_os.o(i.inHandlerMode) for inHandlerMode
cmsis_os.o(i.osKernelSysTick) refers to tasks.o(i.xTaskGetTickCountFromISR) for xTaskGetTickCountFromISR
cmsis_os.o(i.osKernelSysTick) refers to tasks.o(i.xTaskGetTickCount) for xTaskGetTickCount
cmsis_os.o(i.osMailAlloc) refers to cmsis_os.o(i.osPoolAlloc) for osPoolAlloc
cmsis_os.o(i.osMailCAlloc) refers to cmsis_os.o(i.osMailAlloc) for osMailAlloc
cmsis_os.o(i.osMailCreate) refers to heap_4.o(i.pvPortMalloc) for pvPortMalloc
cmsis_os.o(i.osMailCreate) refers to queue.o(i.xQueueGenericCreate) for xQueueGenericCreate
cmsis_os.o(i.osMailCreate) refers to cmsis_os.o(i.osPoolCreate) for osPoolCreate
cmsis_os.o(i.osMailCreate) refers to heap_4.o(i.vPortFree) for vPortFree
cmsis_os.o(i.osMailFree) refers to cmsis_os.o(i.osPoolFree) for osPoolFree
cmsis_os.o(i.osMailGet) refers to cmsis_os.o(i.inHandlerMode) for inHandlerMode
cmsis_os.o(i.osMailGet) refers to queue.o(i.xQueueReceiveFromISR) for xQueueReceiveFromISR
cmsis_os.o(i.osMailGet) refers to queue.o(i.xQueueReceive) for xQueueReceive
cmsis_os.o(i.osMailPut) refers to cmsis_os.o(i.inHandlerMode) for inHandlerMode
cmsis_os.o(i.osMailPut) refers to queue.o(i.xQueueGenericSendFromISR) for xQueueGenericSendFromISR
cmsis_os.o(i.osMailPut) refers to queue.o(i.xQueueGenericSend) for xQueueGenericSend
cmsis_os.o(i.osMessageAvailableSpace) refers to queue.o(i.uxQueueSpacesAvailable) for uxQueueSpacesAvailable
cmsis_os.o(i.osMessageCreate) refers to queue.o(i.xQueueGenericCreate) for xQueueGenericCreate
cmsis_os.o(i.osMessageDelete) refers to cmsis_os.o(i.inHandlerMode) for inHandlerMode
cmsis_os.o(i.osMessageDelete) refers to queue.o(i.vQueueDelete) for vQueueDelete
cmsis_os.o(i.osMessageGet) refers to cmsis_os.o(i.inHandlerMode) for inHandlerMode
cmsis_os.o(i.osMessageGet) refers to queue.o(i.xQueueReceiveFromISR) for xQueueReceiveFromISR
cmsis_os.o(i.osMessageGet) refers to queue.o(i.xQueueReceive) for xQueueReceive
cmsis_os.o(i.osMessagePeek) refers to queue.o(i.xQueuePeek) for xQueuePeek
cmsis_os.o(i.osMessagePut) refers to cmsis_os.o(i.inHandlerMode) for inHandlerMode
cmsis_os.o(i.osMessagePut) refers to queue.o(i.xQueueGenericSendFromISR) for xQueueGenericSendFromISR
cmsis_os.o(i.osMessagePut) refers to queue.o(i.xQueueGenericSend) for xQueueGenericSend
cmsis_os.o(i.osMessageWaiting) refers to cmsis_os.o(i.inHandlerMode) for inHandlerMode
cmsis_os.o(i.osMessageWaiting) refers to queue.o(i.uxQueueMessagesWaitingFromISR) for uxQueueMessagesWaitingFromISR
cmsis_os.o(i.osMessageWaiting) refers to queue.o(i.uxQueueMessagesWaiting) for uxQueueMessagesWaiting
cmsis_os.o(i.osMutexCreate) refers to queue.o(i.xQueueCreateMutex) for xQueueCreateMutex
cmsis_os.o(i.osMutexDelete) refers to cmsis_os.o(i.inHandlerMode) for inHandlerMode
cmsis_os.o(i.osMutexDelete) refers to queue.o(i.vQueueDelete) for vQueueDelete
cmsis_os.o(i.osMutexRelease) refers to cmsis_os.o(i.inHandlerMode) for inHandlerMode
cmsis_os.o(i.osMutexRelease) refers to queue.o(i.xQueueGiveFromISR) for xQueueGiveFromISR
cmsis_os.o(i.osMutexRelease) refers to queue.o(i.xQueueGenericSend) for xQueueGenericSend
cmsis_os.o(i.osMutexWait) refers to cmsis_os.o(i.inHandlerMode) for inHandlerMode
cmsis_os.o(i.osMutexWait) refers to queue.o(i.xQueueReceiveFromISR) for xQueueReceiveFromISR
cmsis_os.o(i.osMutexWait) refers to queue.o(i.xQueueSemaphoreTake) for xQueueSemaphoreTake
cmsis_os.o(i.osPoolAlloc) refers to cmsis_os.o(i.inHandlerMode) for inHandlerMode
cmsis_os.o(i.osPoolAlloc) refers to port.o(.emb_text) for ulSetInterruptMaskFromISR
cmsis_os.o(i.osPoolAlloc) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
cmsis_os.o(i.osPoolAlloc) refers to uidiv.o(.text) for __aeabi_uidivmod
cmsis_os.o(i.osPoolAlloc) refers to port.o(i.vPortExitCritical) for vPortExitCritical
cmsis_os.o(i.osPoolCAlloc) refers to cmsis_os.o(i.osPoolAlloc) for osPoolAlloc
cmsis_os.o(i.osPoolCAlloc) refers to memseta.o(.text) for __aeabi_memclr
cmsis_os.o(i.osPoolCreate) refers to heap_4.o(i.pvPortMalloc) for pvPortMalloc
cmsis_os.o(i.osPoolCreate) refers to heap_4.o(i.vPortFree) for vPortFree
cmsis_os.o(i.osPoolFree) refers to uidiv.o(.text) for __aeabi_uidivmod
cmsis_os.o(i.osSemaphoreCreate) refers to queue.o(i.xQueueGenericCreate) for xQueueGenericCreate
cmsis_os.o(i.osSemaphoreCreate) refers to queue.o(i.xQueueGenericSend) for xQueueGenericSend
cmsis_os.o(i.osSemaphoreDelete) refers to cmsis_os.o(i.inHandlerMode) for inHandlerMode
cmsis_os.o(i.osSemaphoreDelete) refers to queue.o(i.vQueueDelete) for vQueueDelete
cmsis_os.o(i.osSemaphoreGetCount) refers to queue.o(i.uxQueueMessagesWaiting) for uxQueueMessagesWaiting
cmsis_os.o(i.osSemaphoreRelease) refers to cmsis_os.o(i.inHandlerMode) for inHandlerMode
cmsis_os.o(i.osSemaphoreRelease) refers to queue.o(i.xQueueGiveFromISR) for xQueueGiveFromISR
cmsis_os.o(i.osSemaphoreRelease) refers to queue.o(i.xQueueGenericSend) for xQueueGenericSend
cmsis_os.o(i.osSemaphoreWait) refers to cmsis_os.o(i.inHandlerMode) for inHandlerMode
cmsis_os.o(i.osSemaphoreWait) refers to queue.o(i.xQueueReceiveFromISR) for xQueueReceiveFromISR
cmsis_os.o(i.osSemaphoreWait) refers to queue.o(i.xQueueSemaphoreTake) for xQueueSemaphoreTake
cmsis_os.o(i.osSignalSet) refers to cmsis_os.o(i.inHandlerMode) for inHandlerMode
cmsis_os.o(i.osSignalSet) refers to tasks.o(i.xTaskGenericNotifyFromISR) for xTaskGenericNotifyFromISR
cmsis_os.o(i.osSignalSet) refers to tasks.o(i.xTaskGenericNotify) for xTaskGenericNotify
cmsis_os.o(i.osSignalWait) refers to cmsis_os.o(i.inHandlerMode) for inHandlerMode
cmsis_os.o(i.osSignalWait) refers to tasks.o(i.xTaskNotifyWait) for xTaskNotifyWait
cmsis_os.o(i.osSystickHandler) refers to tasks.o(i.xTaskGetSchedulerState) for xTaskGetSchedulerState
cmsis_os.o(i.osSystickHandler) refers to port.o(i.SysTick_Handler) for SysTick_Handler
cmsis_os.o(i.osThreadCreate) refers to cmsis_os.o(i.makeFreeRtosPriority) for makeFreeRtosPriority
cmsis_os.o(i.osThreadCreate) refers to tasks.o(i.xTaskCreate) for xTaskCreate
cmsis_os.o(i.osThreadGetId) refers to tasks.o(i.xTaskGetCurrentTaskHandle) for xTaskGetCurrentTaskHandle
cmsis_os.o(i.osThreadGetPriority) refers to cmsis_os.o(i.inHandlerMode) for inHandlerMode
cmsis_os.o(i.osThreadGetPriority) refers to tasks.o(i.uxTaskPriorityGetFromISR) for uxTaskPriorityGetFromISR
cmsis_os.o(i.osThreadGetPriority) refers to tasks.o(i.uxTaskPriorityGet) for uxTaskPriorityGet
cmsis_os.o(i.osThreadGetPriority) refers to cmsis_os.o(i.makeCmsisPriority) for makeCmsisPriority
cmsis_os.o(i.osThreadResume) refers to cmsis_os.o(i.inHandlerMode) for inHandlerMode
cmsis_os.o(i.osThreadResume) refers to tasks.o(i.xTaskResumeFromISR) for xTaskResumeFromISR
cmsis_os.o(i.osThreadResume) refers to tasks.o(i.vTaskResume) for vTaskResume
cmsis_os.o(i.osThreadResumeAll) refers to tasks.o(i.xTaskResumeAll) for xTaskResumeAll
cmsis_os.o(i.osThreadSetPriority) refers to cmsis_os.o(i.makeFreeRtosPriority) for makeFreeRtosPriority
cmsis_os.o(i.osThreadSetPriority) refers to tasks.o(i.vTaskPrioritySet) for vTaskPrioritySet
cmsis_os.o(i.osThreadSuspend) refers to tasks.o(i.vTaskSuspend) for vTaskSuspend
cmsis_os.o(i.osThreadSuspendAll) refers to tasks.o(i.vTaskSuspendAll) for vTaskSuspendAll
cmsis_os.o(i.osThreadTerminate) refers to tasks.o(i.vTaskDelete) for vTaskDelete
cmsis_os.o(i.osThreadYield) refers to port.o(i.vPortYield) for vPortYield
heap_4.o(i.prvHeapInit) refers to heap_4.o(.bss) for .bss
heap_4.o(i.prvHeapInit) refers to heap_4.o(.data) for .data
heap_4.o(i.prvInsertBlockIntoFreeList) refers to heap_4.o(.data) for .data
heap_4.o(i.pvPortMalloc) refers to tasks.o(i.vTaskSuspendAll) for vTaskSuspendAll
heap_4.o(i.pvPortMalloc) refers to heap_4.o(i.prvHeapInit) for prvHeapInit
heap_4.o(i.pvPortMalloc) refers to heap_4.o(i.prvInsertBlockIntoFreeList) for prvInsertBlockIntoFreeList
heap_4.o(i.pvPortMalloc) refers to tasks.o(i.xTaskResumeAll) for xTaskResumeAll
heap_4.o(i.pvPortMalloc) refers to heap_4.o(.data) for .data
heap_4.o(i.vPortFree) refers to tasks.o(i.vTaskSuspendAll) for vTaskSuspendAll
heap_4.o(i.vPortFree) refers to heap_4.o(i.prvInsertBlockIntoFreeList) for prvInsertBlockIntoFreeList
heap_4.o(i.vPortFree) refers to tasks.o(i.xTaskResumeAll) for xTaskResumeAll
heap_4.o(i.vPortFree) refers to heap_4.o(.data) for .data
heap_4.o(i.vPortGetHeapStats) refers to tasks.o(i.vTaskSuspendAll) for vTaskSuspendAll
heap_4.o(i.vPortGetHeapStats) refers to tasks.o(i.xTaskResumeAll) for xTaskResumeAll
heap_4.o(i.vPortGetHeapStats) refers to port.o(i.vPortEnterCritical) for vPortEnterCritical
heap_4.o(i.vPortGetHeapStats) refers to port.o(i.vPortExitCritical) for vPortExitCritical
heap_4.o(i.vPortGetHeapStats) refers to heap_4.o(.data) for .data
heap_4.o(i.xPortGetFreeHeapSize) refers to heap_4.o(.data) for .data
heap_4.o(i.xPortGetMinimumEverFreeHeapSize) refers to heap_4.o(.data) for .data
port.o(.emb_text) refers to tasks.o(.data) for pxCurrentTCB
port.o(.emb_text) refers to tasks.o(i.vTaskSwitchContext) for vTaskSwitchContext
port.o(i.SysTick_Handler) refers to port.o(.emb_text) for ulSetInterruptMaskFromISR
port.o(i.SysTick_Handler) refers to tasks.o(i.xTaskIncrementTick) for xTaskIncrementTick
port.o(i.prvTaskExitError) refers to port.o(.data) for .data
port.o(i.pxPortInitialiseStack) refers to port.o(i.prvTaskExitError) for prvTaskExitError
port.o(i.vPortEndScheduler) refers to port.o(.data) for .data
port.o(i.vPortEnterCritical) refers to port.o(.data) for .data
port.o(i.vPortExitCritical) refers to port.o(.data) for .data
port.o(i.vPortSetupTimerInterrupt) refers to uidiv.o(.text) for __aeabi_uidivmod
port.o(i.vPortSetupTimerInterrupt) refers to system_stm32g0xx.o(.data) for SystemCoreClock
port.o(i.xPortStartScheduler) refers to port.o(i.vPortSetupTimerInterrupt) for vPortSetupTimerInterrupt
port.o(i.xPortStartScheduler) refers to port.o(.emb_text) for __asm___6_port_c_39a90d8d__prvPortStartFirstTask
port.o(i.xPortStartScheduler) refers to port.o(.data) for .data
uart_dma.o(i.Dma_Recive_TC1) refers to uart_dma.o(i.LL_DMA_SetDataLength) for LL_DMA_SetDataLength
uart_dma.o(i.Dma_Recive_TC1) refers to printf1.o(i.__0printf$1) for __2printf
uart_dma.o(i.Dma_Recive_TC1) refers to uart_dma.o(.data) for .data
uart_dma.o(i.LL_DMA_EnableChannel) refers to uart_dma.o(.constdata) for .constdata
uart_dma.o(i.LL_DMA_SetDataLength) refers to uart_dma.o(.constdata) for .constdata
uart_dma.o(i.UartDma_Init) refers to uart_dma.o(i.LL_USART_DMA_GetRegAddr) for LL_USART_DMA_GetRegAddr
uart_dma.o(i.UartDma_Init) refers to uart_dma.o(i.LL_DMA_SetDataLength) for LL_DMA_SetDataLength
uart_dma.o(i.UartDma_Init) refers to uart_dma.o(i.LL_DMA_EnableChannel) for LL_DMA_EnableChannel
uart_dma.o(i.UartDma_Init) refers to uart_dma.o(.bss) for .bss
uart_dma.o(i.UartDma_Init) refers to uart_dma.o(.constdata) for .constdata
uart_dma.o(i.UartIDLE_Recive_Data) refers to printf1.o(i.__0printf$1) for __2printf
uart_dma.o(i.UartIDLE_Recive_Data) refers to uart_dma.o(i.LL_DMA_SetDataLength) for LL_DMA_SetDataLength
uart_dma.o(i.UartIDLE_Recive_Data) refers to uart_dma.o(.constdata) for .constdata
uart_dma.o(i.UartIDLE_Recive_Data) refers to uart_dma.o(.data) for .data
uart_dma.o(i.Uart_Data_Send) refers to memcpya.o(.text) for __aeabi_memcpy
uart_dma.o(i.Uart_Data_Send) refers to uart_dma.o(i.LL_DMA_SetDataLength) for LL_DMA_SetDataLength
uart_dma.o(i.Uart_Data_Send) refers to uart_dma.o(i.LL_DMA_EnableChannel) for LL_DMA_EnableChannel
uart_dma.o(i.Uart_Data_Send) refers to uart_dma.o(.bss) for .bss
uart_dma.o(i.Uart_Data_Send) refers to uart_dma.o(.constdata) for .constdata
adc_dma.o(i.Adc_Dma_Initialize) refers to adc_dma.o(.constdata) for .constdata
adc_dma.o(i.Adc_Dma_Initialize) refers to adc_dma.o(.data) for .data
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
printfb.o(i.__0fprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
printfb.o(i.__0fprintf$bare) refers to main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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 main.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
entry2.o(.ARM.Collect$$$$00000001) refers to entry2.o(.ARM.Collect$$$$00002712) for __lit__00000000
entry2.o(.ARM.Collect$$$$00002712) refers to startup_stm32g030xx.o(STACK) for __initial_sp
entry2.o(__vectab_stack_and_reset_area) refers to startup_stm32g030xx.o(STACK) for __initial_sp
entry2.o(__vectab_stack_and_reset_area) refers to entry.o(.ARM.Collect$$$$00000000) for __main
entry5.o(.ARM.Collect$$$$00000004) refers to init.o(.text) for __scatterload
entry9a.o(.ARM.Collect$$$$0000000B) refers to main.o(i.main) for main
entry9b.o(.ARM.Collect$$$$0000000C) refers to main.o(i.main) for main
uldiv.o(.text) refers to llushr.o(.text) for __aeabi_llsr
uldiv.o(.text) refers to llshl.o(.text) for __aeabi_llsl
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 to depilogue.o(.text) for _double_epilogue
ddiv.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
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
==============================================================================
Removing Unused input sections from the image.
Removing startup_stm32g030xx.o(HEAP), (512 bytes).
Removing main.o(.rev16_text), (4 bytes).
Removing main.o(.revsh_text), (4 bytes).
Removing main.o(i.Error_Handler), (4 bytes).
Removing gpio.o(.rev16_text), (4 bytes).
Removing gpio.o(.revsh_text), (4 bytes).
Removing app_freertos.o(.rev16_text), (4 bytes).
Removing app_freertos.o(.revsh_text), (4 bytes).
Removing adc.o(.rev16_text), (4 bytes).
Removing adc.o(.revsh_text), (4 bytes).
Removing dma.o(.rev16_text), (4 bytes).
Removing dma.o(.revsh_text), (4 bytes).
Removing tim.o(.rev16_text), (4 bytes).
Removing tim.o(.revsh_text), (4 bytes).
Removing usart.o(.rev16_text), (4 bytes).
Removing usart.o(.revsh_text), (4 bytes).
Removing stm32g0xx_it.o(.rev16_text), (4 bytes).
Removing stm32g0xx_it.o(.revsh_text), (4 bytes).
Removing stm32g0xx_hal_msp.o(.rev16_text), (4 bytes).
Removing stm32g0xx_hal_msp.o(.revsh_text), (4 bytes).
Removing stm32g0xx_hal_timebase_tim.o(.rev16_text), (4 bytes).
Removing stm32g0xx_hal_timebase_tim.o(.revsh_text), (4 bytes).
Removing stm32g0xx_hal_timebase_tim.o(i.HAL_ResumeTick), (20 bytes).
Removing stm32g0xx_hal_timebase_tim.o(i.HAL_SuspendTick), (20 bytes).
Removing stm32g0xx_ll_utils.o(.rev16_text), (4 bytes).
Removing stm32g0xx_ll_utils.o(.revsh_text), (4 bytes).
Removing stm32g0xx_ll_utils.o(i.LL_Init1msTick), (32 bytes).
Removing stm32g0xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSE), (100 bytes).
Removing stm32g0xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSI), (80 bytes).
Removing stm32g0xx_ll_utils.o(i.LL_RCC_PLL_ConfigDomain_SYS), (32 bytes).
Removing stm32g0xx_ll_utils.o(i.LL_SetFlashLatency), (92 bytes).
Removing stm32g0xx_ll_utils.o(i.LL_mDelay), (32 bytes).
Removing stm32g0xx_ll_utils.o(i.UTILS_EnablePLLAndSwitchSystem), (156 bytes).
Removing stm32g0xx_ll_utils.o(i.UTILS_GetPLLOutputFrequency), (36 bytes).
Removing stm32g0xx_ll_utils.o(i.UTILS_PLL_IsBusy), (20 bytes).
Removing stm32g0xx_ll_exti.o(.rev16_text), (4 bytes).
Removing stm32g0xx_ll_exti.o(.revsh_text), (4 bytes).
Removing stm32g0xx_ll_exti.o(i.LL_EXTI_DeInit), (44 bytes).
Removing stm32g0xx_ll_exti.o(i.LL_EXTI_Init), (164 bytes).
Removing stm32g0xx_ll_exti.o(i.LL_EXTI_StructInit), (14 bytes).
Removing stm32g0xx_ll_gpio.o(.rev16_text), (4 bytes).
Removing stm32g0xx_ll_gpio.o(.revsh_text), (4 bytes).
Removing stm32g0xx_ll_gpio.o(i.LL_GPIO_DeInit), (112 bytes).
Removing stm32g0xx_ll_gpio.o(i.LL_GPIO_StructInit), (24 bytes).
Removing stm32g0xx_ll_gpio.o(i.LL_IOP_GRP1_ForceReset), (16 bytes).
Removing stm32g0xx_ll_gpio.o(i.LL_IOP_GRP1_ReleaseReset), (16 bytes).
Removing stm32g0xx_ll_adc.o(.rev16_text), (4 bytes).
Removing stm32g0xx_ll_adc.o(.revsh_text), (4 bytes).
Removing stm32g0xx_ll_adc.o(i.LL_ADC_CommonDeInit), (28 bytes).
Removing stm32g0xx_ll_adc.o(i.LL_ADC_CommonInit), (40 bytes).
Removing stm32g0xx_ll_adc.o(i.LL_ADC_CommonStructInit), (8 bytes).
Removing stm32g0xx_ll_adc.o(i.LL_ADC_DeInit), (284 bytes).
Removing stm32g0xx_ll_adc.o(i.LL_ADC_REG_StructInit), (20 bytes).
Removing stm32g0xx_ll_adc.o(i.LL_ADC_StructInit), (16 bytes).
Removing stm32g0xx_ll_dma.o(.rev16_text), (4 bytes).
Removing stm32g0xx_ll_dma.o(.revsh_text), (4 bytes).
Removing stm32g0xx_ll_dma.o(i.LL_DMA_DeInit), (180 bytes).
Removing stm32g0xx_ll_dma.o(i.LL_DMA_Init), (96 bytes).
Removing stm32g0xx_ll_dma.o(i.LL_DMA_SetPeriphRequest), (40 bytes).
Removing stm32g0xx_ll_dma.o(i.LL_DMA_StructInit), (26 bytes).
Removing stm32g0xx_ll_dma.o(.constdata), (5 bytes).
Removing stm32g0xx_ll_rcc.o(.rev16_text), (4 bytes).
Removing stm32g0xx_ll_rcc.o(.revsh_text), (4 bytes).
Removing stm32g0xx_ll_rcc.o(i.LL_RCC_DeInit), (80 bytes).
Removing stm32g0xx_ll_rcc.o(i.LL_RCC_GetADCClockFreq), (76 bytes).
Removing stm32g0xx_ll_rcc.o(i.LL_RCC_GetI2CClockFreq), (88 bytes).
Removing stm32g0xx_ll_rcc.o(i.LL_RCC_GetI2SClockFreq), (80 bytes).
Removing stm32g0xx_ll_rcc.o(i.LL_RCC_GetRTCClockFreq), (76 bytes).
Removing stm32g0xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_ADC), (68 bytes).
Removing stm32g0xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_I2S1), (68 bytes).
Removing stm32g0xx_hal_rcc.o(.rev16_text), (4 bytes).
Removing stm32g0xx_hal_rcc.o(.revsh_text), (4 bytes).
Removing stm32g0xx_hal_rcc.o(i.HAL_RCC_CSSCallback), (2 bytes).
Removing stm32g0xx_hal_rcc.o(i.HAL_RCC_ClockConfig), (344 bytes).
Removing stm32g0xx_hal_rcc.o(i.HAL_RCC_DeInit), (164 bytes).
Removing stm32g0xx_hal_rcc.o(i.HAL_RCC_DisableLSECSS), (16 bytes).
Removing stm32g0xx_hal_rcc.o(i.HAL_RCC_EnableCSS), (20 bytes).
Removing stm32g0xx_hal_rcc.o(i.HAL_RCC_EnableLSECSS), (16 bytes).
Removing stm32g0xx_hal_rcc.o(i.HAL_RCC_GetHCLKFreq), (12 bytes).
Removing stm32g0xx_hal_rcc.o(i.HAL_RCC_GetOscConfig), (176 bytes).
Removing stm32g0xx_hal_rcc.o(i.HAL_RCC_GetSysClockFreq), (140 bytes).
Removing stm32g0xx_hal_rcc.o(i.HAL_RCC_LSECSSCallback), (2 bytes).
Removing stm32g0xx_hal_rcc.o(i.HAL_RCC_MCOConfig), (80 bytes).
Removing stm32g0xx_hal_rcc.o(i.HAL_RCC_NMI_IRQHandler), (36 bytes).
Removing stm32g0xx_hal_rcc.o(i.HAL_RCC_OscConfig), (992 bytes).
Removing stm32g0xx_hal_rcc_ex.o(.rev16_text), (4 bytes).
Removing stm32g0xx_hal_rcc_ex.o(.revsh_text), (4 bytes).
Removing stm32g0xx_hal_rcc_ex.o(i.HAL_RCCEx_DisableLSCO), (92 bytes).
Removing stm32g0xx_hal_rcc_ex.o(i.HAL_RCCEx_EnableLSCO), (140 bytes).
Removing stm32g0xx_hal_rcc_ex.o(i.HAL_RCCEx_GetPeriphCLKConfig), (60 bytes).
Removing stm32g0xx_hal_rcc_ex.o(i.HAL_RCCEx_GetPeriphCLKFreq), (352 bytes).
Removing stm32g0xx_hal_rcc_ex.o(i.HAL_RCCEx_PeriphCLKConfig), (332 bytes).
Removing stm32g0xx_hal_flash.o(.rev16_text), (4 bytes).
Removing stm32g0xx_hal_flash.o(.revsh_text), (4 bytes).
Removing stm32g0xx_hal_flash.o(i.FLASH_Program_DoubleWord), (28 bytes).
Removing stm32g0xx_hal_flash.o(i.FLASH_Program_Fast), (52 bytes).
Removing stm32g0xx_hal_flash.o(i.FLASH_WaitForLastOperation), (100 bytes).
Removing stm32g0xx_hal_flash.o(i.HAL_FLASH_EndOfOperationCallback), (2 bytes).
Removing stm32g0xx_hal_flash.o(i.HAL_FLASH_GetError), (12 bytes).
Removing stm32g0xx_hal_flash.o(i.HAL_FLASH_IRQHandler), (144 bytes).
Removing stm32g0xx_hal_flash.o(i.HAL_FLASH_Lock), (28 bytes).
Removing stm32g0xx_hal_flash.o(i.HAL_FLASH_OB_Launch), (20 bytes).
Removing stm32g0xx_hal_flash.o(i.HAL_FLASH_OB_Lock), (28 bytes).
Removing stm32g0xx_hal_flash.o(i.HAL_FLASH_OB_Unlock), (40 bytes).
Removing stm32g0xx_hal_flash.o(i.HAL_FLASH_OperationErrorCallback), (2 bytes).
Removing stm32g0xx_hal_flash.o(i.HAL_FLASH_Program), (96 bytes).
Removing stm32g0xx_hal_flash.o(i.HAL_FLASH_Program_IT), (104 bytes).
Removing stm32g0xx_hal_flash.o(i.HAL_FLASH_Unlock), (40 bytes).
Removing stm32g0xx_hal_flash.o(.bss), (28 bytes).
Removing stm32g0xx_hal_flash_ex.o(.rev16_text), (4 bytes).
Removing stm32g0xx_hal_flash_ex.o(.revsh_text), (4 bytes).
Removing stm32g0xx_hal_flash_ex.o(i.FLASH_FlushCaches), (44 bytes).
Removing stm32g0xx_hal_flash_ex.o(i.FLASH_MassErase), (20 bytes).
Removing stm32g0xx_hal_flash_ex.o(i.FLASH_OB_GetRDP), (24 bytes).
Removing stm32g0xx_hal_flash_ex.o(i.FLASH_OB_GetUser), (20 bytes).
Removing stm32g0xx_hal_flash_ex.o(i.FLASH_OB_OptrConfig), (24 bytes).
Removing stm32g0xx_hal_flash_ex.o(i.FLASH_PageErase), (28 bytes).
Removing stm32g0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase), (136 bytes).
Removing stm32g0xx_hal_flash_ex.o(i.HAL_FLASHEx_Erase_IT), (108 bytes).
Removing stm32g0xx_hal_flash_ex.o(i.HAL_FLASHEx_FlashEmptyCheck), (16 bytes).
Removing stm32g0xx_hal_flash_ex.o(i.HAL_FLASHEx_ForceFlashEmpty), (20 bytes).
Removing stm32g0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBGetConfig), (72 bytes).
Removing stm32g0xx_hal_flash_ex.o(i.HAL_FLASHEx_OBProgram), (152 bytes).
Removing stm32g0xx_hal_gpio.o(.rev16_text), (4 bytes).
Removing stm32g0xx_hal_gpio.o(.revsh_text), (4 bytes).
Removing stm32g0xx_hal_gpio.o(i.HAL_GPIO_DeInit), (212 bytes).
Removing stm32g0xx_hal_gpio.o(i.HAL_GPIO_EXTI_Falling_Callback), (2 bytes).
Removing stm32g0xx_hal_gpio.o(i.HAL_GPIO_EXTI_IRQHandler), (40 bytes).
Removing stm32g0xx_hal_gpio.o(i.HAL_GPIO_EXTI_Rising_Callback), (2 bytes).
Removing stm32g0xx_hal_gpio.o(i.HAL_GPIO_Init), (348 bytes).
Removing stm32g0xx_hal_gpio.o(i.HAL_GPIO_LockPin), (36 bytes).
Removing stm32g0xx_hal_gpio.o(i.HAL_GPIO_ReadPin), (10 bytes).
Removing stm32g0xx_hal_gpio.o(i.HAL_GPIO_TogglePin), (16 bytes).
Removing stm32g0xx_hal_gpio.o(i.HAL_GPIO_WritePin), (12 bytes).
Removing stm32g0xx_hal_dma.o(.rev16_text), (4 bytes).
Removing stm32g0xx_hal_dma.o(.revsh_text), (4 bytes).
Removing stm32g0xx_hal_dma.o(i.DMA_CalcDMAMUXChannelBaseAndMask), (48 bytes).
Removing stm32g0xx_hal_dma.o(i.DMA_CalcDMAMUXRequestGenBaseAndMask), (40 bytes).
Removing stm32g0xx_hal_dma.o(i.DMA_SetConfig), (72 bytes).
Removing stm32g0xx_hal_dma.o(i.HAL_DMA_Abort), (116 bytes).
Removing stm32g0xx_hal_dma.o(i.HAL_DMA_Abort_IT), (124 bytes).
Removing stm32g0xx_hal_dma.o(i.HAL_DMA_DeInit), (132 bytes).
Removing stm32g0xx_hal_dma.o(i.HAL_DMA_GetError), (4 bytes).
Removing stm32g0xx_hal_dma.o(i.HAL_DMA_GetState), (6 bytes).
Removing stm32g0xx_hal_dma.o(i.HAL_DMA_IRQHandler), (184 bytes).
Removing stm32g0xx_hal_dma.o(i.HAL_DMA_Init), (164 bytes).
Removing stm32g0xx_hal_dma.o(i.HAL_DMA_PollForTransfer), (272 bytes).
Removing stm32g0xx_hal_dma.o(i.HAL_DMA_RegisterCallback), (72 bytes).
Removing stm32g0xx_hal_dma.o(i.HAL_DMA_Start), (78 bytes).
Removing stm32g0xx_hal_dma.o(i.HAL_DMA_Start_IT), (140 bytes).
Removing stm32g0xx_hal_dma.o(i.HAL_DMA_UnRegisterCallback), (78 bytes).
Removing stm32g0xx_hal_dma_ex.o(.rev16_text), (4 bytes).
Removing stm32g0xx_hal_dma_ex.o(.revsh_text), (4 bytes).
Removing stm32g0xx_hal_dma_ex.o(i.HAL_DMAEx_ConfigMuxRequestGenerator), (74 bytes).
Removing stm32g0xx_hal_dma_ex.o(i.HAL_DMAEx_ConfigMuxSync), (80 bytes).
Removing stm32g0xx_hal_dma_ex.o(i.HAL_DMAEx_DisableMuxRequestGenerator), (32 bytes).
Removing stm32g0xx_hal_dma_ex.o(i.HAL_DMAEx_EnableMuxRequestGenerator), (32 bytes).
Removing stm32g0xx_hal_dma_ex.o(i.HAL_DMAEx_MUX_IRQHandler), (104 bytes).
Removing stm32g0xx_hal_pwr.o(.rev16_text), (4 bytes).
Removing stm32g0xx_hal_pwr.o(.revsh_text), (4 bytes).
Removing stm32g0xx_hal_pwr.o(i.HAL_PWR_DeInit), (24 bytes).
Removing stm32g0xx_hal_pwr.o(i.HAL_PWR_DisableBkUpAccess), (16 bytes).
Removing stm32g0xx_hal_pwr.o(i.HAL_PWR_DisableSEVOnPend), (16 bytes).
Removing stm32g0xx_hal_pwr.o(i.HAL_PWR_DisableSleepOnExit), (16 bytes).
Removing stm32g0xx_hal_pwr.o(i.HAL_PWR_DisableWakeUpPin), (20 bytes).
Removing stm32g0xx_hal_pwr.o(i.HAL_PWR_EnableBkUpAccess), (16 bytes).
Removing stm32g0xx_hal_pwr.o(i.HAL_PWR_EnableSEVOnPend), (16 bytes).
Removing stm32g0xx_hal_pwr.o(i.HAL_PWR_EnableSleepOnExit), (16 bytes).
Removing stm32g0xx_hal_pwr.o(i.HAL_PWR_EnableWakeUpPin), (28 bytes).
Removing stm32g0xx_hal_pwr.o(i.HAL_PWR_EnterSLEEPMode), (68 bytes).
Removing stm32g0xx_hal_pwr.o(i.HAL_PWR_EnterSTANDBYMode), (36 bytes).
Removing stm32g0xx_hal_pwr.o(i.HAL_PWR_EnterSTOPMode), (64 bytes).
Removing stm32g0xx_hal_pwr_ex.o(.rev16_text), (4 bytes).
Removing stm32g0xx_hal_pwr_ex.o(.revsh_text), (4 bytes).
Removing stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_ControlVoltageScaling), (76 bytes).
Removing stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_DisableBatteryCharging), (16 bytes).
Removing stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_DisableFlashPowerDown), (16 bytes).
Removing stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_DisableGPIOPullDown), (80 bytes).
Removing stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_DisableGPIOPullUp), (80 bytes).
Removing stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_DisableInternalWakeUpLine), (16 bytes).
Removing stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_DisableLowPowerRunMode), (64 bytes).
Removing stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_DisablePullUpPullDownConfig), (16 bytes).
Removing stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_EnableBatteryCharging), (24 bytes).
Removing stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_EnableFlashPowerDown), (16 bytes).
Removing stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_EnableGPIOPullDown), (116 bytes).
Removing stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_EnableGPIOPullUp), (116 bytes).
Removing stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_EnableInternalWakeUpLine), (16 bytes).
Removing stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_EnableLowPowerRunMode), (16 bytes).
Removing stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_EnablePullUpPullDownConfig), (16 bytes).
Removing stm32g0xx_hal_pwr_ex.o(i.HAL_PWREx_GetVoltageRange), (16 bytes).
Removing stm32g0xx_hal_cortex.o(.rev16_text), (4 bytes).
Removing stm32g0xx_hal_cortex.o(.revsh_text), (4 bytes).
Removing stm32g0xx_hal_cortex.o(i.HAL_MPU_ConfigRegion), (84 bytes).
Removing stm32g0xx_hal_cortex.o(i.HAL_MPU_Disable), (16 bytes).
Removing stm32g0xx_hal_cortex.o(i.HAL_MPU_Enable), (24 bytes).
Removing stm32g0xx_hal_cortex.o(i.HAL_NVIC_ClearPendingIRQ), (24 bytes).
Removing stm32g0xx_hal_cortex.o(i.HAL_NVIC_DisableIRQ), (32 bytes).
Removing stm32g0xx_hal_cortex.o(i.HAL_NVIC_GetPendingIRQ), (32 bytes).
Removing stm32g0xx_hal_cortex.o(i.HAL_NVIC_GetPriority), (52 bytes).
Removing stm32g0xx_hal_cortex.o(i.HAL_NVIC_SetPendingIRQ), (24 bytes).
Removing stm32g0xx_hal_cortex.o(i.HAL_NVIC_SystemReset), (28 bytes).
Removing stm32g0xx_hal_cortex.o(i.HAL_SYSTICK_CLKSourceConfig), (24 bytes).
Removing stm32g0xx_hal_cortex.o(i.HAL_SYSTICK_Callback), (2 bytes).
Removing stm32g0xx_hal_cortex.o(i.HAL_SYSTICK_Config), (48 bytes).
Removing stm32g0xx_hal_cortex.o(i.HAL_SYSTICK_IRQHandler), (8 bytes).
Removing stm32g0xx_hal.o(.rev16_text), (4 bytes).
Removing stm32g0xx_hal.o(.revsh_text), (4 bytes).
Removing stm32g0xx_hal.o(i.HAL_DBGMCU_DisableDBGStandbyMode), (16 bytes).
Removing stm32g0xx_hal.o(i.HAL_DBGMCU_DisableDBGStopMode), (16 bytes).
Removing stm32g0xx_hal.o(i.HAL_DBGMCU_EnableDBGStandbyMode), (16 bytes).
Removing stm32g0xx_hal.o(i.HAL_DBGMCU_EnableDBGStopMode), (16 bytes).
Removing stm32g0xx_hal.o(i.HAL_DeInit), (40 bytes).
Removing stm32g0xx_hal.o(i.HAL_Delay), (36 bytes).
Removing stm32g0xx_hal.o(i.HAL_GetDEVID), (16 bytes).
Removing stm32g0xx_hal.o(i.HAL_GetHalVersion), (8 bytes).
Removing stm32g0xx_hal.o(i.HAL_GetREVID), (12 bytes).
Removing stm32g0xx_hal.o(i.HAL_GetTick), (12 bytes).
Removing stm32g0xx_hal.o(i.HAL_GetTickFreq), (12 bytes).
Removing stm32g0xx_hal.o(i.HAL_GetTickPrio), (12 bytes).
Removing stm32g0xx_hal.o(i.HAL_GetUIDw0), (12 bytes).
Removing stm32g0xx_hal.o(i.HAL_GetUIDw1), (12 bytes).
Removing stm32g0xx_hal.o(i.HAL_GetUIDw2), (12 bytes).
Removing stm32g0xx_hal.o(i.HAL_InitTick), (72 bytes).
Removing stm32g0xx_hal.o(i.HAL_MspDeInit), (2 bytes).
Removing stm32g0xx_hal.o(i.HAL_MspInit), (2 bytes).
Removing stm32g0xx_hal.o(i.HAL_ResumeTick), (16 bytes).
Removing stm32g0xx_hal.o(i.HAL_SYSCFG_DisableClampingDiode), (16 bytes).
Removing stm32g0xx_hal.o(i.HAL_SYSCFG_DisableIOAnalogSwitchBooster), (16 bytes).
Removing stm32g0xx_hal.o(i.HAL_SYSCFG_DisableRemap), (16 bytes).
Removing stm32g0xx_hal.o(i.HAL_SYSCFG_EnableClampingDiode), (16 bytes).
Removing stm32g0xx_hal.o(i.HAL_SYSCFG_EnableIOAnalogSwitchBooster), (16 bytes).
Removing stm32g0xx_hal.o(i.HAL_SYSCFG_EnableRemap), (16 bytes).
Removing stm32g0xx_hal.o(i.HAL_SetTickFreq), (36 bytes).
Removing stm32g0xx_hal.o(i.HAL_SuspendTick), (16 bytes).
Removing stm32g0xx_hal_exti.o(.rev16_text), (4 bytes).
Removing stm32g0xx_hal_exti.o(.revsh_text), (4 bytes).
Removing stm32g0xx_hal_exti.o(i.HAL_EXTI_ClearConfigLine), (120 bytes).
Removing stm32g0xx_hal_exti.o(i.HAL_EXTI_ClearPending), (40 bytes).
Removing stm32g0xx_hal_exti.o(i.HAL_EXTI_GenerateSWI), (28 bytes).
Removing stm32g0xx_hal_exti.o(i.HAL_EXTI_GetConfigLine), (168 bytes).
Removing stm32g0xx_hal_exti.o(i.HAL_EXTI_GetHandle), (14 bytes).
Removing stm32g0xx_hal_exti.o(i.HAL_EXTI_GetPending), (44 bytes).
Removing stm32g0xx_hal_exti.o(i.HAL_EXTI_IRQHandler), (68 bytes).
Removing stm32g0xx_hal_exti.o(i.HAL_EXTI_RegisterCallback), (30 bytes).
Removing stm32g0xx_hal_exti.o(i.HAL_EXTI_SetConfigLine), (172 bytes).
Removing stm32g0xx_hal_tim.o(.rev16_text), (4 bytes).
Removing stm32g0xx_hal_tim.o(.revsh_text), (4 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_Base_DeInit), (84 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_Base_GetState), (6 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_Base_MspDeInit), (2 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_Base_Start), (72 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_Base_Start_DMA), (156 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_Base_Stop), (40 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_Base_Stop_DMA), (64 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_Base_Stop_IT), (52 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_ConfigClockSource), (216 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_ConfigOCrefClear), (264 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_ConfigTI1Input), (16 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurstState), (6 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiReadStart), (320 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_MultiWriteStart), (320 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_ReadStart), (18 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_ReadStop), (106 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_WriteStart), (18 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_DMABurst_WriteStop), (106 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_DeInit), (68 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_GetState), (6 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_Init), (168 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_MspDeInit), (2 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_MspInit), (2 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_Start), (130 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_Start_DMA), (448 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_Start_IT), (168 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_Stop), (108 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_Stop_DMA), (176 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_Encoder_Stop_IT), (148 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_ErrorCallback), (2 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_GenerateEvent), (36 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_GetActiveChannel), (4 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_GetChannelState), (50 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_IC_CaptureHalfCpltCallback), (2 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_IC_ConfigChannel), (282 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_IC_DeInit), (84 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_IC_GetState), (6 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_IC_Init), (76 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_IC_MspDeInit), (2 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_IC_MspInit), (2 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_IC_Start), (192 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_IC_Start_DMA), (396 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_IC_Start_IT), (228 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_IC_Stop), (108 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_IC_Stop_DMA), (192 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_IC_Stop_IT), (152 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_OC_ConfigChannel), (102 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_OC_DeInit), (84 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_OC_GetState), (6 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_OC_Init), (76 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_OC_MspDeInit), (2 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_OC_MspInit), (2 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_OC_Start), (192 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_OC_Start_DMA), (440 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_OC_Start_IT), (228 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_OC_Stop), (152 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_OC_Stop_DMA), (232 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_OC_Stop_IT), (200 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_OnePulse_ConfigChannel), (220 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_OnePulse_DeInit), (68 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_OnePulse_GetState), (6 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_OnePulse_Init), (84 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_OnePulse_MspDeInit), (2 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_OnePulse_MspInit), (2 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_OnePulse_Start), (116 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_OnePulse_Start_IT), (132 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_OnePulse_Stop), (128 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_OnePulse_Stop_IT), (148 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_ConfigChannel), (286 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_DeInit), (84 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_GetState), (6 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_Init), (76 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_MspDeInit), (2 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_MspInit), (2 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_PulseFinishedHalfCpltCallback), (2 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_Start), (192 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_Start_DMA), (440 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_Start_IT), (228 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_Stop), (152 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_Stop_DMA), (232 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_Stop_IT), (200 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_PeriodElapsedCallback), (2 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_PeriodElapsedHalfCpltCallback), (2 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_ReadCapturedValue), (44 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_SlaveConfigSynchro), (76 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_SlaveConfigSynchro_IT), (76 bytes).
Removing stm32g0xx_hal_tim.o(i.HAL_TIM_TriggerHalfCpltCallback), (2 bytes).
Removing stm32g0xx_hal_tim.o(i.TIM_CCxChannelCmd), (26 bytes).
Removing stm32g0xx_hal_tim.o(i.TIM_DMACaptureCplt), (118 bytes).
Removing stm32g0xx_hal_tim.o(i.TIM_DMACaptureHalfCplt), (56 bytes).
Removing stm32g0xx_hal_tim.o(i.TIM_DMADelayPulseCplt), (102 bytes).
Removing stm32g0xx_hal_tim.o(i.TIM_DMADelayPulseHalfCplt), (56 bytes).
Removing stm32g0xx_hal_tim.o(i.TIM_DMAError), (84 bytes).
Removing stm32g0xx_hal_tim.o(i.TIM_DMAPeriodElapsedCplt), (24 bytes).
Removing stm32g0xx_hal_tim.o(i.TIM_DMAPeriodElapsedHalfCplt), (10 bytes).
Removing stm32g0xx_hal_tim.o(i.TIM_DMATriggerCplt), (24 bytes).
Removing stm32g0xx_hal_tim.o(i.TIM_DMATriggerHalfCplt), (10 bytes).
Removing stm32g0xx_hal_tim.o(i.TIM_ETR_SetConfig), (22 bytes).
Removing stm32g0xx_hal_tim.o(i.TIM_ITRx_SetConfig), (20 bytes).
Removing stm32g0xx_hal_tim.o(i.TIM_OC1_SetConfig), (124 bytes).
Removing stm32g0xx_hal_tim.o(i.TIM_OC2_SetConfig), (124 bytes).
Removing stm32g0xx_hal_tim.o(i.TIM_OC3_SetConfig), (124 bytes).
Removing stm32g0xx_hal_tim.o(i.TIM_OC4_SetConfig), (108 bytes).
Removing stm32g0xx_hal_tim.o(i.TIM_OC5_SetConfig), (92 bytes).
Removing stm32g0xx_hal_tim.o(i.TIM_OC6_SetConfig), (100 bytes).
Removing stm32g0xx_hal_tim.o(i.TIM_SlaveTimer_SetConfig), (144 bytes).
Removing stm32g0xx_hal_tim.o(i.TIM_TI1_ConfigInputStage), (34 bytes).
Removing stm32g0xx_hal_tim.o(i.TIM_TI1_SetConfig), (68 bytes).
Removing stm32g0xx_hal_tim.o(i.TIM_TI2_ConfigInputStage), (38 bytes).
Removing stm32g0xx_hal_tim.o(i.TIM_TI2_SetConfig), (52 bytes).
Removing stm32g0xx_hal_tim_ex.o(.rev16_text), (4 bytes).
Removing stm32g0xx_hal_tim_ex.o(.revsh_text), (4 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_CommutHalfCpltCallback), (2 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_ConfigBreakDeadTime), (172 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_ConfigBreakInput), (106 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_ConfigCommutEvent), (112 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_ConfigCommutEvent_DMA), (144 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_ConfigCommutEvent_IT), (112 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_DisarmBreakInput), (64 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_GetChannelNState), (30 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_GroupChannel5), (50 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_DeInit), (68 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_GetState), (6 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_Init), (208 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_MspDeInit), (2 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_MspInit), (2 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_Start), (112 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_Start_DMA), (184 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_Start_IT), (120 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_Stop), (64 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_Stop_DMA), (76 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_HallSensor_Stop_IT), (76 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_MasterConfigSynchronization), (100 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OCN_Start), (140 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OCN_Start_DMA), (320 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OCN_Start_IT), (168 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OCN_Stop), (108 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OCN_Stop_DMA), (168 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OCN_Stop_IT), (160 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OnePulseN_Start), (170 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OnePulseN_Start_IT), (188 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OnePulseN_Stop), (172 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_OnePulseN_Stop_IT), (192 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_PWMN_Start), (140 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_PWMN_Start_DMA), (320 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_PWMN_Start_IT), (168 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_PWMN_Stop), (108 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_PWMN_Stop_DMA), (168 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_PWMN_Stop_IT), (160 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_ReArmBreakInput), (88 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_RemapConfig), (40 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_TISelection), (82 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.TIMEx_DMACommutationCplt), (16 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.TIMEx_DMACommutationHalfCplt), (16 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.TIM_CCxNChannelCmd), (26 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.TIM_DMADelayPulseNCplt), (102 bytes).
Removing stm32g0xx_hal_tim_ex.o(i.TIM_DMAErrorCCxN), (62 bytes).
Removing stm32g0xx_ll_tim.o(.rev16_text), (4 bytes).
Removing stm32g0xx_ll_tim.o(.revsh_text), (4 bytes).
Removing stm32g0xx_ll_tim.o(i.LL_APB2_GRP1_ForceReset), (16 bytes).
Removing stm32g0xx_ll_tim.o(i.LL_APB2_GRP1_ReleaseReset), (16 bytes).
Removing stm32g0xx_ll_tim.o(i.LL_TIM_BDTR_Init), (140 bytes).
Removing stm32g0xx_ll_tim.o(i.LL_TIM_BDTR_StructInit), (30 bytes).
Removing stm32g0xx_ll_tim.o(i.LL_TIM_DeInit), (116 bytes).
Removing stm32g0xx_ll_tim.o(i.LL_TIM_ENCODER_Init), (100 bytes).
Removing stm32g0xx_ll_tim.o(i.LL_TIM_ENCODER_StructInit), (28 bytes).
Removing stm32g0xx_ll_tim.o(i.LL_TIM_HALLSENSOR_Init), (96 bytes).
Removing stm32g0xx_ll_tim.o(i.LL_TIM_HALLSENSOR_StructInit), (12 bytes).
Removing stm32g0xx_ll_tim.o(i.LL_TIM_IC_Init), (218 bytes).
Removing stm32g0xx_ll_tim.o(i.LL_TIM_IC_StructInit), (14 bytes).
Removing stm32g0xx_ll_tim.o(i.LL_TIM_OC_StructInit), (20 bytes).
Removing stm32g0xx_ll_tim.o(i.LL_TIM_StructInit), (16 bytes).
Removing stm32g0xx_ll_usart.o(.rev16_text), (4 bytes).
Removing stm32g0xx_ll_usart.o(.revsh_text), (4 bytes).
Removing stm32g0xx_ll_usart.o(i.LL_USART_ClockInit), (62 bytes).
Removing stm32g0xx_ll_usart.o(i.LL_USART_ClockStructInit), (12 bytes).
Removing stm32g0xx_ll_usart.o(i.LL_USART_DeInit), (72 bytes).
Removing stm32g0xx_ll_usart.o(i.LL_USART_StructInit), (24 bytes).
Removing system_stm32g0xx.o(.rev16_text), (4 bytes).
Removing system_stm32g0xx.o(.revsh_text), (4 bytes).
Removing system_stm32g0xx.o(i.SystemCoreClockUpdate), (144 bytes).
Removing event_groups.o(i.prvTestWaitCondition), (22 bytes).
Removing event_groups.o(i.vEventGroupClearBitsCallback), (8 bytes).
Removing event_groups.o(i.vEventGroupDelete), (54 bytes).
Removing event_groups.o(i.vEventGroupSetBitsCallback), (8 bytes).
Removing event_groups.o(i.xEventGroupClearBits), (40 bytes).
Removing event_groups.o(i.xEventGroupCreate), (26 bytes).
Removing event_groups.o(i.xEventGroupGetBitsFromISR), (18 bytes).
Removing event_groups.o(i.xEventGroupSetBits), (116 bytes).
Removing event_groups.o(i.xEventGroupSync), (164 bytes).
Removing event_groups.o(i.xEventGroupWaitBits), (204 bytes).
Removing queue.o(i.pcQueueGetName), (40 bytes).
Removing queue.o(i.prvCopyDataFromQueue), (38 bytes).
Removing queue.o(i.prvCopyDataToQueue), (112 bytes).
Removing queue.o(i.prvIsQueueEmpty), (28 bytes).
Removing queue.o(i.prvUnlockQueue), (112 bytes).
Removing queue.o(i.uxQueueMessagesWaiting), (24 bytes).
Removing queue.o(i.uxQueueMessagesWaitingFromISR), (12 bytes).
Removing queue.o(i.uxQueueSpacesAvailable), (28 bytes).
Removing queue.o(i.vQueueAddToRegistry), (36 bytes).
Removing queue.o(i.vQueueDelete), (22 bytes).
Removing queue.o(i.vQueueUnregisterQueue), (40 bytes).
Removing queue.o(i.xQueueCreateMutex), (36 bytes).
Removing queue.o(i.xQueueGenericCreate), (54 bytes).
Removing queue.o(i.xQueueGenericReset), (108 bytes).
Removing queue.o(i.xQueueGenericSend), (280 bytes).
Removing queue.o(i.xQueueGenericSendFromISR), (142 bytes).
Removing queue.o(i.xQueueGiveFromISR), (116 bytes).
Removing queue.o(i.xQueueIsQueueEmptyFromISR), (22 bytes).
Removing queue.o(i.xQueueIsQueueFullFromISR), (24 bytes).
Removing queue.o(i.xQueuePeek), (258 bytes).
Removing queue.o(i.xQueuePeekFromISR), (76 bytes).
Removing queue.o(i.xQueueReceive), (258 bytes).
Removing queue.o(i.xQueueReceiveFromISR), (120 bytes).
Removing queue.o(i.xQueueSemaphoreTake), (320 bytes).
Removing queue.o(.bss), (64 bytes).
Removing stream_buffer.o(i.prvBytesInBuffer), (18 bytes).
Removing stream_buffer.o(i.prvInitialiseNewStreamBuffer), (46 bytes).
Removing stream_buffer.o(i.prvReadBytesFromBuffer), (106 bytes).
Removing stream_buffer.o(i.prvReadMessageFromBuffer), (58 bytes).
Removing stream_buffer.o(i.prvWriteBytesToBuffer), (88 bytes).
Removing stream_buffer.o(i.prvWriteMessageToBuffer), (62 bytes).
Removing stream_buffer.o(i.vStreamBufferDelete), (30 bytes).
Removing stream_buffer.o(i.xStreamBufferBytesAvailable), (16 bytes).
Removing stream_buffer.o(i.xStreamBufferGenericCreate), (76 bytes).
Removing stream_buffer.o(i.xStreamBufferIsEmpty), (24 bytes).
Removing stream_buffer.o(i.xStreamBufferIsFull), (38 bytes).
Removing stream_buffer.o(i.xStreamBufferNextMessageLengthBytes), (54 bytes).
Removing stream_buffer.o(i.xStreamBufferReceive), (172 bytes).
Removing stream_buffer.o(i.xStreamBufferReceiveCompletedFromISR), (58 bytes).
Removing stream_buffer.o(i.xStreamBufferReceiveFromISR), (110 bytes).
Removing stream_buffer.o(i.xStreamBufferReset), (58 bytes).
Removing stream_buffer.o(i.xStreamBufferSend), (210 bytes).
Removing stream_buffer.o(i.xStreamBufferSendCompletedFromISR), (58 bytes).
Removing stream_buffer.o(i.xStreamBufferSendFromISR), (110 bytes).
Removing stream_buffer.o(i.xStreamBufferSetTriggerLevel), (32 bytes).
Removing stream_buffer.o(i.xStreamBufferSpacesAvailable), (28 bytes).
Removing tasks.o(i.pcTaskGetName), (24 bytes).
Removing tasks.o(i.prvTaskIsTaskSuspended), (44 bytes).
Removing tasks.o(i.pvTaskIncrementMutexHeldCount), (24 bytes).
Removing tasks.o(i.ulTaskNotifyTake), (96 bytes).
Removing tasks.o(i.ulTaskNotifyValueClear), (44 bytes).
Removing tasks.o(i.uxTaskGetNumberOfTasks), (12 bytes).
Removing tasks.o(i.uxTaskPriorityGet), (32 bytes).
Removing tasks.o(i.uxTaskPriorityGetFromISR), (32 bytes).
Removing tasks.o(i.uxTaskResetEventItemValue), (24 bytes).
Removing tasks.o(i.vTaskDelete), (120 bytes).
Removing tasks.o(i.vTaskEndScheduler), (20 bytes).
Removing tasks.o(i.vTaskInternalSetTimeOutState), (16 bytes).
Removing tasks.o(i.vTaskMissedYield), (12 bytes).
Removing tasks.o(i.vTaskNotifyGiveFromISR), (136 bytes).
Removing tasks.o(i.vTaskPlaceOnEventList), (36 bytes).
Removing tasks.o(i.vTaskPlaceOnUnorderedEventList), (60 bytes).
Removing tasks.o(i.vTaskPriorityDisinheritAfterTimeout), (112 bytes).
Removing tasks.o(i.vTaskPrioritySet), (148 bytes).
Removing tasks.o(i.vTaskRemoveFromUnorderedEventList), (92 bytes).
Removing tasks.o(i.vTaskResume), (92 bytes).
Removing tasks.o(i.vTaskSetTimeOutState), (36 bytes).
Removing tasks.o(i.vTaskSuspend), (136 bytes).
Removing tasks.o(i.xTaskCatchUpTicks), (36 bytes).
Removing tasks.o(i.xTaskCheckForTimeOut), (92 bytes).
Removing tasks.o(i.xTaskGenericNotify), (176 bytes).
Removing tasks.o(i.xTaskGenericNotifyFromISR), (204 bytes).
Removing tasks.o(i.xTaskGetCurrentTaskHandle), (12 bytes).
Removing tasks.o(i.xTaskGetSchedulerState), (32 bytes).
Removing tasks.o(i.xTaskGetTickCount), (12 bytes).
Removing tasks.o(i.xTaskGetTickCountFromISR), (12 bytes).
Removing tasks.o(i.xTaskNotifyStateClear), (48 bytes).
Removing tasks.o(i.xTaskNotifyWait), (124 bytes).
Removing tasks.o(i.xTaskPriorityDisinherit), (104 bytes).
Removing tasks.o(i.xTaskPriorityInherit), (120 bytes).
Removing tasks.o(i.xTaskRemoveFromEventList), (100 bytes).
Removing tasks.o(i.xTaskResumeFromISR), (108 bytes).
Removing cmsis_os.o(.rev16_text), (4 bytes).
Removing cmsis_os.o(.revsh_text), (4 bytes).
Removing cmsis_os.o(i.inHandlerMode), (12 bytes).
Removing cmsis_os.o(i.makeCmsisPriority), (14 bytes).
Removing cmsis_os.o(i.osAbortDelay), (4 bytes).
Removing cmsis_os.o(i.osDelayUntil), (4 bytes).
Removing cmsis_os.o(i.osKernelRunning), (18 bytes).
Removing cmsis_os.o(i.osKernelSysTick), (22 bytes).
Removing cmsis_os.o(i.osMailAlloc), (14 bytes).
Removing cmsis_os.o(i.osMailCAlloc), (32 bytes).
Removing cmsis_os.o(i.osMailCreate), (92 bytes).
Removing cmsis_os.o(i.osMailFree), (18 bytes).
Removing cmsis_os.o(i.osMailGet), (136 bytes).
Removing cmsis_os.o(i.osMailPut), (88 bytes).
Removing cmsis_os.o(i.osMessageAvailableSpace), (8 bytes).
Removing cmsis_os.o(i.osMessageCreate), (12 bytes).
Removing cmsis_os.o(i.osMessageDelete), (26 bytes).
Removing cmsis_os.o(i.osMessageGet), (140 bytes).
Removing cmsis_os.o(i.osMessagePeek), (76 bytes).
Removing cmsis_os.o(i.osMessagePut), (88 bytes).
Removing cmsis_os.o(i.osMessageWaiting), (26 bytes).
Removing cmsis_os.o(i.osMutexCreate), (10 bytes).
Removing cmsis_os.o(i.osMutexDelete), (26 bytes).
Removing cmsis_os.o(i.osMutexRelease), (76 bytes).
Removing cmsis_os.o(i.osMutexWait), (100 bytes).
Removing cmsis_os.o(i.osPoolAlloc), (102 bytes).
Removing cmsis_os.o(i.osPoolCAlloc), (20 bytes).
Removing cmsis_os.o(i.osPoolCreate), (94 bytes).
Removing cmsis_os.o(i.osPoolFree), (48 bytes).
Removing cmsis_os.o(i.osRecursiveMutexCreate), (4 bytes).
Removing cmsis_os.o(i.osRecursiveMutexRelease), (4 bytes).
Removing cmsis_os.o(i.osRecursiveMutexWait), (4 bytes).
Removing cmsis_os.o(i.osSemaphoreCreate), (38 bytes).
Removing cmsis_os.o(i.osSemaphoreDelete), (26 bytes).
Removing cmsis_os.o(i.osSemaphoreGetCount), (8 bytes).
Removing cmsis_os.o(i.osSemaphoreRelease), (76 bytes).
Removing cmsis_os.o(i.osSemaphoreWait), (100 bytes).
Removing cmsis_os.o(i.osSignalSet), (88 bytes).
Removing cmsis_os.o(i.osSignalWait), (90 bytes).
Removing cmsis_os.o(i.osSystickHandler), (16 bytes).
Removing cmsis_os.o(i.osThreadGetId), (8 bytes).
Removing cmsis_os.o(i.osThreadGetPriority), (30 bytes).
Removing cmsis_os.o(i.osThreadList), (4 bytes).
Removing cmsis_os.o(i.osThreadResume), (44 bytes).
Removing cmsis_os.o(i.osThreadResumeAll), (18 bytes).
Removing cmsis_os.o(i.osThreadSetPriority), (22 bytes).
Removing cmsis_os.o(i.osThreadSuspend), (10 bytes).
Removing cmsis_os.o(i.osThreadSuspendAll), (10 bytes).
Removing cmsis_os.o(i.osThreadTerminate), (10 bytes).
Removing cmsis_os.o(i.osThreadYield), (10 bytes).
Removing cmsis_os.o(i.osTimerCreate), (4 bytes).
Removing cmsis_os.o(i.osTimerDelete), (4 bytes).
Removing cmsis_os.o(i.osTimerStart), (4 bytes).
Removing cmsis_os.o(i.osTimerStop), (4 bytes).
Removing heap_4.o(i.vPortGetHeapStats), (96 bytes).
Removing heap_4.o(i.vPortInitialiseBlocks), (2 bytes).
Removing heap_4.o(i.xPortGetFreeHeapSize), (12 bytes).
Removing heap_4.o(i.xPortGetMinimumEverFreeHeapSize), (12 bytes).
Removing port.o(i.vPortEndScheduler), (24 bytes).
Removing uart_dma.o(.rev16_text), (4 bytes).
Removing uart_dma.o(.revsh_text), (4 bytes).
Removing uart_dma.o(i.Uart_Data_Send), (80 bytes).
Removing adc_dma.o(.rev16_text), (4 bytes).
Removing adc_dma.o(.revsh_text), (4 bytes).
Removing dadd.o(.text), (356 bytes).
Removing dmul.o(.text), (208 bytes).
Removing ddiv.o(.text), (240 bytes).
Removing dfixul.o(.text), (64 bytes).
Removing cdrcmple.o(.text), (40 bytes).
Removing depilogue.o(.text), (190 bytes).
Removing stm32g0xx_hal_dma.o(i.__ARM_common_switch8), (26 bytes).
Removing depilogue.o(i.__ARM_clz), (46 bytes).
592 unused section(s) (total 40559 bytes) removed from the image.
==============================================================================
Image Symbol Table
Local Symbols
Symbol Name Value Ov Type Size Object(Section)
../Core/Src/adc.c 0x00000000 Number 0 adc.o ABSOLUTE
../Core/Src/app_freertos.c 0x00000000 Number 0 app_freertos.o ABSOLUTE
../Core/Src/dma.c 0x00000000 Number 0 dma.o ABSOLUTE
../Core/Src/gpio.c 0x00000000 Number 0 gpio.o ABSOLUTE
../Core/Src/main.c 0x00000000 Number 0 main.o ABSOLUTE
../Core/Src/stm32g0xx_hal_msp.c 0x00000000 Number 0 stm32g0xx_hal_msp.o ABSOLUTE
../Core/Src/stm32g0xx_hal_timebase_tim.c 0x00000000 Number 0 stm32g0xx_hal_timebase_tim.o ABSOLUTE
../Core/Src/stm32g0xx_it.c 0x00000000 Number 0 stm32g0xx_it.o ABSOLUTE
../Core/Src/system_stm32g0xx.c 0x00000000 Number 0 system_stm32g0xx.o ABSOLUTE
../Core/Src/tim.c 0x00000000 Number 0 tim.o ABSOLUTE
../Core/Src/usart.c 0x00000000 Number 0 usart.o ABSOLUTE
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c 0x00000000 Number 0 stm32g0xx_hal.o ABSOLUTE
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c 0x00000000 Number 0 stm32g0xx_hal_cortex.o ABSOLUTE
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c 0x00000000 Number 0 stm32g0xx_hal_dma.o ABSOLUTE
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.c 0x00000000 Number 0 stm32g0xx_hal_dma_ex.o ABSOLUTE
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.c 0x00000000 Number 0 stm32g0xx_hal_exti.o ABSOLUTE
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c 0x00000000 Number 0 stm32g0xx_hal_flash.o ABSOLUTE
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c 0x00000000 Number 0 stm32g0xx_hal_flash_ex.o ABSOLUTE
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.c 0x00000000 Number 0 stm32g0xx_hal_gpio.o ABSOLUTE
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c 0x00000000 Number 0 stm32g0xx_hal_pwr.o ABSOLUTE
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c 0x00000000 Number 0 stm32g0xx_hal_pwr_ex.o ABSOLUTE
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c 0x00000000 Number 0 stm32g0xx_hal_rcc.o ABSOLUTE
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.c 0x00000000 Number 0 stm32g0xx_hal_rcc_ex.o ABSOLUTE
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.c 0x00000000 Number 0 stm32g0xx_hal_tim.o ABSOLUTE
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.c 0x00000000 Number 0 stm32g0xx_hal_tim_ex.o ABSOLUTE
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_dma.c 0x00000000 Number 0 stm32g0xx_ll_dma.o ABSOLUTE
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_exti.c 0x00000000 Number 0 stm32g0xx_ll_exti.o ABSOLUTE
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_gpio.c 0x00000000 Number 0 stm32g0xx_ll_gpio.o ABSOLUTE
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_rcc.c 0x00000000 Number 0 stm32g0xx_ll_rcc.o ABSOLUTE
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_tim.c 0x00000000 Number 0 stm32g0xx_ll_tim.o ABSOLUTE
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_usart.c 0x00000000 Number 0 stm32g0xx_ll_usart.o ABSOLUTE
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_utils.c 0x00000000 Number 0 stm32g0xx_ll_utils.o ABSOLUTE
../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c 0x00000000 Number 0 cmsis_os.o ABSOLUTE
../Middlewares/Third_Party/FreeRTOS/Source/croutine.c 0x00000000 Number 0 croutine.o ABSOLUTE
../Middlewares/Third_Party/FreeRTOS/Source/event_groups.c 0x00000000 Number 0 event_groups.o ABSOLUTE
../Middlewares/Third_Party/FreeRTOS/Source/list.c 0x00000000 Number 0 list.o ABSOLUTE
../Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c 0x00000000 Number 0 heap_4.o ABSOLUTE
../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM0/port.c 0x00000000 Number 0 port.o ABSOLUTE
../Middlewares/Third_Party/FreeRTOS/Source/queue.c 0x00000000 Number 0 queue.o ABSOLUTE
../Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c 0x00000000 Number 0 stream_buffer.o ABSOLUTE
../Middlewares/Third_Party/FreeRTOS/Source/tasks.c 0x00000000 Number 0 tasks.o ABSOLUTE
../Middlewares/Third_Party/FreeRTOS/Source/timers.c 0x00000000 Number 0 timers.o ABSOLUTE
../clib/microlib/division.c 0x00000000 Number 0 uidiv.o ABSOLUTE
../clib/microlib/division.c 0x00000000 Number 0 uldiv.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 entry9a.o ABSOLUTE
../clib/microlib/init/entry.s 0x00000000 Number 0 entry5.o ABSOLUTE
../clib/microlib/init/entry.s 0x00000000 Number 0 entry.o ABSOLUTE
../clib/microlib/init/entry.s 0x00000000 Number 0 entry8a.o ABSOLUTE
../clib/microlib/init/entry.s 0x00000000 Number 0 entry7b.o ABSOLUTE
../clib/microlib/init/entry.s 0x00000000 Number 0 entry7a.o ABSOLUTE
../clib/microlib/init/entry.s 0x00000000 Number 0 entry2.o ABSOLUTE
../clib/microlib/init/entry.s 0x00000000 Number 0 entry8b.o ABSOLUTE
../clib/microlib/init/entry.s 0x00000000 Number 0 entry10b.o ABSOLUTE
../clib/microlib/init/entry.s 0x00000000 Number 0 entry11a.o ABSOLUTE
../clib/microlib/init/entry.s 0x00000000 Number 0 entry11b.o ABSOLUTE
../clib/microlib/longlong.c 0x00000000 Number 0 llsshr.o ABSOLUTE
../clib/microlib/longlong.c 0x00000000 Number 0 llshl.o ABSOLUTE
../clib/microlib/longlong.c 0x00000000 Number 0 llushr.o ABSOLUTE
../clib/microlib/printf/printf.c 0x00000000 Number 0 printf0.o ABSOLUTE
../clib/microlib/printf/printf.c 0x00000000 Number 0 printf1.o ABSOLUTE
../clib/microlib/printf/printf.c 0x00000000 Number 0 printf7.o ABSOLUTE
../clib/microlib/printf/printf.c 0x00000000 Number 0 printf4.o ABSOLUTE
../clib/microlib/printf/printf.c 0x00000000 Number 0 printf2.o ABSOLUTE
../clib/microlib/printf/printf.c 0x00000000 Number 0 printf3.o ABSOLUTE
../clib/microlib/printf/printf.c 0x00000000 Number 0 printfa.o ABSOLUTE
../clib/microlib/printf/printf.c 0x00000000 Number 0 printf6.o ABSOLUTE
../clib/microlib/printf/printf.c 0x00000000 Number 0 printf8.o ABSOLUTE
../clib/microlib/printf/printf.c 0x00000000 Number 0 printf5.o ABSOLUTE
../clib/microlib/printf/printf.c 0x00000000 Number 0 printfb.o ABSOLUTE
../clib/microlib/printf/stubs.s 0x00000000 Number 0 stubs.o ABSOLUTE
../clib/microlib/stdio/streams.c 0x00000000 Number 0 stdout.o ABSOLUTE
../clib/microlib/string/memcpy.c 0x00000000 Number 0 memcpya.o ABSOLUTE
../clib/microlib/string/memcpy.c 0x00000000 Number 0 memcpyb.o ABSOLUTE
../clib/microlib/string/memset.c 0x00000000 Number 0 memset.o ABSOLUTE
../clib/microlib/string/memset.c 0x00000000 Number 0 memseta.o ABSOLUTE
../clib/microlib/stubs.s 0x00000000 Number 0 iusefp.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 dfixul.o ABSOLUTE
../fplib/microlib/fpmul.c 0x00000000 Number 0 dmul.o ABSOLUTE
..\Core\Src\adc.c 0x00000000 Number 0 adc.o ABSOLUTE
..\Core\Src\app_freertos.c 0x00000000 Number 0 app_freertos.o ABSOLUTE
..\Core\Src\dma.c 0x00000000 Number 0 dma.o ABSOLUTE
..\Core\Src\gpio.c 0x00000000 Number 0 gpio.o ABSOLUTE
..\Core\Src\main.c 0x00000000 Number 0 main.o ABSOLUTE
..\Core\Src\stm32g0xx_hal_msp.c 0x00000000 Number 0 stm32g0xx_hal_msp.o ABSOLUTE
..\Core\Src\stm32g0xx_hal_timebase_tim.c 0x00000000 Number 0 stm32g0xx_hal_timebase_tim.o ABSOLUTE
..\Core\Src\stm32g0xx_it.c 0x00000000 Number 0 stm32g0xx_it.o ABSOLUTE
..\Core\Src\system_stm32g0xx.c 0x00000000 Number 0 system_stm32g0xx.o ABSOLUTE
..\Core\Src\tim.c 0x00000000 Number 0 tim.o ABSOLUTE
..\Core\Src\usart.c 0x00000000 Number 0 usart.o ABSOLUTE
..\Core\User\bsp\adc_dma.c 0x00000000 Number 0 adc_dma.o ABSOLUTE
..\Core\User\bsp\uart_dma.c 0x00000000 Number 0 uart_dma.o ABSOLUTE
..\Drivers\STM32G0xx_HAL_Driver\Src\stm32g0xx_hal.c 0x00000000 Number 0 stm32g0xx_hal.o ABSOLUTE
..\Drivers\STM32G0xx_HAL_Driver\Src\stm32g0xx_hal_cortex.c 0x00000000 Number 0 stm32g0xx_hal_cortex.o ABSOLUTE
..\Drivers\STM32G0xx_HAL_Driver\Src\stm32g0xx_hal_dma.c 0x00000000 Number 0 stm32g0xx_hal_dma.o ABSOLUTE
..\Drivers\STM32G0xx_HAL_Driver\Src\stm32g0xx_hal_dma_ex.c 0x00000000 Number 0 stm32g0xx_hal_dma_ex.o ABSOLUTE
..\Drivers\STM32G0xx_HAL_Driver\Src\stm32g0xx_hal_exti.c 0x00000000 Number 0 stm32g0xx_hal_exti.o ABSOLUTE
..\Drivers\STM32G0xx_HAL_Driver\Src\stm32g0xx_hal_flash.c 0x00000000 Number 0 stm32g0xx_hal_flash.o ABSOLUTE
..\Drivers\STM32G0xx_HAL_Driver\Src\stm32g0xx_hal_flash_ex.c 0x00000000 Number 0 stm32g0xx_hal_flash_ex.o ABSOLUTE
..\Drivers\STM32G0xx_HAL_Driver\Src\stm32g0xx_hal_gpio.c 0x00000000 Number 0 stm32g0xx_hal_gpio.o ABSOLUTE
..\Drivers\STM32G0xx_HAL_Driver\Src\stm32g0xx_hal_pwr.c 0x00000000 Number 0 stm32g0xx_hal_pwr.o ABSOLUTE
..\Drivers\STM32G0xx_HAL_Driver\Src\stm32g0xx_hal_pwr_ex.c 0x00000000 Number 0 stm32g0xx_hal_pwr_ex.o ABSOLUTE
..\Drivers\STM32G0xx_HAL_Driver\Src\stm32g0xx_hal_rcc.c 0x00000000 Number 0 stm32g0xx_hal_rcc.o ABSOLUTE
..\Drivers\STM32G0xx_HAL_Driver\Src\stm32g0xx_hal_rcc_ex.c 0x00000000 Number 0 stm32g0xx_hal_rcc_ex.o ABSOLUTE
..\Drivers\STM32G0xx_HAL_Driver\Src\stm32g0xx_hal_tim.c 0x00000000 Number 0 stm32g0xx_hal_tim.o ABSOLUTE
..\Drivers\STM32G0xx_HAL_Driver\Src\stm32g0xx_hal_tim_ex.c 0x00000000 Number 0 stm32g0xx_hal_tim_ex.o ABSOLUTE
..\Drivers\STM32G0xx_HAL_Driver\Src\stm32g0xx_ll_adc.c 0x00000000 Number 0 stm32g0xx_ll_adc.o ABSOLUTE
..\Drivers\STM32G0xx_HAL_Driver\Src\stm32g0xx_ll_dma.c 0x00000000 Number 0 stm32g0xx_ll_dma.o ABSOLUTE
..\Drivers\STM32G0xx_HAL_Driver\Src\stm32g0xx_ll_exti.c 0x00000000 Number 0 stm32g0xx_ll_exti.o ABSOLUTE
..\Drivers\STM32G0xx_HAL_Driver\Src\stm32g0xx_ll_gpio.c 0x00000000 Number 0 stm32g0xx_ll_gpio.o ABSOLUTE
..\Drivers\STM32G0xx_HAL_Driver\Src\stm32g0xx_ll_rcc.c 0x00000000 Number 0 stm32g0xx_ll_rcc.o ABSOLUTE
..\Drivers\STM32G0xx_HAL_Driver\Src\stm32g0xx_ll_tim.c 0x00000000 Number 0 stm32g0xx_ll_tim.o ABSOLUTE
..\Drivers\STM32G0xx_HAL_Driver\Src\stm32g0xx_ll_usart.c 0x00000000 Number 0 stm32g0xx_ll_usart.o ABSOLUTE
..\Drivers\STM32G0xx_HAL_Driver\Src\stm32g0xx_ll_utils.c 0x00000000 Number 0 stm32g0xx_ll_utils.o ABSOLUTE
..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS\cmsis_os.c 0x00000000 Number 0 cmsis_os.o ABSOLUTE
..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM0\port.c 0x00000000 Number 0 port.o ABSOLUTE
..\\Core\\User\\bsp\\adc_dma.c 0x00000000 Number 0 adc_dma.o ABSOLUTE
..\\Core\\User\\bsp\\uart_dma.c 0x00000000 Number 0 uart_dma.o ABSOLUTE
..\\Drivers\\STM32G0xx_HAL_Driver\\Src\\stm32g0xx_ll_adc.c 0x00000000 Number 0 stm32g0xx_ll_adc.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_stm32g030xx.s 0x00000000 Number 0 startup_stm32g030xx.o ABSOLUTE
RESET 0x08000000 Section 192 startup_stm32g030xx.o(RESET)
.ARM.Collect$$$$00000000 0x080000c0 Section 0 entry.o(.ARM.Collect$$$$00000000)
.ARM.Collect$$$$00000001 0x080000c0 Section 4 entry2.o(.ARM.Collect$$$$00000001)
.ARM.Collect$$$$00000004 0x080000c4 Section 4 entry5.o(.ARM.Collect$$$$00000004)
.ARM.Collect$$$$00000008 0x080000c8 Section 0 entry7b.o(.ARM.Collect$$$$00000008)
.ARM.Collect$$$$0000000A 0x080000c8 Section 0 entry8b.o(.ARM.Collect$$$$0000000A)
.ARM.Collect$$$$0000000B 0x080000c8 Section 8 entry9a.o(.ARM.Collect$$$$0000000B)
.ARM.Collect$$$$0000000D 0x080000d0 Section 0 entry10a.o(.ARM.Collect$$$$0000000D)
.ARM.Collect$$$$0000000F 0x080000d0 Section 0 entry11a.o(.ARM.Collect$$$$0000000F)
.ARM.Collect$$$$00002712 0x080000d0 Section 4 entry2.o(.ARM.Collect$$$$00002712)
__lit__00000000 0x080000d0 Data 4 entry2.o(.ARM.Collect$$$$00002712)
.emb_text 0x080000d4 Section 120 port.o(.emb_text)
.text 0x0800014c Section 28 startup_stm32g030xx.o(.text)
.text 0x08000168 Section 0 uidiv.o(.text)
.text 0x08000194 Section 0 memcpya.o(.text)
.text 0x080001b8 Section 0 memseta.o(.text)
.text 0x080001dc Section 36 init.o(.text)
i.Adc_Dma_Initialize 0x08000200 Section 0 adc_dma.o(i.Adc_Dma_Initialize)
i.DMA1_Channel1_IRQHandler 0x08000280 Section 0 stm32g0xx_it.o(i.DMA1_Channel1_IRQHandler)
i.Dma_Recive_TC1 0x08000298 Section 0 uart_dma.o(i.Dma_Recive_TC1)
i.HAL_IncTick 0x080002dc Section 0 stm32g0xx_hal.o(i.HAL_IncTick)
i.HAL_Init 0x080002ec Section 0 stm32g0xx_hal.o(i.HAL_Init)
i.HAL_InitTick 0x08000314 Section 0 stm32g0xx_hal_timebase_tim.o(i.HAL_InitTick)
i.HAL_MspInit 0x0800038c Section 0 stm32g0xx_hal_msp.o(i.HAL_MspInit)
i.HAL_NVIC_EnableIRQ 0x080003c0 Section 0 stm32g0xx_hal_cortex.o(i.HAL_NVIC_EnableIRQ)
i.HAL_NVIC_SetPriority 0x080003d8 Section 0 stm32g0xx_hal_cortex.o(i.HAL_NVIC_SetPriority)
i.HAL_RCC_GetClockConfig 0x080003e0 Section 0 stm32g0xx_hal_rcc.o(i.HAL_RCC_GetClockConfig)
i.HAL_RCC_GetPCLK1Freq 0x08000418 Section 0 stm32g0xx_hal_rcc.o(i.HAL_RCC_GetPCLK1Freq)
i.HAL_TIMEx_Break2Callback 0x08000440 Section 0 stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_Break2Callback)
i.HAL_TIMEx_BreakCallback 0x08000442 Section 0 stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_BreakCallback)
i.HAL_TIMEx_CommutCallback 0x08000444 Section 0 stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_CommutCallback)
i.HAL_TIM_Base_Init 0x08000446 Section 0 stm32g0xx_hal_tim.o(i.HAL_TIM_Base_Init)
i.HAL_TIM_Base_MspInit 0x08000492 Section 0 stm32g0xx_hal_tim.o(i.HAL_TIM_Base_MspInit)
i.HAL_TIM_Base_Start_IT 0x08000494 Section 0 stm32g0xx_hal_tim.o(i.HAL_TIM_Base_Start_IT)
i.HAL_TIM_IC_CaptureCallback 0x080004e4 Section 0 stm32g0xx_hal_tim.o(i.HAL_TIM_IC_CaptureCallback)
i.HAL_TIM_IRQHandler 0x080004e8 Section 0 stm32g0xx_hal_tim.o(i.HAL_TIM_IRQHandler)
i.HAL_TIM_OC_DelayElapsedCallback 0x0800066c Section 0 stm32g0xx_hal_tim.o(i.HAL_TIM_OC_DelayElapsedCallback)
i.HAL_TIM_PWM_PulseFinishedCallback 0x0800066e Section 0 stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_PulseFinishedCallback)
i.HAL_TIM_PeriodElapsedCallback 0x08000670 Section 0 main.o(i.HAL_TIM_PeriodElapsedCallback)
i.HAL_TIM_TriggerCallback 0x08000684 Section 0 stm32g0xx_hal_tim.o(i.HAL_TIM_TriggerCallback)
i.HardFault_Handler 0x08000686 Section 0 stm32g0xx_it.o(i.HardFault_Handler)
i.LL_ADC_Init 0x08000688 Section 0 stm32g0xx_ll_adc.o(i.LL_ADC_Init)
i.LL_ADC_REG_Init 0x080006c0 Section 0 stm32g0xx_ll_adc.o(i.LL_ADC_REG_Init)
i.LL_ADC_REG_SetSequencerRanks 0x08000724 Section 0 adc.o(i.LL_ADC_REG_SetSequencerRanks)
LL_ADC_REG_SetSequencerRanks 0x08000725 Thumb Code 26 adc.o(i.LL_ADC_REG_SetSequencerRanks)
i.LL_ADC_SetChannelSamplingTime 0x0800073e Section 0 adc.o(i.LL_ADC_SetChannelSamplingTime)
LL_ADC_SetChannelSamplingTime 0x0800073f Thumb Code 18 adc.o(i.LL_ADC_SetChannelSamplingTime)
i.LL_ADC_SetSamplingTimeCommonChannels 0x08000750 Section 0 adc.o(i.LL_ADC_SetSamplingTimeCommonChannels)
LL_ADC_SetSamplingTimeCommonChannels 0x08000751 Thumb Code 22 adc.o(i.LL_ADC_SetSamplingTimeCommonChannels)
i.LL_DMA_EnableChannel 0x08000768 Section 0 uart_dma.o(i.LL_DMA_EnableChannel)
LL_DMA_EnableChannel 0x08000769 Thumb Code 14 uart_dma.o(i.LL_DMA_EnableChannel)
i.LL_DMA_SetChannelPriorityLevel 0x0800077c Section 0 usart.o(i.LL_DMA_SetChannelPriorityLevel)
LL_DMA_SetChannelPriorityLevel 0x0800077d Thumb Code 20 usart.o(i.LL_DMA_SetChannelPriorityLevel)
i.LL_DMA_SetDataLength 0x08000794 Section 0 uart_dma.o(i.LL_DMA_SetDataLength)
LL_DMA_SetDataLength 0x08000795 Thumb Code 18 uart_dma.o(i.LL_DMA_SetDataLength)
i.LL_DMA_SetDataTransferDirection 0x080007ac Section 0 usart.o(i.LL_DMA_SetDataTransferDirection)
LL_DMA_SetDataTransferDirection 0x080007ad Thumb Code 18 usart.o(i.LL_DMA_SetDataTransferDirection)
i.LL_DMA_SetMemoryIncMode 0x080007c8 Section 0 usart.o(i.LL_DMA_SetMemoryIncMode)
LL_DMA_SetMemoryIncMode 0x080007c9 Thumb Code 18 usart.o(i.LL_DMA_SetMemoryIncMode)
i.LL_DMA_SetMemorySize 0x080007e0 Section 0 usart.o(i.LL_DMA_SetMemorySize)
LL_DMA_SetMemorySize 0x080007e1 Thumb Code 20 usart.o(i.LL_DMA_SetMemorySize)
i.LL_DMA_SetMode 0x080007f8 Section 0 usart.o(i.LL_DMA_SetMode)
LL_DMA_SetMode 0x080007f9 Thumb Code 18 usart.o(i.LL_DMA_SetMode)
i.LL_DMA_SetPeriphIncMode 0x08000810 Section 0 usart.o(i.LL_DMA_SetPeriphIncMode)
LL_DMA_SetPeriphIncMode 0x08000811 Thumb Code 18 usart.o(i.LL_DMA_SetPeriphIncMode)
i.LL_DMA_SetPeriphRequest 0x08000828 Section 0 usart.o(i.LL_DMA_SetPeriphRequest)
LL_DMA_SetPeriphRequest 0x08000829 Thumb Code 30 usart.o(i.LL_DMA_SetPeriphRequest)
i.LL_DMA_SetPeriphSize 0x08000850 Section 0 usart.o(i.LL_DMA_SetPeriphSize)
LL_DMA_SetPeriphSize 0x08000851 Thumb Code 20 usart.o(i.LL_DMA_SetPeriphSize)
i.LL_GPIO_Init 0x08000868 Section 0 stm32g0xx_ll_gpio.o(i.LL_GPIO_Init)
i.LL_IOP_GRP1_EnableClock 0x08000914 Section 0 gpio.o(i.LL_IOP_GRP1_EnableClock)
LL_IOP_GRP1_EnableClock 0x08000915 Thumb Code 18 gpio.o(i.LL_IOP_GRP1_EnableClock)
i.LL_IOP_GRP1_EnableClock 0x0800092c Section 0 tim.o(i.LL_IOP_GRP1_EnableClock)
LL_IOP_GRP1_EnableClock 0x0800092d Thumb Code 18 tim.o(i.LL_IOP_GRP1_EnableClock)
i.LL_IOP_GRP1_EnableClock 0x08000944 Section 0 usart.o(i.LL_IOP_GRP1_EnableClock)
LL_IOP_GRP1_EnableClock 0x08000945 Thumb Code 18 usart.o(i.LL_IOP_GRP1_EnableClock)
i.LL_RCC_GetSystemClocksFreq 0x0800095c Section 0 stm32g0xx_ll_rcc.o(i.LL_RCC_GetSystemClocksFreq)
i.LL_RCC_GetUSARTClockFreq 0x08000974 Section 0 stm32g0xx_ll_rcc.o(i.LL_RCC_GetUSARTClockFreq)
i.LL_SetSystemCoreClock 0x080009d4 Section 0 stm32g0xx_ll_utils.o(i.LL_SetSystemCoreClock)
i.LL_TIM_Init 0x080009e0 Section 0 stm32g0xx_ll_tim.o(i.LL_TIM_Init)
i.LL_TIM_OC_DisableFast 0x08000a58 Section 0 tim.o(i.LL_TIM_OC_DisableFast)
LL_TIM_OC_DisableFast 0x08000a59 Thumb Code 106 tim.o(i.LL_TIM_OC_DisableFast)
i.LL_TIM_OC_EnablePreload 0x08000ac8 Section 0 tim.o(i.LL_TIM_OC_EnablePreload)
LL_TIM_OC_EnablePreload 0x08000ac9 Thumb Code 106 tim.o(i.LL_TIM_OC_EnablePreload)
i.LL_TIM_OC_Init 0x08000b38 Section 0 stm32g0xx_ll_tim.o(i.LL_TIM_OC_Init)
i.LL_USART_ConfigAsyncMode 0x08000c9c Section 0 usart.o(i.LL_USART_ConfigAsyncMode)
LL_USART_ConfigAsyncMode 0x08000c9d Thumb Code 20 usart.o(i.LL_USART_ConfigAsyncMode)
i.LL_USART_DMA_GetRegAddr 0x08000cb0 Section 0 uart_dma.o(i.LL_USART_DMA_GetRegAddr)
LL_USART_DMA_GetRegAddr 0x08000cb1 Thumb Code 12 uart_dma.o(i.LL_USART_DMA_GetRegAddr)
i.LL_USART_Init 0x08000cbc Section 0 stm32g0xx_ll_usart.o(i.LL_USART_Init)
i.MX_ADC1_Init 0x08000d9c Section 0 adc.o(i.MX_ADC1_Init)
i.MX_DMA_Init 0x08000fa8 Section 0 dma.o(i.MX_DMA_Init)
i.MX_FREERTOS_Init 0x08000fe4 Section 0 app_freertos.o(i.MX_FREERTOS_Init)
i.MX_GPIO_Init 0x0800100c Section 0 gpio.o(i.MX_GPIO_Init)
i.MX_TIM14_Init 0x0800101c Section 0 tim.o(i.MX_TIM14_Init)
i.MX_TIM3_Init 0x080010c8 Section 0 tim.o(i.MX_TIM3_Init)
i.MX_USART1_UART_Init 0x080011a4 Section 0 usart.o(i.MX_USART1_UART_Init)
i.MX_USART2_UART_Init 0x0800132c Section 0 usart.o(i.MX_USART2_UART_Init)
i.NMI_Handler 0x080013d8 Section 0 stm32g0xx_it.o(i.NMI_Handler)
i.OC1Config 0x080013dc Section 0 stm32g0xx_ll_tim.o(i.OC1Config)
OC1Config 0x080013dd Thumb Code 118 stm32g0xx_ll_tim.o(i.OC1Config)
i.OC2Config 0x08001464 Section 0 stm32g0xx_ll_tim.o(i.OC2Config)
OC2Config 0x08001465 Thumb Code 126 stm32g0xx_ll_tim.o(i.OC2Config)
i.OC3Config 0x080014f4 Section 0 stm32g0xx_ll_tim.o(i.OC3Config)
OC3Config 0x080014f5 Thumb Code 128 stm32g0xx_ll_tim.o(i.OC3Config)
i.Pwm_Start 0x08001584 Section 0 tim.o(i.Pwm_Start)
Pwm_Start 0x08001585 Thumb Code 26 tim.o(i.Pwm_Start)
i.RCC_GetHCLKClockFreq 0x080015a0 Section 0 stm32g0xx_ll_rcc.o(i.RCC_GetHCLKClockFreq)
i.RCC_GetPCLK1ClockFreq 0x080015c0 Section 0 stm32g0xx_ll_rcc.o(i.RCC_GetPCLK1ClockFreq)
i.RCC_GetSystemClockFreq 0x080015e0 Section 0 stm32g0xx_ll_rcc.o(i.RCC_GetSystemClockFreq)
i.RCC_PLL_GetFreqDomain_SYS 0x0800161c Section 0 stm32g0xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SYS)
i.SVC_Handler 0x0800165c Section 0 port.o(i.SVC_Handler)
i.StartDefaultTask 0x0800165e Section 0 app_freertos.o(i.StartDefaultTask)
i.SysTick_Handler 0x0800166c Section 0 port.o(i.SysTick_Handler)
i.SystemClock_Config 0x08001690 Section 0 main.o(i.SystemClock_Config)
i.SystemInit 0x0800174c Section 0 system_stm32g0xx.o(i.SystemInit)
i.TIM16_IRQHandler 0x0800175c Section 0 stm32g0xx_it.o(i.TIM16_IRQHandler)
i.TIM_Base_SetConfig 0x0800176c Section 0 stm32g0xx_hal_tim.o(i.TIM_Base_SetConfig)
i.USART1_IRQHandler 0x080017e4 Section 0 stm32g0xx_it.o(i.USART1_IRQHandler)
i.UartDma_Init 0x080017fc Section 0 uart_dma.o(i.UartDma_Init)
i.UartIDLE_Recive_Data 0x08001888 Section 0 uart_dma.o(i.UartIDLE_Recive_Data)
i.__0printf$1 0x080018e4 Section 0 printf1.o(i.__0printf$1)
i.__NVIC_SetPriority 0x08001904 Section 0 stm32g0xx_hal_cortex.o(i.__NVIC_SetPriority)
__NVIC_SetPriority 0x08001905 Thumb Code 60 stm32g0xx_hal_cortex.o(i.__NVIC_SetPriority)
i.__scatterload_copy 0x08001948 Section 14 handlers.o(i.__scatterload_copy)
i.__scatterload_null 0x08001956 Section 2 handlers.o(i.__scatterload_null)
i.__scatterload_zeroinit 0x08001958 Section 14 handlers.o(i.__scatterload_zeroinit)
i._printf_core 0x08001968 Section 0 printf1.o(i._printf_core)
_printf_core 0x08001969 Thumb Code 332 printf1.o(i._printf_core)
i.fputc 0x08001ab8 Section 0 main.o(i.fputc)
i.main 0x08001acc Section 0 main.o(i.main)
i.makeFreeRtosPriority 0x08001b02 Section 0 cmsis_os.o(i.makeFreeRtosPriority)
makeFreeRtosPriority 0x08001b03 Thumb Code 12 cmsis_os.o(i.makeFreeRtosPriority)
i.osDelay 0x08001b0e Section 0 cmsis_os.o(i.osDelay)
i.osKernelStart 0x08001b1e Section 0 cmsis_os.o(i.osKernelStart)
i.osThreadCreate 0x08001b28 Section 0 cmsis_os.o(i.osThreadCreate)
i.prvAddCurrentTaskToDelayedList 0x08001b58 Section 0 tasks.o(i.prvAddCurrentTaskToDelayedList)
prvAddCurrentTaskToDelayedList 0x08001b59 Thumb Code 78 tasks.o(i.prvAddCurrentTaskToDelayedList)
i.prvAddNewTaskToReadyList 0x08001bb0 Section 0 tasks.o(i.prvAddNewTaskToReadyList)
prvAddNewTaskToReadyList 0x08001bb1 Thumb Code 176 tasks.o(i.prvAddNewTaskToReadyList)
i.prvDeleteTCB 0x08001c68 Section 0 tasks.o(i.prvDeleteTCB)
prvDeleteTCB 0x08001c69 Thumb Code 18 tasks.o(i.prvDeleteTCB)
i.prvHeapInit 0x08001c7c Section 0 heap_4.o(i.prvHeapInit)
prvHeapInit 0x08001c7d Thumb Code 60 heap_4.o(i.prvHeapInit)
i.prvIdleTask 0x08001cc0 Section 0 tasks.o(i.prvIdleTask)
prvIdleTask 0x08001cc1 Thumb Code 64 tasks.o(i.prvIdleTask)
i.prvInitialiseNewTask 0x08001d08 Section 0 tasks.o(i.prvInitialiseNewTask)
prvInitialiseNewTask 0x08001d09 Thumb Code 138 tasks.o(i.prvInitialiseNewTask)
i.prvInsertBlockIntoFreeList 0x08001d94 Section 0 heap_4.o(i.prvInsertBlockIntoFreeList)
prvInsertBlockIntoFreeList 0x08001d95 Thumb Code 72 heap_4.o(i.prvInsertBlockIntoFreeList)
i.prvResetNextTaskUnblockTime 0x08001de0 Section 0 tasks.o(i.prvResetNextTaskUnblockTime)
prvResetNextTaskUnblockTime 0x08001de1 Thumb Code 28 tasks.o(i.prvResetNextTaskUnblockTime)
i.prvTaskExitError 0x08001e00 Section 0 port.o(i.prvTaskExitError)
prvTaskExitError 0x08001e01 Thumb Code 14 port.o(i.prvTaskExitError)
i.pvPortMalloc 0x08001e14 Section 0 heap_4.o(i.pvPortMalloc)
i.pxPortInitialiseStack 0x08001ecc Section 0 port.o(i.pxPortInitialiseStack)
i.uxListRemove 0x08001eec Section 0 list.o(i.uxListRemove)
i.vListInitialise 0x08001f12 Section 0 list.o(i.vListInitialise)
i.vListInitialiseItem 0x08001f28 Section 0 list.o(i.vListInitialiseItem)
i.vListInsert 0x08001f2e Section 0 list.o(i.vListInsert)
i.vListInsertEnd 0x08001f5e Section 0 list.o(i.vListInsertEnd)
i.vPortEnterCritical 0x08001f78 Section 0 port.o(i.vPortEnterCritical)
i.vPortExitCritical 0x08001f90 Section 0 port.o(i.vPortExitCritical)
i.vPortFree 0x08001fac Section 0 heap_4.o(i.vPortFree)
i.vPortSetupTimerInterrupt 0x08001ff4 Section 0 port.o(i.vPortSetupTimerInterrupt)
i.vPortYield 0x0800201c Section 0 port.o(i.vPortYield)
i.vTaskDelay 0x08002034 Section 0 tasks.o(i.vTaskDelay)
i.vTaskStartScheduler 0x08002064 Section 0 tasks.o(i.vTaskStartScheduler)
i.vTaskSuspendAll 0x080020b0 Section 0 tasks.o(i.vTaskSuspendAll)
i.vTaskSwitchContext 0x080020c0 Section 0 tasks.o(i.vTaskSwitchContext)
i.xPortStartScheduler 0x08002118 Section 0 port.o(i.xPortStartScheduler)
i.xTaskCreate 0x08002148 Section 0 tasks.o(i.xTaskCreate)
i.xTaskIncrementTick 0x08002198 Section 0 tasks.o(i.xTaskIncrementTick)
i.xTaskResumeAll 0x08002254 Section 0 tasks.o(i.xTaskResumeAll)
.constdata 0x08002300 Section 20 app_freertos.o(.constdata)
.constdata 0x08002314 Section 5 adc.o(.constdata)
CHANNEL_OFFSET_TAB 0x08002314 Data 5 adc.o(.constdata)
.constdata 0x08002319 Section 18 tim.o(.constdata)
OFFSET_TAB_CCMRx 0x08002319 Data 9 tim.o(.constdata)
SHIFT_TAB_OCxx 0x08002322 Data 9 tim.o(.constdata)
.constdata 0x0800232b Section 5 usart.o(.constdata)
CHANNEL_OFFSET_TAB 0x0800232b Data 5 usart.o(.constdata)
.constdata 0x08002330 Section 48 stm32g0xx_ll_usart.o(.constdata)
USART_PRESCALER_TAB 0x08002330 Data 48 stm32g0xx_ll_usart.o(.constdata)
.constdata 0x08002360 Section 64 system_stm32g0xx.o(.constdata)
.constdata 0x080023a0 Section 32 system_stm32g0xx.o(.constdata)
.constdata 0x080023c0 Section 5 uart_dma.o(.constdata)
CHANNEL_OFFSET_TAB 0x080023c0 Data 5 uart_dma.o(.constdata)
.constdata 0x080023c5 Section 5 adc_dma.o(.constdata)
CHANNEL_OFFSET_TAB 0x080023c5 Data 5 adc_dma.o(.constdata)
.conststring 0x080023cc Section 12 app_freertos.o(.conststring)
.data 0x20000000 Section 4 app_freertos.o(.data)
.data 0x20000004 Section 12 stm32g0xx_hal.o(.data)
.data 0x20000010 Section 4 system_stm32g0xx.o(.data)
.data 0x20000014 Section 60 tasks.o(.data)
uxDeletedTasksWaitingCleanUp 0x20000018 Data 4 tasks.o(.data)
uxCurrentNumberOfTasks 0x2000001c Data 4 tasks.o(.data)
xTickCount 0x20000020 Data 4 tasks.o(.data)
uxTopReadyPriority 0x20000024 Data 4 tasks.o(.data)
xSchedulerRunning 0x20000028 Data 4 tasks.o(.data)
xPendedTicks 0x2000002c Data 4 tasks.o(.data)
xYieldPending 0x20000030 Data 4 tasks.o(.data)
xNumOfOverflows 0x20000034 Data 4 tasks.o(.data)
uxTaskNumber 0x20000038 Data 4 tasks.o(.data)
xNextTaskUnblockTime 0x2000003c Data 4 tasks.o(.data)
xIdleTaskHandle 0x20000040 Data 4 tasks.o(.data)
uxSchedulerSuspended 0x20000044 Data 4 tasks.o(.data)
pxDelayedTaskList 0x20000048 Data 4 tasks.o(.data)
pxOverflowDelayedTaskList 0x2000004c Data 4 tasks.o(.data)
.data 0x20000050 Section 32 heap_4.o(.data)
pxEnd 0x20000050 Data 4 heap_4.o(.data)
xFreeBytesRemaining 0x20000054 Data 4 heap_4.o(.data)
xMinimumEverFreeBytesRemaining 0x20000058 Data 4 heap_4.o(.data)
xNumberOfSuccessfulAllocations 0x2000005c Data 4 heap_4.o(.data)
xNumberOfSuccessfulFrees 0x20000060 Data 4 heap_4.o(.data)
xBlockAllocatedBit 0x20000064 Data 4 heap_4.o(.data)
xStart 0x20000068 Data 8 heap_4.o(.data)
.data 0x20000070 Section 4 port.o(.data)
uxCriticalNesting 0x20000070 Data 4 port.o(.data)
.data 0x20000074 Section 8 uart_dma.o(.data)
ReciveLen 0x20000074 Data 2 uart_dma.o(.data)
ReciveCnt 0x20000076 Data 2 uart_dma.o(.data)
ByteCount 0x20000078 Data 4 uart_dma.o(.data)
.data 0x2000007c Section 4 adc_dma.o(.data)
.data 0x20000080 Section 4 stdout.o(.data)
.bss 0x20000084 Section 76 stm32g0xx_hal_timebase_tim.o(.bss)
.bss 0x200000d0 Section 240 tasks.o(.bss)
pxReadyTasksLists 0x200000d0 Data 140 tasks.o(.bss)
xDelayedTaskList1 0x2000015c Data 20 tasks.o(.bss)
xDelayedTaskList2 0x20000170 Data 20 tasks.o(.bss)
xPendingReadyList 0x20000184 Data 20 tasks.o(.bss)
xTasksWaitingTermination 0x20000198 Data 20 tasks.o(.bss)
xSuspendedTaskList 0x200001ac Data 20 tasks.o(.bss)
.bss 0x200001c0 Section 3072 heap_4.o(.bss)
ucHeap 0x200001c0 Data 3072 heap_4.o(.bss)
.bss 0x20000dc0 Section 512 uart_dma.o(.bss)
RxDmaBuff 0x20000dc0 Data 256 uart_dma.o(.bss)
TxDmaBuff 0x20000ec0 Data 256 uart_dma.o(.bss)
STACK 0x20000fc0 Section 1024 startup_stm32g030xx.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$OSPACE$ROPI$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
__decompress - Undefined Weak Reference
_clock_init - Undefined Weak Reference
_microlib_exit - Undefined Weak Reference
__Vectors_Size 0x000000c0 Number 0 startup_stm32g030xx.o ABSOLUTE
__Vectors 0x08000000 Data 4 startup_stm32g030xx.o(RESET)
__Vectors_End 0x080000c0 Data 0 startup_stm32g030xx.o(RESET)
__main 0x080000c1 Thumb Code 0 entry.o(.ARM.Collect$$$$00000000)
_main_stk 0x080000c1 Thumb Code 0 entry2.o(.ARM.Collect$$$$00000001)
_main_scatterload 0x080000c5 Thumb Code 0 entry5.o(.ARM.Collect$$$$00000004)
__main_after_scatterload 0x080000c9 Thumb Code 0 entry5.o(.ARM.Collect$$$$00000004)
_main_clock 0x080000c9 Thumb Code 0 entry7b.o(.ARM.Collect$$$$00000008)
_main_cpp_init 0x080000c9 Thumb Code 0 entry8b.o(.ARM.Collect$$$$0000000A)
_main_init 0x080000c9 Thumb Code 0 entry9a.o(.ARM.Collect$$$$0000000B)
__rt_final_cpp 0x080000d1 Thumb Code 0 entry10a.o(.ARM.Collect$$$$0000000D)
__rt_final_exit 0x080000d1 Thumb Code 0 entry11a.o(.ARM.Collect$$$$0000000F)
__asm___6_port_c_39a90d8d__prvPortStartFirstTask 0x080000d5 Thumb Code 36 port.o(.emb_text)
ulSetInterruptMaskFromISR 0x080000fd Thumb Code 8 port.o(.emb_text)
vClearInterruptMaskFromISR 0x08000105 Thumb Code 6 port.o(.emb_text)
PendSV_Handler 0x0800010b Thumb Code 62 port.o(.emb_text)
Reset_Handler 0x0800014d Thumb Code 8 startup_stm32g030xx.o(.text)
ADC1_IRQHandler 0x0800015f Thumb Code 0 startup_stm32g030xx.o(.text)
DMA1_Ch4_5_DMAMUX1_OVR_IRQHandler 0x0800015f Thumb Code 0 startup_stm32g030xx.o(.text)
DMA1_Channel2_3_IRQHandler 0x0800015f Thumb Code 0 startup_stm32g030xx.o(.text)
EXTI0_1_IRQHandler 0x0800015f Thumb Code 0 startup_stm32g030xx.o(.text)
EXTI2_3_IRQHandler 0x0800015f Thumb Code 0 startup_stm32g030xx.o(.text)
EXTI4_15_IRQHandler 0x0800015f Thumb Code 0 startup_stm32g030xx.o(.text)
FLASH_IRQHandler 0x0800015f Thumb Code 0 startup_stm32g030xx.o(.text)
I2C1_IRQHandler 0x0800015f Thumb Code 0 startup_stm32g030xx.o(.text)
I2C2_IRQHandler 0x0800015f Thumb Code 0 startup_stm32g030xx.o(.text)
RCC_IRQHandler 0x0800015f Thumb Code 0 startup_stm32g030xx.o(.text)
RTC_TAMP_IRQHandler 0x0800015f Thumb Code 0 startup_stm32g030xx.o(.text)
SPI1_IRQHandler 0x0800015f Thumb Code 0 startup_stm32g030xx.o(.text)
SPI2_IRQHandler 0x0800015f Thumb Code 0 startup_stm32g030xx.o(.text)
TIM14_IRQHandler 0x0800015f Thumb Code 0 startup_stm32g030xx.o(.text)
TIM17_IRQHandler 0x0800015f Thumb Code 0 startup_stm32g030xx.o(.text)
TIM1_BRK_UP_TRG_COM_IRQHandler 0x0800015f Thumb Code 0 startup_stm32g030xx.o(.text)
TIM1_CC_IRQHandler 0x0800015f Thumb Code 0 startup_stm32g030xx.o(.text)
TIM3_IRQHandler 0x0800015f Thumb Code 0 startup_stm32g030xx.o(.text)
USART2_IRQHandler 0x0800015f Thumb Code 0 startup_stm32g030xx.o(.text)
WWDG_IRQHandler 0x0800015f Thumb Code 0 startup_stm32g030xx.o(.text)
__aeabi_uidiv 0x08000169 Thumb Code 0 uidiv.o(.text)
__aeabi_uidivmod 0x08000169 Thumb Code 44 uidiv.o(.text)
__aeabi_memcpy 0x08000195 Thumb Code 36 memcpya.o(.text)
__aeabi_memcpy4 0x08000195 Thumb Code 0 memcpya.o(.text)
__aeabi_memcpy8 0x08000195 Thumb Code 0 memcpya.o(.text)
__aeabi_memset 0x080001b9 Thumb Code 14 memseta.o(.text)
__aeabi_memset4 0x080001b9 Thumb Code 0 memseta.o(.text)
__aeabi_memset8 0x080001b9 Thumb Code 0 memseta.o(.text)
__aeabi_memclr 0x080001c7 Thumb Code 4 memseta.o(.text)
__aeabi_memclr4 0x080001c7 Thumb Code 0 memseta.o(.text)
__aeabi_memclr8 0x080001c7 Thumb Code 0 memseta.o(.text)
memset 0x080001cb Thumb Code 18 memseta.o(.text)
__scatterload 0x080001dd Thumb Code 28 init.o(.text)
__scatterload_rt2 0x080001dd Thumb Code 0 init.o(.text)
Adc_Dma_Initialize 0x08000201 Thumb Code 106 adc_dma.o(i.Adc_Dma_Initialize)
DMA1_Channel1_IRQHandler 0x08000281 Thumb Code 18 stm32g0xx_it.o(i.DMA1_Channel1_IRQHandler)
Dma_Recive_TC1 0x08000299 Thumb Code 48 uart_dma.o(i.Dma_Recive_TC1)
HAL_IncTick 0x080002dd Thumb Code 12 stm32g0xx_hal.o(i.HAL_IncTick)
HAL_Init 0x080002ed Thumb Code 36 stm32g0xx_hal.o(i.HAL_Init)
HAL_InitTick 0x08000315 Thumb Code 100 stm32g0xx_hal_timebase_tim.o(i.HAL_InitTick)
HAL_MspInit 0x0800038d Thumb Code 48 stm32g0xx_hal_msp.o(i.HAL_MspInit)
HAL_NVIC_EnableIRQ 0x080003c1 Thumb Code 18 stm32g0xx_hal_cortex.o(i.HAL_NVIC_EnableIRQ)
HAL_NVIC_SetPriority 0x080003d9 Thumb Code 8 stm32g0xx_hal_cortex.o(i.HAL_NVIC_SetPriority)
HAL_RCC_GetClockConfig 0x080003e1 Thumb Code 48 stm32g0xx_hal_rcc.o(i.HAL_RCC_GetClockConfig)
HAL_RCC_GetPCLK1Freq 0x08000419 Thumb Code 26 stm32g0xx_hal_rcc.o(i.HAL_RCC_GetPCLK1Freq)
HAL_TIMEx_Break2Callback 0x08000441 Thumb Code 2 stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_Break2Callback)
HAL_TIMEx_BreakCallback 0x08000443 Thumb Code 2 stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_BreakCallback)
HAL_TIMEx_CommutCallback 0x08000445 Thumb Code 2 stm32g0xx_hal_tim_ex.o(i.HAL_TIMEx_CommutCallback)
HAL_TIM_Base_Init 0x08000447 Thumb Code 76 stm32g0xx_hal_tim.o(i.HAL_TIM_Base_Init)
HAL_TIM_Base_MspInit 0x08000493 Thumb Code 2 stm32g0xx_hal_tim.o(i.HAL_TIM_Base_MspInit)
HAL_TIM_Base_Start_IT 0x08000495 Thumb Code 68 stm32g0xx_hal_tim.o(i.HAL_TIM_Base_Start_IT)
HAL_TIM_IC_CaptureCallback 0x080004e5 Thumb Code 2 stm32g0xx_hal_tim.o(i.HAL_TIM_IC_CaptureCallback)
HAL_TIM_IRQHandler 0x080004e9 Thumb Code 382 stm32g0xx_hal_tim.o(i.HAL_TIM_IRQHandler)
HAL_TIM_OC_DelayElapsedCallback 0x0800066d Thumb Code 2 stm32g0xx_hal_tim.o(i.HAL_TIM_OC_DelayElapsedCallback)
HAL_TIM_PWM_PulseFinishedCallback 0x0800066f Thumb Code 2 stm32g0xx_hal_tim.o(i.HAL_TIM_PWM_PulseFinishedCallback)
HAL_TIM_PeriodElapsedCallback 0x08000671 Thumb Code 16 main.o(i.HAL_TIM_PeriodElapsedCallback)
HAL_TIM_TriggerCallback 0x08000685 Thumb Code 2 stm32g0xx_hal_tim.o(i.HAL_TIM_TriggerCallback)
HardFault_Handler 0x08000687 Thumb Code 2 stm32g0xx_it.o(i.HardFault_Handler)
LL_ADC_Init 0x08000689 Thumb Code 52 stm32g0xx_ll_adc.o(i.LL_ADC_Init)
LL_ADC_REG_Init 0x080006c1 Thumb Code 96 stm32g0xx_ll_adc.o(i.LL_ADC_REG_Init)
LL_GPIO_Init 0x08000869 Thumb Code 172 stm32g0xx_ll_gpio.o(i.LL_GPIO_Init)
LL_RCC_GetSystemClocksFreq 0x0800095d Thumb Code 24 stm32g0xx_ll_rcc.o(i.LL_RCC_GetSystemClocksFreq)
LL_RCC_GetUSARTClockFreq 0x08000975 Thumb Code 88 stm32g0xx_ll_rcc.o(i.LL_RCC_GetUSARTClockFreq)
LL_SetSystemCoreClock 0x080009d5 Thumb Code 6 stm32g0xx_ll_utils.o(i.LL_SetSystemCoreClock)
LL_TIM_Init 0x080009e1 Thumb Code 98 stm32g0xx_ll_tim.o(i.LL_TIM_Init)
LL_TIM_OC_Init 0x08000b39 Thumb Code 336 stm32g0xx_ll_tim.o(i.LL_TIM_OC_Init)
LL_USART_Init 0x08000cbd Thumb Code 204 stm32g0xx_ll_usart.o(i.LL_USART_Init)
MX_ADC1_Init 0x08000d9d Thumb Code 478 adc.o(i.MX_ADC1_Init)
MX_DMA_Init 0x08000fa9 Thumb Code 46 dma.o(i.MX_DMA_Init)
MX_FREERTOS_Init 0x08000fe5 Thumb Code 30 app_freertos.o(i.MX_FREERTOS_Init)
MX_GPIO_Init 0x0800100d Thumb Code 16 gpio.o(i.MX_GPIO_Init)
MX_TIM14_Init 0x0800101d Thumb Code 164 tim.o(i.MX_TIM14_Init)
MX_TIM3_Init 0x080010c9 Thumb Code 210 tim.o(i.MX_TIM3_Init)
MX_USART1_UART_Init 0x080011a5 Thumb Code 368 usart.o(i.MX_USART1_UART_Init)
MX_USART2_UART_Init 0x0800132d Thumb Code 162 usart.o(i.MX_USART2_UART_Init)
NMI_Handler 0x080013d9 Thumb Code 2 stm32g0xx_it.o(i.NMI_Handler)
RCC_GetHCLKClockFreq 0x080015a1 Thumb Code 24 stm32g0xx_ll_rcc.o(i.RCC_GetHCLKClockFreq)
RCC_GetPCLK1ClockFreq 0x080015c1 Thumb Code 22 stm32g0xx_ll_rcc.o(i.RCC_GetPCLK1ClockFreq)
RCC_GetSystemClockFreq 0x080015e1 Thumb Code 46 stm32g0xx_ll_rcc.o(i.RCC_GetSystemClockFreq)
RCC_PLL_GetFreqDomain_SYS 0x0800161d Thumb Code 56 stm32g0xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SYS)
SVC_Handler 0x0800165d Thumb Code 2 port.o(i.SVC_Handler)
StartDefaultTask 0x0800165f Thumb Code 12 app_freertos.o(i.StartDefaultTask)
SysTick_Handler 0x0800166d Thumb Code 32 port.o(i.SysTick_Handler)
SystemClock_Config 0x08001691 Thumb Code 166 main.o(i.SystemClock_Config)
SystemInit 0x0800174d Thumb Code 10 system_stm32g0xx.o(i.SystemInit)
TIM16_IRQHandler 0x0800175d Thumb Code 10 stm32g0xx_it.o(i.TIM16_IRQHandler)
TIM_Base_SetConfig 0x0800176d Thumb Code 100 stm32g0xx_hal_tim.o(i.TIM_Base_SetConfig)
USART1_IRQHandler 0x080017e5 Thumb Code 18 stm32g0xx_it.o(i.USART1_IRQHandler)
UartDma_Init 0x080017fd Thumb Code 118 uart_dma.o(i.UartDma_Init)
UartIDLE_Recive_Data 0x08001889 Thumb Code 64 uart_dma.o(i.UartIDLE_Recive_Data)
__0printf$1 0x080018e5 Thumb Code 24 printf1.o(i.__0printf$1)
__1printf$1 0x080018e5 Thumb Code 0 printf1.o(i.__0printf$1)
__2printf 0x080018e5 Thumb Code 0 printf1.o(i.__0printf$1)
__scatterload_copy 0x08001949 Thumb Code 14 handlers.o(i.__scatterload_copy)
__scatterload_null 0x08001957 Thumb Code 2 handlers.o(i.__scatterload_null)
__scatterload_zeroinit 0x08001959 Thumb Code 14 handlers.o(i.__scatterload_zeroinit)
fputc 0x08001ab9 Thumb Code 16 main.o(i.fputc)
main 0x08001acd Thumb Code 54 main.o(i.main)
osDelay 0x08001b0f Thumb Code 16 cmsis_os.o(i.osDelay)
osKernelStart 0x08001b1f Thumb Code 10 cmsis_os.o(i.osKernelStart)
osThreadCreate 0x08001b29 Thumb Code 46 cmsis_os.o(i.osThreadCreate)
pvPortMalloc 0x08001e15 Thumb Code 178 heap_4.o(i.pvPortMalloc)
pxPortInitialiseStack 0x08001ecd Thumb Code 28 port.o(i.pxPortInitialiseStack)
uxListRemove 0x08001eed Thumb Code 38 list.o(i.uxListRemove)
vListInitialise 0x08001f13 Thumb Code 22 list.o(i.vListInitialise)
vListInitialiseItem 0x08001f29 Thumb Code 6 list.o(i.vListInitialiseItem)
vListInsert 0x08001f2f Thumb Code 48 list.o(i.vListInsert)
vListInsertEnd 0x08001f5f Thumb Code 24 list.o(i.vListInsertEnd)
vPortEnterCritical 0x08001f79 Thumb Code 20 port.o(i.vPortEnterCritical)
vPortExitCritical 0x08001f91 Thumb Code 22 port.o(i.vPortExitCritical)
vPortFree 0x08001fad Thumb Code 68 heap_4.o(i.vPortFree)
vPortSetupTimerInterrupt 0x08001ff5 Thumb Code 32 port.o(i.vPortSetupTimerInterrupt)
vPortYield 0x0800201d Thumb Code 18 port.o(i.vPortYield)
vTaskDelay 0x08002035 Thumb Code 44 tasks.o(i.vTaskDelay)
vTaskStartScheduler 0x08002065 Thumb Code 58 tasks.o(i.vTaskStartScheduler)
vTaskSuspendAll 0x080020b1 Thumb Code 10 tasks.o(i.vTaskSuspendAll)
vTaskSwitchContext 0x080020c1 Thumb Code 78 tasks.o(i.vTaskSwitchContext)
xPortStartScheduler 0x08002119 Thumb Code 40 port.o(i.xPortStartScheduler)
xTaskCreate 0x08002149 Thumb Code 78 tasks.o(i.xTaskCreate)
xTaskIncrementTick 0x08002199 Thumb Code 180 tasks.o(i.xTaskIncrementTick)
xTaskResumeAll 0x08002255 Thumb Code 164 tasks.o(i.xTaskResumeAll)
AHBPrescTable 0x08002360 Data 64 system_stm32g0xx.o(.constdata)
APBPrescTable 0x080023a0 Data 32 system_stm32g0xx.o(.constdata)
Region$$Table$$Base 0x080023d8 Number 0 anon$$obj.o(Region$$Table)
Region$$Table$$Limit 0x080023f8 Number 0 anon$$obj.o(Region$$Table)
defaultTaskHandle 0x20000000 Data 4 app_freertos.o(.data)
uwTickFreq 0x20000004 Data 1 stm32g0xx_hal.o(.data)
uwTickPrio 0x20000008 Data 4 stm32g0xx_hal.o(.data)
uwTick 0x2000000c Data 4 stm32g0xx_hal.o(.data)
SystemCoreClock 0x20000010 Data 4 system_stm32g0xx.o(.data)
pxCurrentTCB 0x20000014 Data 4 tasks.o(.data)
ADC_ConvertedValue 0x2000007c Data 4 adc_dma.o(.data)
__stdout 0x20000080 Data 4 stdout.o(.data)
htim16 0x20000084 Data 76 stm32g0xx_hal_timebase_tim.o(.bss)
__initial_sp 0x200013c0 Data 0 startup_stm32g030xx.o(STACK)
==============================================================================
Memory Map of the image
Image Entry point : 0x080000c1
Load Region LR_IROM1 (Base: 0x08000000, Size: 0x0000247c, Max: 0x00008000, ABSOLUTE)
Execution Region ER_IROM1 (Exec base: 0x08000000, Load base: 0x08000000, Size: 0x000023f8, Max: 0x00008000, ABSOLUTE)
Exec Addr Load Addr Size Type Attr Idx E Section Name Object
0x08000000 0x08000000 0x000000c0 Data RO 3 RESET startup_stm32g030xx.o
0x080000c0 0x080000c0 0x00000000 Code RO 4654 * .ARM.Collect$$$$00000000 mc_p.l(entry.o)
0x080000c0 0x080000c0 0x00000004 Code RO 4928 .ARM.Collect$$$$00000001 mc_p.l(entry2.o)
0x080000c4 0x080000c4 0x00000004 Code RO 4931 .ARM.Collect$$$$00000004 mc_p.l(entry5.o)
0x080000c8 0x080000c8 0x00000000 Code RO 4933 .ARM.Collect$$$$00000008 mc_p.l(entry7b.o)
0x080000c8 0x080000c8 0x00000000 Code RO 4935 .ARM.Collect$$$$0000000A mc_p.l(entry8b.o)
0x080000c8 0x080000c8 0x00000008 Code RO 4936 .ARM.Collect$$$$0000000B mc_p.l(entry9a.o)
0x080000d0 0x080000d0 0x00000000 Code RO 4938 .ARM.Collect$$$$0000000D mc_p.l(entry10a.o)
0x080000d0 0x080000d0 0x00000000 Code RO 4940 .ARM.Collect$$$$0000000F mc_p.l(entry11a.o)
0x080000d0 0x080000d0 0x00000004 Code RO 4929 .ARM.Collect$$$$00002712 mc_p.l(entry2.o)
0x080000d4 0x080000d4 0x00000078 Code RO 4487 .emb_text port.o
0x0800014c 0x0800014c 0x0000001c Code RO 4 .text startup_stm32g030xx.o
0x08000168 0x08000168 0x0000002c Code RO 4657 .text mc_p.l(uidiv.o)
0x08000194 0x08000194 0x00000024 Code RO 4659 .text mc_p.l(memcpya.o)
0x080001b8 0x080001b8 0x00000024 Code RO 4663 .text mc_p.l(memseta.o)
0x080001dc 0x080001dc 0x00000024 Code RO 4956 .text mc_p.l(init.o)
0x08000200 0x08000200 0x00000080 Code RO 4626 i.Adc_Dma_Initialize adc_dma.o
0x08000280 0x08000280 0x00000018 Code RO 537 i.DMA1_Channel1_IRQHandler stm32g0xx_it.o
0x08000298 0x08000298 0x00000044 Code RO 4560 i.Dma_Recive_TC1 uart_dma.o
0x080002dc 0x080002dc 0x00000010 Code RO 1888 i.HAL_IncTick stm32g0xx_hal.o
0x080002ec 0x080002ec 0x00000028 Code RO 1889 i.HAL_Init stm32g0xx_hal.o
0x08000314 0x08000314 0x00000078 Code RO 611 i.HAL_InitTick stm32g0xx_hal_timebase_tim.o
0x0800038c 0x0800038c 0x00000034 Code RO 591 i.HAL_MspInit stm32g0xx_hal_msp.o
0x080003c0 0x080003c0 0x00000018 Code RO 1766 i.HAL_NVIC_EnableIRQ stm32g0xx_hal_cortex.o
0x080003d8 0x080003d8 0x00000008 Code RO 1770 i.HAL_NVIC_SetPriority stm32g0xx_hal_cortex.o
0x080003e0 0x080003e0 0x00000038 Code RO 1018 i.HAL_RCC_GetClockConfig stm32g0xx_hal_rcc.o
0x08000418 0x08000418 0x00000028 Code RO 1021 i.HAL_RCC_GetPCLK1Freq stm32g0xx_hal_rcc.o
0x08000440 0x08000440 0x00000002 Code RO 2847 i.HAL_TIMEx_Break2Callback stm32g0xx_hal_tim_ex.o
0x08000442 0x08000442 0x00000002 Code RO 2848 i.HAL_TIMEx_BreakCallback stm32g0xx_hal_tim_ex.o
0x08000444 0x08000444 0x00000002 Code RO 2849 i.HAL_TIMEx_CommutCallback stm32g0xx_hal_tim_ex.o
0x08000446 0x08000446 0x0000004c Code RO 2137 i.HAL_TIM_Base_Init stm32g0xx_hal_tim.o
0x08000492 0x08000492 0x00000002 Code RO 2139 i.HAL_TIM_Base_MspInit stm32g0xx_hal_tim.o
0x08000494 0x08000494 0x00000050 Code RO 2142 i.HAL_TIM_Base_Start_IT stm32g0xx_hal_tim.o
0x080004e4 0x080004e4 0x00000002 Code RO 2171 i.HAL_TIM_IC_CaptureCallback stm32g0xx_hal_tim.o
0x080004e6 0x080004e6 0x00000002 PAD
0x080004e8 0x080004e8 0x00000184 Code RO 2185 i.HAL_TIM_IRQHandler stm32g0xx_hal_tim.o
0x0800066c 0x0800066c 0x00000002 Code RO 2188 i.HAL_TIM_OC_DelayElapsedCallback stm32g0xx_hal_tim.o
0x0800066e 0x0800066e 0x00000002 Code RO 2215 i.HAL_TIM_PWM_PulseFinishedCallback stm32g0xx_hal_tim.o
0x08000670 0x08000670 0x00000014 Code RO 13 i.HAL_TIM_PeriodElapsedCallback main.o
0x08000684 0x08000684 0x00000002 Code RO 2228 i.HAL_TIM_TriggerCallback stm32g0xx_hal_tim.o
0x08000686 0x08000686 0x00000002 Code RO 538 i.HardFault_Handler stm32g0xx_it.o
0x08000688 0x08000688 0x00000038 Code RO 809 i.LL_ADC_Init stm32g0xx_ll_adc.o
0x080006c0 0x080006c0 0x00000064 Code RO 810 i.LL_ADC_REG_Init stm32g0xx_ll_adc.o
0x08000724 0x08000724 0x0000001a Code RO 330 i.LL_ADC_REG_SetSequencerRanks adc.o
0x0800073e 0x0800073e 0x00000012 Code RO 331 i.LL_ADC_SetChannelSamplingTime adc.o
0x08000750 0x08000750 0x00000016 Code RO 332 i.LL_ADC_SetSamplingTimeCommonChannels adc.o
0x08000766 0x08000766 0x00000002 PAD
0x08000768 0x08000768 0x00000014 Code RO 4561 i.LL_DMA_EnableChannel uart_dma.o
0x0800077c 0x0800077c 0x00000018 Code RO 456 i.LL_DMA_SetChannelPriorityLevel usart.o
0x08000794 0x08000794 0x00000018 Code RO 4562 i.LL_DMA_SetDataLength uart_dma.o
0x080007ac 0x080007ac 0x0000001c Code RO 457 i.LL_DMA_SetDataTransferDirection usart.o
0x080007c8 0x080007c8 0x00000018 Code RO 458 i.LL_DMA_SetMemoryIncMode usart.o
0x080007e0 0x080007e0 0x00000018 Code RO 459 i.LL_DMA_SetMemorySize usart.o
0x080007f8 0x080007f8 0x00000018 Code RO 460 i.LL_DMA_SetMode usart.o
0x08000810 0x08000810 0x00000018 Code RO 461 i.LL_DMA_SetPeriphIncMode usart.o
0x08000828 0x08000828 0x00000028 Code RO 462 i.LL_DMA_SetPeriphRequest usart.o
0x08000850 0x08000850 0x00000018 Code RO 463 i.LL_DMA_SetPeriphSize usart.o
0x08000868 0x08000868 0x000000ac Code RO 758 i.LL_GPIO_Init stm32g0xx_ll_gpio.o
0x08000914 0x08000914 0x00000018 Code RO 253 i.LL_IOP_GRP1_EnableClock gpio.o
0x0800092c 0x0800092c 0x00000018 Code RO 402 i.LL_IOP_GRP1_EnableClock tim.o
0x08000944 0x08000944 0x00000018 Code RO 464 i.LL_IOP_GRP1_EnableClock usart.o
0x0800095c 0x0800095c 0x00000018 Code RO 923 i.LL_RCC_GetSystemClocksFreq stm32g0xx_ll_rcc.o
0x08000974 0x08000974 0x00000060 Code RO 924 i.LL_RCC_GetUSARTClockFreq stm32g0xx_ll_rcc.o
0x080009d4 0x080009d4 0x0000000c Code RO 651 i.LL_SetSystemCoreClock stm32g0xx_ll_utils.o
0x080009e0 0x080009e0 0x00000078 Code RO 3157 i.LL_TIM_Init stm32g0xx_ll_tim.o
0x08000a58 0x08000a58 0x00000070 Code RO 403 i.LL_TIM_OC_DisableFast tim.o
0x08000ac8 0x08000ac8 0x00000070 Code RO 404 i.LL_TIM_OC_EnablePreload tim.o
0x08000b38 0x08000b38 0x00000164 Code RO 3158 i.LL_TIM_OC_Init stm32g0xx_ll_tim.o
0x08000c9c 0x08000c9c 0x00000014 Code RO 465 i.LL_USART_ConfigAsyncMode usart.o
0x08000cb0 0x08000cb0 0x0000000c Code RO 4563 i.LL_USART_DMA_GetRegAddr uart_dma.o
0x08000cbc 0x08000cbc 0x000000e0 Code RO 3272 i.LL_USART_Init stm32g0xx_ll_usart.o
0x08000d9c 0x08000d9c 0x0000020c Code RO 333 i.MX_ADC1_Init adc.o
0x08000fa8 0x08000fa8 0x0000003c Code RO 376 i.MX_DMA_Init dma.o
0x08000fe4 0x08000fe4 0x00000028 Code RO 290 i.MX_FREERTOS_Init app_freertos.o
0x0800100c 0x0800100c 0x00000010 Code RO 254 i.MX_GPIO_Init gpio.o
0x0800101c 0x0800101c 0x000000ac Code RO 405 i.MX_TIM14_Init tim.o
0x080010c8 0x080010c8 0x000000dc Code RO 406 i.MX_TIM3_Init tim.o
0x080011a4 0x080011a4 0x00000188 Code RO 466 i.MX_USART1_UART_Init usart.o
0x0800132c 0x0800132c 0x000000ac Code RO 467 i.MX_USART2_UART_Init usart.o
0x080013d8 0x080013d8 0x00000002 Code RO 539 i.NMI_Handler stm32g0xx_it.o
0x080013da 0x080013da 0x00000002 PAD
0x080013dc 0x080013dc 0x00000088 Code RO 3161 i.OC1Config stm32g0xx_ll_tim.o
0x08001464 0x08001464 0x00000090 Code RO 3162 i.OC2Config stm32g0xx_ll_tim.o
0x080014f4 0x080014f4 0x00000090 Code RO 3163 i.OC3Config stm32g0xx_ll_tim.o
0x08001584 0x08001584 0x0000001a Code RO 407 i.Pwm_Start tim.o
0x0800159e 0x0800159e 0x00000002 PAD
0x080015a0 0x080015a0 0x00000020 Code RO 925 i.RCC_GetHCLKClockFreq stm32g0xx_ll_rcc.o
0x080015c0 0x080015c0 0x00000020 Code RO 926 i.RCC_GetPCLK1ClockFreq stm32g0xx_ll_rcc.o
0x080015e0 0x080015e0 0x0000003c Code RO 927 i.RCC_GetSystemClockFreq stm32g0xx_ll_rcc.o
0x0800161c 0x0800161c 0x00000040 Code RO 930 i.RCC_PLL_GetFreqDomain_SYS stm32g0xx_ll_rcc.o
0x0800165c 0x0800165c 0x00000002 Code RO 4488 i.SVC_Handler port.o
0x0800165e 0x0800165e 0x0000000c Code RO 291 i.StartDefaultTask app_freertos.o
0x0800166a 0x0800166a 0x00000002 PAD
0x0800166c 0x0800166c 0x00000024 Code RO 4489 i.SysTick_Handler port.o
0x08001690 0x08001690 0x000000bc Code RO 14 i.SystemClock_Config main.o
0x0800174c 0x0800174c 0x00000010 Code RO 3319 i.SystemInit system_stm32g0xx.o
0x0800175c 0x0800175c 0x00000010 Code RO 540 i.TIM16_IRQHandler stm32g0xx_it.o
0x0800176c 0x0800176c 0x00000078 Code RO 2230 i.TIM_Base_SetConfig stm32g0xx_hal_tim.o
0x080017e4 0x080017e4 0x00000018 Code RO 541 i.USART1_IRQHandler stm32g0xx_it.o
0x080017fc 0x080017fc 0x0000008c Code RO 4564 i.UartDma_Init uart_dma.o
0x08001888 0x08001888 0x0000005c Code RO 4565 i.UartIDLE_Recive_Data uart_dma.o
0x080018e4 0x080018e4 0x00000020 Code RO 4712 i.__0printf$1 mc_p.l(printf1.o)
0x08001904 0x08001904 0x00000044 Code RO 1776 i.__NVIC_SetPriority stm32g0xx_hal_cortex.o
0x08001948 0x08001948 0x0000000e Code RO 4970 i.__scatterload_copy mc_p.l(handlers.o)
0x08001956 0x08001956 0x00000002 Code RO 4971 i.__scatterload_null mc_p.l(handlers.o)
0x08001958 0x08001958 0x0000000e Code RO 4972 i.__scatterload_zeroinit mc_p.l(handlers.o)
0x08001966 0x08001966 0x00000002 PAD
0x08001968 0x08001968 0x00000150 Code RO 4719 i._printf_core mc_p.l(printf1.o)
0x08001ab8 0x08001ab8 0x00000014 Code RO 15 i.fputc main.o
0x08001acc 0x08001acc 0x00000036 Code RO 16 i.main main.o
0x08001b02 0x08001b02 0x0000000c Code RO 4083 i.makeFreeRtosPriority cmsis_os.o
0x08001b0e 0x08001b0e 0x00000010 Code RO 4085 i.osDelay cmsis_os.o
0x08001b1e 0x08001b1e 0x0000000a Code RO 4088 i.osKernelStart cmsis_os.o
0x08001b28 0x08001b28 0x0000002e Code RO 4122 i.osThreadCreate cmsis_os.o
0x08001b56 0x08001b56 0x00000002 PAD
0x08001b58 0x08001b58 0x00000058 Code RO 3772 i.prvAddCurrentTaskToDelayedList tasks.o
0x08001bb0 0x08001bb0 0x000000b8 Code RO 3773 i.prvAddNewTaskToReadyList tasks.o
0x08001c68 0x08001c68 0x00000012 Code RO 3774 i.prvDeleteTCB tasks.o
0x08001c7a 0x08001c7a 0x00000002 PAD
0x08001c7c 0x08001c7c 0x00000044 Code RO 4432 i.prvHeapInit heap_4.o
0x08001cc0 0x08001cc0 0x00000048 Code RO 3775 i.prvIdleTask tasks.o
0x08001d08 0x08001d08 0x0000008a Code RO 3776 i.prvInitialiseNewTask tasks.o
0x08001d92 0x08001d92 0x00000002 PAD
0x08001d94 0x08001d94 0x0000004c Code RO 4433 i.prvInsertBlockIntoFreeList heap_4.o
0x08001de0 0x08001de0 0x00000020 Code RO 3777 i.prvResetNextTaskUnblockTime tasks.o
0x08001e00 0x08001e00 0x00000014 Code RO 4490 i.prvTaskExitError port.o
0x08001e14 0x08001e14 0x000000b8 Code RO 4434 i.pvPortMalloc heap_4.o
0x08001ecc 0x08001ecc 0x00000020 Code RO 4491 i.pxPortInitialiseStack port.o
0x08001eec 0x08001eec 0x00000026 Code RO 3439 i.uxListRemove list.o
0x08001f12 0x08001f12 0x00000016 Code RO 3440 i.vListInitialise list.o
0x08001f28 0x08001f28 0x00000006 Code RO 3441 i.vListInitialiseItem list.o
0x08001f2e 0x08001f2e 0x00000030 Code RO 3442 i.vListInsert list.o
0x08001f5e 0x08001f5e 0x00000018 Code RO 3443 i.vListInsertEnd list.o
0x08001f76 0x08001f76 0x00000002 PAD
0x08001f78 0x08001f78 0x00000018 Code RO 4493 i.vPortEnterCritical port.o
0x08001f90 0x08001f90 0x0000001c Code RO 4494 i.vPortExitCritical port.o
0x08001fac 0x08001fac 0x00000048 Code RO 4435 i.vPortFree heap_4.o
0x08001ff4 0x08001ff4 0x00000028 Code RO 4495 i.vPortSetupTimerInterrupt port.o
0x0800201c 0x0800201c 0x00000018 Code RO 4496 i.vPortYield port.o
0x08002034 0x08002034 0x00000030 Code RO 3786 i.vTaskDelay tasks.o
0x08002064 0x08002064 0x0000004c Code RO 3799 i.vTaskStartScheduler tasks.o
0x080020b0 0x080020b0 0x00000010 Code RO 3801 i.vTaskSuspendAll tasks.o
0x080020c0 0x080020c0 0x00000058 Code RO 3802 i.vTaskSwitchContext tasks.o
0x08002118 0x08002118 0x00000030 Code RO 4497 i.xPortStartScheduler port.o
0x08002148 0x08002148 0x0000004e Code RO 3805 i.xTaskCreate tasks.o
0x08002196 0x08002196 0x00000002 PAD
0x08002198 0x08002198 0x000000bc Code RO 3812 i.xTaskIncrementTick tasks.o
0x08002254 0x08002254 0x000000ac Code RO 3818 i.xTaskResumeAll tasks.o
0x08002300 0x08002300 0x00000014 Data RO 292 .constdata app_freertos.o
0x08002314 0x08002314 0x00000005 Data RO 334 .constdata adc.o
0x08002319 0x08002319 0x00000012 Data RO 408 .constdata tim.o
0x0800232b 0x0800232b 0x00000005 Data RO 468 .constdata usart.o
0x08002330 0x08002330 0x00000030 Data RO 3274 .constdata stm32g0xx_ll_usart.o
0x08002360 0x08002360 0x00000040 Data RO 3320 .constdata system_stm32g0xx.o
0x080023a0 0x080023a0 0x00000020 Data RO 3321 .constdata system_stm32g0xx.o
0x080023c0 0x080023c0 0x00000005 Data RO 4568 .constdata uart_dma.o
0x080023c5 0x080023c5 0x00000005 Data RO 4627 .constdata adc_dma.o
0x080023ca 0x080023ca 0x00000002 PAD
0x080023cc 0x080023cc 0x0000000c Data RO 293 .conststring app_freertos.o
0x080023d8 0x080023d8 0x00000020 Data RO 4968 Region$$Table anon$$obj.o
Execution Region RW_IRAM1 (Exec base: 0x20000000, Load base: 0x080023f8, Size: 0x000013c0, Max: 0x00002000, ABSOLUTE)
Exec Addr Load Addr Size Type Attr Idx E Section Name Object
0x20000000 0x080023f8 0x00000004 Data RW 294 .data app_freertos.o
0x20000004 0x080023fc 0x0000000c Data RW 1902 .data stm32g0xx_hal.o
0x20000010 0x08002408 0x00000004 Data RW 3322 .data system_stm32g0xx.o
0x20000014 0x0800240c 0x0000003c Data RW 3821 .data tasks.o
0x20000050 0x08002448 0x00000020 Data RW 4441 .data heap_4.o
0x20000070 0x08002468 0x00000004 Data RW 4498 .data port.o
0x20000074 0x0800246c 0x00000008 Data RW 4569 .data uart_dma.o
0x2000007c 0x08002474 0x00000004 Data RW 4628 .data adc_dma.o
0x20000080 0x08002478 0x00000004 Data RW 4942 .data mc_p.l(stdout.o)
0x20000084 - 0x0000004c Zero RW 614 .bss stm32g0xx_hal_timebase_tim.o
0x200000d0 - 0x000000f0 Zero RW 3820 .bss tasks.o
0x200001c0 - 0x00000c00 Zero RW 4440 .bss heap_4.o
0x20000dc0 - 0x00000200 Zero RW 4567 .bss uart_dma.o
0x20000fc0 - 0x00000400 Zero RW 1 STACK startup_stm32g030xx.o
==============================================================================
Image component sizes
Code (inc. data) RO Data RW Data ZI Data Debug Object Name
590 46 5 0 0 49183 adc.o
128 22 5 4 0 43970 adc_dma.o
52 10 32 4 0 1779 app_freertos.o
84 0 0 0 0 7049 cmsis_os.o
60 14 0 0 0 13554 dma.o
0 0 0 0 0 2440 event_groups.o
40 6 0 0 0 19527 gpio.o
400 22 0 32 3072 4139 heap_4.o
138 0 0 0 0 3226 list.o
282 30 0 0 0 428200 main.o
374 56 0 4 0 7119 port.o
28 8 192 0 1024 608 startup_stm32g030xx.o
56 8 0 12 0 14184 stm32g0xx_hal.o
100 14 0 0 0 11240 stm32g0xx_hal_cortex.o
52 4 0 0 0 786 stm32g0xx_hal_msp.o
96 22 0 0 0 17422 stm32g0xx_hal_rcc.o
674 38 0 0 0 6644 stm32g0xx_hal_tim.o
6 0 0 0 0 2004 stm32g0xx_hal_tim_ex.o
120 20 0 0 76 1352 stm32g0xx_hal_timebase_tim.o
68 18 0 0 0 34896 stm32g0xx_it.o
156 8 0 0 0 38076 stm32g0xx_ll_adc.o
172 0 0 0 0 6763 stm32g0xx_ll_gpio.o
308 48 0 0 0 20418 stm32g0xx_ll_rcc.o
900 94 0 0 0 44307 stm32g0xx_ll_tim.o
224 20 48 0 0 26496 stm32g0xx_ll_usart.o
12 6 0 0 0 5132 stm32g0xx_ll_utils.o
16 6 96 4 0 1075 system_stm32g0xx.o
1198 84 0 60 240 16362 tasks.o
666 36 18 0 0 39939 tim.o
356 82 5 8 512 36915 uart_dma.o
820 90 5 0 0 29244 usart.o
----------------------------------------------------------------------
8196 812 440 128 4924 934049 Object Totals
0 0 32 0 0 0 (incl. Generated)
20 0 2 0 0 0 (incl. Padding)
----------------------------------------------------------------------
Code (inc. data) RO Data RW Data ZI Data Debug Library Member Name
0 0 0 0 0 0 entry.o
0 0 0 0 0 0 entry10a.o
0 0 0 0 0 0 entry11a.o
8 4 0 0 0 0 entry2.o
4 0 0 0 0 0 entry5.o
0 0 0 0 0 0 entry7b.o
0 0 0 0 0 0 entry8b.o
8 4 0 0 0 0 entry9a.o
30 0 0 0 0 0 handlers.o
36 8 0 0 0 68 init.o
36 0 0 0 0 60 memcpya.o
36 0 0 0 0 100 memseta.o
368 12 0 0 0 168 printf1.o
0 0 0 4 0 0 stdout.o
44 0 0 0 0 72 uidiv.o
----------------------------------------------------------------------
572 28 0 4 0 468 Library Totals
2 0 0 0 0 0 (incl. Padding)
----------------------------------------------------------------------
Code (inc. data) RO Data RW Data ZI Data Debug Library Name
570 28 0 4 0 468 mc_p.l
----------------------------------------------------------------------
572 28 0 4 0 468 Library Totals
----------------------------------------------------------------------
==============================================================================
Code (inc. data) RO Data RW Data ZI Data Debug
8768 840 440 132 4924 929513 Grand Totals
8768 840 440 132 4924 929513 ELF Image Totals
8768 840 440 132 0 0 ROM Totals
==============================================================================
Total RO Size (Code + RO Data) 9208 ( 8.99kB)
Total RW Size (RW Data + ZI Data) 5056 ( 4.94kB)
Total ROM Size (Code + RO Data + RW Data) 9340 ( 9.12kB)
==============================================================================