blob: 56a916ce5deff00926a065ec5b09eb5ca2a1cddd (
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
|
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/usbd_hid.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-memcpy-stub.o)
build/usbd_hid.o (memcpy)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-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
hUsbDeviceFS 0x224 build/usb_device.o
OutData 0x8 build/usbd_hid.o
ADCreg 0x10 build/main.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)
uwTick 0x4 build/stm32f0xx_hal.o
pFlash 0x20 build/stm32f0xx_hal_flash.o
nOutData 0x4 build/usbd_hid.o
ADClast 0x10 build/main.o
kbd_report 0x9 build/main.o
OutDataBuffer 0x8 build/usbd_hid.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
Discarded input sections
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crti.o
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crti.o
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crti.o
.data 0x0000000000000000 0x4 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtbegin.o
.text 0x0000000000000000 0x78 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
.ARM.extab 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
.ARM.exidx 0x0000000000000000 0x8 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
.ARM.attributes
0x0000000000000000 0x1b /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
.text 0x0000000000000000 0x0 build/main.o
.data 0x0000000000000000 0x0 build/main.o
.bss 0x0000000000000000 0x0 build/main.o
.text 0x0000000000000000 0x0 build/stm32f0xx_it.o
.data 0x0000000000000000 0x0 build/stm32f0xx_it.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_it.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_msp.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_msp.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_msp.o
.text.HAL_ADC_MspDeInit
0x0000000000000000 0x44 build/stm32f0xx_hal_msp.o
.text 0x0000000000000000 0x0 build/stm32f0xx_ll_usb.o
.data 0x0000000000000000 0x0 build/stm32f0xx_ll_usb.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_ll_usb.o
.text.USB_CoreInit
0x0000000000000000 0xe build/stm32f0xx_ll_usb.o
.text.USB_SetCurrentMode
0x0000000000000000 0x4 build/stm32f0xx_ll_usb.o
.text.USB_SetDevSpeed
0x0000000000000000 0x4 build/stm32f0xx_ll_usb.o
.text.USB_FlushTxFifo
0x0000000000000000 0x4 build/stm32f0xx_ll_usb.o
.text.USB_FlushRxFifo
0x0000000000000000 0x4 build/stm32f0xx_ll_usb.o
.text.USB_WritePacket
0x0000000000000000 0x4 build/stm32f0xx_ll_usb.o
.text.USB_ReadPacket
0x0000000000000000 0x4 build/stm32f0xx_ll_usb.o
.text.USB_StopDevice
0x0000000000000000 0x14 build/stm32f0xx_ll_usb.o
.text.USB_DevDisconnect
0x0000000000000000 0xe build/stm32f0xx_ll_usb.o
.text.USB_ReadDevAllOutEpInterrupt
0x0000000000000000 0x4 build/stm32f0xx_ll_usb.o
.text.USB_ReadDevAllInEpInterrupt
0x0000000000000000 0x4 build/stm32f0xx_ll_usb.o
.text.USB_ReadDevOutEPInterrupt
0x0000000000000000 0x4 build/stm32f0xx_ll_usb.o
.text.USB_ReadDevInEPInterrupt
0x0000000000000000 0x4 build/stm32f0xx_ll_usb.o
.text.USB_ClearInterrupts
0x0000000000000000 0x2 build/stm32f0xx_ll_usb.o
.text.USB_ActivateRemoteWakeup
0x0000000000000000 0xe build/stm32f0xx_ll_usb.o
.text.USB_DeActivateRemoteWakeup
0x0000000000000000 0xe build/stm32f0xx_ll_usb.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_adc.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_adc.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_adc.o
.text.ADC_ConversionStop
0x0000000000000000 0x54 build/stm32f0xx_hal_adc.o
.text.ADC_Disable
0x0000000000000000 0x80 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_MspInit
0x0000000000000000 0x2 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_MspDeInit
0x0000000000000000 0x2 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_DeInit
0x0000000000000000 0xa4 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_Start
0x0000000000000000 0x60 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_Stop
0x0000000000000000 0x44 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_PollForConversion
0x0000000000000000 0xc4 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_PollForEvent
0x0000000000000000 0x74 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_Start_IT
0x0000000000000000 0x88 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_Stop_IT
0x0000000000000000 0x50 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_Stop_DMA
0x0000000000000000 0x7c build/stm32f0xx_hal_adc.o
.text.HAL_ADC_GetValue
0x0000000000000000 0x6 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_LevelOutOfWindowCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_IRQHandler
0x0000000000000000 0xdc build/stm32f0xx_hal_adc.o
.text.HAL_ADC_AnalogWDGConfig
0x0000000000000000 0xac build/stm32f0xx_hal_adc.o
.text.HAL_ADC_GetState
0x0000000000000000 0x4 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_GetError
0x0000000000000000 0x4 build/stm32f0xx_hal_adc.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_adc_ex.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_adc_ex.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_adc_ex.o
.text.HAL_ADCEx_Calibration_Start
0x0000000000000000 0xb0 build/stm32f0xx_hal_adc_ex.o
.debug_info 0x0000000000000000 0x6ae build/stm32f0xx_hal_adc_ex.o
.debug_abbrev 0x0000000000000000 0x187 build/stm32f0xx_hal_adc_ex.o
.debug_loc 0x0000000000000000 0x11d build/stm32f0xx_hal_adc_ex.o
.debug_aranges
0x0000000000000000 0x20 build/stm32f0xx_hal_adc_ex.o
.debug_ranges 0x0000000000000000 0x10 build/stm32f0xx_hal_adc_ex.o
.debug_line 0x0000000000000000 0x249 build/stm32f0xx_hal_adc_ex.o
.debug_str 0x0000000000000000 0x666 build/stm32f0xx_hal_adc_ex.o
.comment 0x0000000000000000 0x80 build/stm32f0xx_hal_adc_ex.o
.debug_frame 0x0000000000000000 0x30 build/stm32f0xx_hal_adc_ex.o
.ARM.attributes
0x0000000000000000 0x31 build/stm32f0xx_hal_adc_ex.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_rcc.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_rcc.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_rcc.o
.text.HAL_RCC_DeInit
0x0000000000000000 0xcc build/stm32f0xx_hal_rcc.o
.text.HAL_RCC_MCOConfig
0x0000000000000000 0x54 build/stm32f0xx_hal_rcc.o
.text.HAL_RCC_EnableCSS
0x0000000000000000 0x14 build/stm32f0xx_hal_rcc.o
.text.HAL_RCC_DisableCSS
0x0000000000000000 0x14 build/stm32f0xx_hal_rcc.o
.text.HAL_RCC_GetHCLKFreq
0x0000000000000000 0xc build/stm32f0xx_hal_rcc.o
.text.HAL_RCC_GetPCLK1Freq
0x0000000000000000 0x20 build/stm32f0xx_hal_rcc.o
.text.HAL_RCC_GetOscConfig
0x0000000000000000 0xd4 build/stm32f0xx_hal_rcc.o
.text.HAL_RCC_GetClockConfig
0x0000000000000000 0x38 build/stm32f0xx_hal_rcc.o
.text.HAL_RCC_CSSCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_rcc.o
.text.HAL_RCC_NMI_IRQHandler
0x0000000000000000 0x20 build/stm32f0xx_hal_rcc.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_rcc_ex.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_rcc_ex.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_rcc_ex.o
.text.HAL_RCCEx_GetPeriphCLKConfig
0x0000000000000000 0x5c build/stm32f0xx_hal_rcc_ex.o
.text.HAL_RCCEx_GetPeriphCLKFreq
0x0000000000000000 0x1f4 build/stm32f0xx_hal_rcc_ex.o
.text.HAL_RCCEx_CRSConfig
0x0000000000000000 0x54 build/stm32f0xx_hal_rcc_ex.o
.text.HAL_RCCEx_CRSSoftwareSynchronizationGenerate
0x0000000000000000 0x10 build/stm32f0xx_hal_rcc_ex.o
.text.HAL_RCCEx_CRSGetSynchronizationInfo
0x0000000000000000 0x2c build/stm32f0xx_hal_rcc_ex.o
.text.HAL_RCCEx_CRSWaitSynchronization
0x0000000000000000 0x9c build/stm32f0xx_hal_rcc_ex.o
.text.HAL_RCCEx_CRS_SyncOkCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_rcc_ex.o
.text.HAL_RCCEx_CRS_SyncWarnCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_rcc_ex.o
.text.HAL_RCCEx_CRS_ExpectedSyncCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_rcc_ex.o
.text.HAL_RCCEx_CRS_ErrorCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_rcc_ex.o
.text.HAL_RCCEx_CRS_IRQHandler
0x0000000000000000 0x78 build/stm32f0xx_hal_rcc_ex.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal.o
.text.HAL_MspInit
0x0000000000000000 0x2 build/stm32f0xx_hal.o
.text.HAL_MspDeInit
0x0000000000000000 0x2 build/stm32f0xx_hal.o
.text.HAL_DeInit
0x0000000000000000 0x24 build/stm32f0xx_hal.o
.text.HAL_GetTickPrio
0x0000000000000000 0xc build/stm32f0xx_hal.o
.text.HAL_SetTickFreq
0x0000000000000000 0x2c build/stm32f0xx_hal.o
.text.HAL_GetTickFreq
0x0000000000000000 0xc build/stm32f0xx_hal.o
.text.HAL_SuspendTick
0x0000000000000000 0x10 build/stm32f0xx_hal.o
.text.HAL_ResumeTick
0x0000000000000000 0x10 build/stm32f0xx_hal.o
.text.HAL_GetHalVersion
0x0000000000000000 0x8 build/stm32f0xx_hal.o
.text.HAL_GetREVID
0x0000000000000000 0xc build/stm32f0xx_hal.o
.text.HAL_GetDEVID
0x0000000000000000 0x10 build/stm32f0xx_hal.o
.text.HAL_GetUIDw0
0x0000000000000000 0xc build/stm32f0xx_hal.o
.text.HAL_GetUIDw1
0x0000000000000000 0xc build/stm32f0xx_hal.o
.text.HAL_GetUIDw2
0x0000000000000000 0xc build/stm32f0xx_hal.o
.text.HAL_DBGMCU_EnableDBGStopMode
0x0000000000000000 0x10 build/stm32f0xx_hal.o
.text.HAL_DBGMCU_DisableDBGStopMode
0x0000000000000000 0x10 build/stm32f0xx_hal.o
.text.HAL_DBGMCU_EnableDBGStandbyMode
0x0000000000000000 0x10 build/stm32f0xx_hal.o
.text.HAL_DBGMCU_DisableDBGStandbyMode
0x0000000000000000 0x10 build/stm32f0xx_hal.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_i2c.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_i2c.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_i2c.o
.text.I2C_Flush_TXDR
0x0000000000000000 0x1e build/stm32f0xx_hal_i2c.o
.text.I2C_TransferConfig
0x0000000000000000 0x2c build/stm32f0xx_hal_i2c.o
.text.I2C_Enable_IRQ
0x0000000000000000 0x7c build/stm32f0xx_hal_i2c.o
.text.I2C_Disable_IRQ
0x0000000000000000 0x70 build/stm32f0xx_hal_i2c.o
.text.I2C_ConvertOtherXferOptions
0x0000000000000000 0x20 build/stm32f0xx_hal_i2c.o
.text.I2C_IsAcknowledgeFailed
0x0000000000000000 0x80 build/stm32f0xx_hal_i2c.o
.text.I2C_WaitOnTXISFlagUntilTimeout
0x0000000000000000 0x52 build/stm32f0xx_hal_i2c.o
.text.I2C_WaitOnFlagUntilTimeout
0x0000000000000000 0x4c build/stm32f0xx_hal_i2c.o
.text.I2C_RequestMemoryWrite
0x0000000000000000 0x74 build/stm32f0xx_hal_i2c.o
.text.I2C_RequestMemoryRead
0x0000000000000000 0x70 build/stm32f0xx_hal_i2c.o
.text.I2C_WaitOnSTOPFlagUntilTimeout
0x0000000000000000 0x4e build/stm32f0xx_hal_i2c.o
.text.I2C_WaitOnRXNEFlagUntilTimeout
0x0000000000000000 0x84 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_MspInit
0x0000000000000000 0x2 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Init
0x0000000000000000 0xcc build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_MspDeInit
0x0000000000000000 0x2 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_DeInit
0x0000000000000000 0x32 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Master_Transmit
0x0000000000000000 0x16c build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Master_Receive
0x0000000000000000 0x16c build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Slave_Transmit
0x0000000000000000 0x198 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Slave_Receive
0x0000000000000000 0x17c build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Master_Transmit_IT
0x0000000000000000 0x94 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Master_Receive_IT
0x0000000000000000 0x94 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Slave_Transmit_IT
0x0000000000000000 0x64 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Slave_Receive_IT
0x0000000000000000 0x64 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Master_Transmit_DMA
0x0000000000000000 0x154 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Master_Receive_DMA
0x0000000000000000 0x154 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Slave_Transmit_DMA
0x0000000000000000 0xf4 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Slave_Receive_DMA
0x0000000000000000 0xf8 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Mem_Write
0x0000000000000000 0x1a0 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Mem_Read
0x0000000000000000 0x1a8 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Mem_Write_IT
0x0000000000000000 0xd4 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Mem_Read_IT
0x0000000000000000 0xd8 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Mem_Write_DMA
0x0000000000000000 0x168 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Mem_Read_DMA
0x0000000000000000 0x16c build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_IsDeviceReady
0x0000000000000000 0x180 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Master_Seq_Transmit_IT
0x0000000000000000 0xb8 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Master_Seq_Transmit_DMA
0x0000000000000000 0x170 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Master_Seq_Receive_IT
0x0000000000000000 0xb8 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Master_Seq_Receive_DMA
0x0000000000000000 0x170 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Slave_Seq_Transmit_IT
0x0000000000000000 0xd4 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Slave_Seq_Transmit_DMA
0x0000000000000000 0x198 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Slave_Seq_Receive_IT
0x0000000000000000 0xd8 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Slave_Seq_Receive_DMA
0x0000000000000000 0x198 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_EnableListen_IT
0x0000000000000000 0x28 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_DisableListen_IT
0x0000000000000000 0x32 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_Master_Abort_IT
0x0000000000000000 0x64 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_EV_IRQHandler
0x0000000000000000 0x12 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_MasterTxCpltCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_MasterRxCpltCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_i2c.o
.text.I2C_ITMasterSeqCplt
0x0000000000000000 0x52 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_SlaveTxCpltCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_SlaveRxCpltCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_i2c.o
.text.I2C_ITSlaveSeqCplt
0x0000000000000000 0x58 build/stm32f0xx_hal_i2c.o
.text.I2C_DMASlaveTransmitCplt
0x0000000000000000 0x28 build/stm32f0xx_hal_i2c.o
.text.I2C_DMASlaveReceiveCplt
0x0000000000000000 0x30 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_AddrCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_i2c.o
.text.I2C_ITAddrCplt
0x0000000000000000 0xa2 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_ListenCpltCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_i2c.o
.text.I2C_ITListenCplt
0x0000000000000000 0x64 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_MemTxCpltCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_MemRxCpltCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_ErrorCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_AbortCpltCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_i2c.o
.text.I2C_ITError
0x0000000000000000 0xf8 build/stm32f0xx_hal_i2c.o
.text.I2C_ITSlaveCplt
0x0000000000000000 0x118 build/stm32f0xx_hal_i2c.o
.text.I2C_Slave_ISR_IT
0x0000000000000000 0x14c build/stm32f0xx_hal_i2c.o
.text.I2C_ITMasterCplt
0x0000000000000000 0xd4 build/stm32f0xx_hal_i2c.o
.text.I2C_Master_ISR_IT
0x0000000000000000 0x178 build/stm32f0xx_hal_i2c.o
.text.I2C_Slave_ISR_DMA
0x0000000000000000 0x108 build/stm32f0xx_hal_i2c.o
.text.I2C_Master_ISR_DMA
0x0000000000000000 0x13c build/stm32f0xx_hal_i2c.o
.text.I2C_DMAError
0x0000000000000000 0x18 build/stm32f0xx_hal_i2c.o
.text.I2C_DMAMasterTransmitCplt
0x0000000000000000 0x64 build/stm32f0xx_hal_i2c.o
.text.I2C_DMAMasterReceiveCplt
0x0000000000000000 0x64 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_ER_IRQHandler
0x0000000000000000 0x5e build/stm32f0xx_hal_i2c.o
.text.I2C_DMAAbort
0x0000000000000000 0x28 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_GetState
0x0000000000000000 0x8 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_GetMode
0x0000000000000000 0x8 build/stm32f0xx_hal_i2c.o
.text.HAL_I2C_GetError
0x0000000000000000 0x4 build/stm32f0xx_hal_i2c.o
.debug_info 0x0000000000000000 0x3b14 build/stm32f0xx_hal_i2c.o
.debug_abbrev 0x0000000000000000 0x2ab build/stm32f0xx_hal_i2c.o
.debug_loc 0x0000000000000000 0x49a3 build/stm32f0xx_hal_i2c.o
.debug_aranges
0x0000000000000000 0x288 build/stm32f0xx_hal_i2c.o
.debug_ranges 0x0000000000000000 0x278 build/stm32f0xx_hal_i2c.o
.debug_line 0x0000000000000000 0x1611 build/stm32f0xx_hal_i2c.o
.debug_str 0x0000000000000000 0xfca build/stm32f0xx_hal_i2c.o
.comment 0x0000000000000000 0x80 build/stm32f0xx_hal_i2c.o
.debug_frame 0x0000000000000000 0x960 build/stm32f0xx_hal_i2c.o
.ARM.attributes
0x0000000000000000 0x31 build/stm32f0xx_hal_i2c.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_i2c_ex.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_i2c_ex.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_i2c_ex.o
.text.HAL_I2CEx_ConfigAnalogFilter
0x0000000000000000 0x58 build/stm32f0xx_hal_i2c_ex.o
.text.HAL_I2CEx_ConfigDigitalFilter
0x0000000000000000 0x54 build/stm32f0xx_hal_i2c_ex.o
.text.HAL_I2CEx_EnableWakeUp
0x0000000000000000 0x4e build/stm32f0xx_hal_i2c_ex.o
.text.HAL_I2CEx_DisableWakeUp
0x0000000000000000 0x50 build/stm32f0xx_hal_i2c_ex.o
.text.HAL_I2CEx_EnableFastModePlus
0x0000000000000000 0x28 build/stm32f0xx_hal_i2c_ex.o
.text.HAL_I2CEx_DisableFastModePlus
0x0000000000000000 0x28 build/stm32f0xx_hal_i2c_ex.o
.debug_info 0x0000000000000000 0x996 build/stm32f0xx_hal_i2c_ex.o
.debug_abbrev 0x0000000000000000 0x1c7 build/stm32f0xx_hal_i2c_ex.o
.debug_loc 0x0000000000000000 0x2e1 build/stm32f0xx_hal_i2c_ex.o
.debug_aranges
0x0000000000000000 0x48 build/stm32f0xx_hal_i2c_ex.o
.debug_ranges 0x0000000000000000 0x38 build/stm32f0xx_hal_i2c_ex.o
.debug_line 0x0000000000000000 0x333 build/stm32f0xx_hal_i2c_ex.o
.debug_str 0x0000000000000000 0x870 build/stm32f0xx_hal_i2c_ex.o
.comment 0x0000000000000000 0x80 build/stm32f0xx_hal_i2c_ex.o
.debug_frame 0x0000000000000000 0xc0 build/stm32f0xx_hal_i2c_ex.o
.ARM.attributes
0x0000000000000000 0x31 build/stm32f0xx_hal_i2c_ex.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_gpio.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_gpio.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_gpio.o
.text.HAL_GPIO_DeInit
0x0000000000000000 0x104 build/stm32f0xx_hal_gpio.o
.text.HAL_GPIO_ReadPin
0x0000000000000000 0xe build/stm32f0xx_hal_gpio.o
.text.HAL_GPIO_TogglePin
0x0000000000000000 0x10 build/stm32f0xx_hal_gpio.o
.text.HAL_GPIO_LockPin
0x0000000000000000 0x2c build/stm32f0xx_hal_gpio.o
.text.HAL_GPIO_EXTI_Callback
0x0000000000000000 0x2 build/stm32f0xx_hal_gpio.o
.text.HAL_GPIO_EXTI_IRQHandler
0x0000000000000000 0x1c build/stm32f0xx_hal_gpio.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_dma.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_dma.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_dma.o
.text.HAL_DMA_DeInit
0x0000000000000000 0x48 build/stm32f0xx_hal_dma.o
.text.HAL_DMA_Start
0x0000000000000000 0x4e build/stm32f0xx_hal_dma.o
.text.HAL_DMA_Abort
0x0000000000000000 0x44 build/stm32f0xx_hal_dma.o
.text.HAL_DMA_Abort_IT
0x0000000000000000 0x4a build/stm32f0xx_hal_dma.o
.text.HAL_DMA_PollForTransfer
0x0000000000000000 0xc4 build/stm32f0xx_hal_dma.o
.text.HAL_DMA_RegisterCallback
0x0000000000000000 0x54 build/stm32f0xx_hal_dma.o
.text.HAL_DMA_UnRegisterCallback
0x0000000000000000 0x60 build/stm32f0xx_hal_dma.o
.rodata.HAL_DMA_UnRegisterCallback
0x0000000000000000 0x14 build/stm32f0xx_hal_dma.o
.text.HAL_DMA_GetState
0x0000000000000000 0x8 build/stm32f0xx_hal_dma.o
.text.HAL_DMA_GetError
0x0000000000000000 0x4 build/stm32f0xx_hal_dma.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_cortex.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_cortex.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_cortex.o
.text.HAL_NVIC_DisableIRQ
0x0000000000000000 0x20 build/stm32f0xx_hal_cortex.o
.text.HAL_NVIC_SystemReset
0x0000000000000000 0x1c build/stm32f0xx_hal_cortex.o
.text.HAL_NVIC_GetPriority
0x0000000000000000 0x4c build/stm32f0xx_hal_cortex.o
.text.HAL_NVIC_SetPendingIRQ
0x0000000000000000 0x1c build/stm32f0xx_hal_cortex.o
.text.HAL_NVIC_GetPendingIRQ
0x0000000000000000 0x20 build/stm32f0xx_hal_cortex.o
.text.HAL_NVIC_ClearPendingIRQ
0x0000000000000000 0x1c build/stm32f0xx_hal_cortex.o
.text.HAL_SYSTICK_CLKSourceConfig
0x0000000000000000 0x20 build/stm32f0xx_hal_cortex.o
.text.HAL_SYSTICK_Callback
0x0000000000000000 0x2 build/stm32f0xx_hal_cortex.o
.text.HAL_SYSTICK_IRQHandler
0x0000000000000000 0x8 build/stm32f0xx_hal_cortex.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_pwr.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_pwr.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_pwr.o
.text.HAL_PWR_DeInit
0x0000000000000000 0x20 build/stm32f0xx_hal_pwr.o
.text.HAL_PWR_EnableBkUpAccess
0x0000000000000000 0x14 build/stm32f0xx_hal_pwr.o
.text.HAL_PWR_DisableBkUpAccess
0x0000000000000000 0x14 build/stm32f0xx_hal_pwr.o
.text.HAL_PWR_EnableWakeUpPin
0x0000000000000000 0x10 build/stm32f0xx_hal_pwr.o
.text.HAL_PWR_DisableWakeUpPin
0x0000000000000000 0x10 build/stm32f0xx_hal_pwr.o
.text.HAL_PWR_EnterSLEEPMode
0x0000000000000000 0x20 build/stm32f0xx_hal_pwr.o
.text.HAL_PWR_EnterSTOPMode
0x0000000000000000 0x3c build/stm32f0xx_hal_pwr.o
.text.HAL_PWR_EnterSTANDBYMode
0x0000000000000000 0x20 build/stm32f0xx_hal_pwr.o
.text.HAL_PWR_EnableSleepOnExit
0x0000000000000000 0x10 build/stm32f0xx_hal_pwr.o
.text.HAL_PWR_DisableSleepOnExit
0x0000000000000000 0x10 build/stm32f0xx_hal_pwr.o
.text.HAL_PWR_EnableSEVOnPend
0x0000000000000000 0x10 build/stm32f0xx_hal_pwr.o
.text.HAL_PWR_DisableSEVOnPend
0x0000000000000000 0x10 build/stm32f0xx_hal_pwr.o
.debug_info 0x0000000000000000 0x4ac build/stm32f0xx_hal_pwr.o
.debug_abbrev 0x0000000000000000 0x196 build/stm32f0xx_hal_pwr.o
.debug_loc 0x0000000000000000 0xe8 build/stm32f0xx_hal_pwr.o
.debug_aranges
0x0000000000000000 0x78 build/stm32f0xx_hal_pwr.o
.debug_ranges 0x0000000000000000 0x68 build/stm32f0xx_hal_pwr.o
.debug_line 0x0000000000000000 0x2bf build/stm32f0xx_hal_pwr.o
.debug_str 0x0000000000000000 0x43b build/stm32f0xx_hal_pwr.o
.comment 0x0000000000000000 0x80 build/stm32f0xx_hal_pwr.o
.debug_frame 0x0000000000000000 0xdc build/stm32f0xx_hal_pwr.o
.ARM.attributes
0x0000000000000000 0x31 build/stm32f0xx_hal_pwr.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_pwr_ex.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_pwr_ex.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_pwr_ex.o
.text.HAL_PWR_ConfigPVD
0x0000000000000000 0x80 build/stm32f0xx_hal_pwr_ex.o
.text.HAL_PWR_EnablePVD
0x0000000000000000 0x10 build/stm32f0xx_hal_pwr_ex.o
.text.HAL_PWR_DisablePVD
0x0000000000000000 0x10 build/stm32f0xx_hal_pwr_ex.o
.text.HAL_PWR_PVDCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pwr_ex.o
.text.HAL_PWR_PVD_IRQHandler
0x0000000000000000 0x20 build/stm32f0xx_hal_pwr_ex.o
.text.HAL_PWREx_EnableVddio2Monitor
0x0000000000000000 0x18 build/stm32f0xx_hal_pwr_ex.o
.text.HAL_PWREx_DisableVddio2Monitor
0x0000000000000000 0x20 build/stm32f0xx_hal_pwr_ex.o
.text.HAL_PWREx_Vddio2MonitorCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pwr_ex.o
.text.HAL_PWREx_Vddio2Monitor_IRQHandler
0x0000000000000000 0x20 build/stm32f0xx_hal_pwr_ex.o
.debug_info 0x0000000000000000 0x338 build/stm32f0xx_hal_pwr_ex.o
.debug_abbrev 0x0000000000000000 0x161 build/stm32f0xx_hal_pwr_ex.o
.debug_loc 0x0000000000000000 0x40 build/stm32f0xx_hal_pwr_ex.o
.debug_aranges
0x0000000000000000 0x60 build/stm32f0xx_hal_pwr_ex.o
.debug_ranges 0x0000000000000000 0x50 build/stm32f0xx_hal_pwr_ex.o
.debug_line 0x0000000000000000 0x28c build/stm32f0xx_hal_pwr_ex.o
.debug_str 0x0000000000000000 0x394 build/stm32f0xx_hal_pwr_ex.o
.comment 0x0000000000000000 0x80 build/stm32f0xx_hal_pwr_ex.o
.debug_frame 0x0000000000000000 0xb8 build/stm32f0xx_hal_pwr_ex.o
.ARM.attributes
0x0000000000000000 0x31 build/stm32f0xx_hal_pwr_ex.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_flash.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_flash.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_flash.o
.text.FLASH_Program_HalfWord
0x0000000000000000 0x20 build/stm32f0xx_hal_flash.o
.text.FLASH_SetErrorCode
0x0000000000000000 0x3c build/stm32f0xx_hal_flash.o
.text.HAL_FLASH_Program_IT
0x0000000000000000 0x64 build/stm32f0xx_hal_flash.o
.text.HAL_FLASH_EndOfOperationCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_flash.o
.text.HAL_FLASH_OperationErrorCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_flash.o
.text.HAL_FLASH_IRQHandler
0x0000000000000000 0x154 build/stm32f0xx_hal_flash.o
.text.HAL_FLASH_Unlock
0x0000000000000000 0x30 build/stm32f0xx_hal_flash.o
.text.HAL_FLASH_Lock
0x0000000000000000 0x14 build/stm32f0xx_hal_flash.o
.text.HAL_FLASH_OB_Unlock
0x0000000000000000 0x28 build/stm32f0xx_hal_flash.o
.text.HAL_FLASH_OB_Lock
0x0000000000000000 0x18 build/stm32f0xx_hal_flash.o
.text.HAL_FLASH_GetError
0x0000000000000000 0xc build/stm32f0xx_hal_flash.o
.text.FLASH_WaitForLastOperation
0x0000000000000000 0x5c build/stm32f0xx_hal_flash.o
.text.HAL_FLASH_Program
0x0000000000000000 0xa0 build/stm32f0xx_hal_flash.o
.text.HAL_FLASH_OB_Launch
0x0000000000000000 0x20 build/stm32f0xx_hal_flash.o
.debug_info 0x0000000000000000 0x707 build/stm32f0xx_hal_flash.o
.debug_abbrev 0x0000000000000000 0x282 build/stm32f0xx_hal_flash.o
.debug_loc 0x0000000000000000 0x420 build/stm32f0xx_hal_flash.o
.debug_aranges
0x0000000000000000 0x88 build/stm32f0xx_hal_flash.o
.debug_ranges 0x0000000000000000 0x78 build/stm32f0xx_hal_flash.o
.debug_line 0x0000000000000000 0x3ba build/stm32f0xx_hal_flash.o
.debug_str 0x0000000000000000 0x5a9 build/stm32f0xx_hal_flash.o
.comment 0x0000000000000000 0x80 build/stm32f0xx_hal_flash.o
.debug_frame 0x0000000000000000 0x160 build/stm32f0xx_hal_flash.o
.ARM.attributes
0x0000000000000000 0x31 build/stm32f0xx_hal_flash.o
COMMON 0x0000000000000000 0x20 build/stm32f0xx_hal_flash.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_flash_ex.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_flash_ex.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_flash_ex.o
.text.FLASH_MassErase
0x0000000000000000 0x24 build/stm32f0xx_hal_flash_ex.o
.text.FLASH_OB_GetWRP
0x0000000000000000 0xc build/stm32f0xx_hal_flash_ex.o
.text.FLASH_OB_GetRDP
0x0000000000000000 0x20 build/stm32f0xx_hal_flash_ex.o
.text.FLASH_OB_GetUser
0x0000000000000000 0x10 build/stm32f0xx_hal_flash_ex.o
.text.FLASH_OB_RDP_LevelConfig
0x0000000000000000 0x64 build/stm32f0xx_hal_flash_ex.o
.text.FLASH_OB_UserConfig
0x0000000000000000 0x48 build/stm32f0xx_hal_flash_ex.o
.text.FLASH_OB_ProgramData
0x0000000000000000 0x40 build/stm32f0xx_hal_flash_ex.o
.text.HAL_FLASHEx_OBErase
0x0000000000000000 0x50 build/stm32f0xx_hal_flash_ex.o
.text.FLASH_OB_EnableWRP
0x0000000000000000 0xbc build/stm32f0xx_hal_flash_ex.o
.text.FLASH_OB_DisableWRP
0x0000000000000000 0xb8 build/stm32f0xx_hal_flash_ex.o
.text.HAL_FLASHEx_OBProgram
0x0000000000000000 0x94 build/stm32f0xx_hal_flash_ex.o
.text.HAL_FLASHEx_OBGetConfig
0x0000000000000000 0x1c build/stm32f0xx_hal_flash_ex.o
.text.HAL_FLASHEx_OBGetUserData
0x0000000000000000 0x24 build/stm32f0xx_hal_flash_ex.o
.text.FLASH_PageErase
0x0000000000000000 0x24 build/stm32f0xx_hal_flash_ex.o
.text.HAL_FLASHEx_Erase
0x0000000000000000 0xa4 build/stm32f0xx_hal_flash_ex.o
.text.HAL_FLASHEx_Erase_IT
0x0000000000000000 0x60 build/stm32f0xx_hal_flash_ex.o
.debug_info 0x0000000000000000 0xb00 build/stm32f0xx_hal_flash_ex.o
.debug_abbrev 0x0000000000000000 0x277 build/stm32f0xx_hal_flash_ex.o
.debug_loc 0x0000000000000000 0x915 build/stm32f0xx_hal_flash_ex.o
.debug_aranges
0x0000000000000000 0x98 build/stm32f0xx_hal_flash_ex.o
.debug_ranges 0x0000000000000000 0x88 build/stm32f0xx_hal_flash_ex.o
.debug_line 0x0000000000000000 0x472 build/stm32f0xx_hal_flash_ex.o
.debug_str 0x0000000000000000 0x6c3 build/stm32f0xx_hal_flash_ex.o
.comment 0x0000000000000000 0x80 build/stm32f0xx_hal_flash_ex.o
.debug_frame 0x0000000000000000 0x1bc build/stm32f0xx_hal_flash_ex.o
.ARM.attributes
0x0000000000000000 0x31 build/stm32f0xx_hal_flash_ex.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_exti.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_exti.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_exti.o
.text.HAL_EXTI_SetConfigLine
0x0000000000000000 0xc0 build/stm32f0xx_hal_exti.o
.text.HAL_EXTI_GetConfigLine
0x0000000000000000 0xa4 build/stm32f0xx_hal_exti.o
.text.HAL_EXTI_ClearConfigLine
0x0000000000000000 0x70 build/stm32f0xx_hal_exti.o
.text.HAL_EXTI_RegisterCallback
0x0000000000000000 0xe build/stm32f0xx_hal_exti.o
.text.HAL_EXTI_GetHandle
0x0000000000000000 0xe build/stm32f0xx_hal_exti.o
.text.HAL_EXTI_IRQHandler
0x0000000000000000 0x28 build/stm32f0xx_hal_exti.o
.text.HAL_EXTI_GetPending
0x0000000000000000 0x18 build/stm32f0xx_hal_exti.o
.text.HAL_EXTI_ClearPending
0x0000000000000000 0x14 build/stm32f0xx_hal_exti.o
.text.HAL_EXTI_GenerateSWI
0x0000000000000000 0x14 build/stm32f0xx_hal_exti.o
.debug_info 0x0000000000000000 0x606 build/stm32f0xx_hal_exti.o
.debug_abbrev 0x0000000000000000 0x204 build/stm32f0xx_hal_exti.o
.debug_loc 0x0000000000000000 0x485 build/stm32f0xx_hal_exti.o
.debug_aranges
0x0000000000000000 0x60 build/stm32f0xx_hal_exti.o
.debug_ranges 0x0000000000000000 0x50 build/stm32f0xx_hal_exti.o
.debug_line 0x0000000000000000 0x317 build/stm32f0xx_hal_exti.o
.debug_str 0x0000000000000000 0x474 build/stm32f0xx_hal_exti.o
.comment 0x0000000000000000 0x80 build/stm32f0xx_hal_exti.o
.debug_frame 0x0000000000000000 0xd4 build/stm32f0xx_hal_exti.o
.ARM.attributes
0x0000000000000000 0x31 build/stm32f0xx_hal_exti.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_tim.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_tim.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_tim.o
.debug_info 0x0000000000000000 0x14d build/stm32f0xx_hal_tim.o
.debug_abbrev 0x0000000000000000 0x8f build/stm32f0xx_hal_tim.o
.debug_aranges
0x0000000000000000 0x18 build/stm32f0xx_hal_tim.o
.debug_line 0x0000000000000000 0x164 build/stm32f0xx_hal_tim.o
.debug_str 0x0000000000000000 0x258 build/stm32f0xx_hal_tim.o
.comment 0x0000000000000000 0x80 build/stm32f0xx_hal_tim.o
.ARM.attributes
0x0000000000000000 0x31 build/stm32f0xx_hal_tim.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_tim_ex.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_tim_ex.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_tim_ex.o
.debug_info 0x0000000000000000 0x14d build/stm32f0xx_hal_tim_ex.o
.debug_abbrev 0x0000000000000000 0x8f build/stm32f0xx_hal_tim_ex.o
.debug_aranges
0x0000000000000000 0x18 build/stm32f0xx_hal_tim_ex.o
.debug_line 0x0000000000000000 0x164 build/stm32f0xx_hal_tim_ex.o
.debug_str 0x0000000000000000 0x25b build/stm32f0xx_hal_tim_ex.o
.comment 0x0000000000000000 0x80 build/stm32f0xx_hal_tim_ex.o
.ARM.attributes
0x0000000000000000 0x31 build/stm32f0xx_hal_tim_ex.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_pcd.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_pcd.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_MspInit
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_MspDeInit
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_Stop
0x0000000000000000 0x2e build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_DeInit
0x0000000000000000 0x28 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_DataOutStageCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_DataInStageCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_SetupStageCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_SOFCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_ResetCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_SuspendCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_ResumeCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_ISOOUTIncompleteCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_ISOINIncompleteCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_ConnectCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_DisconnectCallback
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_DevConnect
0x0000000000000000 0x28 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_DevDisconnect
0x0000000000000000 0x28 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_EP_Flush
0x0000000000000000 0x4 build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_ActivateRemoteWakeup
0x0000000000000000 0xa build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_DeActivateRemoteWakeup
0x0000000000000000 0xa build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_GetState
0x0000000000000000 0xc build/stm32f0xx_hal_pcd.o
.text 0x0000000000000000 0x0 build/stm32f0xx_hal_pcd_ex.o
.data 0x0000000000000000 0x0 build/stm32f0xx_hal_pcd_ex.o
.bss 0x0000000000000000 0x0 build/stm32f0xx_hal_pcd_ex.o
.text.HAL_PCDEx_ActivateBCD
0x0000000000000000 0x30 build/stm32f0xx_hal_pcd_ex.o
.text.HAL_PCDEx_DeActivateBCD
0x0000000000000000 0x18 build/stm32f0xx_hal_pcd_ex.o
.text.HAL_PCDEx_DeActivateLPM
0x0000000000000000 0x20 build/stm32f0xx_hal_pcd_ex.o
.text.HAL_PCDEx_BCD_Callback
0x0000000000000000 0x2 build/stm32f0xx_hal_pcd_ex.o
.text.HAL_PCDEx_BCD_VBUSDetect
0x0000000000000000 0xb6 build/stm32f0xx_hal_pcd_ex.o
.text 0x0000000000000000 0x0 build/usb_device.o
.data 0x0000000000000000 0x0 build/usb_device.o
.bss 0x0000000000000000 0x0 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_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_hid.o
.data 0x0000000000000000 0x0 build/usbd_hid.o
.bss 0x0000000000000000 0x0 build/usbd_hid.o
.text.USBD_HID_GetPollingInterval
0x0000000000000000 0xe build/usbd_hid.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/system_stm32f0xx.o
.data 0x0000000000000000 0x0 build/system_stm32f0xx.o
.bss 0x0000000000000000 0x0 build/system_stm32f0xx.o
.text.SystemCoreClockUpdate
0x0000000000000000 0xac build/system_stm32f0xx.o
.rodata.APBPrescTable
0x0000000000000000 0x8 build/system_stm32f0xx.o
.text 0x0000000000000000 0x14 build/startup_stm32f072xb.o
.data 0x0000000000000000 0x0 build/startup_stm32f072xb.o
.bss 0x0000000000000000 0x0 build/startup_stm32f072xb.o
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
.text.exit 0x0000000000000000 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
.debug_frame 0x0000000000000000 0x28 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
.ARM.attributes
0x0000000000000000 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
.rodata._global_impure_ptr
0x0000000000000000 0x4 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-init.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-init.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-init.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-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 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memcpy-stub.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memcpy-stub.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memcpy-stub.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-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 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-mallocr.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-mallocr.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-mallocr.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sbrkr.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sbrkr.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sbrkr.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-mlock.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-mlock.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-mlock.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-reent.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-reent.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-reent.o)
.text.cleanup_glue
0x0000000000000000 0x1a /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-reent.o)
.text._reclaim_reent
0x0000000000000000 0xcc /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-reent.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(sbrk.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(sbrk.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(sbrk.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(_exit.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(_exit.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(_exit.o)
.text._exit 0x0000000000000000 0x4 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(_exit.o)
.debug_frame 0x0000000000000000 0x20 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(_exit.o)
.ARM.attributes
0x0000000000000000 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(_exit.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a(_udivsi3.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a(_udivsi3.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a(_dvmd_tls.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a(_dvmd_tls.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtend.o
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtend.o
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtend.o
.eh_frame 0x0000000000000000 0x4 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtend.o
.ARM.attributes
0x0000000000000000 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtend.o
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtn.o
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtn.o
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtn.o
Memory Configuration
Name Origin Length Attributes
RAM 0x0000000020000000 0x0000000000004000 xrw
FLASH 0x0000000008000000 0x0000000000020000 xr
*default* 0x0000000000000000 0xffffffffffffffff
Linker script and memory map
LOAD /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crti.o
LOAD /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtbegin.o
LOAD /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
LOAD build/main.o
LOAD build/stm32f0xx_it.o
LOAD build/stm32f0xx_hal_msp.o
LOAD build/stm32f0xx_ll_usb.o
LOAD build/stm32f0xx_hal_adc.o
LOAD build/stm32f0xx_hal_adc_ex.o
LOAD build/stm32f0xx_hal_rcc.o
LOAD build/stm32f0xx_hal_rcc_ex.o
LOAD build/stm32f0xx_hal.o
LOAD build/stm32f0xx_hal_i2c.o
LOAD build/stm32f0xx_hal_i2c_ex.o
LOAD build/stm32f0xx_hal_gpio.o
LOAD build/stm32f0xx_hal_dma.o
LOAD build/stm32f0xx_hal_cortex.o
LOAD build/stm32f0xx_hal_pwr.o
LOAD build/stm32f0xx_hal_pwr_ex.o
LOAD build/stm32f0xx_hal_flash.o
LOAD build/stm32f0xx_hal_flash_ex.o
LOAD build/stm32f0xx_hal_exti.o
LOAD build/stm32f0xx_hal_tim.o
LOAD build/stm32f0xx_hal_tim_ex.o
LOAD build/stm32f0xx_hal_pcd.o
LOAD build/stm32f0xx_hal_pcd_ex.o
LOAD build/usb_device.o
LOAD build/usbd_conf.o
LOAD build/usbd_desc.o
LOAD build/usbd_hid.o
LOAD build/usbd_core.o
LOAD build/usbd_ctlreq.o
LOAD build/usbd_ioreq.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 0x3c2c
0x00000000080000c0 . = ALIGN (0x4)
*(.text)
.text 0x00000000080000c0 0x48 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/crtbegin.o
.text 0x0000000008000108 0x114 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a(_udivsi3.o)
0x0000000008000108 __udivsi3
0x0000000008000108 __aeabi_uidiv
0x0000000008000214 __aeabi_uidivmod
.text 0x000000000800021c 0x4 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v6-m/libgcc.a(_dvmd_tls.o)
0x000000000800021c __aeabi_ldiv0
0x000000000800021c __aeabi_idiv0
*(.text*)
.text.MX_GPIO_Init
0x0000000008000220 0x64 build/main.o
.text.MX_DMA_Init
0x0000000008000284 0x30 build/main.o
.text.MX_ADC_Init
0x00000000080002b4 0xb0 build/main.o
.text.kbd_send_ch
0x0000000008000364 0x84 build/main.o
0x0000000008000364 kbd_send_ch
.text.kbd_send_raw
0x00000000080003e8 0x6c build/main.o
0x00000000080003e8 kbd_send_raw
.text.sendVolUp
0x0000000008000454 0x3c build/main.o
0x0000000008000454 sendVolUp
.text.sendVolDown
0x0000000008000490 0x3c build/main.o
0x0000000008000490 sendVolDown
.text.SystemClock_Config
0x00000000080004cc 0x5e build/main.o
0x00000000080004cc SystemClock_Config
*fill* 0x000000000800052a 0x2
.text.main 0x000000000800052c 0x1ac build/main.o
0x000000000800052c main
.text.Error_Handler
0x00000000080006d8 0x30 build/main.o
0x00000000080006d8 Error_Handler
.text.NMI_Handler
0x0000000008000708 0x2 build/stm32f0xx_it.o
0x0000000008000708 NMI_Handler
.text.HardFault_Handler
0x000000000800070a 0x2 build/stm32f0xx_it.o
0x000000000800070a HardFault_Handler
.text.SVC_Handler
0x000000000800070c 0x2 build/stm32f0xx_it.o
0x000000000800070c SVC_Handler
.text.PendSV_Handler
0x000000000800070e 0x2 build/stm32f0xx_it.o
0x000000000800070e PendSV_Handler
.text.SysTick_Handler
0x0000000008000710 0x8 build/stm32f0xx_it.o
0x0000000008000710 SysTick_Handler
.text.DMA1_Channel1_IRQHandler
0x0000000008000718 0x10 build/stm32f0xx_it.o
0x0000000008000718 DMA1_Channel1_IRQHandler
.text.USB_IRQHandler
0x0000000008000728 0x10 build/stm32f0xx_it.o
0x0000000008000728 USB_IRQHandler
.text.HAL_MspInit
0x0000000008000738 0x30 build/stm32f0xx_hal_msp.o
0x0000000008000738 HAL_MspInit
.text.HAL_ADC_MspInit
0x0000000008000768 0xc4 build/stm32f0xx_hal_msp.o
0x0000000008000768 HAL_ADC_MspInit
.text.USB_EnableGlobalInt
0x000000000800082c 0x14 build/stm32f0xx_ll_usb.o
0x000000000800082c USB_EnableGlobalInt
.text.USB_DisableGlobalInt
0x0000000008000840 0x14 build/stm32f0xx_ll_usb.o
0x0000000008000840 USB_DisableGlobalInt
.text.USB_DevInit
0x0000000008000854 0x2a build/stm32f0xx_ll_usb.o
0x0000000008000854 USB_DevInit
*fill* 0x000000000800087e 0x2
.text.USB_ActivateEndpoint
0x0000000008000880 0x300 build/stm32f0xx_ll_usb.o
0x0000000008000880 USB_ActivateEndpoint
.text.USB_DeactivateEndpoint
0x0000000008000b80 0x170 build/stm32f0xx_ll_usb.o
0x0000000008000b80 USB_DeactivateEndpoint
.text.USB_EPSetStall
0x0000000008000cf0 0x4c build/stm32f0xx_ll_usb.o
0x0000000008000cf0 USB_EPSetStall
.text.USB_EPClearStall
0x0000000008000d3c 0x98 build/stm32f0xx_ll_usb.o
0x0000000008000d3c USB_EPClearStall
.text.USB_SetDevAddress
0x0000000008000dd4 0xe build/stm32f0xx_ll_usb.o
0x0000000008000dd4 USB_SetDevAddress
*fill* 0x0000000008000de2 0x2
.text.USB_DevConnect
0x0000000008000de4 0x14 build/stm32f0xx_ll_usb.o
0x0000000008000de4 USB_DevConnect
.text.USB_ReadInterrupts
0x0000000008000df8 0x8 build/stm32f0xx_ll_usb.o
0x0000000008000df8 USB_ReadInterrupts
.text.USB_EP0_OutStart
0x0000000008000e00 0x4 build/stm32f0xx_ll_usb.o
0x0000000008000e00 USB_EP0_OutStart
.text.USB_WritePMA
0x0000000008000e04 0x28 build/stm32f0xx_ll_usb.o
0x0000000008000e04 USB_WritePMA
.text.USB_EPStartXfer
0x0000000008000e2c 0x2d8 build/stm32f0xx_ll_usb.o
0x0000000008000e2c USB_EPStartXfer
.text.USB_ReadPMA
0x0000000008001104 0x2e build/stm32f0xx_ll_usb.o
0x0000000008001104 USB_ReadPMA
*fill* 0x0000000008001132 0x2
.text.ADC_Enable
0x0000000008001134 0xa8 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_Init
0x00000000080011dc 0x17c build/stm32f0xx_hal_adc.o
0x00000000080011dc HAL_ADC_Init
.text.HAL_ADC_Start_DMA
0x0000000008001358 0xa8 build/stm32f0xx_hal_adc.o
0x0000000008001358 HAL_ADC_Start_DMA
.text.HAL_ADC_ConvCpltCallback
0x0000000008001400 0x2 build/stm32f0xx_hal_adc.o
0x0000000008001400 HAL_ADC_ConvCpltCallback
*fill* 0x0000000008001402 0x2
.text.ADC_DMAConvCplt
0x0000000008001404 0x70 build/stm32f0xx_hal_adc.o
.text.HAL_ADC_ConvHalfCpltCallback
0x0000000008001474 0x2 build/stm32f0xx_hal_adc.o
0x0000000008001474 HAL_ADC_ConvHalfCpltCallback
.text.ADC_DMAHalfConvCplt
0x0000000008001476 0xa build/stm32f0xx_hal_adc.o
.text.HAL_ADC_ErrorCallback
0x0000000008001480 0x2 build/stm32f0xx_hal_adc.o
0x0000000008001480 HAL_ADC_ErrorCallback
.text.ADC_DMAError
0x0000000008001482 0x1a build/stm32f0xx_hal_adc.o
.text.HAL_ADC_ConfigChannel
0x000000000800149c 0x14c build/stm32f0xx_hal_adc.o
0x000000000800149c HAL_ADC_ConfigChannel
.text.HAL_RCC_OscConfig
0x00000000080015e8 0x540 build/stm32f0xx_hal_rcc.o
0x00000000080015e8 HAL_RCC_OscConfig
.text.HAL_RCC_GetSysClockFreq
0x0000000008001b28 0x94 build/stm32f0xx_hal_rcc.o
0x0000000008001b28 HAL_RCC_GetSysClockFreq
.text.HAL_RCC_ClockConfig
0x0000000008001bbc 0x140 build/stm32f0xx_hal_rcc.o
0x0000000008001bbc HAL_RCC_ClockConfig
.text.HAL_RCCEx_PeriphCLKConfig
0x0000000008001cfc 0x158 build/stm32f0xx_hal_rcc_ex.o
0x0000000008001cfc HAL_RCCEx_PeriphCLKConfig
.text.HAL_InitTick
0x0000000008001e54 0x50 build/stm32f0xx_hal.o
0x0000000008001e54 HAL_InitTick
.text.HAL_Init
0x0000000008001ea4 0x20 build/stm32f0xx_hal.o
0x0000000008001ea4 HAL_Init
.text.HAL_IncTick
0x0000000008001ec4 0x18 build/stm32f0xx_hal.o
0x0000000008001ec4 HAL_IncTick
.text.HAL_GetTick
0x0000000008001edc 0xc build/stm32f0xx_hal.o
0x0000000008001edc HAL_GetTick
.text.HAL_Delay
0x0000000008001ee8 0x24 build/stm32f0xx_hal.o
0x0000000008001ee8 HAL_Delay
.text.HAL_GPIO_Init
0x0000000008001f0c 0x198 build/stm32f0xx_hal_gpio.o
0x0000000008001f0c HAL_GPIO_Init
.text.HAL_GPIO_WritePin
0x00000000080020a4 0xc build/stm32f0xx_hal_gpio.o
0x00000000080020a4 HAL_GPIO_WritePin
.text.DMA_SetConfig
0x00000000080020b0 0x2a build/stm32f0xx_hal_dma.o
*fill* 0x00000000080020da 0x2
.text.DMA_CalcBaseAndBitshift
0x00000000080020dc 0x28 build/stm32f0xx_hal_dma.o
.text.HAL_DMA_Init
0x0000000008002104 0x50 build/stm32f0xx_hal_dma.o
0x0000000008002104 HAL_DMA_Init
.text.HAL_DMA_Start_IT
0x0000000008002154 0x76 build/stm32f0xx_hal_dma.o
0x0000000008002154 HAL_DMA_Start_IT
.text.HAL_DMA_IRQHandler
0x00000000080021ca 0xaa build/stm32f0xx_hal_dma.o
0x00000000080021ca HAL_DMA_IRQHandler
.text.HAL_NVIC_SetPriority
0x0000000008002274 0x64 build/stm32f0xx_hal_cortex.o
0x0000000008002274 HAL_NVIC_SetPriority
.text.HAL_NVIC_EnableIRQ
0x00000000080022d8 0x18 build/stm32f0xx_hal_cortex.o
0x00000000080022d8 HAL_NVIC_EnableIRQ
.text.HAL_SYSTICK_Config
0x00000000080022f0 0x38 build/stm32f0xx_hal_cortex.o
0x00000000080022f0 HAL_SYSTICK_Config
.text.HAL_PCD_Init
0x0000000008002328 0xd4 build/stm32f0xx_hal_pcd.o
0x0000000008002328 HAL_PCD_Init
.text.HAL_PCD_Start
0x00000000080023fc 0x2e build/stm32f0xx_hal_pcd.o
0x00000000080023fc HAL_PCD_Start
.text.HAL_PCD_SetAddress
0x000000000800242a 0x2c build/stm32f0xx_hal_pcd.o
0x000000000800242a HAL_PCD_SetAddress
.text.HAL_PCD_EP_Open
0x0000000008002456 0x7a build/stm32f0xx_hal_pcd.o
0x0000000008002456 HAL_PCD_EP_Open
.text.HAL_PCD_EP_Close
0x00000000080024d0 0x64 build/stm32f0xx_hal_pcd.o
0x00000000080024d0 HAL_PCD_EP_Close
.text.HAL_PCD_EP_Receive
0x0000000008002534 0x4c build/stm32f0xx_hal_pcd.o
0x0000000008002534 HAL_PCD_EP_Receive
.text.HAL_PCD_EP_GetRxCount
0x0000000008002580 0x10 build/stm32f0xx_hal_pcd.o
0x0000000008002580 HAL_PCD_EP_GetRxCount
.text.HAL_PCD_EP_Transmit
0x0000000008002590 0x40 build/stm32f0xx_hal_pcd.o
0x0000000008002590 HAL_PCD_EP_Transmit
.text.PCD_EP_ISR_Handler
0x00000000080025d0 0x39c build/stm32f0xx_hal_pcd.o
.text.HAL_PCD_IRQHandler
0x000000000800296c 0x1ac build/stm32f0xx_hal_pcd.o
0x000000000800296c HAL_PCD_IRQHandler
.text.HAL_PCD_EP_SetStall
0x0000000008002b18 0x7e build/stm32f0xx_hal_pcd.o
0x0000000008002b18 HAL_PCD_EP_SetStall
.text.HAL_PCD_EP_ClrStall
0x0000000008002b96 0x76 build/stm32f0xx_hal_pcd.o
0x0000000008002b96 HAL_PCD_EP_ClrStall
.text.HAL_PCDEx_PMAConfig
0x0000000008002c0c 0x32 build/stm32f0xx_hal_pcd_ex.o
0x0000000008002c0c HAL_PCDEx_PMAConfig
.text.HAL_PCDEx_ActivateLPM
0x0000000008002c3e 0x26 build/stm32f0xx_hal_pcd_ex.o
0x0000000008002c3e HAL_PCDEx_ActivateLPM
.text.HAL_PCDEx_LPM_Callback
0x0000000008002c64 0x2 build/stm32f0xx_hal_pcd_ex.o
0x0000000008002c64 HAL_PCDEx_LPM_Callback
*fill* 0x0000000008002c66 0x2
.text.MX_USB_HID_INIT
0x0000000008002c68 0x2c build/usb_device.o
0x0000000008002c68 MX_USB_HID_INIT
.text.HAL_PCD_MspInit
0x0000000008002c94 0x40 build/usbd_conf.o
0x0000000008002c94 HAL_PCD_MspInit
.text.HAL_PCD_SetupStageCallback
0x0000000008002cd4 0x16 build/usbd_conf.o
0x0000000008002cd4 HAL_PCD_SetupStageCallback
.text.HAL_PCD_DataOutStageCallback
0x0000000008002cea 0x1a build/usbd_conf.o
0x0000000008002cea HAL_PCD_DataOutStageCallback
.text.HAL_PCD_DataInStageCallback
0x0000000008002d04 0x16 build/usbd_conf.o
0x0000000008002d04 HAL_PCD_DataInStageCallback
.text.HAL_PCD_SOFCallback
0x0000000008002d1a 0xe build/usbd_conf.o
0x0000000008002d1a HAL_PCD_SOFCallback
.text.HAL_PCD_ResetCallback
0x0000000008002d28 0x18 build/usbd_conf.o
0x0000000008002d28 HAL_PCD_ResetCallback
.text.HAL_PCD_SuspendCallback
0x0000000008002d40 0x24 build/usbd_conf.o
0x0000000008002d40 HAL_PCD_SuspendCallback
.text.HAL_PCD_ResumeCallback
0x0000000008002d64 0xe build/usbd_conf.o
0x0000000008002d64 HAL_PCD_ResumeCallback
*fill* 0x0000000008002d72 0x2
.text.USBD_LL_Init
0x0000000008002d74 0x7c build/usbd_conf.o
0x0000000008002d74 USBD_LL_Init
.text.USBD_LL_Start
0x0000000008002df0 0x20 build/usbd_conf.o
0x0000000008002df0 USBD_LL_Start
.text.USBD_LL_OpenEP
0x0000000008002e10 0x26 build/usbd_conf.o
0x0000000008002e10 USBD_LL_OpenEP
.text.USBD_LL_CloseEP
0x0000000008002e36 0x20 build/usbd_conf.o
0x0000000008002e36 USBD_LL_CloseEP
.text.USBD_LL_StallEP
0x0000000008002e56 0x20 build/usbd_conf.o
0x0000000008002e56 USBD_LL_StallEP
.text.USBD_LL_ClearStallEP
0x0000000008002e76 0x20 build/usbd_conf.o
0x0000000008002e76 USBD_LL_ClearStallEP
.text.USBD_LL_IsStallEP
0x0000000008002e96 0x2c build/usbd_conf.o
0x0000000008002e96 USBD_LL_IsStallEP
.text.USBD_LL_SetUSBAddress
0x0000000008002ec2 0x20 build/usbd_conf.o
0x0000000008002ec2 USBD_LL_SetUSBAddress
.text.USBD_LL_Transmit
0x0000000008002ee2 0x20 build/usbd_conf.o
0x0000000008002ee2 USBD_LL_Transmit
.text.USBD_LL_PrepareReceive
0x0000000008002f02 0x20 build/usbd_conf.o
0x0000000008002f02 USBD_LL_PrepareReceive
.text.USBD_LL_GetRxDataSize
0x0000000008002f22 0xe build/usbd_conf.o
0x0000000008002f22 USBD_LL_GetRxDataSize
.text.USBD_FS_DeviceDescriptor
0x0000000008002f30 0xc build/usbd_desc.o
0x0000000008002f30 USBD_FS_DeviceDescriptor
.text.USBD_FS_LangIDStrDescriptor
0x0000000008002f3c 0xc build/usbd_desc.o
0x0000000008002f3c USBD_FS_LangIDStrDescriptor
.text.USBD_FS_ProductStrDescriptor
0x0000000008002f48 0x28 build/usbd_desc.o
0x0000000008002f48 USBD_FS_ProductStrDescriptor
.text.USBD_FS_ManufacturerStrDescriptor
0x0000000008002f70 0x1c build/usbd_desc.o
0x0000000008002f70 USBD_FS_ManufacturerStrDescriptor
.text.USBD_FS_SerialStrDescriptor
0x0000000008002f8c 0x28 build/usbd_desc.o
0x0000000008002f8c USBD_FS_SerialStrDescriptor
.text.USBD_FS_ConfigStrDescriptor
0x0000000008002fb4 0x28 build/usbd_desc.o
0x0000000008002fb4 USBD_FS_ConfigStrDescriptor
.text.USBD_FS_InterfaceStrDescriptor
0x0000000008002fdc 0x28 build/usbd_desc.o
0x0000000008002fdc USBD_FS_InterfaceStrDescriptor
.text.USBD_HID_GetCfgDesc
0x0000000008003004 0xc build/usbd_hid.o
.text.USBD_HID_DataIn
0x0000000008003010 0xe build/usbd_hid.o
*fill* 0x000000000800301e 0x2
.text.USBD_HID_GetDeviceQualifierDesc
0x0000000008003020 0xc build/usbd_hid.o
.text.USBD_HID_Setup
0x000000000800302c 0xc8 build/usbd_hid.o
.text.USBD_HID_DeInit
0x00000000080030f4 0x2c build/usbd_hid.o
.text.USBD_HID_Init
0x0000000008003120 0x2a build/usbd_hid.o
.text.USBD_HID_SendReport
0x000000000800314a 0x2a build/usbd_hid.o
0x000000000800314a USBD_HID_SendReport
.text.USBD_HID_GetReport
0x0000000008003174 0x2 build/usbd_hid.o
0x0000000008003174 USBD_HID_GetReport
*fill* 0x0000000008003176 0x2
.text.USBD_HID_DataOut
0x0000000008003178 0x44 build/usbd_hid.o
.text.USBD_Init
0x00000000080031bc 0x38 build/usbd_core.o
0x00000000080031bc USBD_Init
.text.USBD_RegisterClass
0x00000000080031f4 0x12 build/usbd_core.o
0x00000000080031f4 USBD_RegisterClass
.text.USBD_Start
0x0000000008003206 0xa build/usbd_core.o
0x0000000008003206 USBD_Start
.text.USBD_SetClassConfig
0x0000000008003210 0x20 build/usbd_core.o
0x0000000008003210 USBD_SetClassConfig
.text.USBD_ClrClassConfig
0x0000000008003230 0x10 build/usbd_core.o
0x0000000008003230 USBD_ClrClassConfig
.text.USBD_LL_SetupStage
0x0000000008003240 0x68 build/usbd_core.o
0x0000000008003240 USBD_LL_SetupStage
.text.USBD_LL_DataOutStage
0x00000000080032a8 0x78 build/usbd_core.o
0x00000000080032a8 USBD_LL_DataOutStage
.text.USBD_LL_DataInStage
0x0000000008003320 0xc2 build/usbd_core.o
0x0000000008003320 USBD_LL_DataInStage
.text.USBD_LL_Reset
0x00000000080033e2 0x46 build/usbd_core.o
0x00000000080033e2 USBD_LL_Reset
.text.USBD_LL_SetSpeed
0x0000000008003428 0x6 build/usbd_core.o
0x0000000008003428 USBD_LL_SetSpeed
.text.USBD_LL_Suspend
0x000000000800342e 0x16 build/usbd_core.o
0x000000000800342e USBD_LL_Suspend
.text.USBD_LL_Resume
0x0000000008003444 0xe build/usbd_core.o
0x0000000008003444 USBD_LL_Resume
.text.USBD_LL_SOF
0x0000000008003452 0x20 build/usbd_core.o
0x0000000008003452 USBD_LL_SOF
.text.USBD_GetLen
0x0000000008003472 0x14 build/usbd_ctlreq.o
.text.USBD_SetFeature
0x0000000008003486 0x22 build/usbd_ctlreq.o
.text.USBD_ParseSetupRequest
0x00000000080034a8 0x28 build/usbd_ctlreq.o
0x00000000080034a8 USBD_ParseSetupRequest
.text.USBD_CtlError
0x00000000080034d0 0x14 build/usbd_ctlreq.o
0x00000000080034d0 USBD_CtlError
.text.USBD_GetDescriptor
0x00000000080034e4 0x15c build/usbd_ctlreq.o
.text.USBD_SetAddress
0x0000000008003640 0x58 build/usbd_ctlreq.o
.text.USBD_SetConfig
0x0000000008003698 0xb0 build/usbd_ctlreq.o
.text.USBD_GetConfig
0x0000000008003748 0x3c build/usbd_ctlreq.o
.text.USBD_GetStatus
0x0000000008003784 0x34 build/usbd_ctlreq.o
.text.USBD_ClrFeature
0x00000000080037b8 0x36 build/usbd_ctlreq.o
*fill* 0x00000000080037ee 0x2
.text.USBD_StdDevReq
0x00000000080037f0 0x48 build/usbd_ctlreq.o
0x00000000080037f0 USBD_StdDevReq
.text.USBD_StdItfReq
0x0000000008003838 0x3e build/usbd_ctlreq.o
0x0000000008003838 USBD_StdItfReq
.text.USBD_StdEPReq
0x0000000008003876 0x138 build/usbd_ctlreq.o
0x0000000008003876 USBD_StdEPReq
.text.USBD_GetString
0x00000000080039ae 0x3c build/usbd_ctlreq.o
0x00000000080039ae USBD_GetString
.text.USBD_CtlSendData
0x00000000080039ea 0x1c build/usbd_ioreq.o
0x00000000080039ea USBD_CtlSendData
.text.USBD_CtlContinueSendData
0x0000000008003a06 0x10 build/usbd_ioreq.o
0x0000000008003a06 USBD_CtlContinueSendData
.text.USBD_CtlContinueRx
0x0000000008003a16 0x10 build/usbd_ioreq.o
0x0000000008003a16 USBD_CtlContinueRx
.text.USBD_CtlSendStatus
0x0000000008003a26 0x18 build/usbd_ioreq.o
0x0000000008003a26 USBD_CtlSendStatus
.text.USBD_CtlReceiveStatus
0x0000000008003a3e 0x18 build/usbd_ioreq.o
0x0000000008003a3e USBD_CtlReceiveStatus
.text.SystemInit
0x0000000008003a56 0x2 build/system_stm32f0xx.o
0x0000000008003a56 SystemInit
.text.Reset_Handler
0x0000000008003a58 0x50 build/startup_stm32f072xb.o
0x0000000008003a58 Reset_Handler
.text.Default_Handler
0x0000000008003aa8 0x2 build/startup_stm32f072xb.o
0x0000000008003aa8 TIM1_CC_IRQHandler
0x0000000008003aa8 TSC_IRQHandler
0x0000000008003aa8 ADC1_COMP_IRQHandler
0x0000000008003aa8 I2C1_IRQHandler
0x0000000008003aa8 RCC_CRS_IRQHandler
0x0000000008003aa8 SPI1_IRQHandler
0x0000000008003aa8 TIM6_DAC_IRQHandler
0x0000000008003aa8 USART3_4_IRQHandler
0x0000000008003aa8 EXTI2_3_IRQHandler
0x0000000008003aa8 I2C2_IRQHandler
0x0000000008003aa8 TIM17_IRQHandler
0x0000000008003aa8 CEC_CAN_IRQHandler
0x0000000008003aa8 RTC_IRQHandler
0x0000000008003aa8 PVD_VDDIO2_IRQHandler
0x0000000008003aa8 DMA1_Channel4_5_6_7_IRQHandler
0x0000000008003aa8 TIM16_IRQHandler
0x0000000008003aa8 TIM3_IRQHandler
0x0000000008003aa8 EXTI4_15_IRQHandler
0x0000000008003aa8 Default_Handler
0x0000000008003aa8 TIM14_IRQHandler
0x0000000008003aa8 TIM7_IRQHandler
0x0000000008003aa8 TIM15_IRQHandler
0x0000000008003aa8 EXTI0_1_IRQHandler
0x0000000008003aa8 SPI2_IRQHandler
0x0000000008003aa8 WWDG_IRQHandler
0x0000000008003aa8 TIM2_IRQHandler
0x0000000008003aa8 DMA1_Channel2_3_IRQHandler
0x0000000008003aa8 USART2_IRQHandler
0x0000000008003aa8 FLASH_IRQHandler
0x0000000008003aa8 USART1_IRQHandler
0x0000000008003aa8 TIM1_BRK_UP_TRG_COM_IRQHandler
*fill* 0x0000000008003aaa 0x2
.text.__libc_init_array
0x0000000008003aac 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)
0x0000000008003aac __libc_init_array
.text.malloc 0x0000000008003af4 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)
0x0000000008003af4 malloc
.text.free 0x0000000008003b08 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)
0x0000000008003b08 free
.text.memcpy 0x0000000008003b1c 0x12 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memcpy-stub.o)
0x0000000008003b1c memcpy
.text.memset 0x0000000008003b2e 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)
0x0000000008003b2e memset
*fill* 0x0000000008003b3e 0x2
.text._free_r 0x0000000008003b40 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)
0x0000000008003b40 _free_r
.text._malloc_r
0x0000000008003bd4 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)
0x0000000008003bd4 _malloc_r
.text._sbrk_r 0x0000000008003c90 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)
0x0000000008003c90 _sbrk_r
.text.__malloc_lock
0x0000000008003cb4 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)
0x0000000008003cb4 __malloc_lock
.text.__malloc_unlock
0x0000000008003cb6 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)
0x0000000008003cb6 __malloc_unlock
.text._sbrk 0x0000000008003cb8 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)
0x0000000008003cb8 _sbrk
*(.glue_7)
.glue_7 0x0000000008003cd4 0x0 linker stubs
*(.glue_7t)
.glue_7t 0x0000000008003cd4 0x0 linker stubs
*(.eh_frame)
.eh_frame 0x0000000008003cd4 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 0x0000000008003cd4 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
0x0000000008003cd4 _init
.init 0x0000000008003cd8 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 0x0000000008003ce0 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
0x0000000008003ce0 _fini
.fini 0x0000000008003ce4 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
0x0000000008003cec . = ALIGN (0x4)
0x0000000008003cec _etext = .
.vfp11_veneer 0x0000000008003cec 0x0
.vfp11_veneer 0x0000000008003cec 0x0 linker stubs
.v4_bx 0x0000000008003cec 0x0
.v4_bx 0x0000000008003cec 0x0 linker stubs
.iplt 0x0000000008003cec 0x0
.iplt 0x0000000008003cec 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 0x0000000008003cec 0x15c
0x0000000008003cec . = ALIGN (0x4)
*(.rodata)
.rodata 0x0000000008003cec 0x20 build/stm32f0xx_hal_rcc.o
*(.rodata*)
.rodata._asciimap
0x0000000008003d0c 0x80 build/main.o
0x0000000008003d0c _asciimap
.rodata.USBD_FS_ConfigStrDescriptor.str1.4
0x0000000008003d8c 0xb build/usbd_desc.o
*fill* 0x0000000008003d97 0x1
.rodata.USBD_FS_InterfaceStrDescriptor.str1.4
0x0000000008003d98 0xe build/usbd_desc.o
*fill* 0x0000000008003da6 0x2
.rodata.USBD_FS_ManufacturerStrDescriptor.str1.4
0x0000000008003da8 0x11 build/usbd_desc.o
*fill* 0x0000000008003db9 0x3
.rodata.USBD_FS_ProductStrDescriptor.str1.4
0x0000000008003dbc 0xa build/usbd_desc.o
*fill* 0x0000000008003dc6 0x2
.rodata.USBD_FS_SerialStrDescriptor.str1.4
0x0000000008003dc8 0x10 build/usbd_desc.o
0xd (size before relaxing)
.rodata.USBD_GetDescriptor
0x0000000008003dd8 0x38 build/usbd_ctlreq.o
.rodata.USBD_StdDevReq
0x0000000008003e10 0x28 build/usbd_ctlreq.o
.rodata.AHBPrescTable
0x0000000008003e38 0x10 build/system_stm32f0xx.o
0x0000000008003e38 AHBPrescTable
0x0000000008003e48 . = ALIGN (0x4)
.rel.dyn 0x0000000008003e48 0x0
.rel.iplt 0x0000000008003e48 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 0x0000000008003e48 0x0
0x0000000008003e48 __exidx_start = .
*(.ARM.exidx*)
0x0000000008003e48 __exidx_end = .
.preinit_array 0x0000000008003e48 0x0
0x0000000008003e48 PROVIDE (__preinit_array_start = .)
*(.preinit_array*)
0x0000000008003e48 PROVIDE (__preinit_array_end = .)
.init_array 0x0000000008003e48 0x4
0x0000000008003e48 PROVIDE (__init_array_start = .)
*(SORT_BY_NAME(.init_array.*))
*(.init_array*)
.init_array 0x0000000008003e48 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
0x0000000008003e4c PROVIDE (__init_array_end = .)
.fini_array 0x0000000008003e4c 0x4
[!provide] PROVIDE (__fini_array_start = .)
*(SORT_BY_NAME(.fini_array.*))
*(.fini_array*)
.fini_array 0x0000000008003e4c 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 = .)
0x0000000008003e50 _sidata = LOADADDR (.data)
.data 0x0000000020000000 0x164 load address 0x0000000008003e50
0x0000000020000000 . = ALIGN (0x4)
0x0000000020000000 _sdata = .
*(.data)
*(.data*)
.data.scan_cvt
0x0000000020000000 0x4 build/main.o
0x0000000020000000 scan_cvt
.data.uwTickFreq
0x0000000020000004 0x1 build/stm32f0xx_hal.o
0x0000000020000004 uwTickFreq
*fill* 0x0000000020000005 0x3
.data.uwTickPrio
0x0000000020000008 0x4 build/stm32f0xx_hal.o
0x0000000020000008 uwTickPrio
.data.FS_Desc 0x000000002000000c 0x1c build/usbd_desc.o
0x000000002000000c FS_Desc
.data.USBD_FS_DeviceDesc
0x0000000020000028 0x12 build/usbd_desc.o
0x0000000020000028 USBD_FS_DeviceDesc
*fill* 0x000000002000003a 0x2
.data.USBD_LangIDDesc
0x000000002000003c 0x4 build/usbd_desc.o
0x000000002000003c USBD_LangIDDesc
.data.HID_ReportDesc
0x0000000020000040 0x48 build/usbd_hid.o
.data.USBD_HID
0x0000000020000088 0x38 build/usbd_hid.o
0x0000000020000088 USBD_HID
.data.USBD_HID_CfgDesc
0x00000000200000c0 0x22 build/usbd_hid.o
*fill* 0x00000000200000e2 0x2
.data.USBD_HID_Desc
0x00000000200000e4 0x9 build/usbd_hid.o
*fill* 0x00000000200000ed 0x3
.data.USBD_HID_DeviceQualifierDesc
0x00000000200000f0 0xa build/usbd_hid.o
*fill* 0x00000000200000fa 0x2
.data.SystemCoreClock
0x00000000200000fc 0x4 build/system_stm32f0xx.o
0x00000000200000fc SystemCoreClock
.data._impure_ptr
0x0000000020000100 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)
0x0000000020000100 _impure_ptr
.data.impure_data
0x0000000020000104 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)
0x0000000020000164 . = ALIGN (0x4)
0x0000000020000164 _edata = .
.igot.plt 0x0000000020000164 0x0 load address 0x0000000008003fb4
.igot.plt 0x0000000020000164 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
0x0000000020000164 . = ALIGN (0x4)
.bss 0x0000000020000164 0x7a0 load address 0x0000000008003fb4
0x0000000020000164 _sbss = .
0x0000000020000164 __bss_start__ = _sbss
*(.bss)
.bss 0x0000000020000164 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.7844
0x0000000020000180 0x1 build/usbd_ctlreq.o
*fill* 0x0000000020000181 0x3
.bss.__malloc_free_list
0x0000000020000184 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)
0x0000000020000184 __malloc_free_list
.bss.__malloc_sbrk_start
0x0000000020000188 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)
0x0000000020000188 __malloc_sbrk_start
.bss.heap_end.4102
0x000000002000018c 0x4 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(sbrk.o)
*(COMMON)
COMMON 0x0000000020000190 0x334 build/main.o
0x0000000020000190 ADCreg
0x00000000200001a0 ADClast
0x00000000200001b0 kbd_report
0x00000000200001bc hdma_adc
0x0000000020000200 hpcd_USB_FS
0x0000000020000474 ADCval
0x0000000020000484 hadc
COMMON 0x00000000200004c4 0x4 build/stm32f0xx_hal.o
0x00000000200004c4 uwTick
COMMON 0x00000000200004c8 0x224 build/usb_device.o
0x00000000200004c8 hUsbDeviceFS
COMMON 0x00000000200006ec 0x200 build/usbd_desc.o
0x00000000200006ec USBD_StrDesc
COMMON 0x00000000200008ec 0x14 build/usbd_hid.o
0x00000000200008ec OutData
0x00000000200008f4 nOutData
0x00000000200008f8 OutDataBuffer
COMMON 0x0000000020000900 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)
0x0000000020000900 errno
0x0000000020000904 . = ALIGN (0x4)
0x0000000020000904 _ebss = .
0x0000000020000904 __bss_end__ = _ebss
._user_heap_stack
0x0000000020000904 0x604 load address 0x0000000008003fb4
0x0000000020000908 . = ALIGN (0x8)
*fill* 0x0000000020000904 0x4
0x0000000020000908 PROVIDE (end = .)
[!provide] PROVIDE (_end = .)
0x0000000020000b08 . = (. + _Min_Heap_Size)
*fill* 0x0000000020000908 0x200
0x0000000020000f08 . = (. + _Min_Stack_Size)
*fill* 0x0000000020000b08 0x400
0x0000000020000f08 . = 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_hid.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/system_stm32f0xx.o
.ARM.attributes
0x000000000000044f 0x21 build/startup_stm32f072xb.o
.ARM.attributes
0x0000000000000470 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
.ARM.attributes
0x000000000000049c 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-init.o)
.ARM.attributes
0x00000000000004c8 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-malloc.o)
.ARM.attributes
0x00000000000004f4 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memcpy-stub.o)
.ARM.attributes
0x0000000000000520 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memset.o)
.ARM.attributes
0x000000000000054c 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-freer.o)
.ARM.attributes
0x0000000000000578 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-mallocr.o)
.ARM.attributes
0x00000000000005a4 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sbrkr.o)
.ARM.attributes
0x00000000000005d0 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-mlock.o)
.ARM.attributes
0x00000000000005fc 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-reent.o)
.ARM.attributes
0x0000000000000628 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(sbrk.o)
.ARM.attributes
0x0000000000000654 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
0x0000000000000672 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
0x0000000000000690 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 0x14cdc
.debug_info 0x0000000000000000 0x27dd build/main.o
.debug_info 0x00000000000027dd 0x9a0 build/stm32f0xx_it.o
.debug_info 0x000000000000317d 0xa35 build/stm32f0xx_hal_msp.o
.debug_info 0x0000000000003bb2 0x16b5 build/stm32f0xx_ll_usb.o
.debug_info 0x0000000000005267 0xfdf build/stm32f0xx_hal_adc.o
.debug_info 0x0000000000006246 0xade build/stm32f0xx_hal_rcc.o
.debug_info 0x0000000000006d24 0x7c3 build/stm32f0xx_hal_rcc_ex.o
.debug_info 0x00000000000074e7 0x7f4 build/stm32f0xx_hal.o
.debug_info 0x0000000000007cdb 0x703 build/stm32f0xx_hal_gpio.o
.debug_info 0x00000000000083de 0x8ea build/stm32f0xx_hal_dma.o
.debug_info 0x0000000000008cc8 0x8b7 build/stm32f0xx_hal_cortex.o
.debug_info 0x000000000000957f 0x13e4 build/stm32f0xx_hal_pcd.o
.debug_info 0x000000000000a963 0xa73 build/stm32f0xx_hal_pcd_ex.o
.debug_info 0x000000000000b3d6 0xf56 build/usb_device.o
.debug_info 0x000000000000c32c 0x2282 build/usbd_conf.o
.debug_info 0x000000000000e5ae 0xeba build/usbd_desc.o
.debug_info 0x000000000000f468 0x14c5 build/usbd_hid.o
.debug_info 0x000000000001092d 0x16b2 build/usbd_core.o
.debug_info 0x0000000000011fdf 0x187f build/usbd_ctlreq.o
.debug_info 0x000000000001385e 0x1189 build/usbd_ioreq.o
.debug_info 0x00000000000149e7 0x2d3 build/system_stm32f0xx.o
.debug_info 0x0000000000014cba 0x22 build/startup_stm32f072xb.o
.debug_abbrev 0x0000000000000000 0x3220
.debug_abbrev 0x0000000000000000 0x308 build/main.o
.debug_abbrev 0x0000000000000308 0x183 build/stm32f0xx_it.o
.debug_abbrev 0x000000000000048b 0x1d0 build/stm32f0xx_hal_msp.o
.debug_abbrev 0x000000000000065b 0x303 build/stm32f0xx_ll_usb.o
.debug_abbrev 0x000000000000095e 0x28c build/stm32f0xx_hal_adc.o
.debug_abbrev 0x0000000000000bea 0x269 build/stm32f0xx_hal_rcc.o
.debug_abbrev 0x0000000000000e53 0x208 build/stm32f0xx_hal_rcc_ex.o
.debug_abbrev 0x000000000000105b 0x209 build/stm32f0xx_hal.o
.debug_abbrev 0x0000000000001264 0x213 build/stm32f0xx_hal_gpio.o
.debug_abbrev 0x0000000000001477 0x252 build/stm32f0xx_hal_dma.o
.debug_abbrev 0x00000000000016c9 0x279 build/stm32f0xx_hal_cortex.o
.debug_abbrev 0x0000000000001942 0x2c8 build/stm32f0xx_hal_pcd.o
.debug_abbrev 0x0000000000001c0a 0x256 build/stm32f0xx_hal_pcd_ex.o
.debug_abbrev 0x0000000000001e60 0x1f1 build/usb_device.o
.debug_abbrev 0x0000000000002051 0x317 build/usbd_conf.o
.debug_abbrev 0x0000000000002368 0x284 build/usbd_desc.o
.debug_abbrev 0x00000000000025ec 0x2fa build/usbd_hid.o
.debug_abbrev 0x00000000000028e6 0x2e2 build/usbd_core.o
.debug_abbrev 0x0000000000002bc8 0x325 build/usbd_ctlreq.o
.debug_abbrev 0x0000000000002eed 0x1f7 build/usbd_ioreq.o
.debug_abbrev 0x00000000000030e4 0x12a build/system_stm32f0xx.o
.debug_abbrev 0x000000000000320e 0x12 build/startup_stm32f072xb.o
.debug_loc 0x0000000000000000 0x8817
.debug_loc 0x0000000000000000 0x257 build/main.o
.debug_loc 0x0000000000000257 0x60 build/stm32f0xx_it.o
.debug_loc 0x00000000000002b7 0xe5 build/stm32f0xx_hal_msp.o
.debug_loc 0x000000000000039c 0x1233 build/stm32f0xx_ll_usb.o
.debug_loc 0x00000000000015cf 0xec0 build/stm32f0xx_hal_adc.o
.debug_loc 0x000000000000248f 0x61b build/stm32f0xx_hal_rcc.o
.debug_loc 0x0000000000002aaa 0x857 build/stm32f0xx_hal_rcc_ex.o
.debug_loc 0x0000000000003301 0x1bb build/stm32f0xx_hal.o
.debug_loc 0x00000000000034bc 0x3e1 build/stm32f0xx_hal_gpio.o
.debug_loc 0x000000000000389d 0x973 build/stm32f0xx_hal_dma.o
.debug_loc 0x0000000000004210 0x3f7 build/stm32f0xx_hal_cortex.o
.debug_loc 0x0000000000004607 0xd92 build/stm32f0xx_hal_pcd.o
.debug_loc 0x0000000000005399 0x20b build/stm32f0xx_hal_pcd_ex.o
.debug_loc 0x00000000000055a4 0x20 build/usb_device.o
.debug_loc 0x00000000000055c4 0xf25 build/usbd_conf.o
.debug_loc 0x00000000000064e9 0x357 build/usbd_desc.o
.debug_loc 0x0000000000006840 0x60f build/usbd_hid.o
.debug_loc 0x0000000000006e4f 0x8c4 build/usbd_core.o
.debug_loc 0x0000000000007713 0xc9d build/usbd_ctlreq.o
.debug_loc 0x00000000000083b0 0x31c build/usbd_ioreq.o
.debug_loc 0x00000000000086cc 0x14b build/system_stm32f0xx.o
.debug_aranges 0x0000000000000000 0xb40
.debug_aranges
0x0000000000000000 0x68 build/main.o
.debug_aranges
0x0000000000000068 0x50 build/stm32f0xx_it.o
.debug_aranges
0x00000000000000b8 0x30 build/stm32f0xx_hal_msp.o
.debug_aranges
0x00000000000000e8 0x108 build/stm32f0xx_ll_usb.o
.debug_aranges
0x00000000000001f0 0xf8 build/stm32f0xx_hal_adc.o
.debug_aranges
0x00000000000002e8 0x80 build/stm32f0xx_hal_rcc.o
.debug_aranges
0x0000000000000368 0x78 build/stm32f0xx_hal_rcc_ex.o
.debug_aranges
0x00000000000003e0 0xd0 build/stm32f0xx_hal.o
.debug_aranges
0x00000000000004b0 0x58 build/stm32f0xx_hal_gpio.o
.debug_aranges
0x0000000000000508 0x88 build/stm32f0xx_hal_dma.o
.debug_aranges
0x0000000000000590 0x78 build/stm32f0xx_hal_cortex.o
.debug_aranges
0x0000000000000608 0x120 build/stm32f0xx_hal_pcd.o
.debug_aranges
0x0000000000000728 0x58 build/stm32f0xx_hal_pcd_ex.o
.debug_aranges
0x0000000000000780 0x20 build/usb_device.o
.debug_aranges
0x00000000000007a0 0x108 build/usbd_conf.o
.debug_aranges
0x00000000000008a8 0x50 build/usbd_desc.o
.debug_aranges
0x00000000000008f8 0x68 build/usbd_hid.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 0x28 build/system_stm32f0xx.o
.debug_aranges
0x0000000000000b18 0x28 build/startup_stm32f072xb.o
.debug_ranges 0x0000000000000000 0xbe0
.debug_ranges 0x0000000000000000 0x70 build/main.o
.debug_ranges 0x0000000000000070 0x40 build/stm32f0xx_it.o
.debug_ranges 0x00000000000000b0 0x20 build/stm32f0xx_hal_msp.o
.debug_ranges 0x00000000000000d0 0x218 build/stm32f0xx_ll_usb.o
.debug_ranges 0x00000000000002e8 0xe8 build/stm32f0xx_hal_adc.o
.debug_ranges 0x00000000000003d0 0x88 build/stm32f0xx_hal_rcc.o
.debug_ranges 0x0000000000000458 0x80 build/stm32f0xx_hal_rcc_ex.o
.debug_ranges 0x00000000000004d8 0xc0 build/stm32f0xx_hal.o
.debug_ranges 0x0000000000000598 0x48 build/stm32f0xx_hal_gpio.o
.debug_ranges 0x00000000000005e0 0x78 build/stm32f0xx_hal_dma.o
.debug_ranges 0x0000000000000658 0xc8 build/stm32f0xx_hal_cortex.o
.debug_ranges 0x0000000000000720 0x140 build/stm32f0xx_hal_pcd.o
.debug_ranges 0x0000000000000860 0x48 build/stm32f0xx_hal_pcd_ex.o
.debug_ranges 0x00000000000008a8 0x10 build/usb_device.o
.debug_ranges 0x00000000000008b8 0xf8 build/usbd_conf.o
.debug_ranges 0x00000000000009b0 0x40 build/usbd_desc.o
.debug_ranges 0x00000000000009f0 0x58 build/usbd_hid.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 0x18 build/system_stm32f0xx.o
.debug_ranges 0x0000000000000bc0 0x20 build/startup_stm32f072xb.o
.debug_line 0x0000000000000000 0x5a0c
.debug_line 0x0000000000000000 0x57c build/main.o
.debug_line 0x000000000000057c 0x25f build/stm32f0xx_it.o
.debug_line 0x00000000000007db 0x279 build/stm32f0xx_hal_msp.o
.debug_line 0x0000000000000a54 0x68a build/stm32f0xx_ll_usb.o
.debug_line 0x00000000000010de 0x762 build/stm32f0xx_hal_adc.o
.debug_line 0x0000000000001840 0x4e6 build/stm32f0xx_hal_rcc.o
.debug_line 0x0000000000001d26 0x468 build/stm32f0xx_hal_rcc_ex.o
.debug_line 0x000000000000218e 0x3bb build/stm32f0xx_hal.o
.debug_line 0x0000000000002549 0x33c build/stm32f0xx_hal_gpio.o
.debug_line 0x0000000000002885 0x43d build/stm32f0xx_hal_dma.o
.debug_line 0x0000000000002cc2 0x372 build/stm32f0xx_hal_cortex.o
.debug_line 0x0000000000003034 0x6d2 build/stm32f0xx_hal_pcd.o
.debug_line 0x0000000000003706 0x2bb build/stm32f0xx_hal_pcd_ex.o
.debug_line 0x00000000000039c1 0x2f8 build/usb_device.o
.debug_line 0x0000000000003cb9 0x615 build/usbd_conf.o
.debug_line 0x00000000000042ce 0x355 build/usbd_desc.o
.debug_line 0x0000000000004623 0x42c build/usbd_hid.o
.debug_line 0x0000000000004a4f 0x500 build/usbd_core.o
.debug_line 0x0000000000004f4f 0x512 build/usbd_ctlreq.o
.debug_line 0x0000000000005461 0x366 build/usbd_ioreq.o
.debug_line 0x00000000000057c7 0x1ce build/system_stm32f0xx.o
.debug_line 0x0000000000005995 0x77 build/startup_stm32f072xb.o
.debug_str 0x0000000000000000 0x364f
.debug_str 0x0000000000000000 0x1599 build/main.o
0x16e3 (size before relaxing)
.debug_str 0x0000000000001599 0xb6 build/stm32f0xx_it.o
0x803 (size before relaxing)
.debug_str 0x000000000000164f 0x98 build/stm32f0xx_hal_msp.o
0x734 (size before relaxing)
.debug_str 0x00000000000016e7 0x367 build/stm32f0xx_ll_usb.o
0x7c8 (size before relaxing)
.debug_str 0x0000000000001a4e 0x2f7 build/stm32f0xx_hal_adc.o
0x971 (size before relaxing)
.debug_str 0x0000000000001d45 0x204 build/stm32f0xx_hal_rcc.o
0x6b6 (size before relaxing)
.debug_str 0x0000000000001f49 0x297 build/stm32f0xx_hal_rcc_ex.o
0x6ae (size before relaxing)
.debug_str 0x00000000000021e0 0x1db build/stm32f0xx_hal.o
0x70a (size before relaxing)
.debug_str 0x00000000000023bb 0x108 build/stm32f0xx_hal_gpio.o
0x4a1 (size before relaxing)
.debug_str 0x00000000000024c3 0x201 build/stm32f0xx_hal_dma.o
0x6b6 (size before relaxing)
.debug_str 0x00000000000026c4 0x24d build/stm32f0xx_hal_cortex.o
0x6f4 (size before relaxing)
.debug_str 0x0000000000002911 0x35d build/stm32f0xx_hal_pcd.o
0xacf (size before relaxing)
.debug_str 0x0000000000002c6e 0x191 build/stm32f0xx_hal_pcd_ex.o
0x7f8 (size before relaxing)
.debug_str 0x0000000000002dff 0x41 build/usb_device.o
0xa07 (size before relaxing)
.debug_str 0x0000000000002e40 0x278 build/usbd_conf.o
0x14de (size before relaxing)
.debug_str 0x00000000000030b8 0x11a build/usbd_desc.o
0x859 (size before relaxing)
.debug_str 0x00000000000031d2 0x1c7 build/usbd_hid.o
0xc44 (size before relaxing)
.debug_str 0x0000000000003399 0x137 build/usbd_core.o
0xc9e (size before relaxing)
.debug_str 0x00000000000034d0 0xc3 build/usbd_ctlreq.o
0xbb8 (size before relaxing)
.debug_str 0x0000000000003593 0x60 build/usbd_ioreq.o
0xae5 (size before relaxing)
.debug_str 0x00000000000035f3 0x38 build/system_stm32f0xx.o
0x2cd (size before relaxing)
.debug_str 0x000000000000362b 0x24 build/startup_stm32f072xb.o
0x4e (size before relaxing)
.comment 0x0000000000000000 0x7f
.comment 0x0000000000000000 0x7f build/main.o
0x80 (size before relaxing)
.comment 0x000000000000007f 0x80 build/stm32f0xx_it.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_hal_msp.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_ll_usb.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_hal_adc.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_hal_rcc.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_hal_rcc_ex.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_hal.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_hal_gpio.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_hal_dma.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_hal_cortex.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_hal_pcd.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_hal_pcd_ex.o
.comment 0x000000000000007f 0x80 build/usb_device.o
.comment 0x000000000000007f 0x80 build/usbd_conf.o
.comment 0x000000000000007f 0x80 build/usbd_desc.o
.comment 0x000000000000007f 0x80 build/usbd_hid.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/system_stm32f0xx.o
.debug_frame 0x0000000000000000 0x1ea8
.debug_frame 0x0000000000000000 0x154 build/main.o
.debug_frame 0x0000000000000154 0xa4 build/stm32f0xx_it.o
.debug_frame 0x00000000000001f8 0x60 build/stm32f0xx_hal_msp.o
.debug_frame 0x0000000000000258 0x254 build/stm32f0xx_ll_usb.o
.debug_frame 0x00000000000004ac 0x2f8 build/stm32f0xx_hal_adc.o
.debug_frame 0x00000000000007a4 0x15c build/stm32f0xx_hal_rcc.o
.debug_frame 0x0000000000000900 0x10c build/stm32f0xx_hal_rcc_ex.o
.debug_frame 0x0000000000000a0c 0x1c0 build/stm32f0xx_hal.o
.debug_frame 0x0000000000000bcc 0xd8 build/stm32f0xx_hal_gpio.o
.debug_frame 0x0000000000000ca4 0x198 build/stm32f0xx_hal_dma.o
.debug_frame 0x0000000000000e3c 0xec build/stm32f0xx_hal_cortex.o
.debug_frame 0x0000000000000f28 0x330 build/stm32f0xx_hal_pcd.o
.debug_frame 0x0000000000001258 0xac build/stm32f0xx_hal_pcd_ex.o
.debug_frame 0x0000000000001304 0x2c build/usb_device.o
.debug_frame 0x0000000000001330 0x33c build/usbd_conf.o
.debug_frame 0x000000000000166c 0xbc build/usbd_desc.o
.debug_frame 0x0000000000001728 0xfc build/usbd_hid.o
.debug_frame 0x0000000000001824 0x1ec build/usbd_core.o
.debug_frame 0x0000000000001a10 0x198 build/usbd_ctlreq.o
.debug_frame 0x0000000000001ba8 0xd4 build/usbd_ioreq.o
.debug_frame 0x0000000000001c7c 0x3c build/system_stm32f0xx.o
.debug_frame 0x0000000000001cb8 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 0x0000000000001ce4 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)
.debug_frame 0x0000000000001d24 0x28 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memcpy-stub.o)
.debug_frame 0x0000000000001d4c 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 0x0000000000001d6c 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-freer.o)
.debug_frame 0x0000000000001d98 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-nano-mallocr.o)
.debug_frame 0x0000000000001dc4 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sbrkr.o)
.debug_frame 0x0000000000001df0 0x30 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-mlock.o)
.debug_frame 0x0000000000001e20 0x48 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-reent.o)
.debug_frame 0x0000000000001e68 0x20 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(sbrk.o)
.debug_frame 0x0000000000001e88 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
ADClast build/main.o
ADCreg build/main.o
ADCval build/main.o
AHBPrescTable build/system_stm32f0xx.o
build/stm32f0xx_hal_rcc.o
APBPrescTable build/system_stm32f0xx.o
build/stm32f0xx_hal_rcc.o
CEC_CAN_IRQHandler build/startup_stm32f072xb.o
DMA1_Channel1_IRQHandler build/stm32f0xx_it.o
DMA1_Channel2_3_IRQHandler build/startup_stm32f072xb.o
DMA1_Channel4_5_6_7_IRQHandler build/startup_stm32f072xb.o
Default_Handler build/startup_stm32f072xb.o
EXTI0_1_IRQHandler build/startup_stm32f072xb.o
EXTI2_3_IRQHandler build/startup_stm32f072xb.o
EXTI4_15_IRQHandler build/startup_stm32f072xb.o
Error_Handler build/main.o
build/stm32f0xx_hal_msp.o
FLASH_IRQHandler build/startup_stm32f072xb.o
FLASH_PageErase build/stm32f0xx_hal_flash_ex.o
build/stm32f0xx_hal_flash.o
FLASH_WaitForLastOperation build/stm32f0xx_hal_flash.o
build/stm32f0xx_hal_flash_ex.o
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_HID_INIT build/usb_device.o
build/main.o
NMI_Handler build/stm32f0xx_it.o
OutData build/usbd_hid.o
OutDataBuffer build/usbd_hid.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
build/usbd_hid.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
build/usbd_hid.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_HID build/usbd_hid.o
build/usb_device.o
USBD_HID_GetPollingInterval build/usbd_hid.o
USBD_HID_GetReport build/usbd_hid.o
USBD_HID_SendReport build/usbd_hid.o
build/main.o
USBD_Init build/usbd_core.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_hid.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
build/usbd_hid.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_core.o
build/usbd_hid.o
USBD_LL_PrepareReceive build/usbd_conf.o
build/usbd_ioreq.o
build/usbd_core.o
build/usbd_hid.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_ioreq.o
build/usbd_hid.o
USBD_LangIDDesc build/usbd_desc.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_SetCurrentMode build/stm32f0xx_ll_usb.o
USB_SetDevAddress build/stm32f0xx_ll_usb.o
build/stm32f0xx_hal_pcd.o
USB_SetDevSpeed build/stm32f0xx_ll_usb.o
USB_StopDevice build/stm32f0xx_ll_usb.o
build/stm32f0xx_hal_pcd.o
USB_WritePMA build/stm32f0xx_ll_usb.o
USB_WritePacket build/stm32f0xx_ll_usb.o
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)
_asciimap build/main.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
atexit /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
cleanup_glue /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-reent.o)
end /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libnosys.a(sbrk.o)
errno /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-reent.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-sbrkr.o)
exit /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
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/usbd_hid.o
g_pfnVectors build/startup_stm32f072xb.o
hUsbDeviceFS build/usb_device.o
build/main.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
kbd_report build/main.o
kbd_send_ch build/main.o
kbd_send_raw build/main.o
main build/main.o
build/startup_stm32f072xb.o
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
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/usbd_hid.o
memcpy /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memcpy-stub.o)
build/usbd_hid.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
nOutData build/usbd_hid.o
pFlash build/stm32f0xx_hal_flash.o
build/stm32f0xx_hal_flash_ex.o
scan_cvt build/main.o
sendVolDown build/main.o
sendVolUp build/main.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
|