-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathp11_sd-card.map
More file actions
3165 lines (3133 loc) · 159 KB
/
p11_sd-card.map
File metadata and controls
3165 lines (3133 loc) · 159 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Archive member included to satisfy reference by file (symbol)
c:/program files (x86)/gnu tools arm embedded/6.2 2016q4/bin/../lib/gcc/arm-none-eabi/6.2.1/../../../../arm-none-eabi/lib/thumb/v7-m\libg.a(lib_a-impure.o)
..\obj\stdio.o (_impure_ptr)
c:/program files (x86)/gnu tools arm embedded/6.2 2016q4/bin/../lib/gcc/arm-none-eabi/6.2.1/../../../../arm-none-eabi/lib/thumb/v7-m\libg.a(lib_a-memcpy.o)
..\obj\debugTask.o (memcpy)
c:/program files (x86)/gnu tools arm embedded/6.2 2016q4/bin/../lib/gcc/arm-none-eabi/6.2.1/../../../../arm-none-eabi/lib/thumb/v7-m\libg.a(lib_a-rand.o)
..\obj\descript_S.o (srand)
c:/program files (x86)/gnu tools arm embedded/6.2 2016q4/bin/../lib/gcc/arm-none-eabi/6.2.1/../../../../arm-none-eabi/lib/thumb/v7-m\libg.a(lib_a-reent.o)
..\obj\newlib_stubs.o (errno)
c:/program files (x86)/gnu tools arm embedded/6.2 2016q4/bin/../lib/gcc/arm-none-eabi/6.2.1/../../../../arm-none-eabi/lib/thumb/v7-m\libg.a(lib_a-strcat.o)
..\obj\debugTask.o (strcat)
c:/program files (x86)/gnu tools arm embedded/6.2 2016q4/bin/../lib/gcc/arm-none-eabi/6.2.1/../../../../arm-none-eabi/lib/thumb/v7-m\libg.a(lib_a-strcpy.o)
c:/program files (x86)/gnu tools arm embedded/6.2 2016q4/bin/../lib/gcc/arm-none-eabi/6.2.1/../../../../arm-none-eabi/lib/thumb/v7-m\libg.a(lib_a-strcat.o) (strcpy)
c:/program files (x86)/gnu tools arm embedded/6.2 2016q4/bin/../lib/gcc/arm-none-eabi/6.2.1/../../../../arm-none-eabi/lib/thumb/v7-m\libg.a(lib_a-strlen-stub.o)
..\obj\debugTask.o (strlen)
c:/program files (x86)/gnu tools arm embedded/6.2 2016q4/bin/../lib/gcc/arm-none-eabi/6.2.1/../../../../arm-none-eabi/lib/thumb/v7-m\libg.a(lib_a-freer.o)
c:/program files (x86)/gnu tools arm embedded/6.2 2016q4/bin/../lib/gcc/arm-none-eabi/6.2.1/../../../../arm-none-eabi/lib/thumb/v7-m\libg.a(lib_a-reent.o) (_free_r)
c:/program files (x86)/gnu tools arm embedded/6.2 2016q4/bin/../lib/gcc/arm-none-eabi/6.2.1/../../../../arm-none-eabi/lib/thumb/v7-m\libg.a(lib_a-mallocr.o)
c:/program files (x86)/gnu tools arm embedded/6.2 2016q4/bin/../lib/gcc/arm-none-eabi/6.2.1/../../../../arm-none-eabi/lib/thumb/v7-m\libg.a(lib_a-freer.o) (__malloc_current_mallinfo)
c:/program files (x86)/gnu tools arm embedded/6.2 2016q4/bin/../lib/gcc/arm-none-eabi/6.2.1/../../../../arm-none-eabi/lib/thumb/v7-m\libg.a(lib_a-mlock.o)
c:/program files (x86)/gnu tools arm embedded/6.2 2016q4/bin/../lib/gcc/arm-none-eabi/6.2.1/../../../../arm-none-eabi/lib/thumb/v7-m\libg.a(lib_a-freer.o) (__malloc_lock)
c:/program files (x86)/gnu tools arm embedded/6.2 2016q4/bin/../lib/gcc/arm-none-eabi/6.2.1/../../../../arm-none-eabi/lib/thumb/v7-m\libg.a(lib_a-sbrkr.o)
c:/program files (x86)/gnu tools arm embedded/6.2 2016q4/bin/../lib/gcc/arm-none-eabi/6.2.1/../../../../arm-none-eabi/lib/thumb/v7-m\libg.a(lib_a-freer.o) (_sbrk_r)
Allocating common symbols
Common symbol size file
SaveRState 0x2 ..\obj\usb_int.o
I2C_rx_buf 0xa ..\obj\I2C_c.o
read_size 0x4 ..\obj\debugTask.o
CRC_sum 0x4 ..\obj\stm32f10x_crc.o
USART_counter_pointer
0x4 ..\obj\debugTask.o
path 0x22 ..\obj\debugTask.o
I_b16 0x4 ..\obj\inputsTask.o
HSEStartUpStatus 0x1 ..\obj\hw_config.o
buttonInterrupt_tmp
0x1 ..\obj\debugTask.o
USART1_rx_buf_counter
0x2 ..\obj\dbgu.o
dbgu_rx_buff 0x100 ..\obj\dbgu.o
j 0x1 ..\obj\dbgu.o
File_Suspend_start 0x8 ..\obj\main.o
USART_Buf_pointer 0x4 ..\obj\debugTask.o
buttonPushInterrupt
0x2 ..\obj\main.o
buttonInterrupt 0x4 ..\obj\debugTask.o
SaveState 0x2 ..\obj\usb_init.o
dbgu_rx_buf_counter
0x2 ..\obj\dbgu.o
errno 0x4 c:/program files (x86)/gnu tools arm embedded/6.2 2016q4/bin/../lib/gcc/arm-none-eabi/6.2.1/../../../../arm-none-eabi/lib/thumb/v7-m\libg.a(lib_a-reent.o)
filinfo 0x18 ..\obj\debugTask.o
CommandArgForButton
0x41 ..\obj\main.o
descrResult 0x1 ..\obj\debugTask.o
ButtonEncorerIndiv 0x4 ..\obj\main.o
USB_Feature 0x1 ..\obj\USB_c.o
buttonRelInterrupt 0x2 ..\obj\main.o
text_buff 0x204 ..\obj\main.o
Related_Endpoint 0x1 ..\obj\USB_c.o
dbgu_rx_buf_overcount
0x1 ..\obj\debugTask.o
a8 0x1 ..\obj\debugTask.o
DS_WS_line_mask 0x1 ..\obj\descript_S.o
TempEP 0x2 ..\obj\USB_c.o
USART_ptr_State_of_recieved_Command
0x4 ..\obj\debugTask.o
SD_Volume_Exists 0x1 ..\obj\debugTask.o
wIstr 0x2 ..\obj\usb_istr.o
k 0x1 ..\obj\dbgu.o
pProperty 0x4 ..\obj\usb_init.o
i32 0x4 ..\obj\USB_c.o
USB_COM_TX_Buff1 0x40 ..\obj\USB_c.o
dbgu_rx_temp_start 0x2 ..\obj\debugTask.o
osTime 0x8 ..\obj\main.o
EPindex 0x1 ..\obj\usb_init.o
USART1_rx_buf_start
0x2 ..\obj\dbgu.o
USART_ptr_rx_start_time
0x4 ..\obj\debugTask.o
I2C_eventListener 0x4 ..\obj\I2C_c.o
fname 0xd ..\obj\debugTask.o
Reserved 0x1 ..\obj\USB_c.o
FileworksDirpath 0x18 ..\obj\debugTask.o
DS_Status_backup 0x1 ..\obj\descript_S.o
Prev_File_Num 0x2 ..\obj\debugTask.o
Servo_Pos_Mask 0x14 ..\obj\main.o
buttonsNewState 0x2 ..\obj\main.o
USART1_rx_start_time
0x8 ..\obj\dbgu.o
need_pause 0x4 ..\obj\main.o
DebugInfoOutFlag 0x1 ..\obj\main.o
USB_Buff1 0x40 ..\obj\USB_c.o
DS_Channel_Select 0x1 ..\obj\main.o
SaveTState 0x2 ..\obj\usb_int.o
i 0x4 ..\obj\dbgu.o
I2C_ResetTime 0x4 ..\obj\I2C_c.o
Parent_File_Num 0x2 ..\obj\debugTask.o
Servo_Pos 0x12 ..\obj\main.o
Device_Info 0x1c ..\obj\usb_init.o
DS_Repeater_set 0x1 ..\obj\descript_S.o
temp_tx_head 0x1 ..\obj\dbgu.o
pUser_Standard_Requests
0x4 ..\obj\usb_init.o
USART1_rx_buff 0x100 ..\obj\dbgu.o
Parent_Prev_File_Num
0x2 ..\obj\debugTask.o
Servo_Pos_Temp 0x10 ..\obj\main.o
Dirpath 0x18 ..\obj\debugTask.o
USB_Rx_Buffer 0x40 ..\obj\usb_endp.o
Personal_ID 0x4 ..\obj\main.o
USART_Rx_Buffer 0x800 ..\obj\hw_config.o
StatusInfo 0x2 ..\obj\usb_core.o
pInformation 0x4 ..\obj\usb_init.o
ResumeS 0x2 ..\obj\usb_pwr.o
USART1_State_of_recieved_Command
0x1 ..\obj\dbgu.o
dbgu_State_of_recieved_Command
0x1 ..\obj\dbgu.o
USB_Interface 0x1 ..\obj\USB_c.o
dbgu_rx_start_time 0x8 ..\obj\dbgu.o
dir 0x1c ..\obj\debugTask.o
USB_rx_timeout 0x4 ..\obj\USB_c.o
USB_wLength 0x2 ..\obj\USB_c.o
USART_InitStructure
0x10 ..\obj\hw_config.o
dbgu_rx_timeout 0x4 ..\obj\dbgu.o
DS_buf_counter 0x2 ..\obj\main.o
USB_Configuration 0x1 ..\obj\USB_c.o
Next_File_Num 0x2 ..\obj\debugTask.o
i2c8 0x1 ..\obj\I2C_c.o
USB_wValue 0x2 ..\obj\USB_c.o
i2c16 0x2 ..\obj\I2C_c.o
WS2812_IO_framedata_Start_address
0x4 ..\obj\init_ws.o
Servo_step 0x1 ..\obj\main.o
icc 0x1 ..\obj\I2C_c.o
USART1_rx_timeout 0x4 ..\obj\dbgu.o
I2C_tx_buff 0x82 ..\obj\I2C_c.o
a16 0x2 ..\obj\debugTask.o
FastCommandForButton
0x41 ..\obj\main.o
numFileForButton 0x82 ..\obj\main.o
Current_File_Num 0x2 ..\obj\debugTask.o
dbgu_rx_buf_start 0x2 ..\obj\dbgu.o
path2 0x22 ..\obj\debugTask.o
Descript_answer 0x4 ..\obj\descript_S.o
USB_wIndex 0x2 ..\obj\USB_c.o
I2C_TargetAddress 0x1 ..\obj\I2C_c.o
File_Open_Flags 0x1 ..\obj\debugTask.o
DS_Pause_interrupt_Flag
0x2 ..\obj\main.o
dbgu_rx_temp_counter
0x2 ..\obj\debugTask.o
wInterrupt_Mask 0x2 ..\obj\usb_init.o
WS2812_IO_framedata
0x3600 ..\obj\main.o
DS_Repeat_Count 0x1 ..\obj\descript_S.o
ic 0x2 ..\obj\I2C_c.o
Servo_time 0x4 ..\obj\main.o
Discarded input sections
.text 0x00000000 0x0 ..\obj\otgd_fs_pcd.o
.data 0x00000000 0x0 ..\obj\otgd_fs_pcd.o
.bss 0x00000000 0x0 ..\obj\otgd_fs_pcd.o
.debug_line 0x00000000 0x0 ..\obj\otgd_fs_pcd.o
.debug_str 0x00000000 0xe1 ..\obj\otgd_fs_pcd.o
.comment 0x00000000 0x6f ..\obj\otgd_fs_pcd.o
.ARM.attributes
0x00000000 0x33 ..\obj\otgd_fs_pcd.o
.text 0x00000000 0x0 ..\obj\usb_core.o
.data 0x00000000 0x0 ..\obj\usb_core.o
.bss 0x00000000 0x1 ..\obj\usb_core.o
.text.Standard_GetConfiguration
0x00000000 0x3c ..\obj\usb_core.o
.text.Standard_SetConfiguration
0x00000000 0x50 ..\obj\usb_core.o
.text.Standard_GetInterface
0x00000000 0x3c ..\obj\usb_core.o
.text.Standard_SetInterface
0x00000000 0x88 ..\obj\usb_core.o
.text.Standard_GetStatus
0x00000000 0x138 ..\obj\usb_core.o
.text.Standard_ClearFeature
0x00000000 0x1d8 ..\obj\usb_core.o
.text.Standard_SetEndPointFeature
0x00000000 0x114 ..\obj\usb_core.o
.text.Standard_SetDeviceFeature
0x00000000 0x2c ..\obj\usb_core.o
.text.Standard_GetDescriptorData
0x00000000 0x48 ..\obj\usb_core.o
.text.DataStageOut
0x00000000 0x104 ..\obj\usb_core.o
.text.DataStageIn
0x00000000 0x10c ..\obj\usb_core.o
.text.NoData_Setup0
0x00000000 0x194 ..\obj\usb_core.o
.text.Data_Setup0
0x00000000 0x32c ..\obj\usb_core.o
.text.Setup0_Process
0x00000000 0xd8 ..\obj\usb_core.o
.text.In0_Process
0x00000000 0x90 ..\obj\usb_core.o
.text.Out0_Process
0x00000000 0x74 ..\obj\usb_core.o
.text.Post0_Process
0x00000000 0x50 ..\obj\usb_core.o
.text.SetDeviceAddress
0x00000000 0x7c ..\obj\usb_core.o
.text.NOP_Process
0x00000000 0xc ..\obj\usb_core.o
.debug_info 0x00000000 0xbc7 ..\obj\usb_core.o
.debug_abbrev 0x00000000 0x2a7 ..\obj\usb_core.o
.debug_aranges
0x00000000 0xb0 ..\obj\usb_core.o
.debug_ranges 0x00000000 0xa0 ..\obj\usb_core.o
.debug_line 0x00000000 0x5c4 ..\obj\usb_core.o
.debug_str 0x00000000 0xae2 ..\obj\usb_core.o
.comment 0x00000000 0x6f ..\obj\usb_core.o
.debug_frame 0x00000000 0x2b8 ..\obj\usb_core.o
.ARM.attributes
0x00000000 0x33 ..\obj\usb_core.o
COMMON 0x00000000 0x2 ..\obj\usb_core.o
.text 0x00000000 0x0 ..\obj\dbgu.o
.text.DBGU_Recieve_finish
0x00000000 0x98 ..\obj\dbgu.o
.text.assert_failed
0x00000000 0x14 ..\obj\dbgu.o
.text 0x00000000 0x0 ..\obj\stm32f10x_tim.o
.data 0x00000000 0x0 ..\obj\stm32f10x_tim.o
.bss 0x00000000 0x0 ..\obj\stm32f10x_tim.o
.text.TIM_DeInit
0x00000000 0x22c ..\obj\stm32f10x_tim.o
.text.TIM_TimeBaseInit
0x00000000 0xf8 ..\obj\stm32f10x_tim.o
.text.TIM_OC1Init
0x00000000 0x118 ..\obj\stm32f10x_tim.o
.text.TIM_OC2Init
0x00000000 0x110 ..\obj\stm32f10x_tim.o
.text.TIM_OC3Init
0x00000000 0x10c ..\obj\stm32f10x_tim.o
.text.TIM_OC4Init
0x00000000 0xd0 ..\obj\stm32f10x_tim.o
.text.TIM_ICInit
0x00000000 0xa8 ..\obj\stm32f10x_tim.o
.text.TIM_PWMIConfig
0x00000000 0xb8 ..\obj\stm32f10x_tim.o
.text.TIM_BDTRConfig
0x00000000 0x4e ..\obj\stm32f10x_tim.o
.text.TIM_TimeBaseStructInit
0x00000000 0x32 ..\obj\stm32f10x_tim.o
.text.TIM_OCStructInit
0x00000000 0x42 ..\obj\stm32f10x_tim.o
.text.TIM_ICStructInit
0x00000000 0x30 ..\obj\stm32f10x_tim.o
.text.TIM_BDTRStructInit
0x00000000 0x3c ..\obj\stm32f10x_tim.o
.text.TIM_Cmd 0x00000000 0x3e ..\obj\stm32f10x_tim.o
.text.TIM_CtrlPWMOutputs
0x00000000 0x4a ..\obj\stm32f10x_tim.o
.text.TIM_GenerateEvent
0x00000000 0x1c ..\obj\stm32f10x_tim.o
.text.TIM_DMAConfig
0x00000000 0x28 ..\obj\stm32f10x_tim.o
.text.TIM_DMACmd
0x00000000 0x46 ..\obj\stm32f10x_tim.o
.text.TIM_InternalClockConfig
0x00000000 0x22 ..\obj\stm32f10x_tim.o
.text.TIM_ITRxExternalClockConfig
0x00000000 0x2e ..\obj\stm32f10x_tim.o
.text.TIM_TIxExternalClockConfig
0x00000000 0x5c ..\obj\stm32f10x_tim.o
.text.TIM_ETRClockMode1Config
0x00000000 0x5e ..\obj\stm32f10x_tim.o
.text.TIM_ETRClockMode2Config
0x00000000 0x3e ..\obj\stm32f10x_tim.o
.text.TIM_ETRConfig
0x00000000 0x52 ..\obj\stm32f10x_tim.o
.text.TIM_PrescalerConfig
0x00000000 0x26 ..\obj\stm32f10x_tim.o
.text.TIM_CounterModeConfig
0x00000000 0x36 ..\obj\stm32f10x_tim.o
.text.TIM_SelectInputTrigger
0x00000000 0x36 ..\obj\stm32f10x_tim.o
.text.TIM_EncoderInterfaceConfig
0x00000000 0x96 ..\obj\stm32f10x_tim.o
.text.TIM_ForcedOC1Config
0x00000000 0x36 ..\obj\stm32f10x_tim.o
.text.TIM_ForcedOC2Config
0x00000000 0x3a ..\obj\stm32f10x_tim.o
.text.TIM_ForcedOC3Config
0x00000000 0x36 ..\obj\stm32f10x_tim.o
.text.TIM_ForcedOC4Config
0x00000000 0x3a ..\obj\stm32f10x_tim.o
.text.TIM_ARRPreloadConfig
0x00000000 0x3e ..\obj\stm32f10x_tim.o
.text.TIM_SelectCOM
0x00000000 0x3e ..\obj\stm32f10x_tim.o
.text.TIM_SelectCCDMA
0x00000000 0x3e ..\obj\stm32f10x_tim.o
.text.TIM_CCPreloadControl
0x00000000 0x3e ..\obj\stm32f10x_tim.o
.text.TIM_OC1PreloadConfig
0x00000000 0x36 ..\obj\stm32f10x_tim.o
.text.TIM_OC2PreloadConfig
0x00000000 0x3a ..\obj\stm32f10x_tim.o
.text.TIM_OC3PreloadConfig
0x00000000 0x36 ..\obj\stm32f10x_tim.o
.text.TIM_OC4PreloadConfig
0x00000000 0x3a ..\obj\stm32f10x_tim.o
.text.TIM_OC1FastConfig
0x00000000 0x36 ..\obj\stm32f10x_tim.o
.text.TIM_OC2FastConfig
0x00000000 0x3a ..\obj\stm32f10x_tim.o
.text.TIM_OC3FastConfig
0x00000000 0x36 ..\obj\stm32f10x_tim.o
.text.TIM_OC4FastConfig
0x00000000 0x3a ..\obj\stm32f10x_tim.o
.text.TIM_ClearOC1Ref
0x00000000 0x36 ..\obj\stm32f10x_tim.o
.text.TIM_ClearOC2Ref
0x00000000 0x3a ..\obj\stm32f10x_tim.o
.text.TIM_ClearOC3Ref
0x00000000 0x36 ..\obj\stm32f10x_tim.o
.text.TIM_ClearOC4Ref
0x00000000 0x3a ..\obj\stm32f10x_tim.o
.text.TIM_OC1PolarityConfig
0x00000000 0x36 ..\obj\stm32f10x_tim.o
.text.TIM_OC1NPolarityConfig
0x00000000 0x36 ..\obj\stm32f10x_tim.o
.text.TIM_OC2PolarityConfig
0x00000000 0x3a ..\obj\stm32f10x_tim.o
.text.TIM_OC2NPolarityConfig
0x00000000 0x3a ..\obj\stm32f10x_tim.o
.text.TIM_OC3PolarityConfig
0x00000000 0x3a ..\obj\stm32f10x_tim.o
.text.TIM_OC3NPolarityConfig
0x00000000 0x3a ..\obj\stm32f10x_tim.o
.text.TIM_OC4PolarityConfig
0x00000000 0x3a ..\obj\stm32f10x_tim.o
.text.TIM_CCxCmd
0x00000000 0x54 ..\obj\stm32f10x_tim.o
.text.TIM_CCxNCmd
0x00000000 0x54 ..\obj\stm32f10x_tim.o
.text.TIM_SelectOCxM
0x00000000 0xac ..\obj\stm32f10x_tim.o
.text.TIM_UpdateDisableConfig
0x00000000 0x3e ..\obj\stm32f10x_tim.o
.text.TIM_UpdateRequestConfig
0x00000000 0x3e ..\obj\stm32f10x_tim.o
.text.TIM_SelectHallSensor
0x00000000 0x3e ..\obj\stm32f10x_tim.o
.text.TIM_SelectOnePulseMode
0x00000000 0x36 ..\obj\stm32f10x_tim.o
.text.TIM_SelectOutputTrigger
0x00000000 0x36 ..\obj\stm32f10x_tim.o
.text.TIM_SelectSlaveMode
0x00000000 0x36 ..\obj\stm32f10x_tim.o
.text.TIM_SelectMasterSlaveMode
0x00000000 0x36 ..\obj\stm32f10x_tim.o
.text.TIM_SetCounter
0x00000000 0x1c ..\obj\stm32f10x_tim.o
.text.TIM_SetAutoreload
0x00000000 0x1c ..\obj\stm32f10x_tim.o
.text.TIM_SetCompare1
0x00000000 0x1c ..\obj\stm32f10x_tim.o
.text.TIM_SetCompare2
0x00000000 0x1c ..\obj\stm32f10x_tim.o
.text.TIM_SetCompare3
0x00000000 0x1c ..\obj\stm32f10x_tim.o
.text.TIM_SetCompare4
0x00000000 0x1e ..\obj\stm32f10x_tim.o
.text.TIM_SetIC1Prescaler
0x00000000 0x36 ..\obj\stm32f10x_tim.o
.text.TIM_SetIC2Prescaler
0x00000000 0x3a ..\obj\stm32f10x_tim.o
.text.TIM_SetIC3Prescaler
0x00000000 0x36 ..\obj\stm32f10x_tim.o
.text.TIM_SetIC4Prescaler
0x00000000 0x3a ..\obj\stm32f10x_tim.o
.text.TIM_SetClockDivision
0x00000000 0x36 ..\obj\stm32f10x_tim.o
.text.TIM_GetCapture1
0x00000000 0x18 ..\obj\stm32f10x_tim.o
.text.TIM_GetCapture2
0x00000000 0x18 ..\obj\stm32f10x_tim.o
.text.TIM_GetCapture3
0x00000000 0x18 ..\obj\stm32f10x_tim.o
.text.TIM_GetCapture4
0x00000000 0x1a ..\obj\stm32f10x_tim.o
.text.TIM_GetCounter
0x00000000 0x18 ..\obj\stm32f10x_tim.o
.text.TIM_GetPrescaler
0x00000000 0x18 ..\obj\stm32f10x_tim.o
.text.TIM_GetFlagStatus
0x00000000 0x36 ..\obj\stm32f10x_tim.o
.text.TIM_ClearFlag
0x00000000 0x20 ..\obj\stm32f10x_tim.o
.text.TIM_GetITStatus
0x00000000 0x52 ..\obj\stm32f10x_tim.o
.text.TIM_ClearITPendingBit
0x00000000 0x20 ..\obj\stm32f10x_tim.o
.text.TI1_Config
0x00000000 0xe0 ..\obj\stm32f10x_tim.o
.text.TI2_Config
0x00000000 0xf4 ..\obj\stm32f10x_tim.o
.text.TI3_Config
0x00000000 0xec ..\obj\stm32f10x_tim.o
.text.TI4_Config
0x00000000 0xf8 ..\obj\stm32f10x_tim.o
.text 0x00000000 0x0 ..\obj\kernelHeap.o
.data 0x00000000 0x0 ..\obj\kernelHeap.o
.bss 0x00000000 0xd4 ..\obj\kernelHeap.o
.text.CoCreateKheap
0x00000000 0x44 ..\obj\kernelHeap.o
.text.CoKmalloc
0x00000000 0x164 ..\obj\kernelHeap.o
.text.CoKfree 0x00000000 0x214 ..\obj\kernelHeap.o
.text.GetPreFMB
0x00000000 0x30 ..\obj\kernelHeap.o
.debug_info 0x00000000 0x727 ..\obj\kernelHeap.o
.debug_abbrev 0x00000000 0x189 ..\obj\kernelHeap.o
.debug_aranges
0x00000000 0x38 ..\obj\kernelHeap.o
.debug_ranges 0x00000000 0x28 ..\obj\kernelHeap.o
.debug_line 0x00000000 0x21d ..\obj\kernelHeap.o
.debug_str 0x00000000 0x4ef ..\obj\kernelHeap.o
.comment 0x00000000 0x6f ..\obj\kernelHeap.o
.debug_frame 0x00000000 0xa4 ..\obj\kernelHeap.o
.ARM.attributes
0x00000000 0x33 ..\obj\kernelHeap.o
.text 0x00000000 0x0 ..\obj\core.o
.data 0x00000000 0x0 ..\obj\core.o
.text.CoEnterISR
0x00000000 0x14 ..\obj\core.o
.text.CoExitISR
0x00000000 0x50 ..\obj\core.o
.text.OsSchedUnlock
0x00000000 0x50 ..\obj\core.o
.text.CoSchedLock
0x00000000 0x20 ..\obj\core.o
.text.CoSchedUnlock
0x00000000 0xc ..\obj\core.o
.text.CoInitOS
0x00000000 0x80 ..\obj\core.o
.text.CoStartOS
0x00000000 0x38 ..\obj\core.o
.text.CoGetOSVersion
0x00000000 0x10 ..\obj\core.o
.text 0x00000000 0x0 ..\obj\descript_S.o
.data 0x00000000 0x0 ..\obj\descript_S.o
.text.print_DEC_4
0x00000000 0xf4 ..\obj\descript_S.o
.text.Error_Message_Command
0x00000000 0xfc ..\obj\descript_S.o
.text.Error_Meaasge_Param
0x00000000 0xa4 ..\obj\descript_S.o
.text.DS_strtohex
0x00000000 0x66 ..\obj\descript_S.o
.text.DS_dec_add_symbol
0x00000000 0x2c ..\obj\descript_S.o
.text 0x00000000 0x0 ..\obj\timer.o
.data 0x00000000 0x0 ..\obj\timer.o
.bss 0x00000000 0x38 ..\obj\timer.o
.text.InsertTmrList
0x00000000 0x1dc ..\obj\timer.o
.text.RemoveTmrList
0x00000000 0xd4 ..\obj\timer.o
.text.CoCreateTmr
0x00000000 0x118 ..\obj\timer.o
.text.CoStartTmr
0x00000000 0x50 ..\obj\timer.o
.text.CoStopTmr
0x00000000 0x50 ..\obj\timer.o
.text.CoDelTmr
0x00000000 0x50 ..\obj\timer.o
.text.CoGetCurTmrCnt
0x00000000 0x34 ..\obj\timer.o
.text.CoSetTmrCnt
0x00000000 0x6c ..\obj\timer.o
.text.TmrDispose
0x00000000 0x78 ..\obj\timer.o
.text.isr_TmrDispose
0x00000000 0x30 ..\obj\timer.o
.debug_info 0x00000000 0x74d ..\obj\timer.o
.debug_abbrev 0x00000000 0x1f1 ..\obj\timer.o
.debug_aranges
0x00000000 0x68 ..\obj\timer.o
.debug_ranges 0x00000000 0x58 ..\obj\timer.o
.debug_line 0x00000000 0x269 ..\obj\timer.o
.debug_str 0x00000000 0x49c ..\obj\timer.o
.comment 0x00000000 0x6f ..\obj\timer.o
.debug_frame 0x00000000 0x178 ..\obj\timer.o
.ARM.attributes
0x00000000 0x33 ..\obj\timer.o
.text 0x00000000 0x0 ..\obj\utility.o
.data 0x00000000 0x0 ..\obj\utility.o
.bss 0x00000000 0x0 ..\obj\utility.o
.text.CoTickToTime
0x00000000 0xa0 ..\obj\utility.o
.text.CoTimeToTick
0x00000000 0x74 ..\obj\utility.o
.debug_info 0x00000000 0x5c3 ..\obj\utility.o
.debug_abbrev 0x00000000 0x137 ..\obj\utility.o
.debug_aranges
0x00000000 0x28 ..\obj\utility.o
.debug_ranges 0x00000000 0x18 ..\obj\utility.o
.debug_line 0x00000000 0x148 ..\obj\utility.o
.debug_str 0x00000000 0x438 ..\obj\utility.o
.comment 0x00000000 0x6f ..\obj\utility.o
.debug_frame 0x00000000 0x60 ..\obj\utility.o
.ARM.attributes
0x00000000 0x33 ..\obj\utility.o
.text 0x00000000 0x0 ..\obj\usb_int.o
.data 0x00000000 0x0 ..\obj\usb_int.o
.bss 0x00000000 0x0 ..\obj\usb_int.o
.text.CTR_LP 0x00000000 0x300 ..\obj\usb_int.o
.text.CTR_HP 0x00000000 0xf0 ..\obj\usb_int.o
.text 0x00000000 0x0 ..\obj\system_stm32f10x.o
.bss 0x00000000 0x0 ..\obj\system_stm32f10x.o
.text.SystemCoreClockUpdate
0x00000000 0xd8 ..\obj\system_stm32f10x.o
.text.SetSysClock
0x00000000 0xc ..\obj\system_stm32f10x.o
.text 0x00000000 0x0 ..\obj\exceptions.o
.data 0x00000000 0x0 ..\obj\exceptions.o
.bss 0x00000000 0x0 ..\obj\exceptions.o
.text.hard_fault_ini
0x00000000 0x28 ..\obj\exceptions.o
.text 0x00000000 0x0 ..\obj\newlib_stubs.o
.data 0x00000000 0x4 ..\obj\newlib_stubs.o
.bss 0x00000000 0x8 ..\obj\newlib_stubs.o
.text._exit 0x00000000 0xa ..\obj\newlib_stubs.o
.text._close 0x00000000 0x16 ..\obj\newlib_stubs.o
.text._execve 0x00000000 0x24 ..\obj\newlib_stubs.o
.text._fork 0x00000000 0x1c ..\obj\newlib_stubs.o
.text._fstat 0x00000000 0x1e ..\obj\newlib_stubs.o
.text._getpid 0x00000000 0xe ..\obj\newlib_stubs.o
.text._isatty 0x00000000 0x2c ..\obj\newlib_stubs.o
.text._kill 0x00000000 0x24 ..\obj\newlib_stubs.o
.text._link 0x00000000 0x24 ..\obj\newlib_stubs.o
.text._lseek 0x00000000 0x18 ..\obj\newlib_stubs.o
.rodata 0x00000000 0x1a ..\obj\newlib_stubs.o
.text._sbrk 0x00000000 0x70 ..\obj\newlib_stubs.o
.text._read 0x00000000 0x74 ..\obj\newlib_stubs.o
.text._stat 0x00000000 0x1e ..\obj\newlib_stubs.o
.text._times 0x00000000 0x16 ..\obj\newlib_stubs.o
.text._unlink 0x00000000 0x20 ..\obj\newlib_stubs.o
.text._wait 0x00000000 0x20 ..\obj\newlib_stubs.o
.text._write 0x00000000 0x7c ..\obj\newlib_stubs.o
.debug_info 0x00000000 0x10b7 ..\obj\newlib_stubs.o
.debug_abbrev 0x00000000 0x2da ..\obj\newlib_stubs.o
.debug_aranges
0x00000000 0xa0 ..\obj\newlib_stubs.o
.debug_ranges 0x00000000 0x90 ..\obj\newlib_stubs.o
.debug_line 0x00000000 0x4c5 ..\obj\newlib_stubs.o
.debug_str 0x00000000 0x89c ..\obj\newlib_stubs.o
.comment 0x00000000 0x6f ..\obj\newlib_stubs.o
.debug_frame 0x00000000 0x294 ..\obj\newlib_stubs.o
.ARM.attributes
0x00000000 0x33 ..\obj\newlib_stubs.o
.text 0x00000000 0x0 ..\obj\usb_desc.o
.data 0x00000000 0x1a ..\obj\usb_desc.o
.bss 0x00000000 0x0 ..\obj\usb_desc.o
.rodata 0x00000000 0xb6 ..\obj\usb_desc.o
.debug_info 0x00000000 0x5a2 ..\obj\usb_desc.o
.debug_abbrev 0x00000000 0x119 ..\obj\usb_desc.o
.debug_aranges
0x00000000 0x18 ..\obj\usb_desc.o
.debug_line 0x00000000 0x266 ..\obj\usb_desc.o
.debug_str 0x00000000 0x673 ..\obj\usb_desc.o
.comment 0x00000000 0x6f ..\obj\usb_desc.o
.ARM.attributes
0x00000000 0x33 ..\obj\usb_desc.o
.text 0x00000000 0x0 ..\obj\usb_regs.o
.data 0x00000000 0x0 ..\obj\usb_regs.o
.bss 0x00000000 0x0 ..\obj\usb_regs.o
.text.SetCNTR 0x00000000 0x20 ..\obj\usb_regs.o
.text.GetCNTR 0x00000000 0x18 ..\obj\usb_regs.o
.text.SetISTR 0x00000000 0x20 ..\obj\usb_regs.o
.text.GetISTR 0x00000000 0x18 ..\obj\usb_regs.o
.text.GetFNR 0x00000000 0x18 ..\obj\usb_regs.o
.text.SetDADDR
0x00000000 0x20 ..\obj\usb_regs.o
.text.GetDADDR
0x00000000 0x18 ..\obj\usb_regs.o
.text.SetBTABLE
0x00000000 0x24 ..\obj\usb_regs.o
.text.GetBTABLE
0x00000000 0x18 ..\obj\usb_regs.o
.text.SetENDPOINT
0x00000000 0x2a ..\obj\usb_regs.o
.text.GetENDPOINT
0x00000000 0x24 ..\obj\usb_regs.o
.text.SetEPType
0x00000000 0x4c ..\obj\usb_regs.o
.text.GetEPType
0x00000000 0x2a ..\obj\usb_regs.o
.text.SetEPTxStatus
0x00000000 0x70 ..\obj\usb_regs.o
.text.SetEPRxStatus
0x00000000 0x70 ..\obj\usb_regs.o
.text.SetDouBleBuffEPStall
0x00000000 0x5a ..\obj\usb_regs.o
.text.GetEPTxStatus
0x00000000 0x2a ..\obj\usb_regs.o
.text.GetEPRxStatus
0x00000000 0x2a ..\obj\usb_regs.o
.text.SetEPTxValid
0x00000000 0x54 ..\obj\usb_regs.o
.text.SetEPRxValid
0x00000000 0x54 ..\obj\usb_regs.o
.text.SetEP_KIND
0x00000000 0x50 ..\obj\usb_regs.o
.text.ClearEP_KIND
0x00000000 0x48 ..\obj\usb_regs.o
.text.Clear_Status_Out
0x00000000 0x48 ..\obj\usb_regs.o
.text.Set_Status_Out
0x00000000 0x50 ..\obj\usb_regs.o
.text.SetEPDoubleBuff
0x00000000 0x50 ..\obj\usb_regs.o
.text.ClearEPDoubleBuff
0x00000000 0x48 ..\obj\usb_regs.o
.text.GetTxStallStatus
0x00000000 0x34 ..\obj\usb_regs.o
.text.GetRxStallStatus
0x00000000 0x36 ..\obj\usb_regs.o
.text.ClearEP_CTR_RX
0x00000000 0x3a ..\obj\usb_regs.o
.text.ClearEP_CTR_TX
0x00000000 0x3a ..\obj\usb_regs.o
.text.ToggleDTOG_RX
0x00000000 0x42 ..\obj\usb_regs.o
.text.ToggleDTOG_TX
0x00000000 0x42 ..\obj\usb_regs.o
.text.ClearDTOG_RX
0x00000000 0x5a ..\obj\usb_regs.o
.text.ClearDTOG_TX
0x00000000 0x5a ..\obj\usb_regs.o
.text.SetEPAddress
0x00000000 0x4c ..\obj\usb_regs.o
.text.GetEPAddress
0x00000000 0x2a ..\obj\usb_regs.o
.text.SetEPTxAddr
0x00000000 0x44 ..\obj\usb_regs.o
.text.SetEPRxAddr
0x00000000 0x44 ..\obj\usb_regs.o
.text.GetEPTxAddr
0x00000000 0x34 ..\obj\usb_regs.o
.text.GetEPRxAddr
0x00000000 0x34 ..\obj\usb_regs.o
.text.SetEPTxCount
0x00000000 0x3c ..\obj\usb_regs.o
.text.SetEPCountRxReg
0x00000000 0x62 ..\obj\usb_regs.o
.text.SetEPRxCount
0x00000000 0x84 ..\obj\usb_regs.o
.text.GetEPTxCount
0x00000000 0x3c ..\obj\usb_regs.o
.text.GetEPRxCount
0x00000000 0x3c ..\obj\usb_regs.o
.text.SetEPDblBuffAddr
0x00000000 0x68 ..\obj\usb_regs.o
.text.SetEPDblBuf0Addr
0x00000000 0x44 ..\obj\usb_regs.o
.text.SetEPDblBuf1Addr
0x00000000 0x44 ..\obj\usb_regs.o
.text.GetEPDblBuf0Addr
0x00000000 0x34 ..\obj\usb_regs.o
.text.GetEPDblBuf1Addr
0x00000000 0x34 ..\obj\usb_regs.o
.text.SetEPDblBuffCount
0x00000000 0x13c ..\obj\usb_regs.o
.text.SetEPDblBuf0Count
0x00000000 0xb0 ..\obj\usb_regs.o
.text.SetEPDblBuf1Count
0x00000000 0xb0 ..\obj\usb_regs.o
.text.GetEPDblBuf0Count
0x00000000 0x3c ..\obj\usb_regs.o
.text.GetEPDblBuf1Count
0x00000000 0x3c ..\obj\usb_regs.o
.text.GetEPDblBufDir
0x00000000 0x6c ..\obj\usb_regs.o
.text.FreeUserBuffer
0x00000000 0x84 ..\obj\usb_regs.o
.text.ToWord 0x00000000 0x2c ..\obj\usb_regs.o
.text.ByteSwap
0x00000000 0x2e ..\obj\usb_regs.o
.debug_info 0x00000000 0x1045 ..\obj\usb_regs.o
.debug_abbrev 0x00000000 0x215 ..\obj\usb_regs.o
.debug_aranges
0x00000000 0x1f0 ..\obj\usb_regs.o
.debug_ranges 0x00000000 0x2b8 ..\obj\usb_regs.o
.debug_line 0x00000000 0x838 ..\obj\usb_regs.o
.debug_str 0x00000000 0x9b0 ..\obj\usb_regs.o
.comment 0x00000000 0x6f ..\obj\usb_regs.o
.debug_frame 0x00000000 0x91c ..\obj\usb_regs.o
.ARM.attributes
0x00000000 0x33 ..\obj\usb_regs.o
.text 0x00000000 0x0 ..\obj\init_ws.o
.data 0x00000000 0x0 ..\obj\init_ws.o
.bss 0x00000000 0x0 ..\obj\init_ws.o
.text.WS2812_Timer_init
0x00000000 0x184 ..\obj\init_ws.o
.text.WS2812_ResetStartPixelInBuffer
0x00000000 0x1c ..\obj\init_ws.o
.text.WS2812_framedata_setPixel
0x00000000 0x150 ..\obj\init_ws.o
.text.WS2812_framedata_setRow
0x00000000 0x50 ..\obj\init_ws.o
.text.WS2812_framedata_setColumn
0x00000000 0x4c ..\obj\init_ws.o
.text 0x00000000 0x0 ..\obj\startup_stm32f10x_md.o
.data 0x00000000 0x0 ..\obj\startup_stm32f10x_md.o
.bss 0x00000000 0x0 ..\obj\startup_stm32f10x_md.o
.text 0x00000000 0x0 ..\obj\task.o
.data 0x00000000 0x0 ..\obj\task.o
.text.CreateTCBList
0x00000000 0x68 ..\obj\task.o
.text.InsertToTCBRdyList
0x00000000 0x100 ..\obj\task.o
.text.RemoveFromTCBRdyList
0x00000000 0x88 ..\obj\task.o
.text.CoSetPriority
0x00000000 0xf0 ..\obj\task.o
.text.Schedule
0x00000000 0x118 ..\obj\task.o
.text.AssignTCB
0x00000000 0x4c ..\obj\task.o
.text.CreateTask
0x00000000 0xc0 ..\obj\task.o
.text.CoDelTask
0x00000000 0xc8 ..\obj\task.o
.text.CoExitTask
0x00000000 0x18 ..\obj\task.o
.text.CoGetCurTaskID
0x00000000 0x18 ..\obj\task.o
.text.CoSuspendTask
0x00000000 0x88 ..\obj\task.o
.text.CoAwakeTask
0x00000000 0x80 ..\obj\task.o
.text 0x00000000 0x0 ..\obj\hw_config.o
.data 0x00000000 0x0 ..\obj\hw_config.o
.bss 0x00000000 0xd ..\obj\hw_config.o
.text.Set_System
0x00000000 0x54 ..\obj\hw_config.o
.text.Set_USBClock
0x00000000 0x18 ..\obj\hw_config.o
.text.Enter_LowPowerMode
0x00000000 0x18 ..\obj\hw_config.o
.text.Leave_LowPowerMode
0x00000000 0x34 ..\obj\hw_config.o
.text.USB_Interrupts_Config
0x00000000 0x2e ..\obj\hw_config.o
.text.USB_Cable_Config
0x00000000 0x34 ..\obj\hw_config.o
.text.Handle_USBAsynchXfer
0x00000000 0xdc ..\obj\hw_config.o
.text.USB_Send_Data
0x00000000 0x40 ..\obj\hw_config.o
.text.Get_SerialNum
0x00000000 0x58 ..\obj\hw_config.o
.text.IntToUnicode
0x00000000 0x5c ..\obj\hw_config.o
.text.USB_SetLeds
0x00000000 0x16c ..\obj\hw_config.o
.debug_info 0x00000000 0xb7c ..\obj\hw_config.o
.debug_abbrev 0x00000000 0x2ae ..\obj\hw_config.o
.debug_aranges
0x00000000 0x70 ..\obj\hw_config.o
.debug_ranges 0x00000000 0x60 ..\obj\hw_config.o
.debug_line 0x00000000 0x43a ..\obj\hw_config.o
.debug_str 0x00000000 0xdb5 ..\obj\hw_config.o
.comment 0x00000000 0x6f ..\obj\hw_config.o
.debug_frame 0x00000000 0x19c ..\obj\hw_config.o
.ARM.attributes
0x00000000 0x33 ..\obj\hw_config.o
COMMON 0x00000000 0x814 ..\obj\hw_config.o
.text 0x00000000 0x0 ..\obj\stm32f10x_gpio.o
.data 0x00000000 0x0 ..\obj\stm32f10x_gpio.o
.bss 0x00000000 0x0 ..\obj\stm32f10x_gpio.o
.text.GPIO_DeInit
0x00000000 0xe4 ..\obj\stm32f10x_gpio.o
.text.GPIO_AFIODeInit
0x00000000 0x18 ..\obj\stm32f10x_gpio.o
.text.GPIO_Init
0x00000000 0x178 ..\obj\stm32f10x_gpio.o
.text.GPIO_StructInit
0x00000000 0x26 ..\obj\stm32f10x_gpio.o
.text.GPIO_ReadInputDataBit
0x00000000 0x32 ..\obj\stm32f10x_gpio.o
.text.GPIO_ReadInputData
0x00000000 0x18 ..\obj\stm32f10x_gpio.o
.text.GPIO_ReadOutputDataBit
0x00000000 0x32 ..\obj\stm32f10x_gpio.o
.text.GPIO_ReadOutputData
0x00000000 0x18 ..\obj\stm32f10x_gpio.o
.text.GPIO_SetBits
0x00000000 0x1c ..\obj\stm32f10x_gpio.o
.text.GPIO_ResetBits
0x00000000 0x1c ..\obj\stm32f10x_gpio.o
.text.GPIO_WriteBit
0x00000000 0x2e ..\obj\stm32f10x_gpio.o
.text.GPIO_Write
0x00000000 0x1c ..\obj\stm32f10x_gpio.o
.text.GPIO_PinLockConfig
0x00000000 0x42 ..\obj\stm32f10x_gpio.o
.text.GPIO_EventOutputConfig
0x00000000 0x4c ..\obj\stm32f10x_gpio.o
.text.GPIO_EventOutputCmd
0x00000000 0x20 ..\obj\stm32f10x_gpio.o
.text.GPIO_PinRemapConfig
0x00000000 0xe0 ..\obj\stm32f10x_gpio.o
.text.GPIO_EXTILineConfig
0x00000000 0x84 ..\obj\stm32f10x_gpio.o
.text.GPIO_ETH_MediaInterfaceConfig
0x00000000 0x1c ..\obj\stm32f10x_gpio.o
.debug_info 0x00000000 0x6fd ..\obj\stm32f10x_gpio.o
.debug_abbrev 0x00000000 0x1db ..\obj\stm32f10x_gpio.o
.debug_aranges
0x00000000 0xa8 ..\obj\stm32f10x_gpio.o
.debug_ranges 0x00000000 0x98 ..\obj\stm32f10x_gpio.o
.debug_line 0x00000000 0x436 ..\obj\stm32f10x_gpio.o
.debug_str 0x00000000 0x544 ..\obj\stm32f10x_gpio.o
.comment 0x00000000 0x6f ..\obj\stm32f10x_gpio.o
.debug_frame 0x00000000 0x2d0 ..\obj\stm32f10x_gpio.o
.ARM.attributes
0x00000000 0x33 ..\obj\stm32f10x_gpio.o
.text 0x00000000 0x0 ..\obj\inputsTask.o
.data 0x00000000 0x0 ..\obj\inputsTask.o
.text 0x00000000 0x0 ..\obj\usb_prop.o
.data 0x00000000 0x90 ..\obj\usb_prop.o
.bss 0x00000000 0x1 ..\obj\usb_prop.o
.text.Virtual_Com_Port_init
0x00000000 0x2c ..\obj\usb_prop.o
.text.Virtual_Com_Port_Reset
0x00000000 0xf4 ..\obj\usb_prop.o
.text.Virtual_Com_Port_SetConfiguration
0x00000000 0x2c ..\obj\usb_prop.o
.text.Virtual_Com_Port_SetDeviceAddress
0x00000000 0x18 ..\obj\usb_prop.o
.text.Virtual_Com_Port_Status_In
0x00000000 0x20 ..\obj\usb_prop.o
.text.Virtual_Com_Port_Status_Out
0x00000000 0xc ..\obj\usb_prop.o
.text.Virtual_Com_Port_Data_Setup
0x00000000 0x80 ..\obj\usb_prop.o
.text.Virtual_Com_Port_NoData_Setup
0x00000000 0x3c ..\obj\usb_prop.o
.text.Virtual_Com_Port_GetDeviceDescriptor
0x00000000 0x24 ..\obj\usb_prop.o
.text.Virtual_Com_Port_GetConfigDescriptor
0x00000000 0x24 ..\obj\usb_prop.o
.text.Virtual_Com_Port_GetStringDescriptor
0x00000000 0x40 ..\obj\usb_prop.o
.text.Virtual_Com_Port_Get_Interface_Setting
0x00000000 0x30 ..\obj\usb_prop.o
.text.Virtual_Com_Port_GetLineCoding
0x00000000 0x30 ..\obj\usb_prop.o
.text.Virtual_Com_Port_SetLineCoding
0x00000000 0x30 ..\obj\usb_prop.o
.debug_info 0x00000000 0x8f1 ..\obj\usb_prop.o
.debug_abbrev 0x00000000 0x224 ..\obj\usb_prop.o
.debug_aranges
0x00000000 0x88 ..\obj\usb_prop.o
.debug_ranges 0x00000000 0x78 ..\obj\usb_prop.o
.debug_line 0x00000000 0x3d6 ..\obj\usb_prop.o
.debug_str 0x00000000 0x9ee ..\obj\usb_prop.o
.comment 0x00000000 0x6f ..\obj\usb_prop.o
.debug_frame 0x00000000 0x200 ..\obj\usb_prop.o
.ARM.attributes
0x00000000 0x33 ..\obj\usb_prop.o
.text 0x00000000 0x0 ..\obj\serviceReq.o
.data 0x00000000 0x0 ..\obj\serviceReq.o
.bss 0x00000000 0x2f ..\obj\serviceReq.o
.text.InsertInSRQ
0x00000000 0x8c ..\obj\serviceReq.o
.text.RespondSRQ
0x00000000 0xe4 ..\obj\serviceReq.o
.debug_info 0x00000000 0x5ae ..\obj\serviceReq.o
.debug_abbrev 0x00000000 0x151 ..\obj\serviceReq.o
.debug_aranges
0x00000000 0x28 ..\obj\serviceReq.o
.debug_ranges 0x00000000 0x18 ..\obj\serviceReq.o
.debug_line 0x00000000 0x16c ..\obj\serviceReq.o
.debug_str 0x00000000 0x41a ..\obj\serviceReq.o
.comment 0x00000000 0x6f ..\obj\serviceReq.o
.debug_frame 0x00000000 0x58 ..\obj\serviceReq.o
.ARM.attributes
0x00000000 0x33 ..\obj\serviceReq.o
.text 0x00000000 0x0 ..\obj\usb_pwr.o
.data 0x00000000 0x1 ..\obj\usb_pwr.o
.bss 0x00000000 0x4 ..\obj\usb_pwr.o
.text.PowerOn 0x00000000 0x50 ..\obj\usb_pwr.o
.text.PowerOff
0x00000000 0x2c ..\obj\usb_pwr.o
.text.Suspend 0x00000000 0x40 ..\obj\usb_pwr.o
.text.Resume_Init
0x00000000 0x34 ..\obj\usb_pwr.o
.text.Resume 0x00000000 0xfc ..\obj\usb_pwr.o
.debug_info 0x00000000 0x684 ..\obj\usb_pwr.o
.debug_abbrev 0x00000000 0x1ac ..\obj\usb_pwr.o
.debug_aranges
0x00000000 0x40 ..\obj\usb_pwr.o
.debug_ranges 0x00000000 0x30 ..\obj\usb_pwr.o
.debug_line 0x00000000 0x315 ..\obj\usb_pwr.o
.debug_str 0x00000000 0x71d ..\obj\usb_pwr.o
.comment 0x00000000 0x6f ..\obj\usb_pwr.o
.debug_frame 0x00000000 0xbc ..\obj\usb_pwr.o
.ARM.attributes
0x00000000 0x33 ..\obj\usb_pwr.o
COMMON 0x00000000 0x2 ..\obj\usb_pwr.o
.text 0x00000000 0x0 ..\obj\usb_init.o
.data 0x00000000 0x0 ..\obj\usb_init.o
.bss 0x00000000 0x0 ..\obj\usb_init.o
.text.USB_Init
0x00000000 0x44 ..\obj\usb_init.o
.text 0x00000000 0x0 ..\obj\main.o
.text 0x00000000 0x0 ..\obj\usb-main.o
.data 0x00000000 0x0 ..\obj\usb-main.o
.bss 0x00000000 0x0 ..\obj\usb-main.o
.debug_line 0x00000000 0x0 ..\obj\usb-main.o
.debug_str 0x00000000 0xc3 ..\obj\usb-main.o
.comment 0x00000000 0x6f ..\obj\usb-main.o
.ARM.attributes
0x00000000 0x33 ..\obj\usb-main.o
.text 0x00000000 0x0 ..\obj\otgd_fs_dev.o
.data 0x00000000 0x0 ..\obj\otgd_fs_dev.o
.bss 0x00000000 0x0 ..\obj\otgd_fs_dev.o
.debug_line 0x00000000 0x0 ..\obj\otgd_fs_dev.o
.debug_str 0x00000000 0xe1 ..\obj\otgd_fs_dev.o
.comment 0x00000000 0x6f ..\obj\otgd_fs_dev.o
.ARM.attributes
0x00000000 0x33 ..\obj\otgd_fs_dev.o
.text 0x00000000 0x0 ..\obj\stm32f10x_crc.o
.data 0x00000000 0x0 ..\obj\stm32f10x_crc.o
.bss 0x00000000 0x0 ..\obj\stm32f10x_crc.o
.text.CRC_ResetDR
0x00000000 0x18 ..\obj\stm32f10x_crc.o
.text.CRC_CalcCRC
0x00000000 0x20 ..\obj\stm32f10x_crc.o
.text.CRC_CalcBlockCRC
0x00000000 0x44 ..\obj\stm32f10x_crc.o
.text.CRC_GetCRC
0x00000000 0x14 ..\obj\stm32f10x_crc.o
.text.CRC_SetIDRegister
0x00000000 0x20 ..\obj\stm32f10x_crc.o
.text.CRC_GetIDRegister
0x00000000 0x18 ..\obj\stm32f10x_crc.o
.text 0x00000000 0x0 ..\obj\debugTask.o
.data 0x00000000 0x0 ..\obj\debugTask.o
.text.FileBufferEnding
0x00000000 0x54 ..\obj\debugTask.o
.text.Check_If_MainLoop_Is_AFK
0x00000000 0x44 ..\obj\debugTask.o
.text 0x00000000 0x0 ..\obj\I2C_c.o
.text.I2C_Check
0x00000000 0x50 ..\obj\I2C_c.o
.text.Check_If_I2C_Is_AFK
0x00000000 0x58 ..\obj\I2C_c.o
.text 0x00000000 0x0 ..\obj\stm32f10x_rcc.o
.data 0x00000000 0x14 ..\obj\stm32f10x_rcc.o
.bss 0x00000000 0x0 ..\obj\stm32f10x_rcc.o
.text.RCC_DeInit
0x00000000 0x5c ..\obj\stm32f10x_rcc.o
.text.RCC_HSEConfig
0x00000000 0x5c ..\obj\stm32f10x_rcc.o
.text.RCC_WaitForHSEStartUp
0x00000000 0x50 ..\obj\stm32f10x_rcc.o
.text.RCC_AdjustHSICalibrationValue
0x00000000 0x3c ..\obj\stm32f10x_rcc.o
.text.RCC_HSICmd
0x00000000 0x20 ..\obj\stm32f10x_rcc.o
.text.RCC_PLLConfig
0x00000000 0x3c ..\obj\stm32f10x_rcc.o
.text.RCC_PLLCmd
0x00000000 0x20 ..\obj\stm32f10x_rcc.o
.text.RCC_SYSCLKConfig
0x00000000 0x38 ..\obj\stm32f10x_rcc.o
.text.RCC_GetSYSCLKSource
0x00000000 0x1c ..\obj\stm32f10x_rcc.o
.text.RCC_HCLKConfig
0x00000000 0x38 ..\obj\stm32f10x_rcc.o
.text.RCC_PCLK1Config
0x00000000 0x38 ..\obj\stm32f10x_rcc.o
.text.RCC_PCLK2Config
0x00000000 0x38 ..\obj\stm32f10x_rcc.o
.text.RCC_ITConfig
0x00000000 0x4c ..\obj\stm32f10x_rcc.o
.text.RCC_USBCLKConfig
0x00000000 0x1c ..\obj\stm32f10x_rcc.o
.text.RCC_ADCCLKConfig
0x00000000 0x38 ..\obj\stm32f10x_rcc.o
.text.RCC_LSEConfig
0x00000000 0x40 ..\obj\stm32f10x_rcc.o
.text.RCC_LSICmd
0x00000000 0x20 ..\obj\stm32f10x_rcc.o