blob: 4ae60c93706ed5dad4c1965058d3b87159f55dad (
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
|
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-malloc.o)
build/curebuffer.o (malloc)
/home/janhenrik/programme/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-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-malloc.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-malloc.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-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-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
rbuf_jack_rx 0x0 build/usbd_midi_if.o
hUsbDeviceFS 0x224 build/usb_device.o
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)
rx_midi_msg 0x0 build/usbd_midi_if.o
uwTick 0x4 build/stm32f0xx_hal.o
pFlash 0x20 build/stm32f0xx_hal_flash.o
midi_event 0x0 build/usbd_midi_if.o
USB_Rx_Buffer 0x40 build/usbd_midi.o
rbuf_usb_rx 0xc build/usbd_midi_if.o
APP_Rx_Buffer 0x100 build/usbd_midi.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 0x200 build/usbd_desc.o
analyzed_status 0x0 build/usbd_midi_if.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 0x661 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 0xfc5 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 0x86b 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 0x436 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 0x38f 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 0x5a4 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 0x6be 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 0x46f 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 0x253 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 0x256 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_GetRxCount
0x0000000000000000 0x10 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/usb_device.o
.data 0x0000000000000000 0x0 build/usb_device.o
.bss 0x0000000000000000 0x0 build/usb_device.o
.text.MX_USB_DEVICE_Init
0x0000000000000000 0x2 build/usb_device.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 0x2c 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 0x20 build/usbd_conf.o
.text.USBD_LL_Stop
0x0000000000000000 0x20 build/usbd_conf.o
.text.USBD_LL_FlushEP
0x0000000000000000 0x20 build/usbd_conf.o
.text.USBD_LL_GetRxDataSize
0x0000000000000000 0xe build/usbd_conf.o
.text.USBD_LL_Delay
0x0000000000000000 0x8 build/usbd_conf.o
.text.USBD_static_free
0x0000000000000000 0x2 build/usbd_conf.o
.text.HAL_PCDEx_SetConnectionState
0x0000000000000000 0x2 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_midi_if.o
.data 0x0000000000000000 0x0 build/usbd_midi_if.o
.bss 0x0000000000000000 0x0 build/usbd_midi_if.o
.text.midiInit
0x0000000000000000 0x30 build/usbd_midi_if.o
.text.midiGetFromUsbRx
0x0000000000000000 0x20 build/usbd_midi_if.o
.text.midiGetFromJackRx
0x0000000000000000 0x28 build/usbd_midi_if.o
.text.midiSetFromJackRx
0x0000000000000000 0x20 build/usbd_midi_if.o
.text.isUsbRxBufEmpty
0x0000000000000000 0x20 build/usbd_midi_if.o
.text.isJackRxBufEmpty
0x0000000000000000 0x20 build/usbd_midi_if.o
.text.isRxBufEmpty
0x0000000000000000 0x2c build/usbd_midi_if.o
.text.sendMidiMessage
0x0000000000000000 0xe build/usbd_midi_if.o
.text.midiEventIsGenerated
0x0000000000000000 0x250 build/usbd_midi_if.o
.rodata.midiEventIsGenerated
0x0000000000000000 0x40 build/usbd_midi_if.o
.text.midiGenerateUsbPacket
0x0000000000000000 0x158 build/usbd_midi_if.o
.text.midiProcess
0x0000000000000000 0x2 build/usbd_midi_if.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_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_CtlPrepareRx
0x0000000000000000 0x20 build/usbd_ioreq.o
.text.USBD_GetRxCount
0x0000000000000000 0xa build/usbd_ioreq.o
.text 0x0000000000000000 0x0 build/usbd_midi.o
.data 0x0000000000000000 0x0 build/usbd_midi.o
.bss 0x0000000000000000 0x0 build/usbd_midi.o
.text.USBD_MIDI_SendPacket
0x0000000000000000 0xa0 build/usbd_midi.o
.bss.APP_Rx_length
0x0000000000000000 0x4 build/usbd_midi.o
.bss.APP_Rx_ptr_out
0x0000000000000000 0x4 build/usbd_midi.o
.text 0x0000000000000000 0x0 build/curebuffer.o
.data 0x0000000000000000 0x0 build/curebuffer.o
.bss 0x0000000000000000 0x0 build/curebuffer.o
.text.cureRingBufferU8Free
0x0000000000000000 0x1a build/curebuffer.o
.text.cureRingBufferU8Init
0x0000000000000000 0x34 build/curebuffer.o
.text.cureRingBufferU8Dequeue
0x0000000000000000 0x26 build/curebuffer.o
.text._cureRingBufferU8GetUsedSize
0x0000000000000000 0x1a build/curebuffer.o
.text.cureRingBuffer16Free
0x0000000000000000 0x1a build/curebuffer.o
.text.cureRingBuffer16Init
0x0000000000000000 0x38 build/curebuffer.o
.text.cureRingBuffer16Enqueue
0x0000000000000000 0x34 build/curebuffer.o
.text.cureRingBuffer16EnqueueIgnoreErr
0x0000000000000000 0x20 build/curebuffer.o
.text.cureRingBuffer16Dequeue
0x0000000000000000 0x28 build/curebuffer.o
.text.cureRingBuffer16GetElement
0x0000000000000000 0x24 build/curebuffer.o
.text.cureRingBufferU32Free
0x0000000000000000 0x1a build/curebuffer.o
.text.cureRingBufferU32Init
0x0000000000000000 0x38 build/curebuffer.o
.text.cureRingBufferU32Enqueue
0x0000000000000000 0x32 build/curebuffer.o
.text.cureRingBufferU32EnqueueIgnoreErr
0x0000000000000000 0x1e build/curebuffer.o
.text.cureRingBufferU32Dequeue
0x0000000000000000 0x28 build/curebuffer.o
.text.cureRingBufferU32GetElement
0x0000000000000000 0x22 build/curebuffer.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)
.data._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)
.data.impure_data
0x0000000000000000 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)
.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)
.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-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-malloc.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-malloc.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-malloc.o)
.text.malloc 0x0000000000000000 0x14 /home/janhenrik/programme/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-malloc.o)
.text.free 0x0000000000000000 0x14 /home/janhenrik/programme/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-malloc.o)
.debug_frame 0x0000000000000000 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-malloc.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-malloc.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-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._free_r 0x0000000000000000 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)
.debug_frame 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-nano-freer.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-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._malloc_r
0x0000000000000000 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)
.bss.__malloc_free_list
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-nano-mallocr.o)
.bss.__malloc_sbrk_start
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-nano-mallocr.o)
.debug_frame 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-nano-mallocr.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-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-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._sbrk_r 0x0000000000000000 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)
.debug_frame 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-sbrkr.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-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.__malloc_lock
0x0000000000000000 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)
.text.__malloc_unlock
0x0000000000000000 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)
.debug_frame 0x0000000000000000 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)
.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-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-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)
.debug_frame 0x0000000000000000 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)
.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-reent.o)
COMMON 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-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._sbrk 0x0000000000000000 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)
.bss.heap_end.4102
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(sbrk.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(sbrk.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(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/usb_device.o
LOAD build/usbd_conf.o
LOAD build/usbd_desc.o
LOAD build/usbd_midi_if.o
LOAD build/usbd_core.o
LOAD build/usbd_ctlreq.o
LOAD build/usbd_ioreq.o
LOAD build/usbd_midi.o
LOAD build/curebuffer.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 0x3798
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 0xbc build/main.o
.text.SystemClock_Config
0x0000000008000370 0x5e build/main.o
0x0000000008000370 SystemClock_Config
*fill* 0x00000000080003ce 0x2
.text.main 0x00000000080003d0 0x5c build/main.o
0x00000000080003d0 main
.text.Error_Handler
0x000000000800042c 0x30 build/main.o
0x000000000800042c Error_Handler
.text.NMI_Handler
0x000000000800045c 0x2 build/stm32f0xx_it.o
0x000000000800045c NMI_Handler
.text.HardFault_Handler
0x000000000800045e 0x2 build/stm32f0xx_it.o
0x000000000800045e HardFault_Handler
.text.SVC_Handler
0x0000000008000460 0x2 build/stm32f0xx_it.o
0x0000000008000460 SVC_Handler
.text.PendSV_Handler
0x0000000008000462 0x2 build/stm32f0xx_it.o
0x0000000008000462 PendSV_Handler
.text.SysTick_Handler
0x0000000008000464 0x8 build/stm32f0xx_it.o
0x0000000008000464 SysTick_Handler
.text.DMA1_Channel1_IRQHandler
0x000000000800046c 0x10 build/stm32f0xx_it.o
0x000000000800046c DMA1_Channel1_IRQHandler
.text.USB_IRQHandler
0x000000000800047c 0x10 build/stm32f0xx_it.o
0x000000000800047c USB_IRQHandler
.text.HAL_MspInit
0x000000000800048c 0x30 build/stm32f0xx_hal_msp.o
0x000000000800048c HAL_MspInit
.text.HAL_ADC_MspInit
0x00000000080004bc 0xc4 build/stm32f0xx_hal_msp.o
0x00000000080004bc HAL_ADC_MspInit
.text.USB_EnableGlobalInt
0x0000000008000580 0x14 build/stm32f0xx_ll_usb.o
0x0000000008000580 USB_EnableGlobalInt
.text.USB_DisableGlobalInt
0x0000000008000594 0x14 build/stm32f0xx_ll_usb.o
0x0000000008000594 USB_DisableGlobalInt
.text.USB_DevInit
0x00000000080005a8 0x2a build/stm32f0xx_ll_usb.o
0x00000000080005a8 USB_DevInit
*fill* 0x00000000080005d2 0x2
.text.USB_ActivateEndpoint
0x00000000080005d4 0x300 build/stm32f0xx_ll_usb.o
0x00000000080005d4 USB_ActivateEndpoint
.text.USB_DeactivateEndpoint
0x00000000080008d4 0x170 build/stm32f0xx_ll_usb.o
0x00000000080008d4 USB_DeactivateEndpoint
.text.USB_EPSetStall
0x0000000008000a44 0x4c build/stm32f0xx_ll_usb.o
0x0000000008000a44 USB_EPSetStall
.text.USB_EPClearStall
0x0000000008000a90 0x98 build/stm32f0xx_ll_usb.o
0x0000000008000a90 USB_EPClearStall
.text.USB_SetDevAddress
0x0000000008000b28 0xe build/stm32f0xx_ll_usb.o
0x0000000008000b28 USB_SetDevAddress
*fill* 0x0000000008000b36 0x2
.text.USB_DevConnect
0x0000000008000b38 0x14 build/stm32f0xx_ll_usb.o
0x0000000008000b38 USB_DevConnect
.text.USB_ReadInterrupts
0x0000000008000b4c 0x8 build/stm32f0xx_ll_usb.o
0x0000000008000b4c USB_ReadInterrupts
.text.USB_EP0_OutStart
0x0000000008000b54 0x4 build/stm32f0xx_ll_usb.o
0x0000000008000b54 USB_EP0_OutStart
.text.USB_WritePMA
0x0000000008000b58 0x28 build/stm32f0xx_ll_usb.o
0x0000000008000b58 USB_WritePMA
.text.USB_EPStartXfer
0x0000000008000b80 0x2d8 build/stm32f0xx_ll_usb.o
0x0000000008000b80 USB_EPStartXfer
.text.USB_ReadPMA
0x0000000008000e58 0x2e build/stm32f0xx_ll_usb.o
0x0000000008000e58 USB_ReadPMA
*fill* 0x0000000008000e86 0x2
.text.ADC_Enable
0x0000000008000e88 0xa8 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_Init
0x0000000008000f30 0x17c build/stm32f0xx_hal_adc.o
0x0000000008000f30 HAL_ADC_Init
.text.HAL_ADC_Start_DMA
0x00000000080010ac 0xa8 build/stm32f0xx_hal_adc.o
0x00000000080010ac HAL_ADC_Start_DMA
.text.HAL_ADC_ConvCpltCallback
0x0000000008001154 0x2 build/stm32f0xx_hal_adc.o
0x0000000008001154 HAL_ADC_ConvCpltCallback
*fill* 0x0000000008001156 0x2
.text.ADC_DMAConvCplt
0x0000000008001158 0x70 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_ConvHalfCpltCallback
0x00000000080011c8 0x2 build/stm32f0xx_hal_adc.o
0x00000000080011c8 HAL_ADC_ConvHalfCpltCallback
.text.ADC_DMAHalfConvCplt
0x00000000080011ca 0xa build/stm32f0xx_hal_adc.o
.text.HAL_ADC_ErrorCallback
0x00000000080011d4 0x2 build/stm32f0xx_hal_adc.o
0x00000000080011d4 HAL_ADC_ErrorCallback
.text.ADC_DMAError
0x00000000080011d6 0x1a build/stm32f0xx_hal_adc.o
.text.HAL_ADC_ConfigChannel
0x00000000080011f0 0x14c build/stm32f0xx_hal_adc.o
0x00000000080011f0 HAL_ADC_ConfigChannel
.text.HAL_RCC_OscConfig
0x000000000800133c 0x540 build/stm32f0xx_hal_rcc.o
0x000000000800133c HAL_RCC_OscConfig
.text.HAL_RCC_GetSysClockFreq
0x000000000800187c 0x94 build/stm32f0xx_hal_rcc.o
0x000000000800187c HAL_RCC_GetSysClockFreq
.text.HAL_RCC_ClockConfig
0x0000000008001910 0x140 build/stm32f0xx_hal_rcc.o
0x0000000008001910 HAL_RCC_ClockConfig
.text.HAL_RCCEx_PeriphCLKConfig
0x0000000008001a50 0x158 build/stm32f0xx_hal_rcc_ex.o
0x0000000008001a50 HAL_RCCEx_PeriphCLKConfig
.text.HAL_InitTick
0x0000000008001ba8 0x50 build/stm32f0xx_hal.o
0x0000000008001ba8 HAL_InitTick
.text.HAL_Init
0x0000000008001bf8 0x20 build/stm32f0xx_hal.o
0x0000000008001bf8 HAL_Init
.text.HAL_IncTick
0x0000000008001c18 0x18 build/stm32f0xx_hal.o
0x0000000008001c18 HAL_IncTick
.text.HAL_GetTick
0x0000000008001c30 0xc build/stm32f0xx_hal.o
0x0000000008001c30 HAL_GetTick
.text.HAL_Delay
0x0000000008001c3c 0x24 build/stm32f0xx_hal.o
0x0000000008001c3c HAL_Delay
.text.HAL_GPIO_Init
0x0000000008001c60 0x198 build/stm32f0xx_hal_gpio.o
0x0000000008001c60 HAL_GPIO_Init
.text.HAL_GPIO_WritePin
0x0000000008001df8 0xc build/stm32f0xx_hal_gpio.o
0x0000000008001df8 HAL_GPIO_WritePin
.text.DMA_SetConfig
0x0000000008001e04 0x2a build/stm32f0xx_hal_dma.o
*fill* 0x0000000008001e2e 0x2
.text.DMA_CalcBaseAndBitshift
0x0000000008001e30 0x28 build/stm32f0xx_hal_dma.o
.text.HAL_DMA_Init
0x0000000008001e58 0x50 build/stm32f0xx_hal_dma.o
0x0000000008001e58 HAL_DMA_Init
.text.HAL_DMA_Start_IT
0x0000000008001ea8 0x76 build/stm32f0xx_hal_dma.o
0x0000000008001ea8 HAL_DMA_Start_IT
.text.HAL_DMA_IRQHandler
0x0000000008001f1e 0xaa build/stm32f0xx_hal_dma.o
0x0000000008001f1e HAL_DMA_IRQHandler
.text.HAL_NVIC_SetPriority
0x0000000008001fc8 0x64 build/stm32f0xx_hal_cortex.o
0x0000000008001fc8 HAL_NVIC_SetPriority
.text.HAL_NVIC_EnableIRQ
0x000000000800202c 0x18 build/stm32f0xx_hal_cortex.o
0x000000000800202c HAL_NVIC_EnableIRQ
.text.HAL_SYSTICK_Config
0x0000000008002044 0x38 build/stm32f0xx_hal_cortex.o
0x0000000008002044 HAL_SYSTICK_Config
.text.HAL_PCD_Init
0x000000000800207c 0xd4 build/stm32f0xx_hal_pcd.o
0x000000000800207c HAL_PCD_Init
.text.HAL_PCD_Start
0x0000000008002150 0x2e build/stm32f0xx_hal_pcd.o
0x0000000008002150 HAL_PCD_Start
.text.HAL_PCD_SetAddress
0x000000000800217e 0x2c build/stm32f0xx_hal_pcd.o
0x000000000800217e HAL_PCD_SetAddress
.text.HAL_PCD_EP_Open
0x00000000080021aa 0x7a build/stm32f0xx_hal_pcd.o
0x00000000080021aa HAL_PCD_EP_Open
.text.HAL_PCD_EP_Close
0x0000000008002224 0x64 build/stm32f0xx_hal_pcd.o
0x0000000008002224 HAL_PCD_EP_Close
.text.HAL_PCD_EP_Receive
0x0000000008002288 0x4c build/stm32f0xx_hal_pcd.o
0x0000000008002288 HAL_PCD_EP_Receive
.text.HAL_PCD_EP_Transmit
0x00000000080022d4 0x40 build/stm32f0xx_hal_pcd.o
0x00000000080022d4 HAL_PCD_EP_Transmit
.text.PCD_EP_ISR_Handler
0x0000000008002314 0x39c build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_IRQHandler
0x00000000080026b0 0x1ac build/stm32f0xx_hal_pcd.o
0x00000000080026b0 HAL_PCD_IRQHandler
.text.HAL_PCD_EP_SetStall
0x000000000800285c 0x7e build/stm32f0xx_hal_pcd.o
0x000000000800285c HAL_PCD_EP_SetStall
.text.HAL_PCD_EP_ClrStall
0x00000000080028da 0x76 build/stm32f0xx_hal_pcd.o
0x00000000080028da HAL_PCD_EP_ClrStall
.text.HAL_PCDEx_PMAConfig
0x0000000008002950 0x32 build/stm32f0xx_hal_pcd_ex.o
0x0000000008002950 HAL_PCDEx_PMAConfig
.text.HAL_PCDEx_ActivateLPM
0x0000000008002982 0x26 build/stm32f0xx_hal_pcd_ex.o
0x0000000008002982 HAL_PCDEx_ActivateLPM
.text.HAL_PCDEx_LPM_Callback
0x00000000080029a8 0x2 build/stm32f0xx_hal_pcd_ex.o
0x00000000080029a8 HAL_PCDEx_LPM_Callback
*fill* 0x00000000080029aa 0x2
.text.MX_USB_MIDI_INIT
0x00000000080029ac 0x38 build/usb_device.o
0x00000000080029ac MX_USB_MIDI_INIT
.text.HAL_PCD_MspInit
0x00000000080029e4 0x40 build/usbd_conf.o
0x00000000080029e4 HAL_PCD_MspInit
.text.HAL_PCD_SetupStageCallback
0x0000000008002a24 0x16 build/usbd_conf.o
0x0000000008002a24 HAL_PCD_SetupStageCallback
.text.HAL_PCD_DataOutStageCallback
0x0000000008002a3a 0x1a build/usbd_conf.o
0x0000000008002a3a HAL_PCD_DataOutStageCallback
.text.HAL_PCD_DataInStageCallback
0x0000000008002a54 0x16 build/usbd_conf.o
0x0000000008002a54 HAL_PCD_DataInStageCallback
.text.HAL_PCD_SOFCallback
0x0000000008002a6a 0xe build/usbd_conf.o
0x0000000008002a6a HAL_PCD_SOFCallback
.text.HAL_PCD_ResetCallback
0x0000000008002a78 0x18 build/usbd_conf.o
0x0000000008002a78 HAL_PCD_ResetCallback
.text.HAL_PCD_SuspendCallback
0x0000000008002a90 0x24 build/usbd_conf.o
0x0000000008002a90 HAL_PCD_SuspendCallback
.text.HAL_PCD_ResumeCallback
0x0000000008002ab4 0xe build/usbd_conf.o
0x0000000008002ab4 HAL_PCD_ResumeCallback
*fill* 0x0000000008002ac2 0x2
.text.USBD_LL_Init
0x0000000008002ac4 0x7c build/usbd_conf.o
0x0000000008002ac4 USBD_LL_Init
.text.USBD_LL_Start
0x0000000008002b40 0x20 build/usbd_conf.o
0x0000000008002b40 USBD_LL_Start
.text.USBD_LL_OpenEP
0x0000000008002b60 0x26 build/usbd_conf.o
0x0000000008002b60 USBD_LL_OpenEP
.text.USBD_LL_CloseEP
0x0000000008002b86 0x20 build/usbd_conf.o
0x0000000008002b86 USBD_LL_CloseEP
.text.USBD_LL_StallEP
0x0000000008002ba6 0x20 build/usbd_conf.o
0x0000000008002ba6 USBD_LL_StallEP
.text.USBD_LL_ClearStallEP
0x0000000008002bc6 0x20 build/usbd_conf.o
0x0000000008002bc6 USBD_LL_ClearStallEP
.text.USBD_LL_IsStallEP
0x0000000008002be6 0x2c build/usbd_conf.o
0x0000000008002be6 USBD_LL_IsStallEP
.text.USBD_LL_SetUSBAddress
0x0000000008002c12 0x20 build/usbd_conf.o
0x0000000008002c12 USBD_LL_SetUSBAddress
.text.USBD_LL_Transmit
0x0000000008002c32 0x20 build/usbd_conf.o
0x0000000008002c32 USBD_LL_Transmit
.text.USBD_LL_PrepareReceive
0x0000000008002c52 0x20 build/usbd_conf.o
0x0000000008002c52 USBD_LL_PrepareReceive
*fill* 0x0000000008002c72 0x2
.text.USBD_FS_DeviceDescriptor
0x0000000008002c74 0xc build/usbd_desc.o
0x0000000008002c74 USBD_FS_DeviceDescriptor
.text.USBD_FS_LangIDStrDescriptor
0x0000000008002c80 0xc build/usbd_desc.o
0x0000000008002c80 USBD_FS_LangIDStrDescriptor
.text.USBD_FS_ProductStrDescriptor
0x0000000008002c8c 0x28 build/usbd_desc.o
0x0000000008002c8c USBD_FS_ProductStrDescriptor
.text.USBD_FS_ManufacturerStrDescriptor
0x0000000008002cb4 0x1c build/usbd_desc.o
0x0000000008002cb4 USBD_FS_ManufacturerStrDescriptor
.text.USBD_FS_SerialStrDescriptor
0x0000000008002cd0 0x28 build/usbd_desc.o
0x0000000008002cd0 USBD_FS_SerialStrDescriptor
.text.USBD_FS_ConfigStrDescriptor
0x0000000008002cf8 0x28 build/usbd_desc.o
0x0000000008002cf8 USBD_FS_ConfigStrDescriptor
.text.USBD_FS_InterfaceStrDescriptor
0x0000000008002d20 0x28 build/usbd_desc.o
0x0000000008002d20 USBD_FS_InterfaceStrDescriptor
.text.MIDI_DataTx
0x0000000008002d48 0x34 build/usbd_midi_if.o
.text.MIDI_DataRx
0x0000000008002d7c 0x88 build/usbd_midi_if.o
.text.USBD_Init
0x0000000008002e04 0x38 build/usbd_core.o
0x0000000008002e04 USBD_Init
.text.USBD_RegisterClass
0x0000000008002e3c 0x12 build/usbd_core.o
0x0000000008002e3c USBD_RegisterClass
.text.USBD_Start
0x0000000008002e4e 0xa build/usbd_core.o
0x0000000008002e4e USBD_Start
.text.USBD_SetClassConfig
0x0000000008002e58 0x20 build/usbd_core.o
0x0000000008002e58 USBD_SetClassConfig
.text.USBD_ClrClassConfig
0x0000000008002e78 0x10 build/usbd_core.o
0x0000000008002e78 USBD_ClrClassConfig
.text.USBD_LL_SetupStage
0x0000000008002e88 0x68 build/usbd_core.o
0x0000000008002e88 USBD_LL_SetupStage
.text.USBD_LL_DataOutStage
0x0000000008002ef0 0x78 build/usbd_core.o
0x0000000008002ef0 USBD_LL_DataOutStage
.text.USBD_LL_DataInStage
0x0000000008002f68 0xc2 build/usbd_core.o
0x0000000008002f68 USBD_LL_DataInStage
.text.USBD_LL_Reset
0x000000000800302a 0x46 build/usbd_core.o
0x000000000800302a USBD_LL_Reset
.text.USBD_LL_SetSpeed
0x0000000008003070 0x6 build/usbd_core.o
0x0000000008003070 USBD_LL_SetSpeed
.text.USBD_LL_Suspend
0x0000000008003076 0x16 build/usbd_core.o
0x0000000008003076 USBD_LL_Suspend
.text.USBD_LL_Resume
0x000000000800308c 0xe build/usbd_core.o
0x000000000800308c USBD_LL_Resume
.text.USBD_LL_SOF
0x000000000800309a 0x20 build/usbd_core.o
0x000000000800309a USBD_LL_SOF
.text.USBD_GetLen
0x00000000080030ba 0x14 build/usbd_ctlreq.o
.text.USBD_SetFeature
0x00000000080030ce 0x22 build/usbd_ctlreq.o
.text.USBD_ParseSetupRequest
0x00000000080030f0 0x28 build/usbd_ctlreq.o
0x00000000080030f0 USBD_ParseSetupRequest
.text.USBD_CtlError
0x0000000008003118 0x14 build/usbd_ctlreq.o
0x0000000008003118 USBD_CtlError
.text.USBD_GetDescriptor
0x000000000800312c 0x15c build/usbd_ctlreq.o
.text.USBD_SetAddress
0x0000000008003288 0x58 build/usbd_ctlreq.o
.text.USBD_SetConfig
0x00000000080032e0 0xb0 build/usbd_ctlreq.o
.text.USBD_GetConfig
0x0000000008003390 0x3c build/usbd_ctlreq.o
.text.USBD_GetStatus
0x00000000080033cc 0x34 build/usbd_ctlreq.o
.text.USBD_ClrFeature
0x0000000008003400 0x36 build/usbd_ctlreq.o
*fill* 0x0000000008003436 0x2
.text.USBD_StdDevReq
0x0000000008003438 0x48 build/usbd_ctlreq.o
0x0000000008003438 USBD_StdDevReq
.text.USBD_StdItfReq
0x0000000008003480 0x3e build/usbd_ctlreq.o
0x0000000008003480 USBD_StdItfReq
.text.USBD_StdEPReq
0x00000000080034be 0x138 build/usbd_ctlreq.o
0x00000000080034be USBD_StdEPReq
.text.USBD_GetString
0x00000000080035f6 0x3c build/usbd_ctlreq.o
0x00000000080035f6 USBD_GetString
.text.USBD_CtlSendData
0x0000000008003632 0x1c build/usbd_ioreq.o
0x0000000008003632 USBD_CtlSendData
.text.USBD_CtlContinueSendData
0x000000000800364e 0x10 build/usbd_ioreq.o
0x000000000800364e USBD_CtlContinueSendData
.text.USBD_CtlContinueRx
0x000000000800365e 0x10 build/usbd_ioreq.o
0x000000000800365e USBD_CtlContinueRx
.text.USBD_CtlSendStatus
0x000000000800366e 0x18 build/usbd_ioreq.o
0x000000000800366e USBD_CtlSendStatus
.text.USBD_CtlReceiveStatus
0x0000000008003686 0x18 build/usbd_ioreq.o
0x0000000008003686 USBD_CtlReceiveStatus
*fill* 0x000000000800369e 0x2
.text.USBD_MIDI_DataIn
0x00000000080036a0 0x18 build/usbd_midi.o
.text.USBD_MIDI_GetCfgDesc
0x00000000080036b8 0xc build/usbd_midi.o
.text.USBD_MIDI_DataOut
0x00000000080036c4 0x34 build/usbd_midi.o
.text.USBD_MIDI_DeInit
0x00000000080036f8 0x20 build/usbd_midi.o
.text.USBD_MIDI_Init
0x0000000008003718 0x38 build/usbd_midi.o
.text.USBD_MIDI_RegisterInterface
0x0000000008003750 0x12 build/usbd_midi.o
0x0000000008003750 USBD_MIDI_RegisterInterface
.text.cureRingBufferU8Enqueue
0x0000000008003762 0x30 build/curebuffer.o
0x0000000008003762 cureRingBufferU8Enqueue
.text.SystemInit
0x0000000008003792 0x2 build/system_stm32f0xx.o
0x0000000008003792 SystemInit
.text.Reset_Handler
0x0000000008003794 0x50 build/startup_stm32f072xb.o
0x0000000008003794 Reset_Handler
.text.Default_Handler
0x00000000080037e4 0x2 build/startup_stm32f072xb.o
0x00000000080037e4 TIM1_CC_IRQHandler
0x00000000080037e4 TSC_IRQHandler
0x00000000080037e4 ADC1_COMP_IRQHandler
0x00000000080037e4 I2C1_IRQHandler
0x00000000080037e4 RCC_CRS_IRQHandler
0x00000000080037e4 SPI1_IRQHandler
0x00000000080037e4 TIM6_DAC_IRQHandler
0x00000000080037e4 USART3_4_IRQHandler
0x00000000080037e4 EXTI2_3_IRQHandler
0x00000000080037e4 I2C2_IRQHandler
0x00000000080037e4 TIM17_IRQHandler
0x00000000080037e4 CEC_CAN_IRQHandler
0x00000000080037e4 RTC_IRQHandler
0x00000000080037e4 PVD_VDDIO2_IRQHandler
0x00000000080037e4 DMA1_Channel4_5_6_7_IRQHandler
0x00000000080037e4 TIM16_IRQHandler
0x00000000080037e4 TIM3_IRQHandler
0x00000000080037e4 EXTI4_15_IRQHandler
0x00000000080037e4 Default_Handler
0x00000000080037e4 TIM14_IRQHandler
0x00000000080037e4 TIM7_IRQHandler
0x00000000080037e4 TIM15_IRQHandler
0x00000000080037e4 EXTI0_1_IRQHandler
0x00000000080037e4 SPI2_IRQHandler
0x00000000080037e4 WWDG_IRQHandler
0x00000000080037e4 TIM2_IRQHandler
0x00000000080037e4 DMA1_Channel2_3_IRQHandler
0x00000000080037e4 USART2_IRQHandler
0x00000000080037e4 FLASH_IRQHandler
0x00000000080037e4 USART1_IRQHandler
0x00000000080037e4 TIM1_BRK_UP_TRG_COM_IRQHandler
*fill* 0x00000000080037e6 0x2
.text.__libc_init_array
0x00000000080037e8 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)
0x00000000080037e8 __libc_init_array
.text.memset 0x0000000008003830 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)
0x0000000008003830 memset
*(.glue_7)
.glue_7 0x0000000008003840 0x0 linker stubs
*(.glue_7t)
.glue_7t 0x0000000008003840 0x0 linker stubs
*(.eh_frame)
.eh_frame 0x0000000008003840 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 0x0000000008003840 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
0x0000000008003840 _init
.init 0x0000000008003844 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 0x000000000800384c 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
0x000000000800384c _fini
.fini 0x0000000008003850 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
0x0000000008003858 . = ALIGN (0x4)
0x0000000008003858 _etext = .
.vfp11_veneer 0x0000000008003858 0x0
.vfp11_veneer 0x0000000008003858 0x0 linker stubs
.v4_bx 0x0000000008003858 0x0
.v4_bx 0x0000000008003858 0x0 linker stubs
.iplt 0x0000000008003858 0x0
.iplt 0x0000000008003858 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 0x0000000008003858 0x11c
0x0000000008003858 . = ALIGN (0x4)
*(.rodata)
.rodata 0x0000000008003858 0x20 build/stm32f0xx_hal_rcc.o
*(.rodata*)
.rodata.USBD_FS_ConfigStrDescriptor.str1.4
0x0000000008003878 0xc build/usbd_desc.o
.rodata.USBD_FS_InterfaceStrDescriptor.str1.4
0x0000000008003884 0xf build/usbd_desc.o
*fill* 0x0000000008003893 0x1
.rodata.USBD_FS_ManufacturerStrDescriptor.str1.4
0x0000000008003894 0x11 build/usbd_desc.o
*fill* 0x00000000080038a5 0x3
.rodata.USBD_FS_ProductStrDescriptor.str1.4
0x00000000080038a8 0xb build/usbd_desc.o
*fill* 0x00000000080038b3 0x1
.rodata.USBD_FS_SerialStrDescriptor.str1.4
0x00000000080038b4 0x10 build/usbd_desc.o
0xd (size before relaxing)
.rodata.MIDI_DataRx
0x00000000080038c4 0x40 build/usbd_midi_if.o
.rodata.USBD_GetDescriptor
0x0000000008003904 0x38 build/usbd_ctlreq.o
.rodata.USBD_StdDevReq
0x000000000800393c 0x28 build/usbd_ctlreq.o
.rodata.AHBPrescTable
0x0000000008003964 0x10 build/system_stm32f0xx.o
0x0000000008003964 AHBPrescTable
0x0000000008003974 . = ALIGN (0x4)
.rel.dyn 0x0000000008003974 0x0
.rel.iplt 0x0000000008003974 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 0x0000000008003974 0x0
0x0000000008003974 __exidx_start = .
*(.ARM.exidx*)
0x0000000008003974 __exidx_end = .
.preinit_array 0x0000000008003974 0x0
0x0000000008003974 PROVIDE (__preinit_array_start = .)
*(.preinit_array*)
0x0000000008003974 PROVIDE (__preinit_array_end = .)
.init_array 0x0000000008003974 0x4
0x0000000008003974 PROVIDE (__init_array_start = .)
*(SORT_BY_NAME(.init_array.*))
*(.init_array*)
.init_array 0x0000000008003974 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
0x0000000008003978 PROVIDE (__init_array_end = .)
.fini_array 0x0000000008003978 0x4
[!provide] PROVIDE (__fini_array_start = .)
*(SORT_BY_NAME(.fini_array.*))
*(.fini_array*)
.fini_array 0x0000000008003978 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 = .)
0x000000000800397c _sidata = LOADADDR (.data)
.data 0x0000000020000000 0x108 load address 0x000000000800397c
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.FS_Desc 0x0000000020000008 0x1c build/usbd_desc.o
0x0000000020000008 FS_Desc
.data.USBD_FS_DeviceDesc
0x0000000020000024 0x12 build/usbd_desc.o
0x0000000020000024 USBD_FS_DeviceDesc
*fill* 0x0000000020000036 0x2
.data.USBD_LangIDDesc
0x0000000020000038 0x4 build/usbd_desc.o
0x0000000020000038 USBD_LangIDDesc
.data.USBD_Interface_fops_FS
0x000000002000003c 0x8 build/usbd_midi_if.o
0x000000002000003c USBD_Interface_fops_FS
.data.USBD_MIDI
0x0000000020000044 0x38 build/usbd_midi.o
0x0000000020000044 USBD_MIDI
.data.USBD_MIDI_CfgDesc
0x000000002000007c 0x85 build/usbd_midi.o
0x000000002000007c USBD_MIDI_CfgDesc
*fill* 0x0000000020000101 0x3
.data.SystemCoreClock
0x0000000020000104 0x4 build/system_stm32f0xx.o
0x0000000020000104 SystemCoreClock
0x0000000020000108 . = ALIGN (0x4)
0x0000000020000108 _edata = .
.igot.plt 0x0000000020000108 0x0 load address 0x0000000008003a84
.igot.plt 0x0000000020000108 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
0x0000000020000108 . = ALIGN (0x4)
.bss 0x0000000020000108 0x8a8 load address 0x0000000008003a84
0x0000000020000108 _sbss = .
0x0000000020000108 __bss_start__ = _sbss
*(.bss)
.bss 0x0000000020000108 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.cfgidx.7846
0x0000000020000124 0x1 build/usbd_ctlreq.o
*fill* 0x0000000020000125 0x3
.bss.APP_Rx_ptr_in
0x0000000020000128 0x4 build/usbd_midi.o
0x0000000020000128 APP_Rx_ptr_in
.bss.USB_Tx_State
0x000000002000012c 0x1 build/usbd_midi.o
0x000000002000012c USB_Tx_State
*fill* 0x000000002000012d 0x3
.bss.pInstance
0x0000000020000130 0x4 build/usbd_midi.o
0x0000000020000130 pInstance
*(COMMON)
COMMON 0x0000000020000134 0x308 build/main.o
0x0000000020000134 hdma_adc
0x0000000020000178 hpcd_USB_FS
0x00000000200003ec ADCval
0x00000000200003fc hadc
COMMON 0x000000002000043c 0x4 build/stm32f0xx_hal.o
0x000000002000043c uwTick
COMMON 0x0000000020000440 0x224 build/usb_device.o
0x0000000020000440 hUsbDeviceFS
COMMON 0x0000000020000664 0x200 build/usbd_desc.o
0x0000000020000664 USBD_StrDesc
COMMON 0x0000000020000864 0xc build/usbd_midi_if.o
0x0000000020000864 rbuf_jack_rx
0x0000000020000864 rx_midi_msg
0x0000000020000864 midi_event
0x0000000020000864 rbuf_usb_rx
0x0000000020000870 analyzed_status
COMMON 0x0000000020000870 0x140 build/usbd_midi.o
0x0000000020000870 USB_Rx_Buffer
0x00000000200008b0 APP_Rx_Buffer
0x00000000200009b0 . = ALIGN (0x4)
0x00000000200009b0 _ebss = .
0x00000000200009b0 __bss_end__ = _ebss
._user_heap_stack
0x00000000200009b0 0x600 load address 0x0000000008003a84
0x00000000200009b0 . = ALIGN (0x8)
0x00000000200009b0 PROVIDE (end = .)
[!provide] PROVIDE (_end = .)
0x0000000020000bb0 . = (. + _Min_Heap_Size)
*fill* 0x00000000200009b0 0x200
0x0000000020000fb0 . = (. + _Min_Stack_Size)
*fill* 0x0000000020000bb0 0x400
0x0000000020000fb0 . = 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/usb_device.o
.ARM.attributes
0x00000000000002f8 0x31 build/usbd_conf.o
.ARM.attributes
0x0000000000000329 0x31 build/usbd_desc.o
.ARM.attributes
0x000000000000035a 0x31 build/usbd_midi_if.o
.ARM.attributes
0x000000000000038b 0x31 build/usbd_core.o
.ARM.attributes
0x00000000000003bc 0x31 build/usbd_ctlreq.o
.ARM.attributes
0x00000000000003ed 0x31 build/usbd_ioreq.o
.ARM.attributes
0x000000000000041e 0x31 build/usbd_midi.o
.ARM.attributes
0x000000000000044f 0x31 build/curebuffer.o
.ARM.attributes
0x0000000000000480 0x31 build/system_stm32f0xx.o
.ARM.attributes
0x00000000000004b1 0x21 build/startup_stm32f072xb.o
.ARM.attributes
0x00000000000004d2 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
0x00000000000004fe 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
0x000000000000052a 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
0x0000000000000548 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
0x0000000000000566 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 0x17379
.debug_info 0x0000000000000000 0x239a build/main.o
.debug_info 0x000000000000239a 0x9a0 build/stm32f0xx_it.o
.debug_info 0x0000000000002d3a 0xa35 build/stm32f0xx_hal_msp.o
.debug_info 0x000000000000376f 0x16b5 build/stm32f0xx_ll_usb.o
.debug_info 0x0000000000004e24 0xfdf build/stm32f0xx_hal_adc.o
.debug_info 0x0000000000005e03 0xade build/stm32f0xx_hal_rcc.o
.debug_info 0x00000000000068e1 0x7c3 build/stm32f0xx_hal_rcc_ex.o
.debug_info 0x00000000000070a4 0x7f4 build/stm32f0xx_hal.o
.debug_info 0x0000000000007898 0x703 build/stm32f0xx_hal_gpio.o
.debug_info 0x0000000000007f9b 0x8ea build/stm32f0xx_hal_dma.o
.debug_info 0x0000000000008885 0x8b7 build/stm32f0xx_hal_cortex.o
.debug_info 0x000000000000913c 0x13e4 build/stm32f0xx_hal_pcd.o
.debug_info 0x000000000000a520 0xa73 build/stm32f0xx_hal_pcd_ex.o
.debug_info 0x000000000000af93 0x1040 build/usb_device.o
.debug_info 0x000000000000bfd3 0x2282 build/usbd_conf.o
.debug_info 0x000000000000e255 0xeba build/usbd_desc.o
.debug_info 0x000000000000f10f 0x16d3 build/usbd_midi_if.o
.debug_info 0x00000000000107e2 0x16b2 build/usbd_core.o
.debug_info 0x0000000000011e94 0x187f build/usbd_ctlreq.o
.debug_info 0x0000000000013713 0x1189 build/usbd_ioreq.o
.debug_info 0x000000000001489c 0x1807 build/usbd_midi.o
.debug_info 0x00000000000160a3 0xfe1 build/curebuffer.o
.debug_info 0x0000000000017084 0x2d3 build/system_stm32f0xx.o
.debug_info 0x0000000000017357 0x22 build/startup_stm32f072xb.o
.debug_abbrev 0x0000000000000000 0x3750
.debug_abbrev 0x0000000000000000 0x29a build/main.o
.debug_abbrev 0x000000000000029a 0x183 build/stm32f0xx_it.o
.debug_abbrev 0x000000000000041d 0x1d0 build/stm32f0xx_hal_msp.o
.debug_abbrev 0x00000000000005ed 0x303 build/stm32f0xx_ll_usb.o
.debug_abbrev 0x00000000000008f0 0x28c build/stm32f0xx_hal_adc.o
.debug_abbrev 0x0000000000000b7c 0x269 build/stm32f0xx_hal_rcc.o
.debug_abbrev 0x0000000000000de5 0x208 build/stm32f0xx_hal_rcc_ex.o
.debug_abbrev 0x0000000000000fed 0x209 build/stm32f0xx_hal.o
.debug_abbrev 0x00000000000011f6 0x213 build/stm32f0xx_hal_gpio.o
.debug_abbrev 0x0000000000001409 0x252 build/stm32f0xx_hal_dma.o
.debug_abbrev 0x000000000000165b 0x279 build/stm32f0xx_hal_cortex.o
.debug_abbrev 0x00000000000018d4 0x2c8 build/stm32f0xx_hal_pcd.o
.debug_abbrev 0x0000000000001b9c 0x256 build/stm32f0xx_hal_pcd_ex.o
.debug_abbrev 0x0000000000001df2 0x209 build/usb_device.o
.debug_abbrev 0x0000000000001ffb 0x317 build/usbd_conf.o
.debug_abbrev 0x0000000000002312 0x284 build/usbd_desc.o
.debug_abbrev 0x0000000000002596 0x377 build/usbd_midi_if.o
.debug_abbrev 0x000000000000290d 0x2e2 build/usbd_core.o
.debug_abbrev 0x0000000000002bef 0x325 build/usbd_ctlreq.o
.debug_abbrev 0x0000000000002f14 0x1f7 build/usbd_ioreq.o
.debug_abbrev 0x000000000000310b 0x2c7 build/usbd_midi.o
.debug_abbrev 0x00000000000033d2 0x242 build/curebuffer.o
.debug_abbrev 0x0000000000003614 0x12a build/system_stm32f0xx.o
.debug_abbrev 0x000000000000373e 0x12 build/startup_stm32f072xb.o
.debug_loc 0x0000000000000000 0x9211
.debug_loc 0x0000000000000000 0xf1 build/main.o
.debug_loc 0x00000000000000f1 0x60 build/stm32f0xx_it.o
.debug_loc 0x0000000000000151 0xe5 build/stm32f0xx_hal_msp.o
.debug_loc 0x0000000000000236 0x1233 build/stm32f0xx_ll_usb.o
.debug_loc 0x0000000000001469 0xec0 build/stm32f0xx_hal_adc.o
.debug_loc 0x0000000000002329 0x61b build/stm32f0xx_hal_rcc.o
.debug_loc 0x0000000000002944 0x857 build/stm32f0xx_hal_rcc_ex.o
.debug_loc 0x000000000000319b 0x1bb build/stm32f0xx_hal.o
.debug_loc 0x0000000000003356 0x3e1 build/stm32f0xx_hal_gpio.o
.debug_loc 0x0000000000003737 0x973 build/stm32f0xx_hal_dma.o
.debug_loc 0x00000000000040aa 0x3f7 build/stm32f0xx_hal_cortex.o
.debug_loc 0x00000000000044a1 0xd92 build/stm32f0xx_hal_pcd.o
.debug_loc 0x0000000000005233 0x20b build/stm32f0xx_hal_pcd_ex.o
.debug_loc 0x000000000000543e 0x20 build/usb_device.o
.debug_loc 0x000000000000545e 0xf25 build/usbd_conf.o
.debug_loc 0x0000000000006383 0x357 build/usbd_desc.o
.debug_loc 0x00000000000066da 0x81e build/usbd_midi_if.o
.debug_loc 0x0000000000006ef8 0x8c4 build/usbd_core.o
.debug_loc 0x00000000000077bc 0xc9d build/usbd_ctlreq.o
.debug_loc 0x0000000000008459 0x31c build/usbd_ioreq.o
.debug_loc 0x0000000000008775 0x294 build/usbd_midi.o
.debug_loc 0x0000000000008a09 0x6bd build/curebuffer.o
.debug_loc 0x00000000000090c6 0x14b build/system_stm32f0xx.o
.debug_aranges 0x0000000000000000 0xc30
.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 0x28 build/usb_device.o
.debug_aranges
0x0000000000000788 0x108 build/usbd_conf.o
.debug_aranges
0x0000000000000890 0x50 build/usbd_desc.o
.debug_aranges
0x00000000000008e0 0x80 build/usbd_midi_if.o
.debug_aranges
0x0000000000000960 0xb8 build/usbd_core.o
.debug_aranges
0x0000000000000a18 0x88 build/usbd_ctlreq.o
.debug_aranges
0x0000000000000aa0 0x50 build/usbd_ioreq.o
.debug_aranges
0x0000000000000af0 0x50 build/usbd_midi.o
.debug_aranges
0x0000000000000b40 0xa0 build/curebuffer.o
.debug_aranges
0x0000000000000be0 0x28 build/system_stm32f0xx.o
.debug_aranges
0x0000000000000c08 0x28 build/startup_stm32f072xb.o
.debug_ranges 0x0000000000000000 0xcb0
.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 0x18 build/usb_device.o
.debug_ranges 0x0000000000000888 0xf8 build/usbd_conf.o
.debug_ranges 0x0000000000000980 0x40 build/usbd_desc.o
.debug_ranges 0x00000000000009c0 0x88 build/usbd_midi_if.o
.debug_ranges 0x0000000000000a48 0xa8 build/usbd_core.o
.debug_ranges 0x0000000000000af0 0x78 build/usbd_ctlreq.o
.debug_ranges 0x0000000000000b68 0x40 build/usbd_ioreq.o
.debug_ranges 0x0000000000000ba8 0x40 build/usbd_midi.o
.debug_ranges 0x0000000000000be8 0x90 build/curebuffer.o
.debug_ranges 0x0000000000000c78 0x18 build/system_stm32f0xx.o
.debug_ranges 0x0000000000000c90 0x20 build/startup_stm32f072xb.o
.debug_line 0x0000000000000000 0x6285
.debug_line 0x0000000000000000 0x4ce build/main.o
.debug_line 0x00000000000004ce 0x25f build/stm32f0xx_it.o
.debug_line 0x000000000000072d 0x279 build/stm32f0xx_hal_msp.o
.debug_line 0x00000000000009a6 0x68a build/stm32f0xx_ll_usb.o
.debug_line 0x0000000000001030 0x762 build/stm32f0xx_hal_adc.o
.debug_line 0x0000000000001792 0x4e6 build/stm32f0xx_hal_rcc.o
.debug_line 0x0000000000001c78 0x468 build/stm32f0xx_hal_rcc_ex.o
.debug_line 0x00000000000020e0 0x3bb build/stm32f0xx_hal.o
.debug_line 0x000000000000249b 0x33c build/stm32f0xx_hal_gpio.o
.debug_line 0x00000000000027d7 0x43d build/stm32f0xx_hal_dma.o
.debug_line 0x0000000000002c14 0x372 build/stm32f0xx_hal_cortex.o
.debug_line 0x0000000000002f86 0x6d2 build/stm32f0xx_hal_pcd.o
.debug_line 0x0000000000003658 0x2bb build/stm32f0xx_hal_pcd_ex.o
.debug_line 0x0000000000003913 0x337 build/usb_device.o
.debug_line 0x0000000000003c4a 0x615 build/usbd_conf.o
.debug_line 0x000000000000425f 0x355 build/usbd_desc.o
.debug_line 0x00000000000045b4 0x540 build/usbd_midi_if.o
.debug_line 0x0000000000004af4 0x500 build/usbd_core.o
.debug_line 0x0000000000004ff4 0x512 build/usbd_ctlreq.o
.debug_line 0x0000000000005506 0x366 build/usbd_ioreq.o
.debug_line 0x000000000000586c 0x3fa build/usbd_midi.o
.debug_line 0x0000000000005c66 0x3da build/curebuffer.o
.debug_line 0x0000000000006040 0x1ce build/system_stm32f0xx.o
.debug_line 0x000000000000620e 0x77 build/startup_stm32f072xb.o
.debug_str 0x0000000000000000 0x3a71
.debug_str 0x0000000000000000 0x1583 build/main.o
0x16e4 (size before relaxing)
.debug_str 0x0000000000001583 0xb6 build/stm32f0xx_it.o
0x7fe (size before relaxing)
.debug_str 0x0000000000001639 0x98 build/stm32f0xx_hal_msp.o
0x72f (size before relaxing)
.debug_str 0x00000000000016d1 0x367 build/stm32f0xx_ll_usb.o
0x7c3 (size before relaxing)
.debug_str 0x0000000000001a38 0x2f7 build/stm32f0xx_hal_adc.o
0x96c (size before relaxing)
.debug_str 0x0000000000001d2f 0x204 build/stm32f0xx_hal_rcc.o
0x6b1 (size before relaxing)
.debug_str 0x0000000000001f33 0x297 build/stm32f0xx_hal_rcc_ex.o
0x6a9 (size before relaxing)
.debug_str 0x00000000000021ca 0x1db build/stm32f0xx_hal.o
0x705 (size before relaxing)
.debug_str 0x00000000000023a5 0x108 build/stm32f0xx_hal_gpio.o
0x49c (size before relaxing)
.debug_str 0x00000000000024ad 0x201 build/stm32f0xx_hal_dma.o
0x6b1 (size before relaxing)
.debug_str 0x00000000000026ae 0x24d build/stm32f0xx_hal_cortex.o
0x6ef (size before relaxing)
.debug_str 0x00000000000028fb 0x35d build/stm32f0xx_hal_pcd.o
0xaca (size before relaxing)
.debug_str 0x0000000000002c58 0x191 build/stm32f0xx_hal_pcd_ex.o
0x7f3 (size before relaxing)
.debug_str 0x0000000000002de9 0x68 build/usb_device.o
0xad7 (size before relaxing)
.debug_str 0x0000000000002e51 0x278 build/usbd_conf.o
0x14d9 (size before relaxing)
.debug_str 0x00000000000030c9 0x11a build/usbd_desc.o
0x854 (size before relaxing)
.debug_str 0x00000000000031e3 0x317 build/usbd_midi_if.o
0xda7 (size before relaxing)
.debug_str 0x00000000000034fa 0x13e build/usbd_core.o
0xc99 (size before relaxing)
.debug_str 0x0000000000003638 0xe2 build/usbd_ctlreq.o
0xbb3 (size before relaxing)
.debug_str 0x000000000000371a 0x60 build/usbd_ioreq.o
0xae0 (size before relaxing)
.debug_str 0x000000000000377a 0xd5 build/usbd_midi.o
0xf10 (size before relaxing)
.debug_str 0x000000000000384f 0x1c6 build/curebuffer.o
0x7f8 (size before relaxing)
.debug_str 0x0000000000003a15 0x38 build/system_stm32f0xx.o
0x2c8 (size before relaxing)
.debug_str 0x0000000000003a4d 0x24 build/startup_stm32f072xb.o
0x49 (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/usb_device.o
.comment 0x000000000000007f 0x80 build/usbd_conf.o
.comment 0x000000000000007f 0x80 build/usbd_desc.o
.comment 0x000000000000007f 0x80 build/usbd_midi_if.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_midi.o
.comment 0x000000000000007f 0x80 build/curebuffer.o
.comment 0x000000000000007f 0x80 build/system_stm32f0xx.o
.debug_frame 0x0000000000000000 0x1fb4
.debug_frame 0x0000000000000000 0xd0 build/main.o
.debug_frame 0x00000000000000d0 0xa4 build/stm32f0xx_it.o
.debug_frame 0x0000000000000174 0x60 build/stm32f0xx_hal_msp.o
.debug_frame 0x00000000000001d4 0x254 build/stm32f0xx_ll_usb.o
.debug_frame 0x0000000000000428 0x2f8 build/stm32f0xx_hal_adc.o
.debug_frame 0x0000000000000720 0x15c build/stm32f0xx_hal_rcc.o
.debug_frame 0x000000000000087c 0x10c build/stm32f0xx_hal_rcc_ex.o
.debug_frame 0x0000000000000988 0x1c0 build/stm32f0xx_hal.o
.debug_frame 0x0000000000000b48 0xd8 build/stm32f0xx_hal_gpio.o
.debug_frame 0x0000000000000c20 0x198 build/stm32f0xx_hal_dma.o
.debug_frame 0x0000000000000db8 0xec build/stm32f0xx_hal_cortex.o
.debug_frame 0x0000000000000ea4 0x330 build/stm32f0xx_hal_pcd.o
.debug_frame 0x00000000000011d4 0xac build/stm32f0xx_hal_pcd_ex.o
.debug_frame 0x0000000000001280 0x3c build/usb_device.o
.debug_frame 0x00000000000012bc 0x33c build/usbd_conf.o
.debug_frame 0x00000000000015f8 0xbc build/usbd_desc.o
.debug_frame 0x00000000000016b4 0x19c build/usbd_midi_if.o
.debug_frame 0x0000000000001850 0x1ec build/usbd_core.o
.debug_frame 0x0000000000001a3c 0x198 build/usbd_ctlreq.o
.debug_frame 0x0000000000001bd4 0xd4 build/usbd_ioreq.o
.debug_frame 0x0000000000001ca8 0xb4 build/usbd_midi.o
.debug_frame 0x0000000000001d5c 0x1b0 build/curebuffer.o
.debug_frame 0x0000000000001f0c 0x3c build/system_stm32f0xx.o
.debug_frame 0x0000000000001f48 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 0x0000000000001f74 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 0x0000000000001f94 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
APP_Rx_Buffer build/usbd_midi.o
build/usbd_midi_if.o
APP_Rx_length build/usbd_midi.o
APP_Rx_ptr_in build/usbd_midi.o
build/usbd_midi_if.o
APP_Rx_ptr_out build/usbd_midi.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
FS_Desc build/usbd_desc.o
build/usb_device.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/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/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/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
build/usbd_conf.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_PCDEx_SetConnectionState 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
MX_USB_DEVICE_Init build/usb_device.o
MX_USB_MIDI_INIT build/usb_device.o
build/main.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_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
USBD_CtlReceiveStatus build/usbd_ioreq.o
build/usbd_core.o
USBD_CtlSendData build/usbd_ioreq.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_FS_ConfigStrDescriptor build/usbd_desc.o
USBD_FS_DeviceDesc build/usbd_desc.o
USBD_FS_DeviceDescriptor build/usbd_desc.o
USBD_FS_InterfaceStrDescriptor build/usbd_desc.o
USBD_FS_LangIDStrDescriptor build/usbd_desc.o
USBD_FS_ManufacturerStrDescriptor build/usbd_desc.o
USBD_FS_ProductStrDescriptor build/usbd_desc.o
USBD_FS_SerialStrDescriptor build/usbd_desc.o
USBD_GetRxCount build/usbd_ioreq.o
USBD_GetString build/usbd_ctlreq.o
build/usbd_desc.o
USBD_Init build/usbd_core.o
build/usb_device.o
USBD_Interface_fops_FS build/usbd_midi_if.o
build/usb_device.o
USBD_LL_ClearStallEP build/usbd_conf.o
build/usbd_ctlreq.o
USBD_LL_CloseEP build/usbd_conf.o
build/usbd_midi.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_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_midi.o
build/usbd_core.o
USBD_LL_PrepareReceive build/usbd_conf.o
build/usbd_midi.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
build/usbd_conf.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
build/usbd_conf.o
USBD_LL_Transmit build/usbd_conf.o
build/usbd_midi.o
build/usbd_ioreq.o
USBD_LangIDDesc build/usbd_desc.o
USBD_MIDI build/usbd_midi.o
build/usb_device.o
USBD_MIDI_CfgDesc build/usbd_midi.o
USBD_MIDI_RegisterInterface build/usbd_midi.o
build/usb_device.o
USBD_MIDI_SendPacket build/usbd_midi.o
build/usbd_midi_if.o
USBD_ParseSetupRequest build/usbd_ctlreq.o
build/usbd_core.o
USBD_RegisterClass build/usbd_core.o
build/usb_device.o
USBD_RunTestMode build/usbd_core.o
USBD_SetClassConfig build/usbd_core.o
build/usbd_ctlreq.o
USBD_Start build/usbd_core.o
build/usb_device.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_static_free build/usbd_conf.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_Rx_Buffer build/usbd_midi.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_Tx_State build/usbd_midi.o
USB_WritePMA build/stm32f0xx_ll_usb.o
USB_WritePacket build/stm32f0xx_ll_usb.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)
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)
__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)
_cureRingBufferU8GetUsedSize build/curebuffer.o
build/usbd_midi_if.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-malloc.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-malloc.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-malloc.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
_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
analyzed_status build/usbd_midi_if.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)
cureRingBuffer16Dequeue build/curebuffer.o
cureRingBuffer16Enqueue build/curebuffer.o
cureRingBuffer16EnqueueIgnoreErr build/curebuffer.o
cureRingBuffer16Free build/curebuffer.o
cureRingBuffer16GetElement build/curebuffer.o
cureRingBuffer16Init build/curebuffer.o
cureRingBufferU32Dequeue build/curebuffer.o
cureRingBufferU32Enqueue build/curebuffer.o
cureRingBufferU32EnqueueIgnoreErr build/curebuffer.o
cureRingBufferU32Free build/curebuffer.o
cureRingBufferU32GetElement build/curebuffer.o
cureRingBufferU32Init build/curebuffer.o
cureRingBufferU8Dequeue build/curebuffer.o
build/usbd_midi_if.o
cureRingBufferU8Enqueue build/curebuffer.o
build/usbd_midi_if.o
cureRingBufferU8Free build/curebuffer.o
cureRingBufferU8Init build/curebuffer.o
build/usbd_midi_if.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
free /home/janhenrik/programme/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-malloc.o)
build/curebuffer.o
g_pfnVectors build/startup_stm32f072xb.o
hUsbDeviceFS build/usb_device.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_USB_FS build/usbd_conf.o
build/main.o
build/stm32f0xx_it.o
isJackRxBufEmpty build/usbd_midi_if.o
isRxBufEmpty build/usbd_midi_if.o
isUsbRxBufEmpty build/usbd_midi_if.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
malloc /home/janhenrik/programme/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-malloc.o)
build/curebuffer.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
midiEventIsGenerated build/usbd_midi_if.o
midiGenerateUsbPacket build/usbd_midi_if.o
midiGetFromJackRx build/usbd_midi_if.o
midiGetFromUsbRx build/usbd_midi_if.o
midiInit build/usbd_midi_if.o
midiProcess build/usbd_midi_if.o
midiSetFromJackRx build/usbd_midi_if.o
midi_event build/usbd_midi_if.o
pFlash build/stm32f0xx_hal_flash.o
build/stm32f0xx_hal_flash_ex.o
pInstance build/usbd_midi.o
rbuf_jack_rx build/usbd_midi_if.o
rbuf_usb_rx build/usbd_midi_if.o
rx_midi_msg build/usbd_midi_if.o
sendMidiMessage build/usbd_midi_if.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
uwTick build/stm32f0xx_hal.o
uwTickFreq build/stm32f0xx_hal.o
uwTickPrio build/stm32f0xx_hal.o
build/stm32f0xx_hal_rcc.o
|