blob: 4543208af24d63164afdbdd55c5b9a05902f6174 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
|
Archive member included to satisfy reference by file (symbol)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o (exit)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o) (_global_impure_ptr)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-init.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o (__libc_init_array)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memset.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o (memset)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sprintf.o)
build/main.o (sprintf)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sprintf.o) (_svfprintf_r)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-vfprintf_i.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o) (_printf_i)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memchr-stub.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o) (memchr)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memcpy-stub.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o) (memcpy)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memmove.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o) (memmove)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-freer.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o) (_free_r)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-mallocr.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o) (_malloc_r)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-reallocr.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o) (_realloc_r)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sbrkr.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-mallocr.o) (_sbrk_r)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-mlock.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-freer.o) (__malloc_lock)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-msizer.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-reallocr.o) (_malloc_usable_size_r)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-reent.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sbrkr.o) (errno)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(sbrk.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sbrkr.o) (_sbrk)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(_exit.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o) (_exit)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a(_udivsi3.o)
build/stm32f0xx_hal_adc.o (__aeabi_uidiv)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a(_dvmd_tls.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a(_udivsi3.o) (__aeabi_idiv0)
Allocating common symbols
Common symbol size file
errno 0x4 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-reent.o)
hpcd 0x274 build/usbd_conf.o
uwTick 0x4 build/stm32f0xx_hal.o
pFlash 0x20 build/stm32f0xx_hal_flash.o
USBD_Device 0x274 build/main.o
UserTxBuffer 0x200 build/main.o
sendDataUSB 0x4 build/main.o
UserRxBuffer 0x200 build/main.o
hdma_adc 0x44 build/main.o
hpcd_USB_FS 0x274 build/main.o
ADCval 0x10 build/main.o
hadc 0x40 build/main.o
USBD_StrDesc 0x100 build/usbd_desc.o
Discarded input sections
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crti.o
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crti.o
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crti.o
.data 0x0000000000000000 0x4 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtbegin.o
.text 0x0000000000000000 0x78 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
.ARM.extab 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
.ARM.exidx 0x0000000000000000 0x8 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
.ARM.attributes
0x0000000000000000 0x1b /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
.text 0x0000000000000000 0x0 build/main.o
.data 0x0000000000000000 0x0 build/main.o
.bss 0x0000000000000000 0x0 build/main.o
.text 0x0000000000000000 0x0 build/stm32f0xx_it.o
.data 0x0000000000000000 0x0 build/stm32f0xx_it.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_it.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_msp.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_msp.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_msp.o
.text.HAL_ADC_MspDeInit
0x0000000000000000 0x44 build/stm32f0xx_hal_msp.o
.text 0x0000000000000000 0x0 build/stm32f0xx_ll_usb.o
.data 0x0000000000000000 0x0 build/stm32f0xx_ll_usb.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_ll_usb.o
.text.USB_CoreInit
0x0000000000000000 0xe build/stm32f0xx_ll_usb.o
.text.USB_SetCurrentMode
0x0000000000000000 0x4 build/stm32f0xx_ll_usb.o
.text.USB_SetDevSpeed
0x0000000000000000 0x4 build/stm32f0xx_ll_usb.o
.text.USB_FlushTxFifo
0x0000000000000000 0x4 build/stm32f0xx_ll_usb.o
.text.USB_FlushRxFifo
0x0000000000000000 0x4 build/stm32f0xx_ll_usb.o
.text.USB_WritePacket
0x0000000000000000 0x4 build/stm32f0xx_ll_usb.o
.text.USB_ReadPacket
0x0000000000000000 0x4 build/stm32f0xx_ll_usb.o
.text.USB_StopDevice
0x0000000000000000 0x14 build/stm32f0xx_ll_usb.o
.text.USB_DevDisconnect
0x0000000000000000 0xe build/stm32f0xx_ll_usb.o
.text.USB_ReadDevAllOutEpInterrupt
0x0000000000000000 0x4 build/stm32f0xx_ll_usb.o
.text.USB_ReadDevAllInEpInterrupt
0x0000000000000000 0x4 build/stm32f0xx_ll_usb.o
.text.USB_ReadDevOutEPInterrupt
0x0000000000000000 0x4 build/stm32f0xx_ll_usb.o
.text.USB_ReadDevInEPInterrupt
0x0000000000000000 0x4 build/stm32f0xx_ll_usb.o
.text.USB_ClearInterrupts
0x0000000000000000 0x2 build/stm32f0xx_ll_usb.o
.text.USB_ActivateRemoteWakeup
0x0000000000000000 0xe build/stm32f0xx_ll_usb.o
.text.USB_DeActivateRemoteWakeup
0x0000000000000000 0xe build/stm32f0xx_ll_usb.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_adc.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_adc.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_adc.o
.text.ADC_ConversionStop
0x0000000000000000 0x54 build/stm32f0xx_hal_adc.o
.text.ADC_Disable
0x0000000000000000 0x80 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_MspInit
0x0000000000000000 0x2 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_MspDeInit
0x0000000000000000 0x2 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_DeInit
0x0000000000000000 0xa4 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_Start
0x0000000000000000 0x60 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_Stop
0x0000000000000000 0x44 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_PollForConversion
0x0000000000000000 0xc4 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_PollForEvent
0x0000000000000000 0x74 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_Start_IT
0x0000000000000000 0x88 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_Stop_IT
0x0000000000000000 0x50 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_Stop_DMA
0x0000000000000000 0x7c build/stm32f0xx_hal_adc.o
.text.HAL_ADC_GetValue
0x0000000000000000 0x6 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_LevelOutOfWindowCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_IRQHandler
0x0000000000000000 0xdc build/stm32f0xx_hal_adc.o
.text.HAL_ADC_AnalogWDGConfig
0x0000000000000000 0xac build/stm32f0xx_hal_adc.o
.text.HAL_ADC_GetState
0x0000000000000000 0x4 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_GetError
0x0000000000000000 0x4 build/stm32f0xx_hal_adc.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_adc_ex.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_adc_ex.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_adc_ex.o
.text.HAL_ADCEx_Calibration_Start
0x0000000000000000 0xb0 build/stm32f0xx_hal_adc_ex.o
.debug_info 0x0000000000000000 0x6ae build/stm32f0xx_hal_adc_ex.o
.debug_abbrev 0x0000000000000000 0x187 build/stm32f0xx_hal_adc_ex.o
.debug_loc 0x0000000000000000 0x11d build/stm32f0xx_hal_adc_ex.o
.debug_aranges
0x0000000000000000 0x20 build/stm32f0xx_hal_adc_ex.o
.debug_ranges 0x0000000000000000 0x10 build/stm32f0xx_hal_adc_ex.o
.debug_line 0x0000000000000000 0x249 build/stm32f0xx_hal_adc_ex.o
.debug_str 0x0000000000000000 0x666 build/stm32f0xx_hal_adc_ex.o
.comment 0x0000000000000000 0x80 build/stm32f0xx_hal_adc_ex.o
.debug_frame 0x0000000000000000 0x30 build/stm32f0xx_hal_adc_ex.o
.ARM.attributes
0x0000000000000000 0x31 build/stm32f0xx_hal_adc_ex.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_rcc.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_rcc.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_rcc.o
.text.HAL_RCC_DeInit
0x0000000000000000 0xcc build/stm32f0xx_hal_rcc.o
.text.HAL_RCC_MCOConfig
0x0000000000000000 0x54 build/stm32f0xx_hal_rcc.o
.text.HAL_RCC_EnableCSS
0x0000000000000000 0x14 build/stm32f0xx_hal_rcc.o
.text.HAL_RCC_DisableCSS
0x0000000000000000 0x14 build/stm32f0xx_hal_rcc.o
.text.HAL_RCC_GetHCLKFreq
0x0000000000000000 0xc build/stm32f0xx_hal_rcc.o
.text.HAL_RCC_GetPCLK1Freq
0x0000000000000000 0x20 build/stm32f0xx_hal_rcc.o
.text.HAL_RCC_GetOscConfig
0x0000000000000000 0xd4 build/stm32f0xx_hal_rcc.o
.text.HAL_RCC_GetClockConfig
0x0000000000000000 0x38 build/stm32f0xx_hal_rcc.o
.text.HAL_RCC_CSSCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_rcc.o
.text.HAL_RCC_NMI_IRQHandler
0x0000000000000000 0x20 build/stm32f0xx_hal_rcc.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_rcc_ex.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_rcc_ex.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_rcc_ex.o
.text.HAL_RCCEx_GetPeriphCLKConfig
0x0000000000000000 0x5c build/stm32f0xx_hal_rcc_ex.o
.text.HAL_RCCEx_GetPeriphCLKFreq
0x0000000000000000 0x1f4 build/stm32f0xx_hal_rcc_ex.o
.text.HAL_RCCEx_CRSConfig
0x0000000000000000 0x54 build/stm32f0xx_hal_rcc_ex.o
.text.HAL_RCCEx_CRSSoftwareSynchronizationGenerate
0x0000000000000000 0x10 build/stm32f0xx_hal_rcc_ex.o
.text.HAL_RCCEx_CRSGetSynchronizationInfo
0x0000000000000000 0x2c build/stm32f0xx_hal_rcc_ex.o
.text.HAL_RCCEx_CRSWaitSynchronization
0x0000000000000000 0x9c build/stm32f0xx_hal_rcc_ex.o
.text.HAL_RCCEx_CRS_SyncOkCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_rcc_ex.o
.text.HAL_RCCEx_CRS_SyncWarnCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_rcc_ex.o
.text.HAL_RCCEx_CRS_ExpectedSyncCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_rcc_ex.o
.text.HAL_RCCEx_CRS_ErrorCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_rcc_ex.o
.text.HAL_RCCEx_CRS_IRQHandler
0x0000000000000000 0x78 build/stm32f0xx_hal_rcc_ex.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal.o
.text.HAL_MspInit
0x0000000000000000 0x2 build/stm32f0xx_hal.o
.text.HAL_MspDeInit
0x0000000000000000 0x2 build/stm32f0xx_hal.o
.text.HAL_DeInit
0x0000000000000000 0x24 build/stm32f0xx_hal.o
.text.HAL_GetTickPrio
0x0000000000000000 0xc build/stm32f0xx_hal.o
.text.HAL_SetTickFreq
0x0000000000000000 0x2c build/stm32f0xx_hal.o
.text.HAL_GetTickFreq
0x0000000000000000 0xc build/stm32f0xx_hal.o
.text.HAL_SuspendTick
0x0000000000000000 0x10 build/stm32f0xx_hal.o
.text.HAL_ResumeTick
0x0000000000000000 0x10 build/stm32f0xx_hal.o
.text.HAL_GetHalVersion
0x0000000000000000 0x8 build/stm32f0xx_hal.o
.text.HAL_GetREVID
0x0000000000000000 0xc build/stm32f0xx_hal.o
.text.HAL_GetDEVID
0x0000000000000000 0x10 build/stm32f0xx_hal.o
.text.HAL_GetUIDw0
0x0000000000000000 0xc build/stm32f0xx_hal.o
.text.HAL_GetUIDw1
0x0000000000000000 0xc build/stm32f0xx_hal.o
.text.HAL_GetUIDw2
0x0000000000000000 0xc build/stm32f0xx_hal.o
.text.HAL_DBGMCU_EnableDBGStopMode
0x0000000000000000 0x10 build/stm32f0xx_hal.o
.text.HAL_DBGMCU_DisableDBGStopMode
0x0000000000000000 0x10 build/stm32f0xx_hal.o
.text.HAL_DBGMCU_EnableDBGStandbyMode
0x0000000000000000 0x10 build/stm32f0xx_hal.o
.text.HAL_DBGMCU_DisableDBGStandbyMode
0x0000000000000000 0x10 build/stm32f0xx_hal.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_i2c.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_i2c.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_i2c.o
.text.I2C_Flush_TXDR
0x0000000000000000 0x1e build/stm32f0xx_hal_i2c.o
.text.I2C_TransferConfig
0x0000000000000000 0x2c build/stm32f0xx_hal_i2c.o
.text.I2C_Enable_IRQ
0x0000000000000000 0x7c build/stm32f0xx_hal_i2c.o
.text.I2C_Disable_IRQ
0x0000000000000000 0x70 build/stm32f0xx_hal_i2c.o
.text.I2C_ConvertOtherXferOptions
0x0000000000000000 0x20 build/stm32f0xx_hal_i2c.o
.text.I2C_IsAcknowledgeFailed
0x0000000000000000 0x80 build/stm32f0xx_hal_i2c.o
.text.I2C_WaitOnTXISFlagUntilTimeout
0x0000000000000000 0x52 build/stm32f0xx_hal_i2c.o
.text.I2C_WaitOnFlagUntilTimeout
0x0000000000000000 0x4c build/stm32f0xx_hal_i2c.o
.text.I2C_RequestMemoryWrite
0x0000000000000000 0x74 build/stm32f0xx_hal_i2c.o
.text.I2C_RequestMemoryRead
0x0000000000000000 0x70 build/stm32f0xx_hal_i2c.o
.text.I2C_WaitOnSTOPFlagUntilTimeout
0x0000000000000000 0x4e build/stm32f0xx_hal_i2c.o
.text.I2C_WaitOnRXNEFlagUntilTimeout
0x0000000000000000 0x84 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_MspInit
0x0000000000000000 0x2 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Init
0x0000000000000000 0xcc build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_MspDeInit
0x0000000000000000 0x2 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_DeInit
0x0000000000000000 0x32 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Master_Transmit
0x0000000000000000 0x16c build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Master_Receive
0x0000000000000000 0x16c build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Slave_Transmit
0x0000000000000000 0x198 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Slave_Receive
0x0000000000000000 0x17c build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Master_Transmit_IT
0x0000000000000000 0x94 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Master_Receive_IT
0x0000000000000000 0x94 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Slave_Transmit_IT
0x0000000000000000 0x64 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Slave_Receive_IT
0x0000000000000000 0x64 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Master_Transmit_DMA
0x0000000000000000 0x154 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Master_Receive_DMA
0x0000000000000000 0x154 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Slave_Transmit_DMA
0x0000000000000000 0xf4 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Slave_Receive_DMA
0x0000000000000000 0xf8 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Mem_Write
0x0000000000000000 0x1a0 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Mem_Read
0x0000000000000000 0x1a8 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Mem_Write_IT
0x0000000000000000 0xd4 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Mem_Read_IT
0x0000000000000000 0xd8 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Mem_Write_DMA
0x0000000000000000 0x168 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Mem_Read_DMA
0x0000000000000000 0x16c build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_IsDeviceReady
0x0000000000000000 0x180 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Master_Seq_Transmit_IT
0x0000000000000000 0xb8 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Master_Seq_Transmit_DMA
0x0000000000000000 0x170 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Master_Seq_Receive_IT
0x0000000000000000 0xb8 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Master_Seq_Receive_DMA
0x0000000000000000 0x170 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Slave_Seq_Transmit_IT
0x0000000000000000 0xd4 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Slave_Seq_Transmit_DMA
0x0000000000000000 0x198 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Slave_Seq_Receive_IT
0x0000000000000000 0xd8 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Slave_Seq_Receive_DMA
0x0000000000000000 0x198 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_EnableListen_IT
0x0000000000000000 0x28 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_DisableListen_IT
0x0000000000000000 0x32 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Master_Abort_IT
0x0000000000000000 0x64 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_EV_IRQHandler
0x0000000000000000 0x12 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_MasterTxCpltCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_MasterRxCpltCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_i2c.o
.text.I2C_ITMasterSeqCplt
0x0000000000000000 0x52 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_SlaveTxCpltCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_SlaveRxCpltCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_i2c.o
.text.I2C_ITSlaveSeqCplt
0x0000000000000000 0x58 build/stm32f0xx_hal_i2c.o
.text.I2C_DMASlaveTransmitCplt
0x0000000000000000 0x28 build/stm32f0xx_hal_i2c.o
.text.I2C_DMASlaveReceiveCplt
0x0000000000000000 0x30 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_AddrCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_i2c.o
.text.I2C_ITAddrCplt
0x0000000000000000 0xa2 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_ListenCpltCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_i2c.o
.text.I2C_ITListenCplt
0x0000000000000000 0x64 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_MemTxCpltCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_MemRxCpltCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_ErrorCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_AbortCpltCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_i2c.o
.text.I2C_ITError
0x0000000000000000 0xf8 build/stm32f0xx_hal_i2c.o
.text.I2C_ITSlaveCplt
0x0000000000000000 0x118 build/stm32f0xx_hal_i2c.o
.text.I2C_Slave_ISR_IT
0x0000000000000000 0x14c build/stm32f0xx_hal_i2c.o
.text.I2C_ITMasterCplt
0x0000000000000000 0xd4 build/stm32f0xx_hal_i2c.o
.text.I2C_Master_ISR_IT
0x0000000000000000 0x178 build/stm32f0xx_hal_i2c.o
.text.I2C_Slave_ISR_DMA
0x0000000000000000 0x108 build/stm32f0xx_hal_i2c.o
.text.I2C_Master_ISR_DMA
0x0000000000000000 0x13c build/stm32f0xx_hal_i2c.o
.text.I2C_DMAError
0x0000000000000000 0x18 build/stm32f0xx_hal_i2c.o
.text.I2C_DMAMasterTransmitCplt
0x0000000000000000 0x64 build/stm32f0xx_hal_i2c.o
.text.I2C_DMAMasterReceiveCplt
0x0000000000000000 0x64 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_ER_IRQHandler
0x0000000000000000 0x5e build/stm32f0xx_hal_i2c.o
.text.I2C_DMAAbort
0x0000000000000000 0x28 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_GetState
0x0000000000000000 0x8 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_GetMode
0x0000000000000000 0x8 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_GetError
0x0000000000000000 0x4 build/stm32f0xx_hal_i2c.o
.debug_info 0x0000000000000000 0x3b14 build/stm32f0xx_hal_i2c.o
.debug_abbrev 0x0000000000000000 0x2ab build/stm32f0xx_hal_i2c.o
.debug_loc 0x0000000000000000 0x49a3 build/stm32f0xx_hal_i2c.o
.debug_aranges
0x0000000000000000 0x288 build/stm32f0xx_hal_i2c.o
.debug_ranges 0x0000000000000000 0x278 build/stm32f0xx_hal_i2c.o
.debug_line 0x0000000000000000 0x1611 build/stm32f0xx_hal_i2c.o
.debug_str 0x0000000000000000 0xfca build/stm32f0xx_hal_i2c.o
.comment 0x0000000000000000 0x80 build/stm32f0xx_hal_i2c.o
.debug_frame 0x0000000000000000 0x960 build/stm32f0xx_hal_i2c.o
.ARM.attributes
0x0000000000000000 0x31 build/stm32f0xx_hal_i2c.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_i2c_ex.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_i2c_ex.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_i2c_ex.o
.text.HAL_I2CEx_ConfigAnalogFilter
0x0000000000000000 0x58 build/stm32f0xx_hal_i2c_ex.o
.text.HAL_I2CEx_ConfigDigitalFilter
0x0000000000000000 0x54 build/stm32f0xx_hal_i2c_ex.o
.text.HAL_I2CEx_EnableWakeUp
0x0000000000000000 0x4e build/stm32f0xx_hal_i2c_ex.o
.text.HAL_I2CEx_DisableWakeUp
0x0000000000000000 0x50 build/stm32f0xx_hal_i2c_ex.o
.text.HAL_I2CEx_EnableFastModePlus
0x0000000000000000 0x28 build/stm32f0xx_hal_i2c_ex.o
.text.HAL_I2CEx_DisableFastModePlus
0x0000000000000000 0x28 build/stm32f0xx_hal_i2c_ex.o
.debug_info 0x0000000000000000 0x996 build/stm32f0xx_hal_i2c_ex.o
.debug_abbrev 0x0000000000000000 0x1c7 build/stm32f0xx_hal_i2c_ex.o
.debug_loc 0x0000000000000000 0x2e1 build/stm32f0xx_hal_i2c_ex.o
.debug_aranges
0x0000000000000000 0x48 build/stm32f0xx_hal_i2c_ex.o
.debug_ranges 0x0000000000000000 0x38 build/stm32f0xx_hal_i2c_ex.o
.debug_line 0x0000000000000000 0x333 build/stm32f0xx_hal_i2c_ex.o
.debug_str 0x0000000000000000 0x870 build/stm32f0xx_hal_i2c_ex.o
.comment 0x0000000000000000 0x80 build/stm32f0xx_hal_i2c_ex.o
.debug_frame 0x0000000000000000 0xc0 build/stm32f0xx_hal_i2c_ex.o
.ARM.attributes
0x0000000000000000 0x31 build/stm32f0xx_hal_i2c_ex.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_gpio.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_gpio.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_gpio.o
.text.HAL_GPIO_DeInit
0x0000000000000000 0x104 build/stm32f0xx_hal_gpio.o
.text.HAL_GPIO_ReadPin
0x0000000000000000 0xe build/stm32f0xx_hal_gpio.o
.text.HAL_GPIO_TogglePin
0x0000000000000000 0x10 build/stm32f0xx_hal_gpio.o
.text.HAL_GPIO_LockPin
0x0000000000000000 0x2c build/stm32f0xx_hal_gpio.o
.text.HAL_GPIO_EXTI_Callback
0x0000000000000000 0x2 build/stm32f0xx_hal_gpio.o
.text.HAL_GPIO_EXTI_IRQHandler
0x0000000000000000 0x1c build/stm32f0xx_hal_gpio.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_dma.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_dma.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_dma.o
.text.HAL_DMA_DeInit
0x0000000000000000 0x48 build/stm32f0xx_hal_dma.o
.text.HAL_DMA_Start
0x0000000000000000 0x4e build/stm32f0xx_hal_dma.o
.text.HAL_DMA_Abort
0x0000000000000000 0x44 build/stm32f0xx_hal_dma.o
.text.HAL_DMA_Abort_IT
0x0000000000000000 0x4a build/stm32f0xx_hal_dma.o
.text.HAL_DMA_PollForTransfer
0x0000000000000000 0xc4 build/stm32f0xx_hal_dma.o
.text.HAL_DMA_RegisterCallback
0x0000000000000000 0x54 build/stm32f0xx_hal_dma.o
.text.HAL_DMA_UnRegisterCallback
0x0000000000000000 0x60 build/stm32f0xx_hal_dma.o
.rodata.HAL_DMA_UnRegisterCallback
0x0000000000000000 0x14 build/stm32f0xx_hal_dma.o
.text.HAL_DMA_GetState
0x0000000000000000 0x8 build/stm32f0xx_hal_dma.o
.text.HAL_DMA_GetError
0x0000000000000000 0x4 build/stm32f0xx_hal_dma.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_cortex.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_cortex.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_cortex.o
.text.HAL_NVIC_DisableIRQ
0x0000000000000000 0x20 build/stm32f0xx_hal_cortex.o
.text.HAL_NVIC_SystemReset
0x0000000000000000 0x1c build/stm32f0xx_hal_cortex.o
.text.HAL_NVIC_GetPriority
0x0000000000000000 0x4c build/stm32f0xx_hal_cortex.o
.text.HAL_NVIC_SetPendingIRQ
0x0000000000000000 0x1c build/stm32f0xx_hal_cortex.o
.text.HAL_NVIC_GetPendingIRQ
0x0000000000000000 0x20 build/stm32f0xx_hal_cortex.o
.text.HAL_NVIC_ClearPendingIRQ
0x0000000000000000 0x1c build/stm32f0xx_hal_cortex.o
.text.HAL_SYSTICK_CLKSourceConfig
0x0000000000000000 0x20 build/stm32f0xx_hal_cortex.o
.text.HAL_SYSTICK_Callback
0x0000000000000000 0x2 build/stm32f0xx_hal_cortex.o
.text.HAL_SYSTICK_IRQHandler
0x0000000000000000 0x8 build/stm32f0xx_hal_cortex.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_pwr.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_pwr.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_pwr.o
.text.HAL_PWR_DeInit
0x0000000000000000 0x20 build/stm32f0xx_hal_pwr.o
.text.HAL_PWR_EnableBkUpAccess
0x0000000000000000 0x14 build/stm32f0xx_hal_pwr.o
.text.HAL_PWR_DisableBkUpAccess
0x0000000000000000 0x14 build/stm32f0xx_hal_pwr.o
.text.HAL_PWR_EnableWakeUpPin
0x0000000000000000 0x10 build/stm32f0xx_hal_pwr.o
.text.HAL_PWR_DisableWakeUpPin
0x0000000000000000 0x10 build/stm32f0xx_hal_pwr.o
.text.HAL_PWR_EnterSLEEPMode
0x0000000000000000 0x20 build/stm32f0xx_hal_pwr.o
.text.HAL_PWR_EnterSTOPMode
0x0000000000000000 0x3c build/stm32f0xx_hal_pwr.o
.text.HAL_PWR_EnterSTANDBYMode
0x0000000000000000 0x20 build/stm32f0xx_hal_pwr.o
.text.HAL_PWR_EnableSleepOnExit
0x0000000000000000 0x10 build/stm32f0xx_hal_pwr.o
.text.HAL_PWR_DisableSleepOnExit
0x0000000000000000 0x10 build/stm32f0xx_hal_pwr.o
.text.HAL_PWR_EnableSEVOnPend
0x0000000000000000 0x10 build/stm32f0xx_hal_pwr.o
.text.HAL_PWR_DisableSEVOnPend
0x0000000000000000 0x10 build/stm32f0xx_hal_pwr.o
.debug_info 0x0000000000000000 0x4ac build/stm32f0xx_hal_pwr.o
.debug_abbrev 0x0000000000000000 0x196 build/stm32f0xx_hal_pwr.o
.debug_loc 0x0000000000000000 0xe8 build/stm32f0xx_hal_pwr.o
.debug_aranges
0x0000000000000000 0x78 build/stm32f0xx_hal_pwr.o
.debug_ranges 0x0000000000000000 0x68 build/stm32f0xx_hal_pwr.o
.debug_line 0x0000000000000000 0x2bf build/stm32f0xx_hal_pwr.o
.debug_str 0x0000000000000000 0x43b build/stm32f0xx_hal_pwr.o
.comment 0x0000000000000000 0x80 build/stm32f0xx_hal_pwr.o
.debug_frame 0x0000000000000000 0xdc build/stm32f0xx_hal_pwr.o
.ARM.attributes
0x0000000000000000 0x31 build/stm32f0xx_hal_pwr.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_pwr_ex.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_pwr_ex.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_pwr_ex.o
.text.HAL_PWR_ConfigPVD
0x0000000000000000 0x80 build/stm32f0xx_hal_pwr_ex.o
.text.HAL_PWR_EnablePVD
0x0000000000000000 0x10 build/stm32f0xx_hal_pwr_ex.o
.text.HAL_PWR_DisablePVD
0x0000000000000000 0x10 build/stm32f0xx_hal_pwr_ex.o
.text.HAL_PWR_PVDCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pwr_ex.o
.text.HAL_PWR_PVD_IRQHandler
0x0000000000000000 0x20 build/stm32f0xx_hal_pwr_ex.o
.text.HAL_PWREx_EnableVddio2Monitor
0x0000000000000000 0x18 build/stm32f0xx_hal_pwr_ex.o
.text.HAL_PWREx_DisableVddio2Monitor
0x0000000000000000 0x20 build/stm32f0xx_hal_pwr_ex.o
.text.HAL_PWREx_Vddio2MonitorCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pwr_ex.o
.text.HAL_PWREx_Vddio2Monitor_IRQHandler
0x0000000000000000 0x20 build/stm32f0xx_hal_pwr_ex.o
.debug_info 0x0000000000000000 0x338 build/stm32f0xx_hal_pwr_ex.o
.debug_abbrev 0x0000000000000000 0x161 build/stm32f0xx_hal_pwr_ex.o
.debug_loc 0x0000000000000000 0x40 build/stm32f0xx_hal_pwr_ex.o
.debug_aranges
0x0000000000000000 0x60 build/stm32f0xx_hal_pwr_ex.o
.debug_ranges 0x0000000000000000 0x50 build/stm32f0xx_hal_pwr_ex.o
.debug_line 0x0000000000000000 0x28c build/stm32f0xx_hal_pwr_ex.o
.debug_str 0x0000000000000000 0x394 build/stm32f0xx_hal_pwr_ex.o
.comment 0x0000000000000000 0x80 build/stm32f0xx_hal_pwr_ex.o
.debug_frame 0x0000000000000000 0xb8 build/stm32f0xx_hal_pwr_ex.o
.ARM.attributes
0x0000000000000000 0x31 build/stm32f0xx_hal_pwr_ex.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_flash.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_flash.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_flash.o
.text.FLASH_Program_HalfWord
0x0000000000000000 0x20 build/stm32f0xx_hal_flash.o
.text.FLASH_SetErrorCode
0x0000000000000000 0x3c build/stm32f0xx_hal_flash.o
.text.HAL_FLASH_Program_IT
0x0000000000000000 0x64 build/stm32f0xx_hal_flash.o
.text.HAL_FLASH_EndOfOperationCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_flash.o
.text.HAL_FLASH_OperationErrorCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_flash.o
.text.HAL_FLASH_IRQHandler
0x0000000000000000 0x154 build/stm32f0xx_hal_flash.o
.text.HAL_FLASH_Unlock
0x0000000000000000 0x30 build/stm32f0xx_hal_flash.o
.text.HAL_FLASH_Lock
0x0000000000000000 0x14 build/stm32f0xx_hal_flash.o
.text.HAL_FLASH_OB_Unlock
0x0000000000000000 0x28 build/stm32f0xx_hal_flash.o
.text.HAL_FLASH_OB_Lock
0x0000000000000000 0x18 build/stm32f0xx_hal_flash.o
.text.HAL_FLASH_GetError
0x0000000000000000 0xc build/stm32f0xx_hal_flash.o
.text.FLASH_WaitForLastOperation
0x0000000000000000 0x5c build/stm32f0xx_hal_flash.o
.text.HAL_FLASH_Program
0x0000000000000000 0xa0 build/stm32f0xx_hal_flash.o
.text.HAL_FLASH_OB_Launch
0x0000000000000000 0x20 build/stm32f0xx_hal_flash.o
.debug_info 0x0000000000000000 0x707 build/stm32f0xx_hal_flash.o
.debug_abbrev 0x0000000000000000 0x282 build/stm32f0xx_hal_flash.o
.debug_loc 0x0000000000000000 0x420 build/stm32f0xx_hal_flash.o
.debug_aranges
0x0000000000000000 0x88 build/stm32f0xx_hal_flash.o
.debug_ranges 0x0000000000000000 0x78 build/stm32f0xx_hal_flash.o
.debug_line 0x0000000000000000 0x3ba build/stm32f0xx_hal_flash.o
.debug_str 0x0000000000000000 0x5a9 build/stm32f0xx_hal_flash.o
.comment 0x0000000000000000 0x80 build/stm32f0xx_hal_flash.o
.debug_frame 0x0000000000000000 0x160 build/stm32f0xx_hal_flash.o
.ARM.attributes
0x0000000000000000 0x31 build/stm32f0xx_hal_flash.o
COMMON 0x0000000000000000 0x20 build/stm32f0xx_hal_flash.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_flash_ex.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_flash_ex.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_flash_ex.o
.text.FLASH_MassErase
0x0000000000000000 0x24 build/stm32f0xx_hal_flash_ex.o
.text.FLASH_OB_GetWRP
0x0000000000000000 0xc build/stm32f0xx_hal_flash_ex.o
.text.FLASH_OB_GetRDP
0x0000000000000000 0x20 build/stm32f0xx_hal_flash_ex.o
.text.FLASH_OB_GetUser
0x0000000000000000 0x10 build/stm32f0xx_hal_flash_ex.o
.text.FLASH_OB_RDP_LevelConfig
0x0000000000000000 0x64 build/stm32f0xx_hal_flash_ex.o
.text.FLASH_OB_UserConfig
0x0000000000000000 0x48 build/stm32f0xx_hal_flash_ex.o
.text.FLASH_OB_ProgramData
0x0000000000000000 0x40 build/stm32f0xx_hal_flash_ex.o
.text.HAL_FLASHEx_OBErase
0x0000000000000000 0x50 build/stm32f0xx_hal_flash_ex.o
.text.FLASH_OB_EnableWRP
0x0000000000000000 0xbc build/stm32f0xx_hal_flash_ex.o
.text.FLASH_OB_DisableWRP
0x0000000000000000 0xb8 build/stm32f0xx_hal_flash_ex.o
.text.HAL_FLASHEx_OBProgram
0x0000000000000000 0x94 build/stm32f0xx_hal_flash_ex.o
.text.HAL_FLASHEx_OBGetConfig
0x0000000000000000 0x1c build/stm32f0xx_hal_flash_ex.o
.text.HAL_FLASHEx_OBGetUserData
0x0000000000000000 0x24 build/stm32f0xx_hal_flash_ex.o
.text.FLASH_PageErase
0x0000000000000000 0x24 build/stm32f0xx_hal_flash_ex.o
.text.HAL_FLASHEx_Erase
0x0000000000000000 0xa4 build/stm32f0xx_hal_flash_ex.o
.text.HAL_FLASHEx_Erase_IT
0x0000000000000000 0x60 build/stm32f0xx_hal_flash_ex.o
.debug_info 0x0000000000000000 0xb00 build/stm32f0xx_hal_flash_ex.o
.debug_abbrev 0x0000000000000000 0x277 build/stm32f0xx_hal_flash_ex.o
.debug_loc 0x0000000000000000 0x915 build/stm32f0xx_hal_flash_ex.o
.debug_aranges
0x0000000000000000 0x98 build/stm32f0xx_hal_flash_ex.o
.debug_ranges 0x0000000000000000 0x88 build/stm32f0xx_hal_flash_ex.o
.debug_line 0x0000000000000000 0x472 build/stm32f0xx_hal_flash_ex.o
.debug_str 0x0000000000000000 0x6c3 build/stm32f0xx_hal_flash_ex.o
.comment 0x0000000000000000 0x80 build/stm32f0xx_hal_flash_ex.o
.debug_frame 0x0000000000000000 0x1bc build/stm32f0xx_hal_flash_ex.o
.ARM.attributes
0x0000000000000000 0x31 build/stm32f0xx_hal_flash_ex.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_exti.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_exti.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_exti.o
.text.HAL_EXTI_SetConfigLine
0x0000000000000000 0xc0 build/stm32f0xx_hal_exti.o
.text.HAL_EXTI_GetConfigLine
0x0000000000000000 0xa4 build/stm32f0xx_hal_exti.o
.text.HAL_EXTI_ClearConfigLine
0x0000000000000000 0x70 build/stm32f0xx_hal_exti.o
.text.HAL_EXTI_RegisterCallback
0x0000000000000000 0xe build/stm32f0xx_hal_exti.o
.text.HAL_EXTI_GetHandle
0x0000000000000000 0xe build/stm32f0xx_hal_exti.o
.text.HAL_EXTI_IRQHandler
0x0000000000000000 0x28 build/stm32f0xx_hal_exti.o
.text.HAL_EXTI_GetPending
0x0000000000000000 0x18 build/stm32f0xx_hal_exti.o
.text.HAL_EXTI_ClearPending
0x0000000000000000 0x14 build/stm32f0xx_hal_exti.o
.text.HAL_EXTI_GenerateSWI
0x0000000000000000 0x14 build/stm32f0xx_hal_exti.o
.debug_info 0x0000000000000000 0x606 build/stm32f0xx_hal_exti.o
.debug_abbrev 0x0000000000000000 0x204 build/stm32f0xx_hal_exti.o
.debug_loc 0x0000000000000000 0x485 build/stm32f0xx_hal_exti.o
.debug_aranges
0x0000000000000000 0x60 build/stm32f0xx_hal_exti.o
.debug_ranges 0x0000000000000000 0x50 build/stm32f0xx_hal_exti.o
.debug_line 0x0000000000000000 0x317 build/stm32f0xx_hal_exti.o
.debug_str 0x0000000000000000 0x474 build/stm32f0xx_hal_exti.o
.comment 0x0000000000000000 0x80 build/stm32f0xx_hal_exti.o
.debug_frame 0x0000000000000000 0xd4 build/stm32f0xx_hal_exti.o
.ARM.attributes
0x0000000000000000 0x31 build/stm32f0xx_hal_exti.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_tim.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_tim.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_tim.o
.debug_info 0x0000000000000000 0x14d build/stm32f0xx_hal_tim.o
.debug_abbrev 0x0000000000000000 0x8f build/stm32f0xx_hal_tim.o
.debug_aranges
0x0000000000000000 0x18 build/stm32f0xx_hal_tim.o
.debug_line 0x0000000000000000 0x164 build/stm32f0xx_hal_tim.o
.debug_str 0x0000000000000000 0x258 build/stm32f0xx_hal_tim.o
.comment 0x0000000000000000 0x80 build/stm32f0xx_hal_tim.o
.ARM.attributes
0x0000000000000000 0x31 build/stm32f0xx_hal_tim.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_tim_ex.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_tim_ex.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_tim_ex.o
.debug_info 0x0000000000000000 0x14d build/stm32f0xx_hal_tim_ex.o
.debug_abbrev 0x0000000000000000 0x8f build/stm32f0xx_hal_tim_ex.o
.debug_aranges
0x0000000000000000 0x18 build/stm32f0xx_hal_tim_ex.o
.debug_line 0x0000000000000000 0x164 build/stm32f0xx_hal_tim_ex.o
.debug_str 0x0000000000000000 0x25b build/stm32f0xx_hal_tim_ex.o
.comment 0x0000000000000000 0x80 build/stm32f0xx_hal_tim_ex.o
.ARM.attributes
0x0000000000000000 0x31 build/stm32f0xx_hal_tim_ex.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_pcd.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_pcd.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_MspInit
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_MspDeInit
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_Stop
0x0000000000000000 0x2e build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_DeInit
0x0000000000000000 0x28 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_DataOutStageCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_DataInStageCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_SetupStageCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_SOFCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_ResetCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_SuspendCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_ResumeCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_ISOOUTIncompleteCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_ISOINIncompleteCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_ConnectCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_DisconnectCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_DevConnect
0x0000000000000000 0x28 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_DevDisconnect
0x0000000000000000 0x28 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_EP_Flush
0x0000000000000000 0x4 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_ActivateRemoteWakeup
0x0000000000000000 0xa build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_DeActivateRemoteWakeup
0x0000000000000000 0xa build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_GetState
0x0000000000000000 0xc build/stm32f0xx_hal_pcd.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_pcd_ex.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_pcd_ex.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_pcd_ex.o
.text.HAL_PCDEx_ActivateBCD
0x0000000000000000 0x30 build/stm32f0xx_hal_pcd_ex.o
.text.HAL_PCDEx_DeActivateBCD
0x0000000000000000 0x18 build/stm32f0xx_hal_pcd_ex.o
.text.HAL_PCDEx_DeActivateLPM
0x0000000000000000 0x20 build/stm32f0xx_hal_pcd_ex.o
.text.HAL_PCDEx_BCD_Callback
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd_ex.o
.text.HAL_PCDEx_BCD_VBUSDetect
0x0000000000000000 0xb6 build/stm32f0xx_hal_pcd_ex.o
.text 0x0000000000000000 0x0 build/usbd_conf.o
.data 0x0000000000000000 0x0 build/usbd_conf.o
.bss 0x0000000000000000 0x0 build/usbd_conf.o
.text.HAL_PCD_MspDeInit
0x0000000000000000 0x14 build/usbd_conf.o
.text.HAL_PCD_ISOOUTIncompleteCallback
0x0000000000000000 0xe build/usbd_conf.o
.text.HAL_PCD_ISOINIncompleteCallback
0x0000000000000000 0xe build/usbd_conf.o
.text.HAL_PCD_ConnectCallback
0x0000000000000000 0xe build/usbd_conf.o
.text.HAL_PCD_DisconnectCallback
0x0000000000000000 0xe build/usbd_conf.o
.text.USBD_LL_DeInit
0x0000000000000000 0x10 build/usbd_conf.o
.text.USBD_LL_Stop
0x0000000000000000 0x10 build/usbd_conf.o
.text.USBD_LL_FlushEP
0x0000000000000000 0x10 build/usbd_conf.o
.text.USBD_LL_Delay
0x0000000000000000 0x8 build/usbd_conf.o
.text 0x0000000000000000 0x0 build/usbd_desc.o
.data 0x0000000000000000 0x0 build/usbd_desc.o
.bss 0x0000000000000000 0x0 build/usbd_desc.o
.text 0x0000000000000000 0x0 build/usbd_cdc_interface.o
.data 0x0000000000000000 0x0 build/usbd_cdc_interface.o
.bss 0x0000000000000000 0x0 build/usbd_cdc_interface.o
.data.LineCoding
0x0000000000000000 0x8 build/usbd_cdc_interface.o
.text 0x0000000000000000 0x0 build/usbd_core.o
.data 0x0000000000000000 0x0 build/usbd_core.o
.bss 0x0000000000000000 0x0 build/usbd_core.o
.text.USBD_DeInit
0x0000000000000000 0x26 build/usbd_core.o
.text.USBD_Stop
0x0000000000000000 0x1a build/usbd_core.o
.text.USBD_RunTestMode
0x0000000000000000 0x4 build/usbd_core.o
.text.USBD_LL_Suspend
0x0000000000000000 0x16 build/usbd_core.o
.text.USBD_LL_Resume
0x0000000000000000 0xe build/usbd_core.o
.text.USBD_LL_IsoINIncomplete
0x0000000000000000 0x4 build/usbd_core.o
.text.USBD_LL_IsoOUTIncomplete
0x0000000000000000 0x4 build/usbd_core.o
.text.USBD_LL_DevConnected
0x0000000000000000 0x4 build/usbd_core.o
.text.USBD_LL_DevDisconnected
0x0000000000000000 0x18 build/usbd_core.o
.text 0x0000000000000000 0x0 build/usbd_ctlreq.o
.data 0x0000000000000000 0x0 build/usbd_ctlreq.o
.bss 0x0000000000000000 0x0 build/usbd_ctlreq.o
.text 0x0000000000000000 0x0 build/usbd_ioreq.o
.data 0x0000000000000000 0x0 build/usbd_ioreq.o
.bss 0x0000000000000000 0x0 build/usbd_ioreq.o
.text.USBD_GetRxCount
0x0000000000000000 0xa build/usbd_ioreq.o
.text 0x0000000000000000 0x0 build/usbd_cdc.o
.data 0x0000000000000000 0x0 build/usbd_cdc.o
.bss 0x0000000000000000 0x0 build/usbd_cdc.o
.text.USBD_CDC_ReceivePacket
0x0000000000000000 0x3e build/usbd_cdc.o
.text 0x0000000000000000 0x0 build/system_stm32f0xx.o
.data 0x0000000000000000 0x0 build/system_stm32f0xx.o
.bss 0x0000000000000000 0x0 build/system_stm32f0xx.o
.text.SystemCoreClockUpdate
0x0000000000000000 0xac build/system_stm32f0xx.o
.rodata.APBPrescTable
0x0000000000000000 0x8 build/system_stm32f0xx.o
.text 0x0000000000000000 0x14 build/startup_stm32f072xb.o
.data 0x0000000000000000 0x0 build/startup_stm32f072xb.o
.bss 0x0000000000000000 0x0 build/startup_stm32f072xb.o
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
.text.exit 0x0000000000000000 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
.debug_frame 0x0000000000000000 0x28 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
.ARM.attributes
0x0000000000000000 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
.rodata._global_impure_ptr
0x0000000000000000 0x4 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-init.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-init.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-init.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memset.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memset.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memset.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sprintf.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sprintf.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sprintf.o)
.text._sprintf_r
0x0000000000000000 0x38 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sprintf.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o)
.text.__ssprint_r
0x0000000000000000 0xfc /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-vfprintf_i.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-vfprintf_i.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-vfprintf_i.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memchr-stub.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memchr-stub.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memchr-stub.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memcpy-stub.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memcpy-stub.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memcpy-stub.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memmove.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memmove.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memmove.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-freer.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-freer.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-freer.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-mallocr.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-mallocr.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-mallocr.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-reallocr.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-reallocr.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-reallocr.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sbrkr.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sbrkr.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sbrkr.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-mlock.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-mlock.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-mlock.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-msizer.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-msizer.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-msizer.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-reent.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-reent.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-reent.o)
.text.cleanup_glue
0x0000000000000000 0x1a /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-reent.o)
.text._reclaim_reent
0x0000000000000000 0xcc /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-reent.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(sbrk.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(sbrk.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(sbrk.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(_exit.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(_exit.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(_exit.o)
.text._exit 0x0000000000000000 0x4 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(_exit.o)
.debug_frame 0x0000000000000000 0x20 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(_exit.o)
.ARM.attributes
0x0000000000000000 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(_exit.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a(_udivsi3.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a(_udivsi3.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a(_dvmd_tls.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a(_dvmd_tls.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtend.o
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtend.o
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtend.o
.eh_frame 0x0000000000000000 0x4 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtend.o
.ARM.attributes
0x0000000000000000 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtend.o
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtn.o
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtn.o
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtn.o
Memory Configuration
Name Origin Length Attributes
RAM 0x0000000020000000 0x0000000000004000 xrw
FLASH 0x0000000008000000 0x0000000000020000 xr
*default* 0x0000000000000000 0xffffffffffffffff
Linker script and memory map
LOAD /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crti.o
LOAD /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtbegin.o
LOAD /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
LOAD build/main.o
LOAD build/stm32f0xx_it.o
LOAD build/stm32f0xx_hal_msp.o
LOAD build/stm32f0xx_ll_usb.o
LOAD build/stm32f0xx_hal_adc.o
LOAD build/stm32f0xx_hal_adc_ex.o
LOAD build/stm32f0xx_hal_rcc.o
LOAD build/stm32f0xx_hal_rcc_ex.o
LOAD build/stm32f0xx_hal.o
LOAD build/stm32f0xx_hal_i2c.o
LOAD build/stm32f0xx_hal_i2c_ex.o
LOAD build/stm32f0xx_hal_gpio.o
LOAD build/stm32f0xx_hal_dma.o
LOAD build/stm32f0xx_hal_cortex.o
LOAD build/stm32f0xx_hal_pwr.o
LOAD build/stm32f0xx_hal_pwr_ex.o
LOAD build/stm32f0xx_hal_flash.o
LOAD build/stm32f0xx_hal_flash_ex.o
LOAD build/stm32f0xx_hal_exti.o
LOAD build/stm32f0xx_hal_tim.o
LOAD build/stm32f0xx_hal_tim_ex.o
LOAD build/stm32f0xx_hal_pcd.o
LOAD build/stm32f0xx_hal_pcd_ex.o
LOAD build/usbd_conf.o
LOAD build/usbd_desc.o
LOAD build/usbd_cdc_interface.o
LOAD build/usbd_core.o
LOAD build/usbd_ctlreq.o
LOAD build/usbd_ioreq.o
LOAD build/usbd_cdc.o
LOAD build/system_stm32f0xx.o
LOAD build/startup_stm32f072xb.o
LOAD /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a
LOAD /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libm.a
LOAD /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a
START GROUP
LOAD /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a
LOAD /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a
END GROUP
START GROUP
LOAD /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a
LOAD /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a
END GROUP
LOAD /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtend.o
LOAD /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtn.o
0x0000000020004000 _estack = 0x20004000
0x0000000000000200 _Min_Heap_Size = 0x200
0x0000000000000400 _Min_Stack_Size = 0x400
.isr_vector 0x0000000008000000 0xc0
0x0000000008000000 . = ALIGN (0x4)
*(.isr_vector)
.isr_vector 0x0000000008000000 0xc0 build/startup_stm32f072xb.o
0x0000000008000000 g_pfnVectors
0x00000000080000c0 . = ALIGN (0x4)
.text 0x00000000080000c0 0x4110
0x00000000080000c0 . = ALIGN (0x4)
*(.text)
.text 0x00000000080000c0 0x48 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtbegin.o
.text 0x0000000008000108 0x114 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a(_udivsi3.o)
0x0000000008000108 __udivsi3
0x0000000008000108 __aeabi_uidiv
0x0000000008000214 __aeabi_uidivmod
.text 0x000000000800021c 0x4 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a(_dvmd_tls.o)
0x000000000800021c __aeabi_ldiv0
0x000000000800021c __aeabi_idiv0
*(.text*)
.text.MX_GPIO_Init
0x0000000008000220 0x64 build/main.o
.text.MX_DMA_Init
0x0000000008000284 0x30 build/main.o
.text.MX_ADC_Init
0x00000000080002b4 0xb0 build/main.o
.text.SystemClock_Config
0x0000000008000364 0x5e build/main.o
0x0000000008000364 SystemClock_Config
*fill* 0x00000000080003c2 0x2
.text.main 0x00000000080003c4 0xe8 build/main.o
0x00000000080003c4 main
.text.Error_Handler
0x00000000080004ac 0x30 build/main.o
0x00000000080004ac Error_Handler
.text.NMI_Handler
0x00000000080004dc 0x2 build/stm32f0xx_it.o
0x00000000080004dc NMI_Handler
*fill* 0x00000000080004de 0x2
.text.HardFault_Handler
0x00000000080004e0 0x30 build/stm32f0xx_it.o
0x00000000080004e0 HardFault_Handler
.text.SVC_Handler
0x0000000008000510 0x2 build/stm32f0xx_it.o
0x0000000008000510 SVC_Handler
.text.PendSV_Handler
0x0000000008000512 0x2 build/stm32f0xx_it.o
0x0000000008000512 PendSV_Handler
.text.SysTick_Handler
0x0000000008000514 0x8 build/stm32f0xx_it.o
0x0000000008000514 SysTick_Handler
.text.DMA1_Channel1_IRQHandler
0x000000000800051c 0x10 build/stm32f0xx_it.o
0x000000000800051c DMA1_Channel1_IRQHandler
.text.USB_IRQHandler
0x000000000800052c 0x10 build/stm32f0xx_it.o
0x000000000800052c USB_IRQHandler
.text.HAL_MspInit
0x000000000800053c 0x30 build/stm32f0xx_hal_msp.o
0x000000000800053c HAL_MspInit
.text.HAL_ADC_MspInit
0x000000000800056c 0xc4 build/stm32f0xx_hal_msp.o
0x000000000800056c HAL_ADC_MspInit
.text.USB_EnableGlobalInt
0x0000000008000630 0x14 build/stm32f0xx_ll_usb.o
0x0000000008000630 USB_EnableGlobalInt
.text.USB_DisableGlobalInt
0x0000000008000644 0x14 build/stm32f0xx_ll_usb.o
0x0000000008000644 USB_DisableGlobalInt
.text.USB_DevInit
0x0000000008000658 0x2a build/stm32f0xx_ll_usb.o
0x0000000008000658 USB_DevInit
*fill* 0x0000000008000682 0x2
.text.USB_ActivateEndpoint
0x0000000008000684 0x300 build/stm32f0xx_ll_usb.o
0x0000000008000684 USB_ActivateEndpoint
.text.USB_DeactivateEndpoint
0x0000000008000984 0x170 build/stm32f0xx_ll_usb.o
0x0000000008000984 USB_DeactivateEndpoint
.text.USB_EPSetStall
0x0000000008000af4 0x4c build/stm32f0xx_ll_usb.o
0x0000000008000af4 USB_EPSetStall
.text.USB_EPClearStall
0x0000000008000b40 0x98 build/stm32f0xx_ll_usb.o
0x0000000008000b40 USB_EPClearStall
.text.USB_SetDevAddress
0x0000000008000bd8 0xe build/stm32f0xx_ll_usb.o
0x0000000008000bd8 USB_SetDevAddress
*fill* 0x0000000008000be6 0x2
.text.USB_DevConnect
0x0000000008000be8 0x14 build/stm32f0xx_ll_usb.o
0x0000000008000be8 USB_DevConnect
.text.USB_ReadInterrupts
0x0000000008000bfc 0x8 build/stm32f0xx_ll_usb.o
0x0000000008000bfc USB_ReadInterrupts
.text.USB_EP0_OutStart
0x0000000008000c04 0x4 build/stm32f0xx_ll_usb.o
0x0000000008000c04 USB_EP0_OutStart
.text.USB_WritePMA
0x0000000008000c08 0x28 build/stm32f0xx_ll_usb.o
0x0000000008000c08 USB_WritePMA
.text.USB_EPStartXfer
0x0000000008000c30 0x2d8 build/stm32f0xx_ll_usb.o
0x0000000008000c30 USB_EPStartXfer
.text.USB_ReadPMA
0x0000000008000f08 0x2e build/stm32f0xx_ll_usb.o
0x0000000008000f08 USB_ReadPMA
*fill* 0x0000000008000f36 0x2
.text.ADC_Enable
0x0000000008000f38 0xa8 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_Init
0x0000000008000fe0 0x17c build/stm32f0xx_hal_adc.o
0x0000000008000fe0 HAL_ADC_Init
.text.HAL_ADC_Start_DMA
0x000000000800115c 0xa8 build/stm32f0xx_hal_adc.o
0x000000000800115c HAL_ADC_Start_DMA
.text.HAL_ADC_ConvCpltCallback
0x0000000008001204 0x2 build/stm32f0xx_hal_adc.o
0x0000000008001204 HAL_ADC_ConvCpltCallback
*fill* 0x0000000008001206 0x2
.text.ADC_DMAConvCplt
0x0000000008001208 0x70 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_ConvHalfCpltCallback
0x0000000008001278 0x2 build/stm32f0xx_hal_adc.o
0x0000000008001278 HAL_ADC_ConvHalfCpltCallback
.text.ADC_DMAHalfConvCplt
0x000000000800127a 0xa build/stm32f0xx_hal_adc.o
.text.HAL_ADC_ErrorCallback
0x0000000008001284 0x2 build/stm32f0xx_hal_adc.o
0x0000000008001284 HAL_ADC_ErrorCallback
.text.ADC_DMAError
0x0000000008001286 0x1a build/stm32f0xx_hal_adc.o
.text.HAL_ADC_ConfigChannel
0x00000000080012a0 0x14c build/stm32f0xx_hal_adc.o
0x00000000080012a0 HAL_ADC_ConfigChannel
.text.HAL_RCC_OscConfig
0x00000000080013ec 0x540 build/stm32f0xx_hal_rcc.o
0x00000000080013ec HAL_RCC_OscConfig
.text.HAL_RCC_GetSysClockFreq
0x000000000800192c 0x94 build/stm32f0xx_hal_rcc.o
0x000000000800192c HAL_RCC_GetSysClockFreq
.text.HAL_RCC_ClockConfig
0x00000000080019c0 0x140 build/stm32f0xx_hal_rcc.o
0x00000000080019c0 HAL_RCC_ClockConfig
.text.HAL_RCCEx_PeriphCLKConfig
0x0000000008001b00 0x158 build/stm32f0xx_hal_rcc_ex.o
0x0000000008001b00 HAL_RCCEx_PeriphCLKConfig
.text.HAL_InitTick
0x0000000008001c58 0x50 build/stm32f0xx_hal.o
0x0000000008001c58 HAL_InitTick
.text.HAL_Init
0x0000000008001ca8 0x20 build/stm32f0xx_hal.o
0x0000000008001ca8 HAL_Init
.text.HAL_IncTick
0x0000000008001cc8 0x18 build/stm32f0xx_hal.o
0x0000000008001cc8 HAL_IncTick
.text.HAL_GetTick
0x0000000008001ce0 0xc build/stm32f0xx_hal.o
0x0000000008001ce0 HAL_GetTick
.text.HAL_Delay
0x0000000008001cec 0x24 build/stm32f0xx_hal.o
0x0000000008001cec HAL_Delay
.text.HAL_GPIO_Init
0x0000000008001d10 0x198 build/stm32f0xx_hal_gpio.o
0x0000000008001d10 HAL_GPIO_Init
.text.HAL_GPIO_WritePin
0x0000000008001ea8 0xc build/stm32f0xx_hal_gpio.o
0x0000000008001ea8 HAL_GPIO_WritePin
.text.DMA_SetConfig
0x0000000008001eb4 0x2a build/stm32f0xx_hal_dma.o
*fill* 0x0000000008001ede 0x2
.text.DMA_CalcBaseAndBitshift
0x0000000008001ee0 0x28 build/stm32f0xx_hal_dma.o
.text.HAL_DMA_Init
0x0000000008001f08 0x50 build/stm32f0xx_hal_dma.o
0x0000000008001f08 HAL_DMA_Init
.text.HAL_DMA_Start_IT
0x0000000008001f58 0x76 build/stm32f0xx_hal_dma.o
0x0000000008001f58 HAL_DMA_Start_IT
.text.HAL_DMA_IRQHandler
0x0000000008001fce 0xaa build/stm32f0xx_hal_dma.o
0x0000000008001fce HAL_DMA_IRQHandler
.text.HAL_NVIC_SetPriority
0x0000000008002078 0x64 build/stm32f0xx_hal_cortex.o
0x0000000008002078 HAL_NVIC_SetPriority
.text.HAL_NVIC_EnableIRQ
0x00000000080020dc 0x18 build/stm32f0xx_hal_cortex.o
0x00000000080020dc HAL_NVIC_EnableIRQ
.text.HAL_SYSTICK_Config
0x00000000080020f4 0x38 build/stm32f0xx_hal_cortex.o
0x00000000080020f4 HAL_SYSTICK_Config
.text.HAL_PCD_Init
0x000000000800212c 0xd4 build/stm32f0xx_hal_pcd.o
0x000000000800212c HAL_PCD_Init
.text.HAL_PCD_Start
0x0000000008002200 0x2e build/stm32f0xx_hal_pcd.o
0x0000000008002200 HAL_PCD_Start
.text.HAL_PCD_SetAddress
0x000000000800222e 0x2c build/stm32f0xx_hal_pcd.o
0x000000000800222e HAL_PCD_SetAddress
.text.HAL_PCD_EP_Open
0x000000000800225a 0x7a build/stm32f0xx_hal_pcd.o
0x000000000800225a HAL_PCD_EP_Open
.text.HAL_PCD_EP_Close
0x00000000080022d4 0x64 build/stm32f0xx_hal_pcd.o
0x00000000080022d4 HAL_PCD_EP_Close
.text.HAL_PCD_EP_Receive
0x0000000008002338 0x4c build/stm32f0xx_hal_pcd.o
0x0000000008002338 HAL_PCD_EP_Receive
.text.HAL_PCD_EP_GetRxCount
0x0000000008002384 0x10 build/stm32f0xx_hal_pcd.o
0x0000000008002384 HAL_PCD_EP_GetRxCount
.text.HAL_PCD_EP_Transmit
0x0000000008002394 0x40 build/stm32f0xx_hal_pcd.o
0x0000000008002394 HAL_PCD_EP_Transmit
.text.PCD_EP_ISR_Handler
0x00000000080023d4 0x39c build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_IRQHandler
0x0000000008002770 0x1ac build/stm32f0xx_hal_pcd.o
0x0000000008002770 HAL_PCD_IRQHandler
.text.HAL_PCD_EP_SetStall
0x000000000800291c 0x7e build/stm32f0xx_hal_pcd.o
0x000000000800291c HAL_PCD_EP_SetStall
.text.HAL_PCD_EP_ClrStall
0x000000000800299a 0x76 build/stm32f0xx_hal_pcd.o
0x000000000800299a HAL_PCD_EP_ClrStall
.text.HAL_PCDEx_PMAConfig
0x0000000008002a10 0x32 build/stm32f0xx_hal_pcd_ex.o
0x0000000008002a10 HAL_PCDEx_PMAConfig
.text.HAL_PCDEx_ActivateLPM
0x0000000008002a42 0x26 build/stm32f0xx_hal_pcd_ex.o
0x0000000008002a42 HAL_PCDEx_ActivateLPM
.text.HAL_PCDEx_LPM_Callback
0x0000000008002a68 0x2 build/stm32f0xx_hal_pcd_ex.o
0x0000000008002a68 HAL_PCDEx_LPM_Callback
*fill* 0x0000000008002a6a 0x2
.text.HAL_PCD_MspInit
0x0000000008002a6c 0x60 build/usbd_conf.o
0x0000000008002a6c HAL_PCD_MspInit
.text.HAL_PCD_SetupStageCallback
0x0000000008002acc 0x16 build/usbd_conf.o
0x0000000008002acc HAL_PCD_SetupStageCallback
.text.HAL_PCD_DataOutStageCallback
0x0000000008002ae2 0x1a build/usbd_conf.o
0x0000000008002ae2 HAL_PCD_DataOutStageCallback
.text.HAL_PCD_DataInStageCallback
0x0000000008002afc 0x16 build/usbd_conf.o
0x0000000008002afc HAL_PCD_DataInStageCallback
.text.HAL_PCD_SOFCallback
0x0000000008002b12 0xe build/usbd_conf.o
0x0000000008002b12 HAL_PCD_SOFCallback
.text.HAL_PCD_ResetCallback
0x0000000008002b20 0x18 build/usbd_conf.o
0x0000000008002b20 HAL_PCD_ResetCallback
.text.HAL_PCD_SuspendCallback
0x0000000008002b38 0x2 build/usbd_conf.o
0x0000000008002b38 HAL_PCD_SuspendCallback
.text.HAL_PCD_ResumeCallback
0x0000000008002b3a 0x2 build/usbd_conf.o
0x0000000008002b3a HAL_PCD_ResumeCallback
.text.USBD_LL_Init
0x0000000008002b3c 0x74 build/usbd_conf.o
0x0000000008002b3c USBD_LL_Init
.text.USBD_LL_Start
0x0000000008002bb0 0x10 build/usbd_conf.o
0x0000000008002bb0 USBD_LL_Start
.text.USBD_LL_OpenEP
0x0000000008002bc0 0x16 build/usbd_conf.o
0x0000000008002bc0 USBD_LL_OpenEP
.text.USBD_LL_CloseEP
0x0000000008002bd6 0x10 build/usbd_conf.o
0x0000000008002bd6 USBD_LL_CloseEP
.text.USBD_LL_StallEP
0x0000000008002be6 0x10 build/usbd_conf.o
0x0000000008002be6 USBD_LL_StallEP
.text.USBD_LL_ClearStallEP
0x0000000008002bf6 0x10 build/usbd_conf.o
0x0000000008002bf6 USBD_LL_ClearStallEP
.text.USBD_LL_IsStallEP
0x0000000008002c06 0x2c build/usbd_conf.o
0x0000000008002c06 USBD_LL_IsStallEP
.text.USBD_LL_SetUSBAddress
0x0000000008002c32 0x10 build/usbd_conf.o
0x0000000008002c32 USBD_LL_SetUSBAddress
.text.USBD_LL_Transmit
0x0000000008002c42 0x10 build/usbd_conf.o
0x0000000008002c42 USBD_LL_Transmit
.text.USBD_LL_PrepareReceive
0x0000000008002c52 0x10 build/usbd_conf.o
0x0000000008002c52 USBD_LL_PrepareReceive
.text.USBD_LL_GetRxDataSize
0x0000000008002c62 0xe build/usbd_conf.o
0x0000000008002c62 USBD_LL_GetRxDataSize
.text.USBD_static_malloc
0x0000000008002c70 0x8 build/usbd_conf.o
0x0000000008002c70 USBD_static_malloc
.text.USBD_static_free
0x0000000008002c78 0x2 build/usbd_conf.o
0x0000000008002c78 USBD_static_free
*fill* 0x0000000008002c7a 0x2
.text.USBD_VCP_DeviceDescriptor
0x0000000008002c7c 0xc build/usbd_desc.o
0x0000000008002c7c USBD_VCP_DeviceDescriptor
.text.USBD_VCP_LangIDStrDescriptor
0x0000000008002c88 0xc build/usbd_desc.o
0x0000000008002c88 USBD_VCP_LangIDStrDescriptor
.text.IntToUnicode
0x0000000008002c94 0x30 build/usbd_desc.o
.text.Get_SerialNum
0x0000000008002cc4 0x40 build/usbd_desc.o
.text.USBD_VCP_SerialStrDescriptor
0x0000000008002d04 0x14 build/usbd_desc.o
0x0000000008002d04 USBD_VCP_SerialStrDescriptor
.text.USBD_VCP_ProductStrDescriptor
0x0000000008002d18 0x1c build/usbd_desc.o
0x0000000008002d18 USBD_VCP_ProductStrDescriptor
.text.USBD_VCP_ManufacturerStrDescriptor
0x0000000008002d34 0x1c build/usbd_desc.o
0x0000000008002d34 USBD_VCP_ManufacturerStrDescriptor
.text.USBD_VCP_ConfigStrDescriptor
0x0000000008002d50 0x1c build/usbd_desc.o
0x0000000008002d50 USBD_VCP_ConfigStrDescriptor
.text.USBD_VCP_InterfaceStrDescriptor
0x0000000008002d6c 0x1c build/usbd_desc.o
0x0000000008002d6c USBD_VCP_InterfaceStrDescriptor
.text.CDC_Itf_DeInit
0x0000000008002d88 0x2 build/usbd_cdc_interface.o
.text.CDC_Itf_Control
0x0000000008002d8a 0x2 build/usbd_cdc_interface.o
.text.CDC_Itf_Receive
0x0000000008002d8c 0x2 build/usbd_cdc_interface.o
*fill* 0x0000000008002d8e 0x2
.text.CDC_Itf_Init
0x0000000008002d90 0x28 build/usbd_cdc_interface.o
.text.USBD_Init
0x0000000008002db8 0x38 build/usbd_core.o
0x0000000008002db8 USBD_Init
.text.USBD_RegisterClass
0x0000000008002df0 0x12 build/usbd_core.o
0x0000000008002df0 USBD_RegisterClass
.text.USBD_Start
0x0000000008002e02 0xa build/usbd_core.o
0x0000000008002e02 USBD_Start
.text.USBD_SetClassConfig
0x0000000008002e0c 0x20 build/usbd_core.o
0x0000000008002e0c USBD_SetClassConfig
.text.USBD_ClrClassConfig
0x0000000008002e2c 0x10 build/usbd_core.o
0x0000000008002e2c USBD_ClrClassConfig
.text.USBD_LL_SetupStage
0x0000000008002e3c 0x68 build/usbd_core.o
0x0000000008002e3c USBD_LL_SetupStage
.text.USBD_LL_DataOutStage
0x0000000008002ea4 0x78 build/usbd_core.o
0x0000000008002ea4 USBD_LL_DataOutStage
.text.USBD_LL_DataInStage
0x0000000008002f1c 0xc2 build/usbd_core.o
0x0000000008002f1c USBD_LL_DataInStage
.text.USBD_LL_Reset
0x0000000008002fde 0x46 build/usbd_core.o
0x0000000008002fde USBD_LL_Reset
.text.USBD_LL_SetSpeed
0x0000000008003024 0x6 build/usbd_core.o
0x0000000008003024 USBD_LL_SetSpeed
.text.USBD_LL_SOF
0x000000000800302a 0x20 build/usbd_core.o
0x000000000800302a USBD_LL_SOF
.text.USBD_GetLen
0x000000000800304a 0x14 build/usbd_ctlreq.o
.text.USBD_SetFeature
0x000000000800305e 0x22 build/usbd_ctlreq.o
.text.USBD_ParseSetupRequest
0x0000000008003080 0x28 build/usbd_ctlreq.o
0x0000000008003080 USBD_ParseSetupRequest
.text.USBD_CtlError
0x00000000080030a8 0x14 build/usbd_ctlreq.o
0x00000000080030a8 USBD_CtlError
.text.USBD_GetDescriptor
0x00000000080030bc 0x15c build/usbd_ctlreq.o
.text.USBD_SetAddress
0x0000000008003218 0x58 build/usbd_ctlreq.o
.text.USBD_SetConfig
0x0000000008003270 0xb0 build/usbd_ctlreq.o
.text.USBD_GetConfig
0x0000000008003320 0x3c build/usbd_ctlreq.o
.text.USBD_GetStatus
0x000000000800335c 0x34 build/usbd_ctlreq.o
.text.USBD_ClrFeature
0x0000000008003390 0x36 build/usbd_ctlreq.o
*fill* 0x00000000080033c6 0x2
.text.USBD_StdDevReq
0x00000000080033c8 0x48 build/usbd_ctlreq.o
0x00000000080033c8 USBD_StdDevReq
.text.USBD_StdItfReq
0x0000000008003410 0x3e build/usbd_ctlreq.o
0x0000000008003410 USBD_StdItfReq
.text.USBD_StdEPReq
0x000000000800344e 0x138 build/usbd_ctlreq.o
0x000000000800344e USBD_StdEPReq
.text.USBD_GetString
0x0000000008003586 0x3c build/usbd_ctlreq.o
0x0000000008003586 USBD_GetString
.text.USBD_CtlSendData
0x00000000080035c2 0x1c build/usbd_ioreq.o
0x00000000080035c2 USBD_CtlSendData
.text.USBD_CtlContinueSendData
0x00000000080035de 0x10 build/usbd_ioreq.o
0x00000000080035de USBD_CtlContinueSendData
.text.USBD_CtlPrepareRx
0x00000000080035ee 0x20 build/usbd_ioreq.o
0x00000000080035ee USBD_CtlPrepareRx
.text.USBD_CtlContinueRx
0x000000000800360e 0x10 build/usbd_ioreq.o
0x000000000800360e USBD_CtlContinueRx
.text.USBD_CtlSendStatus
0x000000000800361e 0x18 build/usbd_ioreq.o
0x000000000800361e USBD_CtlSendStatus
.text.USBD_CtlReceiveStatus
0x0000000008003636 0x18 build/usbd_ioreq.o
0x0000000008003636 USBD_CtlReceiveStatus
.text.USBD_CDC_DataIn
0x000000000800364e 0x1a build/usbd_cdc.o
.text.USBD_CDC_EP0_RxReady
0x0000000008003668 0x34 build/usbd_cdc.o
.text.USBD_CDC_GetFSCfgDesc
0x000000000800369c 0xc build/usbd_cdc.o
.text.USBD_CDC_GetHSCfgDesc
0x00000000080036a8 0xc build/usbd_cdc.o
.text.USBD_CDC_GetOtherSpeedCfgDesc
0x00000000080036b4 0xc build/usbd_cdc.o
.text.USBD_CDC_GetDeviceQualifierDescriptor
0x00000000080036c0 0xc build/usbd_cdc.o
0x00000000080036c0 USBD_CDC_GetDeviceQualifierDescriptor
.text.USBD_CDC_DataOut
0x00000000080036cc 0x36 build/usbd_cdc.o
*fill* 0x0000000008003702 0x2
.text.USBD_CDC_Setup
0x0000000008003704 0x84 build/usbd_cdc.o
.text.USBD_CDC_DeInit
0x0000000008003788 0x40 build/usbd_cdc.o
.text.USBD_CDC_Init
0x00000000080037c8 0xa4 build/usbd_cdc.o
.text.USBD_CDC_RegisterInterface
0x000000000800386c 0x12 build/usbd_cdc.o
0x000000000800386c USBD_CDC_RegisterInterface
.text.USBD_CDC_SetTxBuffer
0x000000000800387e 0x16 build/usbd_cdc.o
0x000000000800387e USBD_CDC_SetTxBuffer
.text.USBD_CDC_SetRxBuffer
0x0000000008003894 0xe build/usbd_cdc.o
0x0000000008003894 USBD_CDC_SetRxBuffer
.text.USBD_CDC_TransmitPacket
0x00000000080038a2 0x3a build/usbd_cdc.o
0x00000000080038a2 USBD_CDC_TransmitPacket
.text.SystemInit
0x00000000080038dc 0x2 build/system_stm32f0xx.o
0x00000000080038dc SystemInit
*fill* 0x00000000080038de 0x2
.text.Reset_Handler
0x00000000080038e0 0x50 build/startup_stm32f072xb.o
0x00000000080038e0 Reset_Handler
.text.Default_Handler
0x0000000008003930 0x2 build/startup_stm32f072xb.o
0x0000000008003930 TIM1_CC_IRQHandler
0x0000000008003930 TSC_IRQHandler
0x0000000008003930 ADC1_COMP_IRQHandler
0x0000000008003930 I2C1_IRQHandler
0x0000000008003930 RCC_CRS_IRQHandler
0x0000000008003930 SPI1_IRQHandler
0x0000000008003930 TIM6_DAC_IRQHandler
0x0000000008003930 USART3_4_IRQHandler
0x0000000008003930 EXTI2_3_IRQHandler
0x0000000008003930 I2C2_IRQHandler
0x0000000008003930 TIM17_IRQHandler
0x0000000008003930 CEC_CAN_IRQHandler
0x0000000008003930 RTC_IRQHandler
0x0000000008003930 PVD_VDDIO2_IRQHandler
0x0000000008003930 DMA1_Channel4_5_6_7_IRQHandler
0x0000000008003930 TIM16_IRQHandler
0x0000000008003930 TIM3_IRQHandler
0x0000000008003930 EXTI4_15_IRQHandler
0x0000000008003930 Default_Handler
0x0000000008003930 TIM14_IRQHandler
0x0000000008003930 TIM7_IRQHandler
0x0000000008003930 TIM15_IRQHandler
0x0000000008003930 EXTI0_1_IRQHandler
0x0000000008003930 SPI2_IRQHandler
0x0000000008003930 WWDG_IRQHandler
0x0000000008003930 TIM2_IRQHandler
0x0000000008003930 DMA1_Channel2_3_IRQHandler
0x0000000008003930 USART2_IRQHandler
0x0000000008003930 FLASH_IRQHandler
0x0000000008003930 USART1_IRQHandler
0x0000000008003930 TIM1_BRK_UP_TRG_COM_IRQHandler
*fill* 0x0000000008003932 0x2
.text.__libc_init_array
0x0000000008003934 0x48 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-init.o)
0x0000000008003934 __libc_init_array
.text.memset 0x000000000800397c 0x10 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memset.o)
0x000000000800397c memset
.text.sprintf 0x000000000800398c 0x40 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sprintf.o)
0x000000000800398c sprintf
0x000000000800398c siprintf
.text.__ssputs_r
0x00000000080039cc 0xc4 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o)
0x00000000080039cc __ssputs_r
.text._svfprintf_r
0x0000000008003a90 0x1fc /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o)
0x0000000008003a90 _svfprintf_r
0x0000000008003a90 _svfiprintf_r
.text._printf_common
0x0000000008003c8c 0xda /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-vfprintf_i.o)
0x0000000008003c8c _printf_common
*fill* 0x0000000008003d66 0x2
.text._printf_i
0x0000000008003d68 0x210 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-vfprintf_i.o)
0x0000000008003d68 _printf_i
.text.memchr 0x0000000008003f78 0x16 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memchr-stub.o)
0x0000000008003f78 memchr
.text.memcpy 0x0000000008003f8e 0x12 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memcpy-stub.o)
0x0000000008003f8e memcpy
.text.memmove 0x0000000008003fa0 0x26 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memmove.o)
0x0000000008003fa0 memmove
*fill* 0x0000000008003fc6 0x2
.text._free_r 0x0000000008003fc8 0x94 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-freer.o)
0x0000000008003fc8 _free_r
.text._malloc_r
0x000000000800405c 0xbc /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-mallocr.o)
0x000000000800405c _malloc_r
.text._realloc_r
0x0000000008004118 0x4c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-reallocr.o)
0x0000000008004118 _realloc_r
.text._sbrk_r 0x0000000008004164 0x24 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sbrkr.o)
0x0000000008004164 _sbrk_r
.text.__malloc_lock
0x0000000008004188 0x2 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-mlock.o)
0x0000000008004188 __malloc_lock
.text.__malloc_unlock
0x000000000800418a 0x2 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-mlock.o)
0x000000000800418a __malloc_unlock
.text._malloc_usable_size_r
0x000000000800418c 0x10 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-msizer.o)
0x000000000800418c _malloc_usable_size_r
.text._sbrk 0x000000000800419c 0x1c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(sbrk.o)
0x000000000800419c _sbrk
*(.glue_7)
.glue_7 0x00000000080041b8 0x0 linker stubs
*(.glue_7t)
.glue_7t 0x00000000080041b8 0x0 linker stubs
*(.eh_frame)
.eh_frame 0x00000000080041b8 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtbegin.o
*(.init)
.init 0x00000000080041b8 0x4 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crti.o
0x00000000080041b8 _init
.init 0x00000000080041bc 0x8 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtn.o
*(.fini)
.fini 0x00000000080041c4 0x4 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crti.o
0x00000000080041c4 _fini
.fini 0x00000000080041c8 0x8 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtn.o
0x00000000080041d0 . = ALIGN (0x4)
0x00000000080041d0 _etext = .
.vfp11_veneer 0x00000000080041d0 0x0
.vfp11_veneer 0x00000000080041d0 0x0 linker stubs
.v4_bx 0x00000000080041d0 0x0
.v4_bx 0x00000000080041d0 0x0 linker stubs
.iplt 0x00000000080041d0 0x0
.iplt 0x00000000080041d0 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtbegin.o
.rodata 0x00000000080041d0 0x128
0x00000000080041d0 . = ALIGN (0x4)
*(.rodata)
.rodata 0x00000000080041d0 0x20 build/stm32f0xx_hal_rcc.o
*(.rodata*)
.rodata.main.str1.4
0x00000000080041f0 0x29 build/main.o
*fill* 0x0000000008004219 0x3
.rodata.USBD_LangIDDesc
0x000000000800421c 0x4 build/usbd_desc.o
0x000000000800421c USBD_LangIDDesc
.rodata.USBD_VCP_ConfigStrDescriptor.str1.4
0x0000000008004220 0x4 build/usbd_desc.o
.rodata.USBD_VCP_InterfaceStrDescriptor.str1.4
0x0000000008004224 0x3 build/usbd_desc.o
*fill* 0x0000000008004227 0x1
.rodata.USBD_VCP_ManufacturerStrDescriptor.str1.4
0x0000000008004228 0xb build/usbd_desc.o
*fill* 0x0000000008004233 0x1
.rodata.USBD_VCP_ProductStrDescriptor.str1.4
0x0000000008004234 0xc build/usbd_desc.o
0x9 (size before relaxing)
.rodata.hUSBDDeviceDesc
0x0000000008004240 0x12 build/usbd_desc.o
0x0000000008004240 hUSBDDeviceDesc
*fill* 0x0000000008004252 0x2
.rodata.USBD_GetDescriptor
0x0000000008004254 0x38 build/usbd_ctlreq.o
.rodata.USBD_StdDevReq
0x000000000800428c 0x28 build/usbd_ctlreq.o
.rodata.AHBPrescTable
0x00000000080042b4 0x10 build/system_stm32f0xx.o
0x00000000080042b4 AHBPrescTable
.rodata._svfprintf_r.str1.1
0x00000000080042c4 0x11 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o)
.rodata._printf_i.str1.1
0x00000000080042d5 0x22 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-vfprintf_i.o)
0x00000000080042f8 . = ALIGN (0x4)
*fill* 0x00000000080042f7 0x1
.rel.dyn 0x00000000080042f8 0x0
.rel.iplt 0x00000000080042f8 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtbegin.o
.ARM.extab
*(.ARM.extab* .gnu.linkonce.armextab.*)
.ARM 0x00000000080042f8 0x0
0x00000000080042f8 __exidx_start = .
*(.ARM.exidx*)
0x00000000080042f8 __exidx_end = .
.preinit_array 0x00000000080042f8 0x0
0x00000000080042f8 PROVIDE (__preinit_array_start = .)
*(.preinit_array*)
0x00000000080042f8 PROVIDE (__preinit_array_end = .)
.init_array 0x00000000080042f8 0x4
0x00000000080042f8 PROVIDE (__init_array_start = .)
*(SORT_BY_NAME(.init_array.*))
*(.init_array*)
.init_array 0x00000000080042f8 0x4 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtbegin.o
0x00000000080042fc PROVIDE (__init_array_end = .)
.fini_array 0x00000000080042fc 0x4
[!provide] PROVIDE (__fini_array_start = .)
*(SORT_BY_NAME(.fini_array.*))
*(.fini_array*)
.fini_array 0x00000000080042fc 0x4 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtbegin.o
[!provide] PROVIDE (__fini_array_end = .)
0x0000000008004300 _sidata = LOADADDR (.data)
.data 0x0000000020000000 0x1c8 load address 0x0000000008004300
0x0000000020000000 . = ALIGN (0x4)
0x0000000020000000 _sdata = .
*(.data)
*(.data*)
.data.uwTickFreq
0x0000000020000000 0x1 build/stm32f0xx_hal.o
0x0000000020000000 uwTickFreq
*fill* 0x0000000020000001 0x3
.data.uwTickPrio
0x0000000020000004 0x4 build/stm32f0xx_hal.o
0x0000000020000004 uwTickPrio
.data.USBD_StringSerial
0x0000000020000008 0x1a build/usbd_desc.o
0x0000000020000008 USBD_StringSerial
*fill* 0x0000000020000022 0x2
.data.VCP_Desc
0x0000000020000024 0x1c build/usbd_desc.o
0x0000000020000024 VCP_Desc
.data.USBD_CDC_fops
0x0000000020000040 0x10 build/usbd_cdc_interface.o
0x0000000020000040 USBD_CDC_fops
.data.USBD_CDC
0x0000000020000050 0x38 build/usbd_cdc.o
0x0000000020000050 USBD_CDC
.data.USBD_CDC_CfgFSDesc
0x0000000020000088 0x43 build/usbd_cdc.o
0x0000000020000088 USBD_CDC_CfgFSDesc
*fill* 0x00000000200000cb 0x1
.data.USBD_CDC_CfgHSDesc
0x00000000200000cc 0x43 build/usbd_cdc.o
0x00000000200000cc USBD_CDC_CfgHSDesc
*fill* 0x000000002000010f 0x1
.data.USBD_CDC_DeviceQualifierDesc
0x0000000020000110 0xa build/usbd_cdc.o
*fill* 0x000000002000011a 0x2
.data.USBD_CDC_OtherSpeedCfgDesc
0x000000002000011c 0x43 build/usbd_cdc.o
0x000000002000011c USBD_CDC_OtherSpeedCfgDesc
*fill* 0x000000002000015f 0x1
.data.SystemCoreClock
0x0000000020000160 0x4 build/system_stm32f0xx.o
0x0000000020000160 SystemCoreClock
.data._impure_ptr
0x0000000020000164 0x4 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
0x0000000020000164 _impure_ptr
.data.impure_data
0x0000000020000168 0x60 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
0x00000000200001c8 . = ALIGN (0x4)
0x00000000200001c8 _edata = .
.igot.plt 0x00000000200001c8 0x0 load address 0x00000000080044c8
.igot.plt 0x00000000200001c8 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtbegin.o
0x00000000200001c8 . = ALIGN (0x4)
.bss 0x00000000200001c8 0xf58 load address 0x00000000080044c8
0x00000000200001c8 _sbss = .
0x00000000200001c8 __bss_start__ = _sbss
*(.bss)
.bss 0x00000000200001c8 0x1c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtbegin.o
*(.bss*)
.bss.mem.7910 0x00000000200001e4 0x230 build/usbd_conf.o
.bss.cfgidx.7846
0x0000000020000414 0x1 build/usbd_ctlreq.o
.bss.ifalt.7841
0x0000000020000415 0x1 build/usbd_cdc.o
*fill* 0x0000000020000416 0x2
.bss.__malloc_free_list
0x0000000020000418 0x4 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-mallocr.o)
0x0000000020000418 __malloc_free_list
.bss.__malloc_sbrk_start
0x000000002000041c 0x4 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-mallocr.o)
0x000000002000041c __malloc_sbrk_start
.bss.heap_end.4102
0x0000000020000420 0x4 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(sbrk.o)
*(COMMON)
COMMON 0x0000000020000424 0x980 build/main.o
0x0000000020000424 USBD_Device
0x0000000020000698 UserTxBuffer
0x0000000020000898 sendDataUSB
0x000000002000089c UserRxBuffer
0x0000000020000a9c hdma_adc
0x0000000020000ae0 hpcd_USB_FS
0x0000000020000d54 ADCval
0x0000000020000d64 hadc
COMMON 0x0000000020000da4 0x4 build/stm32f0xx_hal.o
0x0000000020000da4 uwTick
COMMON 0x0000000020000da8 0x274 build/usbd_conf.o
0x0000000020000da8 hpcd
COMMON 0x000000002000101c 0x100 build/usbd_desc.o
0x000000002000101c USBD_StrDesc
COMMON 0x000000002000111c 0x4 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-reent.o)
0x000000002000111c errno
0x0000000020001120 . = ALIGN (0x4)
0x0000000020001120 _ebss = .
0x0000000020001120 __bss_end__ = _ebss
._user_heap_stack
0x0000000020001120 0x600 load address 0x00000000080044c8
0x0000000020001120 . = ALIGN (0x8)
0x0000000020001120 PROVIDE (end = .)
[!provide] PROVIDE (_end = .)
0x0000000020001320 . = (. + _Min_Heap_Size)
*fill* 0x0000000020001120 0x200
0x0000000020001720 . = (. + _Min_Stack_Size)
*fill* 0x0000000020001320 0x400
0x0000000020001720 . = ALIGN (0x8)
/DISCARD/
libc.a(*)
libm.a(*)
libgcc.a(*)
.ARM.attributes
0x0000000000000000 0x28
*(.ARM.attributes)
.ARM.attributes
0x0000000000000000 0x1e /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crti.o
.ARM.attributes
0x000000000000001e 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtbegin.o
.ARM.attributes
0x000000000000004a 0x31 build/main.o
.ARM.attributes
0x000000000000007b 0x31 build/stm32f0xx_it.o
.ARM.attributes
0x00000000000000ac 0x31 build/stm32f0xx_hal_msp.o
.ARM.attributes
0x00000000000000dd 0x31 build/stm32f0xx_ll_usb.o
.ARM.attributes
0x000000000000010e 0x31 build/stm32f0xx_hal_adc.o
.ARM.attributes
0x000000000000013f 0x31 build/stm32f0xx_hal_rcc.o
.ARM.attributes
0x0000000000000170 0x31 build/stm32f0xx_hal_rcc_ex.o
.ARM.attributes
0x00000000000001a1 0x31 build/stm32f0xx_hal.o
.ARM.attributes
0x00000000000001d2 0x31 build/stm32f0xx_hal_gpio.o
.ARM.attributes
0x0000000000000203 0x31 build/stm32f0xx_hal_dma.o
.ARM.attributes
0x0000000000000234 0x31 build/stm32f0xx_hal_cortex.o
.ARM.attributes
0x0000000000000265 0x31 build/stm32f0xx_hal_pcd.o
.ARM.attributes
0x0000000000000296 0x31 build/stm32f0xx_hal_pcd_ex.o
.ARM.attributes
0x00000000000002c7 0x31 build/usbd_conf.o
.ARM.attributes
0x00000000000002f8 0x31 build/usbd_desc.o
.ARM.attributes
0x0000000000000329 0x31 build/usbd_cdc_interface.o
.ARM.attributes
0x000000000000035a 0x31 build/usbd_core.o
.ARM.attributes
0x000000000000038b 0x31 build/usbd_ctlreq.o
.ARM.attributes
0x00000000000003bc 0x31 build/usbd_ioreq.o
.ARM.attributes
0x00000000000003ed 0x31 build/usbd_cdc.o
.ARM.attributes
0x000000000000041e 0x31 build/system_stm32f0xx.o
.ARM.attributes
0x000000000000044f 0x21 build/startup_stm32f072xb.o
.ARM.attributes
0x0000000000000470 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
.ARM.attributes
0x000000000000049c 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-init.o)
.ARM.attributes
0x00000000000004c8 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memset.o)
.ARM.attributes
0x00000000000004f4 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sprintf.o)
.ARM.attributes
0x0000000000000520 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o)
.ARM.attributes
0x000000000000054c 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-vfprintf_i.o)
.ARM.attributes
0x0000000000000578 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memchr-stub.o)
.ARM.attributes
0x00000000000005a4 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memcpy-stub.o)
.ARM.attributes
0x00000000000005d0 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memmove.o)
.ARM.attributes
0x00000000000005fc 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-freer.o)
.ARM.attributes
0x0000000000000628 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-mallocr.o)
.ARM.attributes
0x0000000000000654 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-reallocr.o)
.ARM.attributes
0x0000000000000680 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sbrkr.o)
.ARM.attributes
0x00000000000006ac 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-mlock.o)
.ARM.attributes
0x00000000000006d8 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-msizer.o)
.ARM.attributes
0x0000000000000704 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-reent.o)
.ARM.attributes
0x0000000000000730 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(sbrk.o)
.ARM.attributes
0x000000000000075c 0x1e /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a(_udivsi3.o)
.ARM.attributes
0x000000000000077a 0x1e /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a(_dvmd_tls.o)
.ARM.attributes
0x0000000000000798 0x1e /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtn.o
OUTPUT(build/midi-dials.elf elf32-littlearm)
.debug_info 0x0000000000000000 0x16c86
.debug_info 0x0000000000000000 0x2502 build/main.o
.debug_info 0x0000000000002502 0x1915 build/stm32f0xx_it.o
.debug_info 0x0000000000003e17 0x186b build/stm32f0xx_hal_msp.o
.debug_info 0x0000000000005682 0x16b5 build/stm32f0xx_ll_usb.o
.debug_info 0x0000000000006d37 0xfdf build/stm32f0xx_hal_adc.o
.debug_info 0x0000000000007d16 0xade build/stm32f0xx_hal_rcc.o
.debug_info 0x00000000000087f4 0x7c3 build/stm32f0xx_hal_rcc_ex.o
.debug_info 0x0000000000008fb7 0x7f4 build/stm32f0xx_hal.o
.debug_info 0x00000000000097ab 0x703 build/stm32f0xx_hal_gpio.o
.debug_info 0x0000000000009eae 0x8ea build/stm32f0xx_hal_dma.o
.debug_info 0x000000000000a798 0x8b7 build/stm32f0xx_hal_cortex.o
.debug_info 0x000000000000b04f 0x13e4 build/stm32f0xx_hal_pcd.o
.debug_info 0x000000000000c433 0xa73 build/stm32f0xx_hal_pcd_ex.o
.debug_info 0x000000000000cea6 0x226f build/usbd_conf.o
.debug_info 0x000000000000f115 0xefa build/usbd_desc.o
.debug_info 0x000000000001000f 0x1154 build/usbd_cdc_interface.o
.debug_info 0x0000000000011163 0x16b2 build/usbd_core.o
.debug_info 0x0000000000012815 0x187f build/usbd_ctlreq.o
.debug_info 0x0000000000014094 0x1189 build/usbd_ioreq.o
.debug_info 0x000000000001521d 0x1774 build/usbd_cdc.o
.debug_info 0x0000000000016991 0x2d3 build/system_stm32f0xx.o
.debug_info 0x0000000000016c64 0x22 build/startup_stm32f072xb.o
.debug_abbrev 0x0000000000000000 0x3444
.debug_abbrev 0x0000000000000000 0x2ac build/main.o
.debug_abbrev 0x00000000000002ac 0x246 build/stm32f0xx_it.o
.debug_abbrev 0x00000000000004f2 0x26f build/stm32f0xx_hal_msp.o
.debug_abbrev 0x0000000000000761 0x303 build/stm32f0xx_ll_usb.o
.debug_abbrev 0x0000000000000a64 0x28c build/stm32f0xx_hal_adc.o
.debug_abbrev 0x0000000000000cf0 0x269 build/stm32f0xx_hal_rcc.o
.debug_abbrev 0x0000000000000f59 0x208 build/stm32f0xx_hal_rcc_ex.o
.debug_abbrev 0x0000000000001161 0x209 build/stm32f0xx_hal.o
.debug_abbrev 0x000000000000136a 0x213 build/stm32f0xx_hal_gpio.o
.debug_abbrev 0x000000000000157d 0x252 build/stm32f0xx_hal_dma.o
.debug_abbrev 0x00000000000017cf 0x279 build/stm32f0xx_hal_cortex.o
.debug_abbrev 0x0000000000001a48 0x2c8 build/stm32f0xx_hal_pcd.o
.debug_abbrev 0x0000000000001d10 0x256 build/stm32f0xx_hal_pcd_ex.o
.debug_abbrev 0x0000000000001f66 0x35f build/usbd_conf.o
.debug_abbrev 0x00000000000022c5 0x28e build/usbd_desc.o
.debug_abbrev 0x0000000000002553 0x282 build/usbd_cdc_interface.o
.debug_abbrev 0x00000000000027d5 0x2e2 build/usbd_core.o
.debug_abbrev 0x0000000000002ab7 0x325 build/usbd_ctlreq.o
.debug_abbrev 0x0000000000002ddc 0x1f7 build/usbd_ioreq.o
.debug_abbrev 0x0000000000002fd3 0x335 build/usbd_cdc.o
.debug_abbrev 0x0000000000003308 0x12a build/system_stm32f0xx.o
.debug_abbrev 0x0000000000003432 0x12 build/startup_stm32f072xb.o
.debug_loc 0x0000000000000000 0x81ba
.debug_loc 0x0000000000000000 0x109 build/main.o
.debug_loc 0x0000000000000109 0x80 build/stm32f0xx_it.o
.debug_loc 0x0000000000000189 0xe5 build/stm32f0xx_hal_msp.o
.debug_loc 0x000000000000026e 0x1233 build/stm32f0xx_ll_usb.o
.debug_loc 0x00000000000014a1 0xec0 build/stm32f0xx_hal_adc.o
.debug_loc 0x0000000000002361 0x61b build/stm32f0xx_hal_rcc.o
.debug_loc 0x000000000000297c 0x857 build/stm32f0xx_hal_rcc_ex.o
.debug_loc 0x00000000000031d3 0x1bb build/stm32f0xx_hal.o
.debug_loc 0x000000000000338e 0x3e1 build/stm32f0xx_hal_gpio.o
.debug_loc 0x000000000000376f 0x973 build/stm32f0xx_hal_dma.o
.debug_loc 0x00000000000040e2 0x3f7 build/stm32f0xx_hal_cortex.o
.debug_loc 0x00000000000044d9 0xd92 build/stm32f0xx_hal_pcd.o
.debug_loc 0x000000000000526b 0x20b build/stm32f0xx_hal_pcd_ex.o
.debug_loc 0x0000000000005476 0x997 build/usbd_conf.o
.debug_loc 0x0000000000005e0d 0x33a build/usbd_desc.o
.debug_loc 0x0000000000006147 0x62 build/usbd_cdc_interface.o
.debug_loc 0x00000000000061a9 0x8c4 build/usbd_core.o
.debug_loc 0x0000000000006a6d 0xc9d build/usbd_ctlreq.o
.debug_loc 0x000000000000770a 0x31c build/usbd_ioreq.o
.debug_loc 0x0000000000007a26 0x649 build/usbd_cdc.o
.debug_loc 0x000000000000806f 0x14b build/system_stm32f0xx.o
.debug_aranges 0x0000000000000000 0xb70
.debug_aranges
0x0000000000000000 0x48 build/main.o
.debug_aranges
0x0000000000000048 0x50 build/stm32f0xx_it.o
.debug_aranges
0x0000000000000098 0x30 build/stm32f0xx_hal_msp.o
.debug_aranges
0x00000000000000c8 0x108 build/stm32f0xx_ll_usb.o
.debug_aranges
0x00000000000001d0 0xf8 build/stm32f0xx_hal_adc.o
.debug_aranges
0x00000000000002c8 0x80 build/stm32f0xx_hal_rcc.o
.debug_aranges
0x0000000000000348 0x78 build/stm32f0xx_hal_rcc_ex.o
.debug_aranges
0x00000000000003c0 0xd0 build/stm32f0xx_hal.o
.debug_aranges
0x0000000000000490 0x58 build/stm32f0xx_hal_gpio.o
.debug_aranges
0x00000000000004e8 0x88 build/stm32f0xx_hal_dma.o
.debug_aranges
0x0000000000000570 0x78 build/stm32f0xx_hal_cortex.o
.debug_aranges
0x00000000000005e8 0x120 build/stm32f0xx_hal_pcd.o
.debug_aranges
0x0000000000000708 0x58 build/stm32f0xx_hal_pcd_ex.o
.debug_aranges
0x0000000000000760 0x108 build/usbd_conf.o
.debug_aranges
0x0000000000000868 0x60 build/usbd_desc.o
.debug_aranges
0x00000000000008c8 0x38 build/usbd_cdc_interface.o
.debug_aranges
0x0000000000000900 0xb8 build/usbd_core.o
.debug_aranges
0x00000000000009b8 0x88 build/usbd_ctlreq.o
.debug_aranges
0x0000000000000a40 0x50 build/usbd_ioreq.o
.debug_aranges
0x0000000000000a90 0x90 build/usbd_cdc.o
.debug_aranges
0x0000000000000b20 0x28 build/system_stm32f0xx.o
.debug_aranges
0x0000000000000b48 0x28 build/startup_stm32f072xb.o
.debug_ranges 0x0000000000000000 0xbf8
.debug_ranges 0x0000000000000000 0x38 build/main.o
.debug_ranges 0x0000000000000038 0x40 build/stm32f0xx_it.o
.debug_ranges 0x0000000000000078 0x20 build/stm32f0xx_hal_msp.o
.debug_ranges 0x0000000000000098 0x218 build/stm32f0xx_ll_usb.o
.debug_ranges 0x00000000000002b0 0xe8 build/stm32f0xx_hal_adc.o
.debug_ranges 0x0000000000000398 0x88 build/stm32f0xx_hal_rcc.o
.debug_ranges 0x0000000000000420 0x80 build/stm32f0xx_hal_rcc_ex.o
.debug_ranges 0x00000000000004a0 0xc0 build/stm32f0xx_hal.o
.debug_ranges 0x0000000000000560 0x48 build/stm32f0xx_hal_gpio.o
.debug_ranges 0x00000000000005a8 0x78 build/stm32f0xx_hal_dma.o
.debug_ranges 0x0000000000000620 0xc8 build/stm32f0xx_hal_cortex.o
.debug_ranges 0x00000000000006e8 0x140 build/stm32f0xx_hal_pcd.o
.debug_ranges 0x0000000000000828 0x48 build/stm32f0xx_hal_pcd_ex.o
.debug_ranges 0x0000000000000870 0xf8 build/usbd_conf.o
.debug_ranges 0x0000000000000968 0x50 build/usbd_desc.o
.debug_ranges 0x00000000000009b8 0x28 build/usbd_cdc_interface.o
.debug_ranges 0x00000000000009e0 0xa8 build/usbd_core.o
.debug_ranges 0x0000000000000a88 0x78 build/usbd_ctlreq.o
.debug_ranges 0x0000000000000b00 0x40 build/usbd_ioreq.o
.debug_ranges 0x0000000000000b40 0x80 build/usbd_cdc.o
.debug_ranges 0x0000000000000bc0 0x18 build/system_stm32f0xx.o
.debug_ranges 0x0000000000000bd8 0x20 build/startup_stm32f072xb.o
.debug_line 0x0000000000000000 0x5e2c
.debug_line 0x0000000000000000 0x512 build/main.o
.debug_line 0x0000000000000512 0x426 build/stm32f0xx_it.o
.debug_line 0x0000000000000938 0x410 build/stm32f0xx_hal_msp.o
.debug_line 0x0000000000000d48 0x68a build/stm32f0xx_ll_usb.o
.debug_line 0x00000000000013d2 0x762 build/stm32f0xx_hal_adc.o
.debug_line 0x0000000000001b34 0x4e6 build/stm32f0xx_hal_rcc.o
.debug_line 0x000000000000201a 0x468 build/stm32f0xx_hal_rcc_ex.o
.debug_line 0x0000000000002482 0x3bb build/stm32f0xx_hal.o
.debug_line 0x000000000000283d 0x33c build/stm32f0xx_hal_gpio.o
.debug_line 0x0000000000002b79 0x43d build/stm32f0xx_hal_dma.o
.debug_line 0x0000000000002fb6 0x372 build/stm32f0xx_hal_cortex.o
.debug_line 0x0000000000003328 0x6d2 build/stm32f0xx_hal_pcd.o
.debug_line 0x00000000000039fa 0x2bb build/stm32f0xx_hal_pcd_ex.o
.debug_line 0x0000000000003cb5 0x5f5 build/usbd_conf.o
.debug_line 0x00000000000042aa 0x38e build/usbd_desc.o
.debug_line 0x0000000000004638 0x35d build/usbd_cdc_interface.o
.debug_line 0x0000000000004995 0x500 build/usbd_core.o
.debug_line 0x0000000000004e95 0x512 build/usbd_ctlreq.o
.debug_line 0x00000000000053a7 0x366 build/usbd_ioreq.o
.debug_line 0x000000000000570d 0x4da build/usbd_cdc.o
.debug_line 0x0000000000005be7 0x1ce build/system_stm32f0xx.o
.debug_line 0x0000000000005db5 0x77 build/startup_stm32f072xb.o
.debug_str 0x0000000000000000 0x374d
.debug_str 0x0000000000000000 0x15a3 build/main.o
0x170e (size before relaxing)
.debug_str 0x00000000000015a3 0xbb build/stm32f0xx_it.o
0x1001 (size before relaxing)
.debug_str 0x000000000000165e 0x98 build/stm32f0xx_hal_msp.o
0xf01 (size before relaxing)
.debug_str 0x00000000000016f6 0x367 build/stm32f0xx_ll_usb.o
0x7c8 (size before relaxing)
.debug_str 0x0000000000001a5d 0x2f7 build/stm32f0xx_hal_adc.o
0x971 (size before relaxing)
.debug_str 0x0000000000001d54 0x204 build/stm32f0xx_hal_rcc.o
0x6b6 (size before relaxing)
.debug_str 0x0000000000001f58 0x297 build/stm32f0xx_hal_rcc_ex.o
0x6ae (size before relaxing)
.debug_str 0x00000000000021ef 0x1db build/stm32f0xx_hal.o
0x70a (size before relaxing)
.debug_str 0x00000000000023ca 0x108 build/stm32f0xx_hal_gpio.o
0x4a1 (size before relaxing)
.debug_str 0x00000000000024d2 0x201 build/stm32f0xx_hal_dma.o
0x6b6 (size before relaxing)
.debug_str 0x00000000000026d3 0x24d build/stm32f0xx_hal_cortex.o
0x6f4 (size before relaxing)
.debug_str 0x0000000000002920 0x358 build/stm32f0xx_hal_pcd.o
0xacf (size before relaxing)
.debug_str 0x0000000000002c78 0x191 build/stm32f0xx_hal_pcd_ex.o
0x7f8 (size before relaxing)
.debug_str 0x0000000000002e09 0x23a build/usbd_conf.o
0x14ff (size before relaxing)
.debug_str 0x0000000000003043 0x175 build/usbd_desc.o
0x8c0 (size before relaxing)
.debug_str 0x00000000000031b8 0xb3 build/usbd_cdc_interface.o
0xb18 (size before relaxing)
.debug_str 0x000000000000326b 0x15d build/usbd_core.o
0xc9e (size before relaxing)
.debug_str 0x00000000000033c8 0xe2 build/usbd_ctlreq.o
0xbb8 (size before relaxing)
.debug_str 0x00000000000034aa 0x60 build/usbd_ioreq.o
0xae5 (size before relaxing)
.debug_str 0x000000000000350a 0x1e7 build/usbd_cdc.o
0xd2d (size before relaxing)
.debug_str 0x00000000000036f1 0x38 build/system_stm32f0xx.o
0x2cd (size before relaxing)
.debug_str 0x0000000000003729 0x24 build/startup_stm32f072xb.o
0x4e (size before relaxing)
.comment 0x0000000000000000 0x7f
.comment 0x0000000000000000 0x7f build/main.o
0x80 (size before relaxing)
.comment 0x000000000000007f 0x80 build/stm32f0xx_it.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_hal_msp.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_ll_usb.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_hal_adc.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_hal_rcc.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_hal_rcc_ex.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_hal.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_hal_gpio.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_hal_dma.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_hal_cortex.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_hal_pcd.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_hal_pcd_ex.o
.comment 0x000000000000007f 0x80 build/usbd_conf.o
.comment 0x000000000000007f 0x80 build/usbd_desc.o
.comment 0x000000000000007f 0x80 build/usbd_cdc_interface.o
.comment 0x000000000000007f 0x80 build/usbd_core.o
.comment 0x000000000000007f 0x80 build/usbd_ctlreq.o
.comment 0x000000000000007f 0x80 build/usbd_ioreq.o
.comment 0x000000000000007f 0x80 build/usbd_cdc.o
.comment 0x000000000000007f 0x80 build/system_stm32f0xx.o
.debug_frame 0x0000000000000000 0x2054
.debug_frame 0x0000000000000000 0xdc build/main.o
.debug_frame 0x00000000000000dc 0xb4 build/stm32f0xx_it.o
.debug_frame 0x0000000000000190 0x60 build/stm32f0xx_hal_msp.o
.debug_frame 0x00000000000001f0 0x254 build/stm32f0xx_ll_usb.o
.debug_frame 0x0000000000000444 0x2f8 build/stm32f0xx_hal_adc.o
.debug_frame 0x000000000000073c 0x15c build/stm32f0xx_hal_rcc.o
.debug_frame 0x0000000000000898 0x10c build/stm32f0xx_hal_rcc_ex.o
.debug_frame 0x00000000000009a4 0x1c0 build/stm32f0xx_hal.o
.debug_frame 0x0000000000000b64 0xd8 build/stm32f0xx_hal_gpio.o
.debug_frame 0x0000000000000c3c 0x198 build/stm32f0xx_hal_dma.o
.debug_frame 0x0000000000000dd4 0xec build/stm32f0xx_hal_cortex.o
.debug_frame 0x0000000000000ec0 0x330 build/stm32f0xx_hal_pcd.o
.debug_frame 0x00000000000011f0 0xac build/stm32f0xx_hal_pcd_ex.o
.debug_frame 0x000000000000129c 0x314 build/usbd_conf.o
.debug_frame 0x00000000000015b0 0xf8 build/usbd_desc.o
.debug_frame 0x00000000000016a8 0x5c build/usbd_cdc_interface.o
.debug_frame 0x0000000000001704 0x1ec build/usbd_core.o
.debug_frame 0x00000000000018f0 0x198 build/usbd_ctlreq.o
.debug_frame 0x0000000000001a88 0xd4 build/usbd_ioreq.o
.debug_frame 0x0000000000001b5c 0x164 build/usbd_cdc.o
.debug_frame 0x0000000000001cc0 0x3c build/system_stm32f0xx.o
.debug_frame 0x0000000000001cfc 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-init.o)
.debug_frame 0x0000000000001d28 0x20 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memset.o)
.debug_frame 0x0000000000001d48 0x48 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sprintf.o)
.debug_frame 0x0000000000001d90 0x74 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o)
.debug_frame 0x0000000000001e04 0x54 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-vfprintf_i.o)
.debug_frame 0x0000000000001e58 0x20 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memchr-stub.o)
.debug_frame 0x0000000000001e78 0x28 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memcpy-stub.o)
.debug_frame 0x0000000000001ea0 0x28 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memmove.o)
.debug_frame 0x0000000000001ec8 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-freer.o)
.debug_frame 0x0000000000001ef4 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-mallocr.o)
.debug_frame 0x0000000000001f20 0x30 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-reallocr.o)
.debug_frame 0x0000000000001f50 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sbrkr.o)
.debug_frame 0x0000000000001f7c 0x30 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-mlock.o)
.debug_frame 0x0000000000001fac 0x20 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-msizer.o)
.debug_frame 0x0000000000001fcc 0x48 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-reent.o)
.debug_frame 0x0000000000002014 0x20 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(sbrk.o)
.debug_frame 0x0000000000002034 0x20 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a(_udivsi3.o)
Cross Reference Table
Symbol File
ADC1_COMP_IRQHandler build/startup_stm32f072xb.o
ADCval build/main.o
AHBPrescTable build/system_stm32f0xx.o
build/stm32f0xx_hal_rcc.o
APBPrescTable build/system_stm32f0xx.o
build/stm32f0xx_hal_rcc.o
CEC_CAN_IRQHandler build/startup_stm32f072xb.o
DMA1_Channel1_IRQHandler build/stm32f0xx_it.o
DMA1_Channel2_3_IRQHandler build/startup_stm32f072xb.o
DMA1_Channel4_5_6_7_IRQHandler build/startup_stm32f072xb.o
Default_Handler build/startup_stm32f072xb.o
EXTI0_1_IRQHandler build/startup_stm32f072xb.o
EXTI2_3_IRQHandler build/startup_stm32f072xb.o
EXTI4_15_IRQHandler build/startup_stm32f072xb.o
Error_Handler build/main.o
build/stm32f0xx_hal_msp.o
FLASH_IRQHandler build/startup_stm32f072xb.o
FLASH_PageErase build/stm32f0xx_hal_flash_ex.o
build/stm32f0xx_hal_flash.o
FLASH_WaitForLastOperation build/stm32f0xx_hal_flash.o
build/stm32f0xx_hal_flash_ex.o
HAL_ADCEx_Calibration_Start build/stm32f0xx_hal_adc_ex.o
HAL_ADC_AnalogWDGConfig build/stm32f0xx_hal_adc.o
HAL_ADC_ConfigChannel build/stm32f0xx_hal_adc.o
build/main.o
HAL_ADC_ConvCpltCallback build/stm32f0xx_hal_adc.o
HAL_ADC_ConvHalfCpltCallback build/stm32f0xx_hal_adc.o
HAL_ADC_DeInit build/stm32f0xx_hal_adc.o
HAL_ADC_ErrorCallback build/stm32f0xx_hal_adc.o
HAL_ADC_GetError build/stm32f0xx_hal_adc.o
HAL_ADC_GetState build/stm32f0xx_hal_adc.o
HAL_ADC_GetValue build/stm32f0xx_hal_adc.o
HAL_ADC_IRQHandler build/stm32f0xx_hal_adc.o
HAL_ADC_Init build/stm32f0xx_hal_adc.o
build/main.o
HAL_ADC_LevelOutOfWindowCallback build/stm32f0xx_hal_adc.o
HAL_ADC_MspDeInit build/stm32f0xx_hal_msp.o
HAL_ADC_MspInit build/stm32f0xx_hal_msp.o
HAL_ADC_PollForConversion build/stm32f0xx_hal_adc.o
HAL_ADC_PollForEvent build/stm32f0xx_hal_adc.o
HAL_ADC_Start build/stm32f0xx_hal_adc.o
HAL_ADC_Start_DMA build/stm32f0xx_hal_adc.o
build/main.o
HAL_ADC_Start_IT build/stm32f0xx_hal_adc.o
HAL_ADC_Stop build/stm32f0xx_hal_adc.o
HAL_ADC_Stop_DMA build/stm32f0xx_hal_adc.o
HAL_ADC_Stop_IT build/stm32f0xx_hal_adc.o
HAL_DBGMCU_DisableDBGStandbyMode build/stm32f0xx_hal.o
HAL_DBGMCU_DisableDBGStopMode build/stm32f0xx_hal.o
HAL_DBGMCU_EnableDBGStandbyMode build/stm32f0xx_hal.o
HAL_DBGMCU_EnableDBGStopMode build/stm32f0xx_hal.o
HAL_DMA_Abort build/stm32f0xx_hal_dma.o
build/stm32f0xx_hal_adc.o
HAL_DMA_Abort_IT build/stm32f0xx_hal_dma.o
build/stm32f0xx_hal_i2c.o
HAL_DMA_DeInit build/stm32f0xx_hal_dma.o
build/stm32f0xx_hal_msp.o
HAL_DMA_GetError build/stm32f0xx_hal_dma.o
HAL_DMA_GetState build/stm32f0xx_hal_dma.o
HAL_DMA_IRQHandler build/stm32f0xx_hal_dma.o
build/stm32f0xx_it.o
HAL_DMA_Init build/stm32f0xx_hal_dma.o
build/stm32f0xx_hal_msp.o
HAL_DMA_PollForTransfer build/stm32f0xx_hal_dma.o
HAL_DMA_RegisterCallback build/stm32f0xx_hal_dma.o
HAL_DMA_Start build/stm32f0xx_hal_dma.o
HAL_DMA_Start_IT build/stm32f0xx_hal_dma.o
build/stm32f0xx_hal_i2c.o
build/stm32f0xx_hal_adc.o
HAL_DMA_UnRegisterCallback build/stm32f0xx_hal_dma.o
HAL_DeInit build/stm32f0xx_hal.o
HAL_Delay build/stm32f0xx_hal.o
build/usbd_conf.o
build/stm32f0xx_hal_pcd_ex.o
build/stm32f0xx_it.o
build/main.o
HAL_EXTI_ClearConfigLine build/stm32f0xx_hal_exti.o
HAL_EXTI_ClearPending build/stm32f0xx_hal_exti.o
HAL_EXTI_GenerateSWI build/stm32f0xx_hal_exti.o
HAL_EXTI_GetConfigLine build/stm32f0xx_hal_exti.o
HAL_EXTI_GetHandle build/stm32f0xx_hal_exti.o
HAL_EXTI_GetPending build/stm32f0xx_hal_exti.o
HAL_EXTI_IRQHandler build/stm32f0xx_hal_exti.o
HAL_EXTI_RegisterCallback build/stm32f0xx_hal_exti.o
HAL_EXTI_SetConfigLine build/stm32f0xx_hal_exti.o
HAL_FLASHEx_Erase build/stm32f0xx_hal_flash_ex.o
HAL_FLASHEx_Erase_IT build/stm32f0xx_hal_flash_ex.o
HAL_FLASHEx_OBErase build/stm32f0xx_hal_flash_ex.o
HAL_FLASHEx_OBGetConfig build/stm32f0xx_hal_flash_ex.o
HAL_FLASHEx_OBGetUserData build/stm32f0xx_hal_flash_ex.o
HAL_FLASHEx_OBProgram build/stm32f0xx_hal_flash_ex.o
HAL_FLASH_EndOfOperationCallback build/stm32f0xx_hal_flash.o
HAL_FLASH_GetError build/stm32f0xx_hal_flash.o
HAL_FLASH_IRQHandler build/stm32f0xx_hal_flash.o
HAL_FLASH_Lock build/stm32f0xx_hal_flash.o
HAL_FLASH_OB_Launch build/stm32f0xx_hal_flash.o
HAL_FLASH_OB_Lock build/stm32f0xx_hal_flash.o
HAL_FLASH_OB_Unlock build/stm32f0xx_hal_flash.o
HAL_FLASH_OperationErrorCallback build/stm32f0xx_hal_flash.o
HAL_FLASH_Program build/stm32f0xx_hal_flash.o
HAL_FLASH_Program_IT build/stm32f0xx_hal_flash.o
HAL_FLASH_Unlock build/stm32f0xx_hal_flash.o
HAL_GPIO_DeInit build/stm32f0xx_hal_gpio.o
build/stm32f0xx_hal_msp.o
HAL_GPIO_EXTI_Callback build/stm32f0xx_hal_gpio.o
HAL_GPIO_EXTI_IRQHandler build/stm32f0xx_hal_gpio.o
HAL_GPIO_Init build/stm32f0xx_hal_gpio.o
build/usbd_conf.o
build/stm32f0xx_hal_rcc.o
build/stm32f0xx_hal_msp.o
build/main.o
HAL_GPIO_LockPin build/stm32f0xx_hal_gpio.o
HAL_GPIO_ReadPin build/stm32f0xx_hal_gpio.o
HAL_GPIO_TogglePin build/stm32f0xx_hal_gpio.o
HAL_GPIO_WritePin build/stm32f0xx_hal_gpio.o
build/stm32f0xx_it.o
build/main.o
HAL_GetDEVID build/stm32f0xx_hal.o
HAL_GetHalVersion build/stm32f0xx_hal.o
HAL_GetREVID build/stm32f0xx_hal.o
HAL_GetTick build/stm32f0xx_hal.o
build/stm32f0xx_hal_pcd_ex.o
build/stm32f0xx_hal_flash.o
build/stm32f0xx_hal_dma.o
build/stm32f0xx_hal_i2c.o
build/stm32f0xx_hal_rcc_ex.o
build/stm32f0xx_hal_rcc.o
build/stm32f0xx_hal_adc_ex.o
build/stm32f0xx_hal_adc.o
HAL_GetTickFreq build/stm32f0xx_hal.o
HAL_GetTickPrio build/stm32f0xx_hal.o
HAL_GetUIDw0 build/stm32f0xx_hal.o
HAL_GetUIDw1 build/stm32f0xx_hal.o
HAL_GetUIDw2 build/stm32f0xx_hal.o
HAL_I2CEx_ConfigAnalogFilter build/stm32f0xx_hal_i2c_ex.o
HAL_I2CEx_ConfigDigitalFilter build/stm32f0xx_hal_i2c_ex.o
HAL_I2CEx_DisableFastModePlus build/stm32f0xx_hal_i2c_ex.o
HAL_I2CEx_DisableWakeUp build/stm32f0xx_hal_i2c_ex.o
HAL_I2CEx_EnableFastModePlus build/stm32f0xx_hal_i2c_ex.o
HAL_I2CEx_EnableWakeUp build/stm32f0xx_hal_i2c_ex.o
HAL_I2C_AbortCpltCallback build/stm32f0xx_hal_i2c.o
HAL_I2C_AddrCallback build/stm32f0xx_hal_i2c.o
HAL_I2C_DeInit build/stm32f0xx_hal_i2c.o
HAL_I2C_DisableListen_IT build/stm32f0xx_hal_i2c.o
HAL_I2C_ER_IRQHandler build/stm32f0xx_hal_i2c.o
HAL_I2C_EV_IRQHandler build/stm32f0xx_hal_i2c.o
HAL_I2C_EnableListen_IT build/stm32f0xx_hal_i2c.o
HAL_I2C_ErrorCallback build/stm32f0xx_hal_i2c.o
HAL_I2C_GetError build/stm32f0xx_hal_i2c.o
HAL_I2C_GetMode build/stm32f0xx_hal_i2c.o
HAL_I2C_GetState build/stm32f0xx_hal_i2c.o
HAL_I2C_Init build/stm32f0xx_hal_i2c.o
HAL_I2C_IsDeviceReady build/stm32f0xx_hal_i2c.o
HAL_I2C_ListenCpltCallback build/stm32f0xx_hal_i2c.o
HAL_I2C_MasterRxCpltCallback build/stm32f0xx_hal_i2c.o
HAL_I2C_MasterTxCpltCallback build/stm32f0xx_hal_i2c.o
HAL_I2C_Master_Abort_IT build/stm32f0xx_hal_i2c.o
HAL_I2C_Master_Receive build/stm32f0xx_hal_i2c.o
HAL_I2C_Master_Receive_DMA build/stm32f0xx_hal_i2c.o
HAL_I2C_Master_Receive_IT build/stm32f0xx_hal_i2c.o
HAL_I2C_Master_Seq_Receive_DMA build/stm32f0xx_hal_i2c.o
HAL_I2C_Master_Seq_Receive_IT build/stm32f0xx_hal_i2c.o
HAL_I2C_Master_Seq_Transmit_DMA build/stm32f0xx_hal_i2c.o
HAL_I2C_Master_Seq_Transmit_IT build/stm32f0xx_hal_i2c.o
HAL_I2C_Master_Transmit build/stm32f0xx_hal_i2c.o
HAL_I2C_Master_Transmit_DMA build/stm32f0xx_hal_i2c.o
HAL_I2C_Master_Transmit_IT build/stm32f0xx_hal_i2c.o
HAL_I2C_MemRxCpltCallback build/stm32f0xx_hal_i2c.o
HAL_I2C_MemTxCpltCallback build/stm32f0xx_hal_i2c.o
HAL_I2C_Mem_Read build/stm32f0xx_hal_i2c.o
HAL_I2C_Mem_Read_DMA build/stm32f0xx_hal_i2c.o
HAL_I2C_Mem_Read_IT build/stm32f0xx_hal_i2c.o
HAL_I2C_Mem_Write build/stm32f0xx_hal_i2c.o
HAL_I2C_Mem_Write_DMA build/stm32f0xx_hal_i2c.o
HAL_I2C_Mem_Write_IT build/stm32f0xx_hal_i2c.o
HAL_I2C_MspDeInit build/stm32f0xx_hal_i2c.o
HAL_I2C_MspInit build/stm32f0xx_hal_i2c.o
HAL_I2C_SlaveRxCpltCallback build/stm32f0xx_hal_i2c.o
HAL_I2C_SlaveTxCpltCallback build/stm32f0xx_hal_i2c.o
HAL_I2C_Slave_Receive build/stm32f0xx_hal_i2c.o
HAL_I2C_Slave_Receive_DMA build/stm32f0xx_hal_i2c.o
HAL_I2C_Slave_Receive_IT build/stm32f0xx_hal_i2c.o
HAL_I2C_Slave_Seq_Receive_DMA build/stm32f0xx_hal_i2c.o
HAL_I2C_Slave_Seq_Receive_IT build/stm32f0xx_hal_i2c.o
HAL_I2C_Slave_Seq_Transmit_DMA build/stm32f0xx_hal_i2c.o
HAL_I2C_Slave_Seq_Transmit_IT build/stm32f0xx_hal_i2c.o
HAL_I2C_Slave_Transmit build/stm32f0xx_hal_i2c.o
HAL_I2C_Slave_Transmit_DMA build/stm32f0xx_hal_i2c.o
HAL_I2C_Slave_Transmit_IT build/stm32f0xx_hal_i2c.o
HAL_IncTick build/stm32f0xx_hal.o
build/stm32f0xx_it.o
HAL_Init build/stm32f0xx_hal.o
build/main.o
HAL_InitTick build/stm32f0xx_hal.o
build/stm32f0xx_hal_rcc.o
HAL_MspDeInit build/stm32f0xx_hal.o
HAL_MspInit build/stm32f0xx_hal_msp.o
HAL_NVIC_ClearPendingIRQ build/stm32f0xx_hal_cortex.o
HAL_NVIC_DisableIRQ build/stm32f0xx_hal_cortex.o
HAL_NVIC_EnableIRQ build/stm32f0xx_hal_cortex.o
build/usbd_conf.o
build/main.o
HAL_NVIC_GetPendingIRQ build/stm32f0xx_hal_cortex.o
HAL_NVIC_GetPriority build/stm32f0xx_hal_cortex.o
HAL_NVIC_SetPendingIRQ build/stm32f0xx_hal_cortex.o
HAL_NVIC_SetPriority build/stm32f0xx_hal_cortex.o
build/usbd_conf.o
build/stm32f0xx_hal.o
build/main.o
HAL_NVIC_SystemReset build/stm32f0xx_hal_cortex.o
HAL_PCDEx_ActivateBCD build/stm32f0xx_hal_pcd_ex.o
HAL_PCDEx_ActivateLPM build/stm32f0xx_hal_pcd_ex.o
build/stm32f0xx_hal_pcd.o
HAL_PCDEx_BCD_Callback build/stm32f0xx_hal_pcd_ex.o
HAL_PCDEx_BCD_VBUSDetect build/stm32f0xx_hal_pcd_ex.o
HAL_PCDEx_DeActivateBCD build/stm32f0xx_hal_pcd_ex.o
HAL_PCDEx_DeActivateLPM build/stm32f0xx_hal_pcd_ex.o
HAL_PCDEx_LPM_Callback build/stm32f0xx_hal_pcd_ex.o
build/stm32f0xx_hal_pcd.o
HAL_PCDEx_PMAConfig build/stm32f0xx_hal_pcd_ex.o
build/usbd_conf.o
HAL_PCD_ActivateRemoteWakeup build/stm32f0xx_hal_pcd.o
HAL_PCD_ConnectCallback build/usbd_conf.o
build/stm32f0xx_hal_pcd.o
HAL_PCD_DataInStageCallback build/usbd_conf.o
build/stm32f0xx_hal_pcd.o
HAL_PCD_DataOutStageCallback build/usbd_conf.o
build/stm32f0xx_hal_pcd.o
HAL_PCD_DeActivateRemoteWakeup build/stm32f0xx_hal_pcd.o
HAL_PCD_DeInit build/stm32f0xx_hal_pcd.o
build/usbd_conf.o
HAL_PCD_DevConnect build/stm32f0xx_hal_pcd.o
HAL_PCD_DevDisconnect build/stm32f0xx_hal_pcd.o
HAL_PCD_DisconnectCallback build/usbd_conf.o
build/stm32f0xx_hal_pcd.o
HAL_PCD_EP_Close build/stm32f0xx_hal_pcd.o
build/usbd_conf.o
HAL_PCD_EP_ClrStall build/stm32f0xx_hal_pcd.o
build/usbd_conf.o
HAL_PCD_EP_Flush build/stm32f0xx_hal_pcd.o
build/usbd_conf.o
HAL_PCD_EP_GetRxCount build/stm32f0xx_hal_pcd.o
build/usbd_conf.o
HAL_PCD_EP_Open build/stm32f0xx_hal_pcd.o
build/usbd_conf.o
HAL_PCD_EP_Receive build/stm32f0xx_hal_pcd.o
build/usbd_conf.o
HAL_PCD_EP_SetStall build/stm32f0xx_hal_pcd.o
build/usbd_conf.o
HAL_PCD_EP_Transmit build/stm32f0xx_hal_pcd.o
build/usbd_conf.o
HAL_PCD_GetState build/stm32f0xx_hal_pcd.o
HAL_PCD_IRQHandler build/stm32f0xx_hal_pcd.o
build/stm32f0xx_it.o
HAL_PCD_ISOINIncompleteCallback build/usbd_conf.o
build/stm32f0xx_hal_pcd.o
HAL_PCD_ISOOUTIncompleteCallback build/usbd_conf.o
build/stm32f0xx_hal_pcd.o
HAL_PCD_Init build/stm32f0xx_hal_pcd.o
build/usbd_conf.o
HAL_PCD_MspDeInit build/usbd_conf.o
build/stm32f0xx_hal_pcd.o
HAL_PCD_MspInit build/usbd_conf.o
build/stm32f0xx_hal_pcd.o
HAL_PCD_ResetCallback build/usbd_conf.o
build/stm32f0xx_hal_pcd.o
HAL_PCD_ResumeCallback build/usbd_conf.o
build/stm32f0xx_hal_pcd.o
HAL_PCD_SOFCallback build/usbd_conf.o
build/stm32f0xx_hal_pcd.o
HAL_PCD_SetAddress build/stm32f0xx_hal_pcd.o
build/usbd_conf.o
HAL_PCD_SetupStageCallback build/usbd_conf.o
build/stm32f0xx_hal_pcd.o
HAL_PCD_Start build/stm32f0xx_hal_pcd.o
build/usbd_conf.o
HAL_PCD_Stop build/stm32f0xx_hal_pcd.o
build/usbd_conf.o
HAL_PCD_SuspendCallback build/usbd_conf.o
build/stm32f0xx_hal_pcd.o
HAL_PWREx_DisableVddio2Monitor build/stm32f0xx_hal_pwr_ex.o
HAL_PWREx_EnableVddio2Monitor build/stm32f0xx_hal_pwr_ex.o
HAL_PWREx_Vddio2MonitorCallback build/stm32f0xx_hal_pwr_ex.o
HAL_PWREx_Vddio2Monitor_IRQHandler build/stm32f0xx_hal_pwr_ex.o
HAL_PWR_ConfigPVD build/stm32f0xx_hal_pwr_ex.o
HAL_PWR_DeInit build/stm32f0xx_hal_pwr.o
HAL_PWR_DisableBkUpAccess build/stm32f0xx_hal_pwr.o
HAL_PWR_DisablePVD build/stm32f0xx_hal_pwr_ex.o
HAL_PWR_DisableSEVOnPend build/stm32f0xx_hal_pwr.o
HAL_PWR_DisableSleepOnExit build/stm32f0xx_hal_pwr.o
HAL_PWR_DisableWakeUpPin build/stm32f0xx_hal_pwr.o
HAL_PWR_EnableBkUpAccess build/stm32f0xx_hal_pwr.o
HAL_PWR_EnablePVD build/stm32f0xx_hal_pwr_ex.o
HAL_PWR_EnableSEVOnPend build/stm32f0xx_hal_pwr.o
HAL_PWR_EnableSleepOnExit build/stm32f0xx_hal_pwr.o
HAL_PWR_EnableWakeUpPin build/stm32f0xx_hal_pwr.o
HAL_PWR_EnterSLEEPMode build/stm32f0xx_hal_pwr.o
HAL_PWR_EnterSTANDBYMode build/stm32f0xx_hal_pwr.o
HAL_PWR_EnterSTOPMode build/stm32f0xx_hal_pwr.o
HAL_PWR_PVDCallback build/stm32f0xx_hal_pwr_ex.o
HAL_PWR_PVD_IRQHandler build/stm32f0xx_hal_pwr_ex.o
HAL_RCCEx_CRSConfig build/stm32f0xx_hal_rcc_ex.o
HAL_RCCEx_CRSGetSynchronizationInfo build/stm32f0xx_hal_rcc_ex.o
HAL_RCCEx_CRSSoftwareSynchronizationGenerate build/stm32f0xx_hal_rcc_ex.o
HAL_RCCEx_CRSWaitSynchronization build/stm32f0xx_hal_rcc_ex.o
HAL_RCCEx_CRS_ErrorCallback build/stm32f0xx_hal_rcc_ex.o
HAL_RCCEx_CRS_ExpectedSyncCallback build/stm32f0xx_hal_rcc_ex.o
HAL_RCCEx_CRS_IRQHandler build/stm32f0xx_hal_rcc_ex.o
HAL_RCCEx_CRS_SyncOkCallback build/stm32f0xx_hal_rcc_ex.o
HAL_RCCEx_CRS_SyncWarnCallback build/stm32f0xx_hal_rcc_ex.o
HAL_RCCEx_GetPeriphCLKConfig build/stm32f0xx_hal_rcc_ex.o
HAL_RCCEx_GetPeriphCLKFreq build/stm32f0xx_hal_rcc_ex.o
HAL_RCCEx_PeriphCLKConfig build/stm32f0xx_hal_rcc_ex.o
build/main.o
HAL_RCC_CSSCallback build/stm32f0xx_hal_rcc.o
HAL_RCC_ClockConfig build/stm32f0xx_hal_rcc.o
build/main.o
HAL_RCC_DeInit build/stm32f0xx_hal_rcc.o
HAL_RCC_DisableCSS build/stm32f0xx_hal_rcc.o
HAL_RCC_EnableCSS build/stm32f0xx_hal_rcc.o
HAL_RCC_GetClockConfig build/stm32f0xx_hal_rcc.o
HAL_RCC_GetHCLKFreq build/stm32f0xx_hal_rcc.o
HAL_RCC_GetOscConfig build/stm32f0xx_hal_rcc.o
HAL_RCC_GetPCLK1Freq build/stm32f0xx_hal_rcc.o
build/stm32f0xx_hal_rcc_ex.o
HAL_RCC_GetSysClockFreq build/stm32f0xx_hal_rcc.o
build/stm32f0xx_hal_rcc_ex.o
HAL_RCC_MCOConfig build/stm32f0xx_hal_rcc.o
HAL_RCC_NMI_IRQHandler build/stm32f0xx_hal_rcc.o
HAL_RCC_OscConfig build/stm32f0xx_hal_rcc.o
build/main.o
HAL_ResumeTick build/stm32f0xx_hal.o
HAL_SYSTICK_CLKSourceConfig build/stm32f0xx_hal_cortex.o
HAL_SYSTICK_Callback build/stm32f0xx_hal_cortex.o
HAL_SYSTICK_Config build/stm32f0xx_hal_cortex.o
build/stm32f0xx_hal.o
HAL_SYSTICK_IRQHandler build/stm32f0xx_hal_cortex.o
HAL_SetTickFreq build/stm32f0xx_hal.o
HAL_SuspendTick build/stm32f0xx_hal.o
HardFault_Handler build/stm32f0xx_it.o
I2C1_IRQHandler build/startup_stm32f072xb.o
I2C2_IRQHandler build/startup_stm32f072xb.o
LineCoding build/usbd_cdc_interface.o
NMI_Handler build/stm32f0xx_it.o
PVD_VDDIO2_IRQHandler build/startup_stm32f072xb.o
PendSV_Handler build/stm32f0xx_it.o
RCC_CRS_IRQHandler build/startup_stm32f072xb.o
RTC_IRQHandler build/startup_stm32f072xb.o
Reset_Handler build/startup_stm32f072xb.o
SPI1_IRQHandler build/startup_stm32f072xb.o
SPI2_IRQHandler build/startup_stm32f072xb.o
SVC_Handler build/stm32f0xx_it.o
SysTick_Handler build/stm32f0xx_it.o
SystemClock_Config build/main.o
SystemCoreClock build/system_stm32f0xx.o
build/stm32f0xx_hal.o
build/stm32f0xx_hal_rcc.o
build/stm32f0xx_hal_adc.o
SystemCoreClockUpdate build/system_stm32f0xx.o
SystemInit build/system_stm32f0xx.o
build/startup_stm32f072xb.o
TIM14_IRQHandler build/startup_stm32f072xb.o
TIM15_IRQHandler build/startup_stm32f072xb.o
TIM16_IRQHandler build/startup_stm32f072xb.o
TIM17_IRQHandler build/startup_stm32f072xb.o
TIM1_BRK_UP_TRG_COM_IRQHandler build/startup_stm32f072xb.o
TIM1_CC_IRQHandler build/startup_stm32f072xb.o
TIM2_IRQHandler build/startup_stm32f072xb.o
TIM3_IRQHandler build/startup_stm32f072xb.o
TIM6_DAC_IRQHandler build/startup_stm32f072xb.o
TIM7_IRQHandler build/startup_stm32f072xb.o
TSC_IRQHandler build/startup_stm32f072xb.o
USART1_IRQHandler build/startup_stm32f072xb.o
USART2_IRQHandler build/startup_stm32f072xb.o
USART3_4_IRQHandler build/startup_stm32f072xb.o
USBD_CDC build/usbd_cdc.o
build/main.o
USBD_CDC_CfgFSDesc build/usbd_cdc.o
USBD_CDC_CfgHSDesc build/usbd_cdc.o
USBD_CDC_GetDeviceQualifierDescriptor build/usbd_cdc.o
USBD_CDC_OtherSpeedCfgDesc build/usbd_cdc.o
USBD_CDC_ReceivePacket build/usbd_cdc.o
USBD_CDC_RegisterInterface build/usbd_cdc.o
build/main.o
USBD_CDC_SetRxBuffer build/usbd_cdc.o
build/usbd_cdc_interface.o
USBD_CDC_SetTxBuffer build/usbd_cdc.o
build/usbd_cdc_interface.o
build/main.o
USBD_CDC_TransmitPacket build/usbd_cdc.o
build/main.o
USBD_CDC_fops build/usbd_cdc_interface.o
build/main.o
USBD_ClrClassConfig build/usbd_core.o
build/usbd_ctlreq.o
USBD_CtlContinueRx build/usbd_ioreq.o
build/usbd_core.o
USBD_CtlContinueSendData build/usbd_ioreq.o
build/usbd_core.o
USBD_CtlError build/usbd_ctlreq.o
USBD_CtlPrepareRx build/usbd_ioreq.o
build/usbd_cdc.o
USBD_CtlReceiveStatus build/usbd_ioreq.o
build/usbd_core.o
USBD_CtlSendData build/usbd_ioreq.o
build/usbd_cdc.o
build/usbd_ctlreq.o
USBD_CtlSendStatus build/usbd_ioreq.o
build/usbd_ctlreq.o
build/usbd_core.o
USBD_DeInit build/usbd_core.o
USBD_Device build/main.o
build/usbd_cdc_interface.o
USBD_GetRxCount build/usbd_ioreq.o
USBD_GetString build/usbd_ctlreq.o
build/usbd_desc.o
USBD_Init build/usbd_core.o
build/main.o
USBD_LL_ClearStallEP build/usbd_conf.o
build/usbd_ctlreq.o
USBD_LL_CloseEP build/usbd_conf.o
build/usbd_cdc.o
USBD_LL_DataInStage build/usbd_core.o
build/usbd_conf.o
USBD_LL_DataOutStage build/usbd_core.o
build/usbd_conf.o
USBD_LL_DeInit build/usbd_conf.o
build/usbd_core.o
USBD_LL_Delay build/usbd_conf.o
USBD_LL_DevConnected build/usbd_core.o
build/usbd_conf.o
USBD_LL_DevDisconnected build/usbd_core.o
build/usbd_conf.o
USBD_LL_FlushEP build/usbd_conf.o
USBD_LL_GetRxDataSize build/usbd_conf.o
build/usbd_cdc.o
build/usbd_ioreq.o
USBD_LL_Init build/usbd_conf.o
build/usbd_core.o
USBD_LL_IsStallEP build/usbd_conf.o
build/usbd_ctlreq.o
USBD_LL_IsoINIncomplete build/usbd_core.o
build/usbd_conf.o
USBD_LL_IsoOUTIncomplete build/usbd_core.o
build/usbd_conf.o
USBD_LL_OpenEP build/usbd_conf.o
build/usbd_cdc.o
build/usbd_core.o
USBD_LL_PrepareReceive build/usbd_conf.o
build/usbd_cdc.o
build/usbd_ioreq.o
build/usbd_core.o
USBD_LL_Reset build/usbd_core.o
build/usbd_conf.o
USBD_LL_Resume build/usbd_core.o
USBD_LL_SOF build/usbd_core.o
build/usbd_conf.o
USBD_LL_SetSpeed build/usbd_core.o
build/usbd_conf.o
USBD_LL_SetUSBAddress build/usbd_conf.o
build/usbd_ctlreq.o
USBD_LL_SetupStage build/usbd_core.o
build/usbd_conf.o
USBD_LL_StallEP build/usbd_conf.o
build/usbd_ctlreq.o
build/usbd_core.o
USBD_LL_Start build/usbd_conf.o
build/usbd_core.o
USBD_LL_Stop build/usbd_conf.o
build/usbd_core.o
USBD_LL_Suspend build/usbd_core.o
USBD_LL_Transmit build/usbd_conf.o
build/usbd_cdc.o
build/usbd_ioreq.o
USBD_LangIDDesc build/usbd_desc.o
USBD_ParseSetupRequest build/usbd_ctlreq.o
build/usbd_core.o
USBD_RegisterClass build/usbd_core.o
build/main.o
USBD_RunTestMode build/usbd_core.o
USBD_SetClassConfig build/usbd_core.o
build/usbd_ctlreq.o
USBD_Start build/usbd_core.o
build/main.o
USBD_StdDevReq build/usbd_ctlreq.o
build/usbd_core.o
USBD_StdEPReq build/usbd_ctlreq.o
build/usbd_core.o
USBD_StdItfReq build/usbd_ctlreq.o
build/usbd_core.o
USBD_Stop build/usbd_core.o
USBD_StrDesc build/usbd_desc.o
USBD_StringSerial build/usbd_desc.o
USBD_VCP_ConfigStrDescriptor build/usbd_desc.o
USBD_VCP_DeviceDescriptor build/usbd_desc.o
USBD_VCP_InterfaceStrDescriptor build/usbd_desc.o
USBD_VCP_LangIDStrDescriptor build/usbd_desc.o
USBD_VCP_ManufacturerStrDescriptor build/usbd_desc.o
USBD_VCP_ProductStrDescriptor build/usbd_desc.o
USBD_VCP_SerialStrDescriptor build/usbd_desc.o
USBD_static_free build/usbd_conf.o
build/usbd_cdc.o
USBD_static_malloc build/usbd_conf.o
build/usbd_cdc.o
USB_ActivateEndpoint build/stm32f0xx_ll_usb.o
build/stm32f0xx_hal_pcd.o
USB_ActivateRemoteWakeup build/stm32f0xx_ll_usb.o
build/stm32f0xx_hal_pcd.o
USB_ClearInterrupts build/stm32f0xx_ll_usb.o
USB_CoreInit build/stm32f0xx_ll_usb.o
USB_DeActivateRemoteWakeup build/stm32f0xx_ll_usb.o
build/stm32f0xx_hal_pcd.o
USB_DeactivateEndpoint build/stm32f0xx_ll_usb.o
build/stm32f0xx_hal_pcd.o
USB_DevConnect build/stm32f0xx_ll_usb.o
build/stm32f0xx_hal_pcd.o
USB_DevDisconnect build/stm32f0xx_ll_usb.o
build/stm32f0xx_hal_pcd.o
USB_DevInit build/stm32f0xx_ll_usb.o
build/stm32f0xx_hal_pcd.o
USB_DisableGlobalInt build/stm32f0xx_ll_usb.o
build/stm32f0xx_hal_pcd.o
USB_EP0_OutStart build/stm32f0xx_ll_usb.o
build/stm32f0xx_hal_pcd.o
USB_EPClearStall build/stm32f0xx_ll_usb.o
build/stm32f0xx_hal_pcd.o
USB_EPSetStall build/stm32f0xx_ll_usb.o
build/stm32f0xx_hal_pcd.o
USB_EPStartXfer build/stm32f0xx_ll_usb.o
build/stm32f0xx_hal_pcd.o
USB_EnableGlobalInt build/stm32f0xx_ll_usb.o
build/stm32f0xx_hal_pcd.o
USB_FlushRxFifo build/stm32f0xx_ll_usb.o
USB_FlushTxFifo build/stm32f0xx_ll_usb.o
USB_IRQHandler build/stm32f0xx_it.o
USB_ReadDevAllInEpInterrupt build/stm32f0xx_ll_usb.o
USB_ReadDevAllOutEpInterrupt build/stm32f0xx_ll_usb.o
USB_ReadDevInEPInterrupt build/stm32f0xx_ll_usb.o
USB_ReadDevOutEPInterrupt build/stm32f0xx_ll_usb.o
USB_ReadInterrupts build/stm32f0xx_ll_usb.o
build/stm32f0xx_hal_pcd.o
USB_ReadPMA build/stm32f0xx_ll_usb.o
build/stm32f0xx_hal_pcd.o
USB_ReadPacket build/stm32f0xx_ll_usb.o
USB_SetCurrentMode build/stm32f0xx_ll_usb.o
USB_SetDevAddress build/stm32f0xx_ll_usb.o
build/stm32f0xx_hal_pcd.o
USB_SetDevSpeed build/stm32f0xx_ll_usb.o
USB_StopDevice build/stm32f0xx_ll_usb.o
build/stm32f0xx_hal_pcd.o
USB_WritePMA build/stm32f0xx_ll_usb.o
USB_WritePacket build/stm32f0xx_ll_usb.o
UserRxBuffer build/usbd_cdc_interface.o
build/usbd_conf.o
build/stm32f0xx_hal_msp.o
build/stm32f0xx_it.o
build/main.o
UserTxBuffer build/usbd_cdc_interface.o
build/usbd_conf.o
build/stm32f0xx_hal_msp.o
build/stm32f0xx_it.o
build/main.o
VCP_Desc build/usbd_desc.o
build/main.o
WWDG_IRQHandler build/startup_stm32f072xb.o
__aeabi_idiv0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a(_dvmd_tls.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a(_udivsi3.o)
__aeabi_ldiv0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a(_dvmd_tls.o)
__aeabi_uidiv /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a(_udivsi3.o)
build/system_stm32f0xx.o
build/stm32f0xx_hal_dma.o
build/stm32f0xx_hal.o
build/stm32f0xx_hal_rcc_ex.o
build/stm32f0xx_hal_rcc.o
build/stm32f0xx_hal_adc.o
__aeabi_uidivmod /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a(_udivsi3.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-vfprintf_i.o)
build/usbd_core.o
__bss_end__ /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
__bss_start__ /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
__call_exitprocs /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
__deregister_frame_info /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtbegin.o
__dso_handle /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtbegin.o
__init_array_end /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-init.o)
__init_array_start /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-init.o)
__libc_fini_array /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
__libc_init_array /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-init.o)
build/startup_stm32f072xb.o
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
__malloc_free_list /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-mallocr.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-freer.o)
__malloc_lock /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-mlock.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-mallocr.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-freer.o)
__malloc_sbrk_start /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-mallocr.o)
__malloc_unlock /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-mlock.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-mallocr.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-freer.o)
__preinit_array_end /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-init.o)
__preinit_array_start /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-init.o)
__register_frame_info /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtbegin.o
__sf_fake_stderr /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
__sf_fake_stdin /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
__sf_fake_stdout /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
__ssprint_r /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o)
__ssputs_r /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o)
__stack /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
__udivsi3 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a(_udivsi3.o)
_ebss build/startup_stm32f072xb.o
_edata build/startup_stm32f072xb.o
_estack build/startup_stm32f072xb.o
_exit /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(_exit.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
_fini /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crti.o
_free_r /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-freer.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-reent.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-reallocr.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o)
_global_impure_ptr /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
_impure_ptr /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-reent.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sprintf.o)
_init /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crti.o
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-init.o)
_mainCRTStartup /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
_malloc_r /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-mallocr.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-reallocr.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o)
_malloc_usable_size_r /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-msizer.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-reallocr.o)
_printf_common /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-vfprintf_i.o)
_printf_float /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o)
_printf_i /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-vfprintf_i.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o)
_realloc_r /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-reallocr.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o)
_reclaim_reent /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-reent.o)
_sbrk /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(sbrk.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sbrkr.o)
_sbrk_r /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sbrkr.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-mallocr.o)
_sbss build/startup_stm32f072xb.o
_sdata build/startup_stm32f072xb.o
_sidata build/startup_stm32f072xb.o
_siprintf_r /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sprintf.o)
_sprintf_r /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sprintf.o)
_start /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
_svfiprintf_r /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o)
_svfprintf_r /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sprintf.o)
atexit /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
cleanup_glue /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-reent.o)
end /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(sbrk.o)
errno /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-reent.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sbrkr.o)
exit /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
g_pfnVectors build/startup_stm32f072xb.o
hUSBDDeviceDesc build/usbd_desc.o
hadc build/main.o
hardware_init_hook /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
hdma_adc build/main.o
build/stm32f0xx_hal_msp.o
build/stm32f0xx_it.o
hpcd build/usbd_conf.o
build/stm32f0xx_it.o
hpcd_USB_FS build/main.o
main build/main.o
build/startup_stm32f072xb.o
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
memchr /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memchr-stub.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-vfprintf_i.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o)
memcpy /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memcpy-stub.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-reallocr.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o)
memmove /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memmove.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-svfprintf.o)
memset /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memset.o)
build/stm32f0xx_hal_msp.o
build/main.o
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
pFlash build/stm32f0xx_hal_flash.o
build/stm32f0xx_hal_flash_ex.o
sendDataUSB build/main.o
siprintf /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sprintf.o)
software_init_hook /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
sprintf /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sprintf.o)
build/main.o
uwTick build/stm32f0xx_hal.o
uwTickFreq build/stm32f0xx_hal.o
uwTickPrio build/stm32f0xx_hal.o
build/stm32f0xx_hal_rcc.o
|