blob: 78e8c40385cd6d5eb30a12e781ee63fe62cf6f8d (
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
|
Archive member included to satisfy reference by file (symbol)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o (exit)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o) (_global_impure_ptr)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-init.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o (__libc_init_array)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-memset.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o (memset)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/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_rcc.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
uwTick 0x4 build/stm32f0xx_hal.o
pFlash 0x20 build/stm32f0xx_hal_flash.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 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 0x264 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 0x267 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_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_PeriphCLKConfig
0x0000000000000000 0x158 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
.debug_info 0x0000000000000000 0x7c3 build/stm32f0xx_hal_rcc_ex.o
.debug_abbrev 0x0000000000000000 0x208 build/stm32f0xx_hal_rcc_ex.o
.debug_loc 0x0000000000000000 0x857 build/stm32f0xx_hal_rcc_ex.o
.debug_aranges
0x0000000000000000 0x78 build/stm32f0xx_hal_rcc_ex.o
.debug_ranges 0x0000000000000000 0x80 build/stm32f0xx_hal_rcc_ex.o
.debug_line 0x0000000000000000 0x468 build/stm32f0xx_hal_rcc_ex.o
.debug_str 0x0000000000000000 0x6ba build/stm32f0xx_hal_rcc_ex.o
.comment 0x0000000000000000 0x80 build/stm32f0xx_hal_rcc_ex.o
.debug_frame 0x0000000000000000 0x10c build/stm32f0xx_hal_rcc_ex.o
.ARM.attributes
0x0000000000000000 0x31 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 0xfd6 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 0x87c 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.DMA_SetConfig
0x0000000000000000 0x2a build/stm32f0xx_hal_dma.o
.text.DMA_CalcBaseAndBitshift
0x0000000000000000 0x28 build/stm32f0xx_hal_dma.o
.text.HAL_DMA_Init
0x0000000000000000 0x50 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_Start_IT
0x0000000000000000 0x76 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_IRQHandler
0x0000000000000000 0xaa 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
.debug_info 0x0000000000000000 0x8ea build/stm32f0xx_hal_dma.o
.debug_abbrev 0x0000000000000000 0x252 build/stm32f0xx_hal_dma.o
.debug_loc 0x0000000000000000 0x973 build/stm32f0xx_hal_dma.o
.debug_aranges
0x0000000000000000 0x88 build/stm32f0xx_hal_dma.o
.debug_ranges 0x0000000000000000 0x78 build/stm32f0xx_hal_dma.o
.debug_line 0x0000000000000000 0x43d build/stm32f0xx_hal_dma.o
.debug_str 0x0000000000000000 0x6c2 build/stm32f0xx_hal_dma.o
.comment 0x0000000000000000 0x80 build/stm32f0xx_hal_dma.o
.debug_frame 0x0000000000000000 0x198 build/stm32f0xx_hal_dma.o
.ARM.attributes
0x0000000000000000 0x31 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_EnableIRQ
0x0000000000000000 0x18 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 0x447 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 0x3a0 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 0x5b5 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 0x6cf 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 0x480 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/system_stm32f0xx.o
.data 0x0000000000000000 0x0 build/system_stm32f0xx.o
.bss 0x0000000000000000 0x0 build/system_stm32f0xx.o
.text.SystemCoreClockUpdate
0x0000000000000000 0xac build/system_stm32f0xx.o
.rodata.APBPrescTable
0x0000000000000000 0x8 build/system_stm32f0xx.o
.text 0x0000000000000000 0x14 build/startup_stm32f072xb.o
.data 0x0000000000000000 0x0 build/startup_stm32f072xb.o
.bss 0x0000000000000000 0x0 build/startup_stm32f072xb.o
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
.text.exit 0x0000000000000000 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
.debug_frame 0x0000000000000000 0x28 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
.ARM.attributes
0x0000000000000000 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
.data._impure_ptr
0x0000000000000000 0x4 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
.data.impure_data
0x0000000000000000 0x60 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
.rodata._global_impure_ptr
0x0000000000000000 0x4 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
.ARM.attributes
0x0000000000000000 0x2c /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-impure.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-init.o)
.data 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-init.o)
.bss 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-init.o)
.text 0x0000000000000000 0x0 /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-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/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 0x0000000000010000 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_hal_tim.o
LOAD build/stm32f0xx_hal_tim_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/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 0xd5c
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.SystemClock_Config
0x0000000008000284 0x42 build/main.o
0x0000000008000284 SystemClock_Config
*fill* 0x00000000080002c6 0x2
.text.main 0x00000000080002c8 0x40 build/main.o
0x00000000080002c8 main
.text.NMI_Handler
0x0000000008000308 0x2 build/stm32f0xx_it.o
0x0000000008000308 NMI_Handler
.text.HardFault_Handler
0x000000000800030a 0x2 build/stm32f0xx_it.o
0x000000000800030a HardFault_Handler
.text.SVC_Handler
0x000000000800030c 0x2 build/stm32f0xx_it.o
0x000000000800030c SVC_Handler
.text.PendSV_Handler
0x000000000800030e 0x2 build/stm32f0xx_it.o
0x000000000800030e PendSV_Handler
.text.SysTick_Handler
0x0000000008000310 0x8 build/stm32f0xx_it.o
0x0000000008000310 SysTick_Handler
.text.HAL_MspInit
0x0000000008000318 0x30 build/stm32f0xx_hal_msp.o
0x0000000008000318 HAL_MspInit
.text.HAL_RCC_OscConfig
0x0000000008000348 0x540 build/stm32f0xx_hal_rcc.o
0x0000000008000348 HAL_RCC_OscConfig
.text.HAL_RCC_GetSysClockFreq
0x0000000008000888 0x94 build/stm32f0xx_hal_rcc.o
0x0000000008000888 HAL_RCC_GetSysClockFreq
.text.HAL_RCC_ClockConfig
0x000000000800091c 0x140 build/stm32f0xx_hal_rcc.o
0x000000000800091c HAL_RCC_ClockConfig
.text.HAL_InitTick
0x0000000008000a5c 0x50 build/stm32f0xx_hal.o
0x0000000008000a5c HAL_InitTick
.text.HAL_Init
0x0000000008000aac 0x20 build/stm32f0xx_hal.o
0x0000000008000aac HAL_Init
.text.HAL_IncTick
0x0000000008000acc 0x18 build/stm32f0xx_hal.o
0x0000000008000acc HAL_IncTick
.text.HAL_GetTick
0x0000000008000ae4 0xc build/stm32f0xx_hal.o
0x0000000008000ae4 HAL_GetTick
.text.HAL_Delay
0x0000000008000af0 0x24 build/stm32f0xx_hal.o
0x0000000008000af0 HAL_Delay
.text.HAL_GPIO_Init
0x0000000008000b14 0x198 build/stm32f0xx_hal_gpio.o
0x0000000008000b14 HAL_GPIO_Init
.text.HAL_GPIO_WritePin
0x0000000008000cac 0xc build/stm32f0xx_hal_gpio.o
0x0000000008000cac HAL_GPIO_WritePin
.text.HAL_NVIC_SetPriority
0x0000000008000cb8 0x64 build/stm32f0xx_hal_cortex.o
0x0000000008000cb8 HAL_NVIC_SetPriority
.text.HAL_SYSTICK_Config
0x0000000008000d1c 0x38 build/stm32f0xx_hal_cortex.o
0x0000000008000d1c HAL_SYSTICK_Config
.text.SystemInit
0x0000000008000d54 0x2 build/system_stm32f0xx.o
0x0000000008000d54 SystemInit
*fill* 0x0000000008000d56 0x2
.text.Reset_Handler
0x0000000008000d58 0x50 build/startup_stm32f072xb.o
0x0000000008000d58 Reset_Handler
.text.Default_Handler
0x0000000008000da8 0x2 build/startup_stm32f072xb.o
0x0000000008000da8 TIM1_CC_IRQHandler
0x0000000008000da8 TSC_IRQHandler
0x0000000008000da8 ADC1_COMP_IRQHandler
0x0000000008000da8 I2C1_IRQHandler
0x0000000008000da8 RCC_CRS_IRQHandler
0x0000000008000da8 SPI1_IRQHandler
0x0000000008000da8 TIM6_DAC_IRQHandler
0x0000000008000da8 USART3_4_IRQHandler
0x0000000008000da8 EXTI2_3_IRQHandler
0x0000000008000da8 I2C2_IRQHandler
0x0000000008000da8 TIM17_IRQHandler
0x0000000008000da8 CEC_CAN_IRQHandler
0x0000000008000da8 RTC_IRQHandler
0x0000000008000da8 PVD_VDDIO2_IRQHandler
0x0000000008000da8 DMA1_Channel4_5_6_7_IRQHandler
0x0000000008000da8 TIM16_IRQHandler
0x0000000008000da8 TIM3_IRQHandler
0x0000000008000da8 EXTI4_15_IRQHandler
0x0000000008000da8 DMA1_Channel1_IRQHandler
0x0000000008000da8 Default_Handler
0x0000000008000da8 TIM14_IRQHandler
0x0000000008000da8 TIM7_IRQHandler
0x0000000008000da8 TIM15_IRQHandler
0x0000000008000da8 EXTI0_1_IRQHandler
0x0000000008000da8 USB_IRQHandler
0x0000000008000da8 SPI2_IRQHandler
0x0000000008000da8 WWDG_IRQHandler
0x0000000008000da8 TIM2_IRQHandler
0x0000000008000da8 DMA1_Channel2_3_IRQHandler
0x0000000008000da8 USART2_IRQHandler
0x0000000008000da8 FLASH_IRQHandler
0x0000000008000da8 USART1_IRQHandler
0x0000000008000da8 TIM1_BRK_UP_TRG_COM_IRQHandler
*fill* 0x0000000008000daa 0x2
.text.__libc_init_array
0x0000000008000dac 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)
0x0000000008000dac __libc_init_array
.text.memset 0x0000000008000df4 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)
0x0000000008000df4 memset
*(.glue_7)
.glue_7 0x0000000008000e04 0x0 linker stubs
*(.glue_7t)
.glue_7t 0x0000000008000e04 0x0 linker stubs
*(.eh_frame)
.eh_frame 0x0000000008000e04 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 0x0000000008000e04 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
0x0000000008000e04 _init
.init 0x0000000008000e08 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 0x0000000008000e10 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
0x0000000008000e10 _fini
.fini 0x0000000008000e14 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
0x0000000008000e1c . = ALIGN (0x4)
0x0000000008000e1c _etext = .
.vfp11_veneer 0x0000000008000e1c 0x0
.vfp11_veneer 0x0000000008000e1c 0x0 linker stubs
.v4_bx 0x0000000008000e1c 0x0
.v4_bx 0x0000000008000e1c 0x0 linker stubs
.iplt 0x0000000008000e1c 0x0
.iplt 0x0000000008000e1c 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 0x0000000008000e1c 0x30
0x0000000008000e1c . = ALIGN (0x4)
*(.rodata)
.rodata 0x0000000008000e1c 0x20 build/stm32f0xx_hal_rcc.o
*(.rodata*)
.rodata.AHBPrescTable
0x0000000008000e3c 0x10 build/system_stm32f0xx.o
0x0000000008000e3c AHBPrescTable
0x0000000008000e4c . = ALIGN (0x4)
.rel.dyn 0x0000000008000e4c 0x0
.rel.iplt 0x0000000008000e4c 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 0x0000000008000e4c 0x0
0x0000000008000e4c __exidx_start = .
*(.ARM.exidx*)
0x0000000008000e4c __exidx_end = .
.preinit_array 0x0000000008000e4c 0x0
0x0000000008000e4c PROVIDE (__preinit_array_start = .)
*(.preinit_array*)
0x0000000008000e4c PROVIDE (__preinit_array_end = .)
.init_array 0x0000000008000e4c 0x4
0x0000000008000e4c PROVIDE (__init_array_start = .)
*(SORT_BY_NAME(.init_array.*))
*(.init_array*)
.init_array 0x0000000008000e4c 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
0x0000000008000e50 PROVIDE (__init_array_end = .)
.fini_array 0x0000000008000e50 0x4
[!provide] PROVIDE (__fini_array_start = .)
*(SORT_BY_NAME(.fini_array.*))
*(.fini_array*)
.fini_array 0x0000000008000e50 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 = .)
0x0000000008000e54 _sidata = LOADADDR (.data)
.data 0x0000000020000000 0xc load address 0x0000000008000e54
0x0000000020000000 . = ALIGN (0x4)
0x0000000020000000 _sdata = .
*(.data)
*(.data*)
.data.uwTickFreq
0x0000000020000000 0x1 build/stm32f0xx_hal.o
0x0000000020000000 uwTickFreq
*fill* 0x0000000020000001 0x3
.data.uwTickPrio
0x0000000020000004 0x4 build/stm32f0xx_hal.o
0x0000000020000004 uwTickPrio
.data.SystemCoreClock
0x0000000020000008 0x4 build/system_stm32f0xx.o
0x0000000020000008 SystemCoreClock
0x000000002000000c . = ALIGN (0x4)
0x000000002000000c _edata = .
.igot.plt 0x000000002000000c 0x0 load address 0x0000000008000e60
.igot.plt 0x000000002000000c 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
0x000000002000000c . = ALIGN (0x4)
.bss 0x000000002000000c 0x20 load address 0x0000000008000e60
0x000000002000000c _sbss = .
0x000000002000000c __bss_start__ = _sbss
*(.bss)
.bss 0x000000002000000c 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*)
*(COMMON)
COMMON 0x0000000020000028 0x4 build/stm32f0xx_hal.o
0x0000000020000028 uwTick
0x000000002000002c . = ALIGN (0x4)
0x000000002000002c _ebss = .
0x000000002000002c __bss_end__ = _ebss
._user_heap_stack
0x000000002000002c 0x604 load address 0x0000000008000e60
0x0000000020000030 . = ALIGN (0x8)
*fill* 0x000000002000002c 0x4
[!provide] PROVIDE (end = .)
[!provide] PROVIDE (_end = .)
0x0000000020000230 . = (. + _Min_Heap_Size)
*fill* 0x0000000020000030 0x200
0x0000000020000630 . = (. + _Min_Stack_Size)
*fill* 0x0000000020000230 0x400
0x0000000020000630 . = 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_hal_rcc.o
.ARM.attributes
0x000000000000010e 0x31 build/stm32f0xx_hal.o
.ARM.attributes
0x000000000000013f 0x31 build/stm32f0xx_hal_gpio.o
.ARM.attributes
0x0000000000000170 0x31 build/stm32f0xx_hal_cortex.o
.ARM.attributes
0x00000000000001a1 0x31 build/system_stm32f0xx.o
.ARM.attributes
0x00000000000001d2 0x21 build/startup_stm32f072xb.o
.ARM.attributes
0x00000000000001f3 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
0x000000000000021f 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
0x000000000000024b 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
0x0000000000000269 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
0x0000000000000287 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/Blink.elf elf32-littlearm)
.debug_info 0x0000000000000000 0x3105
.debug_info 0x0000000000000000 0x71a build/main.o
.debug_info 0x000000000000071a 0x1df build/stm32f0xx_it.o
.debug_info 0x00000000000008f9 0x28b build/stm32f0xx_hal_msp.o
.debug_info 0x0000000000000b84 0xade build/stm32f0xx_hal_rcc.o
.debug_info 0x0000000000001662 0x7f4 build/stm32f0xx_hal.o
.debug_info 0x0000000000001e56 0x703 build/stm32f0xx_hal_gpio.o
.debug_info 0x0000000000002559 0x8b7 build/stm32f0xx_hal_cortex.o
.debug_info 0x0000000000002e10 0x2d3 build/system_stm32f0xx.o
.debug_info 0x00000000000030e3 0x22 build/startup_stm32f072xb.o
.debug_abbrev 0x0000000000000000 0xdee
.debug_abbrev 0x0000000000000000 0x1c8 build/main.o
.debug_abbrev 0x00000000000001c8 0xe4 build/stm32f0xx_it.o
.debug_abbrev 0x00000000000002ac 0x108 build/stm32f0xx_hal_msp.o
.debug_abbrev 0x00000000000003b4 0x269 build/stm32f0xx_hal_rcc.o
.debug_abbrev 0x000000000000061d 0x209 build/stm32f0xx_hal.o
.debug_abbrev 0x0000000000000826 0x213 build/stm32f0xx_hal_gpio.o
.debug_abbrev 0x0000000000000a39 0x279 build/stm32f0xx_hal_cortex.o
.debug_abbrev 0x0000000000000cb2 0x12a build/system_stm32f0xx.o
.debug_abbrev 0x0000000000000ddc 0x12 build/startup_stm32f072xb.o
.debug_loc 0x0000000000000000 0x11b2
.debug_loc 0x0000000000000000 0x79 build/main.o
.debug_loc 0x0000000000000079 0x20 build/stm32f0xx_it.o
.debug_loc 0x0000000000000099 0x20 build/stm32f0xx_hal_msp.o
.debug_loc 0x00000000000000b9 0x61b build/stm32f0xx_hal_rcc.o
.debug_loc 0x00000000000006d4 0x1bb build/stm32f0xx_hal.o
.debug_loc 0x000000000000088f 0x3e1 build/stm32f0xx_hal_gpio.o
.debug_loc 0x0000000000000c70 0x3f7 build/stm32f0xx_hal_cortex.o
.debug_loc 0x0000000000001067 0x14b build/system_stm32f0xx.o
.debug_aranges 0x0000000000000000 0x300
.debug_aranges
0x0000000000000000 0x30 build/main.o
.debug_aranges
0x0000000000000030 0x40 build/stm32f0xx_it.o
.debug_aranges
0x0000000000000070 0x20 build/stm32f0xx_hal_msp.o
.debug_aranges
0x0000000000000090 0x80 build/stm32f0xx_hal_rcc.o
.debug_aranges
0x0000000000000110 0xd0 build/stm32f0xx_hal.o
.debug_aranges
0x00000000000001e0 0x58 build/stm32f0xx_hal_gpio.o
.debug_aranges
0x0000000000000238 0x78 build/stm32f0xx_hal_cortex.o
.debug_aranges
0x00000000000002b0 0x28 build/system_stm32f0xx.o
.debug_aranges
0x00000000000002d8 0x28 build/startup_stm32f072xb.o
.debug_ranges 0x0000000000000000 0x2f0
.debug_ranges 0x0000000000000000 0x20 build/main.o
.debug_ranges 0x0000000000000020 0x30 build/stm32f0xx_it.o
.debug_ranges 0x0000000000000050 0x10 build/stm32f0xx_hal_msp.o
.debug_ranges 0x0000000000000060 0x88 build/stm32f0xx_hal_rcc.o
.debug_ranges 0x00000000000000e8 0xc0 build/stm32f0xx_hal.o
.debug_ranges 0x00000000000001a8 0x48 build/stm32f0xx_hal_gpio.o
.debug_ranges 0x00000000000001f0 0xc8 build/stm32f0xx_hal_cortex.o
.debug_ranges 0x00000000000002b8 0x18 build/system_stm32f0xx.o
.debug_ranges 0x00000000000002d0 0x20 build/startup_stm32f072xb.o
.debug_line 0x0000000000000000 0x171e
.debug_line 0x0000000000000000 0x218 build/main.o
.debug_line 0x0000000000000218 0x1cf build/stm32f0xx_it.o
.debug_line 0x00000000000003e7 0x1a3 build/stm32f0xx_hal_msp.o
.debug_line 0x000000000000058a 0x4e6 build/stm32f0xx_hal_rcc.o
.debug_line 0x0000000000000a70 0x3bb build/stm32f0xx_hal.o
.debug_line 0x0000000000000e2b 0x33c build/stm32f0xx_hal_gpio.o
.debug_line 0x0000000000001167 0x372 build/stm32f0xx_hal_cortex.o
.debug_line 0x00000000000014d9 0x1ce build/system_stm32f0xx.o
.debug_line 0x00000000000016a7 0x77 build/startup_stm32f072xb.o
.debug_str 0x0000000000000000 0xf73
.debug_str 0x0000000000000000 0x492 build/main.o
0x4ec (size before relaxing)
.debug_str 0x0000000000000492 0x68 build/stm32f0xx_it.o
0x297 (size before relaxing)
.debug_str 0x00000000000004fa 0x24 build/stm32f0xx_hal_msp.o
0x2ad (size before relaxing)
.debug_str 0x000000000000051e 0x252 build/stm32f0xx_hal_rcc.o
0x6c2 (size before relaxing)
.debug_str 0x0000000000000770 0x3d3 build/stm32f0xx_hal.o
0x716 (size before relaxing)
.debug_str 0x0000000000000b43 0x123 build/stm32f0xx_hal_gpio.o
0x4ad (size before relaxing)
.debug_str 0x0000000000000c66 0x292 build/stm32f0xx_hal_cortex.o
0x700 (size before relaxing)
.debug_str 0x0000000000000ef8 0x57 build/system_stm32f0xx.o
0x2d9 (size before relaxing)
.debug_str 0x0000000000000f4f 0x24 build/startup_stm32f072xb.o
0x5a (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_hal_rcc.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_hal.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_hal_gpio.o
.comment 0x000000000000007f 0x80 build/stm32f0xx_hal_cortex.o
.comment 0x000000000000007f 0x80 build/system_stm32f0xx.o
.debug_frame 0x0000000000000000 0x684
.debug_frame 0x0000000000000000 0x6c build/main.o
.debug_frame 0x000000000000006c 0x6c build/stm32f0xx_it.o
.debug_frame 0x00000000000000d8 0x24 build/stm32f0xx_hal_msp.o
.debug_frame 0x00000000000000fc 0x15c build/stm32f0xx_hal_rcc.o
.debug_frame 0x0000000000000258 0x1c0 build/stm32f0xx_hal.o
.debug_frame 0x0000000000000418 0xd8 build/stm32f0xx_hal_gpio.o
.debug_frame 0x00000000000004f0 0xec build/stm32f0xx_hal_cortex.o
.debug_frame 0x00000000000005dc 0x3c build/system_stm32f0xx.o
.debug_frame 0x0000000000000618 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 0x0000000000000644 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 0x0000000000000664 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
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/startup_stm32f072xb.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
FLASH_IRQHandler build/startup_stm32f072xb.o
FLASH_PageErase build/stm32f0xx_hal_flash_ex.o
build/stm32f0xx_hal_flash.o
FLASH_WaitForLastOperation build/stm32f0xx_hal_flash.o
build/stm32f0xx_hal_flash_ex.o
HAL_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
HAL_DMA_Abort_IT build/stm32f0xx_hal_dma.o
build/stm32f0xx_hal_i2c.o
HAL_DMA_DeInit build/stm32f0xx_hal_dma.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
HAL_DMA_Init build/stm32f0xx_hal_dma.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
HAL_DMA_UnRegisterCallback build/stm32f0xx_hal_dma.o
HAL_DeInit build/stm32f0xx_hal.o
HAL_Delay build/stm32f0xx_hal.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
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/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_flash.o
build/stm32f0xx_hal_dma.o
build/stm32f0xx_hal_i2c.o
build/stm32f0xx_hal_rcc_ex.o
build/stm32f0xx_hal_rcc.o
HAL_GetTickFreq build/stm32f0xx_hal.o
HAL_GetTickPrio build/stm32f0xx_hal.o
HAL_GetUIDw0 build/stm32f0xx_hal.o
HAL_GetUIDw1 build/stm32f0xx_hal.o
HAL_GetUIDw2 build/stm32f0xx_hal.o
HAL_I2CEx_ConfigAnalogFilter build/stm32f0xx_hal_i2c_ex.o
HAL_I2CEx_ConfigDigitalFilter build/stm32f0xx_hal_i2c_ex.o
HAL_I2CEx_DisableFastModePlus build/stm32f0xx_hal_i2c_ex.o
HAL_I2CEx_DisableWakeUp build/stm32f0xx_hal_i2c_ex.o
HAL_I2CEx_EnableFastModePlus build/stm32f0xx_hal_i2c_ex.o
HAL_I2CEx_EnableWakeUp build/stm32f0xx_hal_i2c_ex.o
HAL_I2C_AbortCpltCallback build/stm32f0xx_hal_i2c.o
HAL_I2C_AddrCallback build/stm32f0xx_hal_i2c.o
HAL_I2C_DeInit build/stm32f0xx_hal_i2c.o
HAL_I2C_DisableListen_IT build/stm32f0xx_hal_i2c.o
HAL_I2C_ER_IRQHandler build/stm32f0xx_hal_i2c.o
HAL_I2C_EV_IRQHandler build/stm32f0xx_hal_i2c.o
HAL_I2C_EnableListen_IT build/stm32f0xx_hal_i2c.o
HAL_I2C_ErrorCallback build/stm32f0xx_hal_i2c.o
HAL_I2C_GetError build/stm32f0xx_hal_i2c.o
HAL_I2C_GetMode build/stm32f0xx_hal_i2c.o
HAL_I2C_GetState build/stm32f0xx_hal_i2c.o
HAL_I2C_Init build/stm32f0xx_hal_i2c.o
HAL_I2C_IsDeviceReady build/stm32f0xx_hal_i2c.o
HAL_I2C_ListenCpltCallback build/stm32f0xx_hal_i2c.o
HAL_I2C_MasterRxCpltCallback build/stm32f0xx_hal_i2c.o
HAL_I2C_MasterTxCpltCallback build/stm32f0xx_hal_i2c.o
HAL_I2C_Master_Abort_IT build/stm32f0xx_hal_i2c.o
HAL_I2C_Master_Receive build/stm32f0xx_hal_i2c.o
HAL_I2C_Master_Receive_DMA build/stm32f0xx_hal_i2c.o
HAL_I2C_Master_Receive_IT build/stm32f0xx_hal_i2c.o
HAL_I2C_Master_Seq_Receive_DMA build/stm32f0xx_hal_i2c.o
HAL_I2C_Master_Seq_Receive_IT build/stm32f0xx_hal_i2c.o
HAL_I2C_Master_Seq_Transmit_DMA build/stm32f0xx_hal_i2c.o
HAL_I2C_Master_Seq_Transmit_IT build/stm32f0xx_hal_i2c.o
HAL_I2C_Master_Transmit build/stm32f0xx_hal_i2c.o
HAL_I2C_Master_Transmit_DMA build/stm32f0xx_hal_i2c.o
HAL_I2C_Master_Transmit_IT build/stm32f0xx_hal_i2c.o
HAL_I2C_MemRxCpltCallback build/stm32f0xx_hal_i2c.o
HAL_I2C_MemTxCpltCallback build/stm32f0xx_hal_i2c.o
HAL_I2C_Mem_Read build/stm32f0xx_hal_i2c.o
HAL_I2C_Mem_Read_DMA build/stm32f0xx_hal_i2c.o
HAL_I2C_Mem_Read_IT build/stm32f0xx_hal_i2c.o
HAL_I2C_Mem_Write build/stm32f0xx_hal_i2c.o
HAL_I2C_Mem_Write_DMA build/stm32f0xx_hal_i2c.o
HAL_I2C_Mem_Write_IT build/stm32f0xx_hal_i2c.o
HAL_I2C_MspDeInit build/stm32f0xx_hal_i2c.o
HAL_I2C_MspInit build/stm32f0xx_hal_i2c.o
HAL_I2C_SlaveRxCpltCallback build/stm32f0xx_hal_i2c.o
HAL_I2C_SlaveTxCpltCallback build/stm32f0xx_hal_i2c.o
HAL_I2C_Slave_Receive build/stm32f0xx_hal_i2c.o
HAL_I2C_Slave_Receive_DMA build/stm32f0xx_hal_i2c.o
HAL_I2C_Slave_Receive_IT build/stm32f0xx_hal_i2c.o
HAL_I2C_Slave_Seq_Receive_DMA build/stm32f0xx_hal_i2c.o
HAL_I2C_Slave_Seq_Receive_IT build/stm32f0xx_hal_i2c.o
HAL_I2C_Slave_Seq_Transmit_DMA build/stm32f0xx_hal_i2c.o
HAL_I2C_Slave_Seq_Transmit_IT build/stm32f0xx_hal_i2c.o
HAL_I2C_Slave_Transmit build/stm32f0xx_hal_i2c.o
HAL_I2C_Slave_Transmit_DMA build/stm32f0xx_hal_i2c.o
HAL_I2C_Slave_Transmit_IT build/stm32f0xx_hal_i2c.o
HAL_IncTick build/stm32f0xx_hal.o
build/stm32f0xx_it.o
HAL_Init build/stm32f0xx_hal.o
build/main.o
HAL_InitTick build/stm32f0xx_hal.o
build/stm32f0xx_hal_rcc.o
HAL_MspDeInit build/stm32f0xx_hal.o
HAL_MspInit build/stm32f0xx_hal_msp.o
HAL_NVIC_ClearPendingIRQ build/stm32f0xx_hal_cortex.o
HAL_NVIC_DisableIRQ build/stm32f0xx_hal_cortex.o
HAL_NVIC_EnableIRQ build/stm32f0xx_hal_cortex.o
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/stm32f0xx_hal.o
HAL_NVIC_SystemReset build/stm32f0xx_hal_cortex.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
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
NMI_Handler build/stm32f0xx_it.o
PVD_VDDIO2_IRQHandler build/startup_stm32f072xb.o
PendSV_Handler build/stm32f0xx_it.o
RCC_CRS_IRQHandler build/startup_stm32f072xb.o
RTC_IRQHandler build/startup_stm32f072xb.o
Reset_Handler build/startup_stm32f072xb.o
SPI1_IRQHandler build/startup_stm32f072xb.o
SPI2_IRQHandler build/startup_stm32f072xb.o
SVC_Handler build/stm32f0xx_it.o
SysTick_Handler build/stm32f0xx_it.o
SystemClock_Config build/main.o
SystemCoreClock build/system_stm32f0xx.o
build/stm32f0xx_hal.o
build/stm32f0xx_hal_rcc.o
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
USB_IRQHandler build/startup_stm32f072xb.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
__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)
__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
__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)
_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
_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)
_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
_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
exit /home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/libc_nano.a(lib_a-exit.o)
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
g_pfnVectors build/startup_stm32f072xb.o
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
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
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/main.o
/home/janhenrik/programme/gcc-arm-none-eabi-7-2018-q2-update/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o
pFlash build/stm32f0xx_hal_flash.o
build/stm32f0xx_hal_flash_ex.o
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
|