-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlab1.map
1981 lines (1924 loc) · 178 KB
/
lab1.map
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
ARM Linker, 5.03 [Build 76] [MDK-ARM Lite]
==============================================================================
Section Cross References
main.o(i.CAN_Config) refers to stm32f4xx_rcc.o(i.RCC_AHB1PeriphClockCmd) for RCC_AHB1PeriphClockCmd
main.o(i.CAN_Config) refers to stm32f4xx_gpio.o(i.GPIO_PinAFConfig) for GPIO_PinAFConfig
main.o(i.CAN_Config) refers to stm32f4xx_gpio.o(i.GPIO_Init) for GPIO_Init
main.o(i.CAN_Config) refers to stm32f4xx_rcc.o(i.RCC_APB1PeriphClockCmd) for RCC_APB1PeriphClockCmd
main.o(i.CAN_Config) refers to stm32f4xx_can.o(i.CAN_DeInit) for CAN_DeInit
main.o(i.CAN_Config) refers to stm32f4xx_can.o(i.CAN_Init) for CAN_Init
main.o(i.CAN_Config) refers to stm32f4xx_can.o(i.CAN_FilterInit) for CAN_FilterInit
main.o(i.CAN_Config) refers to stm32f4xx_can.o(i.CAN_ITConfig) for CAN_ITConfig
main.o(i.CAN_Config) refers to main.o(.data) for .data
main.o(i.CAN_Config) refers to main.o(.bss) for .bss
main.o(i.Delay) refers to stm32f4xx_it.o(.data) for msCount
main.o(i.LCD_Config) refers to stm32f429i_discovery_lcd.o(i.LCD_Init) for LCD_Init
main.o(i.LCD_Config) refers to stm32f429i_discovery_lcd.o(i.LCD_LayerInit) for LCD_LayerInit
main.o(i.LCD_Config) refers to stm32f4xx_ltdc.o(i.LTDC_Cmd) for LTDC_Cmd
main.o(i.LCD_Config) refers to stm32f429i_discovery_lcd.o(i.LCD_SetLayer) for LCD_SetLayer
main.o(i.LCD_Config) refers to stm32f429i_discovery_lcd.o(i.LCD_Clear) for LCD_Clear
main.o(i.LCD_DisplayFloat) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
main.o(i.LCD_DisplayFloat) refers to _printf_f.o(.ARM.Collect$$_printf_percent$$00000003) for _printf_f
main.o(i.LCD_DisplayFloat) refers to printf1.o(x$fpl$printf1) for _printf_fp_dec
main.o(i.LCD_DisplayFloat) refers to f2d.o(x$fpl$f2d) for __aeabi_f2d
main.o(i.LCD_DisplayFloat) refers to noretval__2sprintf.o(.text) for __2sprintf
main.o(i.LCD_DisplayFloat) refers to main.o(i.LCD_DisplayString) for LCD_DisplayString
main.o(i.LCD_DisplayInt) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
main.o(i.LCD_DisplayInt) refers to _printf_d.o(.ARM.Collect$$_printf_percent$$00000009) for _printf_d
main.o(i.LCD_DisplayInt) refers to _printf_dec.o(.text) for _printf_int_dec
main.o(i.LCD_DisplayInt) refers to noretval__2sprintf.o(.text) for __2sprintf
main.o(i.LCD_DisplayInt) refers to main.o(i.LCD_DisplayString) for LCD_DisplayString
main.o(i.LCD_DisplayInt) refers to main.o(.constdata) for .constdata
main.o(i.LCD_DisplayString) refers to stm32f429i_discovery_lcd.o(i.LCD_GetFont) for LCD_GetFont
main.o(i.LCD_DisplayString) refers to stm32f429i_discovery_lcd.o(i.LCD_DisplayChar) for LCD_DisplayChar
main.o(i.LEDs_Init) refers to stm32f429i_discovery.o(i.STM_EVAL_LEDInit) for STM_EVAL_LEDInit
main.o(i.Msg_Display) refers to main.o(i.LCD_Config) for LCD_Config
main.o(i.Msg_Display) refers to main.o(i.LCD_DisplayString) for LCD_DisplayString
main.o(i.Msg_Display) refers to main.o(i.LCD_DisplayInt) for LCD_DisplayInt
main.o(i.Msg_Display) refers to main.o(i.Delay) for Delay
main.o(i.Msg_Display) refers to stm32f429i_discovery_lcd.o(i.LCD_DeInit) for LCD_DeInit
main.o(i.Msg_Display) refers to main.o(i.NVIC_SystemReset) for NVIC_SystemReset
main.o(i.NVIC_Config) refers to misc.o(i.NVIC_Init) for NVIC_Init
main.o(i.main) refers to main.o(i.NVIC_SetPriority) for NVIC_SetPriority
main.o(i.main) refers to main.o(i.NVIC_Config) for NVIC_Config
main.o(i.main) refers to main.o(i.LEDs_Init) for LEDs_Init
main.o(i.main) refers to stm32f429i_discovery.o(i.STM_EVAL_PBInit) for STM_EVAL_PBInit
main.o(i.main) refers to main.o(i.CAN_Config) for CAN_Config
main.o(i.main) refers to stm32f429i_discovery.o(i.STM_EVAL_LEDOn) for STM_EVAL_LEDOn
main.o(i.main) refers to stm32f4xx_can.o(i.CAN_Transmit) for CAN_Transmit
main.o(i.main) refers to stm32f429i_discovery.o(i.STM_EVAL_LEDOff) for STM_EVAL_LEDOff
main.o(i.main) refers to main.o(i.Delay) for Delay
main.o(i.main) refers to stm32f4xx_can.o(i.CAN_TransmitStatus) for CAN_TransmitStatus
main.o(i.main) refers to stm32f4xx_can.o(i.CAN_CancelTransmit) for CAN_CancelTransmit
main.o(i.main) refers to main.o(i.NVIC_SystemReset) for NVIC_SystemReset
main.o(i.main) refers to stm32f429i_discovery.o(i.STM_EVAL_PBGetState) for STM_EVAL_PBGetState
main.o(i.main) refers to system_stm32f4xx.o(.data) for SystemCoreClock
main.o(i.main) refers to main.o(.data) for .data
main.o(i.main) refers to main.o(.bss) for .bss
stm32f4xx_it.o(i.CAN1_RX0_IRQHandler) refers to stm32f4xx_can.o(i.CAN_GetFlagStatus) for CAN_GetFlagStatus
stm32f4xx_it.o(i.CAN1_RX0_IRQHandler) refers to stm32f4xx_can.o(i.CAN_Receive) for CAN_Receive
stm32f4xx_it.o(i.CAN1_RX0_IRQHandler) refers to stm32f429i_discovery.o(i.STM_EVAL_LEDOn) for STM_EVAL_LEDOn
stm32f4xx_it.o(i.CAN1_RX0_IRQHandler) refers to main.o(i.Msg_Display) for Msg_Display
stm32f4xx_it.o(i.CAN1_RX0_IRQHandler) refers to stm32f4xx_can.o(i.CAN_ClearFlag) for CAN_ClearFlag
stm32f4xx_it.o(i.CAN1_RX0_IRQHandler) refers to main.o(.bss) for RxMessage
stm32f4xx_it.o(i.EXTI0_IRQHandler) refers to stm32f4xx_exti.o(i.EXTI_ClearITPendingBit) for EXTI_ClearITPendingBit
stm32f4xx_it.o(i.EXTI1_IRQHandler) refers to stm32f4xx_exti.o(i.EXTI_ClearITPendingBit) for EXTI_ClearITPendingBit
stm32f4xx_it.o(i.SysTick_Handler) refers to stm32f4xx_it.o(.data) for .data
stm32f4xx_it.o(i.TIM3_IRQHandler) refers to main.o(i.Delay) for Delay
system_stm32f4xx.o(i.SystemCoreClockUpdate) refers to system_stm32f4xx.o(.data) for .data
system_stm32f4xx.o(i.SystemInit) refers to system_stm32f4xx.o(i.SetSysClock) for SetSysClock
startup_stm32f429_439xx.o(STACK) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
startup_stm32f429_439xx.o(HEAP) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
startup_stm32f429_439xx.o(RESET) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
startup_stm32f429_439xx.o(RESET) refers to startup_stm32f429_439xx.o(STACK) for __initial_sp
startup_stm32f429_439xx.o(RESET) refers to startup_stm32f429_439xx.o(.text) for Reset_Handler
startup_stm32f429_439xx.o(RESET) refers to stm32f4xx_it.o(i.NMI_Handler) for NMI_Handler
startup_stm32f429_439xx.o(RESET) refers to stm32f4xx_it.o(i.HardFault_Handler) for HardFault_Handler
startup_stm32f429_439xx.o(RESET) refers to stm32f4xx_it.o(i.MemManage_Handler) for MemManage_Handler
startup_stm32f429_439xx.o(RESET) refers to stm32f4xx_it.o(i.BusFault_Handler) for BusFault_Handler
startup_stm32f429_439xx.o(RESET) refers to stm32f4xx_it.o(i.UsageFault_Handler) for UsageFault_Handler
startup_stm32f429_439xx.o(RESET) refers to stm32f4xx_it.o(i.SVC_Handler) for SVC_Handler
startup_stm32f429_439xx.o(RESET) refers to stm32f4xx_it.o(i.DebugMon_Handler) for DebugMon_Handler
startup_stm32f429_439xx.o(RESET) refers to stm32f4xx_it.o(i.PendSV_Handler) for PendSV_Handler
startup_stm32f429_439xx.o(RESET) refers to stm32f4xx_it.o(i.SysTick_Handler) for SysTick_Handler
startup_stm32f429_439xx.o(RESET) refers to stm32f4xx_it.o(i.EXTI0_IRQHandler) for EXTI0_IRQHandler
startup_stm32f429_439xx.o(RESET) refers to stm32f4xx_it.o(i.EXTI1_IRQHandler) for EXTI1_IRQHandler
startup_stm32f429_439xx.o(RESET) refers to stm32f4xx_it.o(i.CAN1_RX0_IRQHandler) for CAN1_RX0_IRQHandler
startup_stm32f429_439xx.o(RESET) refers to stm32f4xx_it.o(i.TIM3_IRQHandler) for TIM3_IRQHandler
startup_stm32f429_439xx.o(.text) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
startup_stm32f429_439xx.o(.text) refers to system_stm32f4xx.o(i.SystemInit) for SystemInit
startup_stm32f429_439xx.o(.text) refers to __main.o(!!!main) for __main
startup_stm32f429_439xx.o(.text) refers to startup_stm32f429_439xx.o(HEAP) for Heap_Mem
startup_stm32f429_439xx.o(.text) refers to startup_stm32f429_439xx.o(STACK) for Stack_Mem
stm32f4xx_adc.o(i.ADC_DeInit) refers to stm32f4xx_rcc.o(i.RCC_APB2PeriphResetCmd) for RCC_APB2PeriphResetCmd
stm32f4xx_dma2d.o(i.DMA2D_DeInit) refers to stm32f4xx_rcc.o(i.RCC_AHB1PeriphResetCmd) for RCC_AHB1PeriphResetCmd
stm32f4xx_gpio.o(i.GPIO_DeInit) refers to stm32f4xx_rcc.o(i.RCC_AHB1PeriphResetCmd) for RCC_AHB1PeriphResetCmd
stm32f4xx_i2c.o(i.I2C_DeInit) refers to stm32f4xx_rcc.o(i.RCC_APB1PeriphResetCmd) for RCC_APB1PeriphResetCmd
stm32f4xx_i2c.o(i.I2C_Init) refers to stm32f4xx_rcc.o(i.RCC_GetClocksFreq) for RCC_GetClocksFreq
stm32f4xx_ltdc.o(i.LTDC_DeInit) refers to stm32f4xx_rcc.o(i.RCC_APB2PeriphResetCmd) for RCC_APB2PeriphResetCmd
stm32f4xx_rcc.o(i.RCC_GetClocksFreq) refers to stm32f4xx_rcc.o(.data) for .data
stm32f4xx_rcc.o(i.RCC_WaitForHSEStartUp) refers to stm32f4xx_rcc.o(i.RCC_GetFlagStatus) for RCC_GetFlagStatus
stm32f4xx_spi.o(i.SPI_I2S_DeInit) refers to stm32f4xx_rcc.o(i.RCC_APB1PeriphResetCmd) for RCC_APB1PeriphResetCmd
stm32f4xx_spi.o(i.SPI_I2S_DeInit) refers to stm32f4xx_rcc.o(i.RCC_APB2PeriphResetCmd) for RCC_APB2PeriphResetCmd
stm32f4xx_syscfg.o(i.SYSCFG_DeInit) refers to stm32f4xx_rcc.o(i.RCC_APB2PeriphResetCmd) for RCC_APB2PeriphResetCmd
stm32f4xx_tim.o(i.TIM_DeInit) refers to stm32f4xx_rcc.o(i.RCC_APB2PeriphResetCmd) for RCC_APB2PeriphResetCmd
stm32f4xx_tim.o(i.TIM_DeInit) refers to stm32f4xx_rcc.o(i.RCC_APB1PeriphResetCmd) for RCC_APB1PeriphResetCmd
stm32f4xx_tim.o(i.TIM_ETRClockMode1Config) refers to stm32f4xx_tim.o(i.TIM_ETRConfig) for TIM_ETRConfig
stm32f4xx_tim.o(i.TIM_ETRClockMode2Config) refers to stm32f4xx_tim.o(i.TIM_ETRConfig) for TIM_ETRConfig
stm32f4xx_tim.o(i.TIM_ICInit) refers to stm32f4xx_tim.o(i.TIM_SetIC4Prescaler) for TIM_SetIC4Prescaler
stm32f4xx_tim.o(i.TIM_ICInit) refers to stm32f4xx_tim.o(i.TI1_Config) for TI1_Config
stm32f4xx_tim.o(i.TIM_ICInit) refers to stm32f4xx_tim.o(i.TIM_SetIC1Prescaler) for TIM_SetIC1Prescaler
stm32f4xx_tim.o(i.TIM_ICInit) refers to stm32f4xx_tim.o(i.TI2_Config) for TI2_Config
stm32f4xx_tim.o(i.TIM_ICInit) refers to stm32f4xx_tim.o(i.TIM_SetIC2Prescaler) for TIM_SetIC2Prescaler
stm32f4xx_tim.o(i.TIM_ICInit) refers to stm32f4xx_tim.o(i.TIM_SetIC3Prescaler) for TIM_SetIC3Prescaler
stm32f4xx_tim.o(i.TIM_ITRxExternalClockConfig) refers to stm32f4xx_tim.o(i.TIM_SelectInputTrigger) for TIM_SelectInputTrigger
stm32f4xx_tim.o(i.TIM_PWMIConfig) refers to stm32f4xx_tim.o(i.TI2_Config) for TI2_Config
stm32f4xx_tim.o(i.TIM_PWMIConfig) refers to stm32f4xx_tim.o(i.TIM_SetIC2Prescaler) for TIM_SetIC2Prescaler
stm32f4xx_tim.o(i.TIM_PWMIConfig) refers to stm32f4xx_tim.o(i.TI1_Config) for TI1_Config
stm32f4xx_tim.o(i.TIM_PWMIConfig) refers to stm32f4xx_tim.o(i.TIM_SetIC1Prescaler) for TIM_SetIC1Prescaler
stm32f4xx_tim.o(i.TIM_TIxExternalClockConfig) refers to stm32f4xx_tim.o(i.TI1_Config) for TI1_Config
stm32f4xx_tim.o(i.TIM_TIxExternalClockConfig) refers to stm32f4xx_tim.o(i.TIM_SelectInputTrigger) for TIM_SelectInputTrigger
stm32f4xx_tim.o(i.TIM_TIxExternalClockConfig) refers to stm32f4xx_tim.o(i.TI2_Config) for TI2_Config
stm32f4xx_usart.o(i.USART_DeInit) refers to stm32f4xx_rcc.o(i.RCC_APB2PeriphResetCmd) for RCC_APB2PeriphResetCmd
stm32f4xx_usart.o(i.USART_DeInit) refers to stm32f4xx_rcc.o(i.RCC_APB1PeriphResetCmd) for RCC_APB1PeriphResetCmd
stm32f4xx_usart.o(i.USART_Init) refers to stm32f4xx_rcc.o(i.RCC_GetClocksFreq) for RCC_GetClocksFreq
stm32f4xx_flash.o(i.FLASH_EraseAllBank1Sectors) refers to stm32f4xx_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
stm32f4xx_flash.o(i.FLASH_EraseAllBank2Sectors) refers to stm32f4xx_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
stm32f4xx_flash.o(i.FLASH_EraseAllSectors) refers to stm32f4xx_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
stm32f4xx_flash.o(i.FLASH_EraseSector) refers to stm32f4xx_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
stm32f4xx_flash.o(i.FLASH_OB_Launch) refers to stm32f4xx_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
stm32f4xx_flash.o(i.FLASH_OB_PCROP1Config) refers to stm32f4xx_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
stm32f4xx_flash.o(i.FLASH_OB_PCROPConfig) refers to stm32f4xx_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
stm32f4xx_flash.o(i.FLASH_OB_RDPConfig) refers to stm32f4xx_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
stm32f4xx_flash.o(i.FLASH_OB_UserConfig) refers to stm32f4xx_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
stm32f4xx_flash.o(i.FLASH_OB_WRP1Config) refers to stm32f4xx_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
stm32f4xx_flash.o(i.FLASH_OB_WRPConfig) refers to stm32f4xx_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
stm32f4xx_flash.o(i.FLASH_ProgramByte) refers to stm32f4xx_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
stm32f4xx_flash.o(i.FLASH_ProgramDoubleWord) refers to stm32f4xx_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
stm32f4xx_flash.o(i.FLASH_ProgramHalfWord) refers to stm32f4xx_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
stm32f4xx_flash.o(i.FLASH_ProgramWord) refers to stm32f4xx_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
stm32f4xx_flash.o(i.FLASH_WaitForLastOperation) refers to stm32f4xx_flash.o(i.FLASH_GetStatus) for FLASH_GetStatus
stm32f4xx_can.o(i.CAN_DeInit) refers to stm32f4xx_rcc.o(i.RCC_APB1PeriphResetCmd) for RCC_APB1PeriphResetCmd
stm32f4xx_can.o(i.CAN_GetITStatus) refers to stm32f4xx_can.o(i.CheckITStatus) for CheckITStatus
stm32f429i_discovery.o(i.STM_EVAL_LEDInit) refers to stm32f4xx_rcc.o(i.RCC_AHB1PeriphClockCmd) for RCC_AHB1PeriphClockCmd
stm32f429i_discovery.o(i.STM_EVAL_LEDInit) refers to stm32f4xx_gpio.o(i.GPIO_Init) for GPIO_Init
stm32f429i_discovery.o(i.STM_EVAL_LEDInit) refers to stm32f429i_discovery.o(.constdata) for .constdata
stm32f429i_discovery.o(i.STM_EVAL_LEDInit) refers to stm32f429i_discovery.o(.data) for .data
stm32f429i_discovery.o(i.STM_EVAL_LEDOff) refers to stm32f429i_discovery.o(.constdata) for .constdata
stm32f429i_discovery.o(i.STM_EVAL_LEDOff) refers to stm32f429i_discovery.o(.data) for .data
stm32f429i_discovery.o(i.STM_EVAL_LEDOn) refers to stm32f429i_discovery.o(.constdata) for .constdata
stm32f429i_discovery.o(i.STM_EVAL_LEDOn) refers to stm32f429i_discovery.o(.data) for .data
stm32f429i_discovery.o(i.STM_EVAL_LEDToggle) refers to stm32f429i_discovery.o(.data) for .data
stm32f429i_discovery.o(i.STM_EVAL_LEDToggle) refers to stm32f429i_discovery.o(.constdata) for .constdata
stm32f429i_discovery.o(i.STM_EVAL_PBGetState) refers to stm32f4xx_gpio.o(i.GPIO_ReadInputDataBit) for GPIO_ReadInputDataBit
stm32f429i_discovery.o(i.STM_EVAL_PBGetState) refers to stm32f429i_discovery.o(.constdata) for .constdata
stm32f429i_discovery.o(i.STM_EVAL_PBGetState) refers to stm32f429i_discovery.o(.data) for .data
stm32f429i_discovery.o(i.STM_EVAL_PBInit) refers to stm32f4xx_rcc.o(i.RCC_AHB1PeriphClockCmd) for RCC_AHB1PeriphClockCmd
stm32f429i_discovery.o(i.STM_EVAL_PBInit) refers to stm32f4xx_rcc.o(i.RCC_APB2PeriphClockCmd) for RCC_APB2PeriphClockCmd
stm32f429i_discovery.o(i.STM_EVAL_PBInit) refers to stm32f4xx_gpio.o(i.GPIO_Init) for GPIO_Init
stm32f429i_discovery.o(i.STM_EVAL_PBInit) refers to stm32f4xx_syscfg.o(i.SYSCFG_EXTILineConfig) for SYSCFG_EXTILineConfig
stm32f429i_discovery.o(i.STM_EVAL_PBInit) refers to stm32f4xx_exti.o(i.EXTI_Init) for EXTI_Init
stm32f429i_discovery.o(i.STM_EVAL_PBInit) refers to misc.o(i.NVIC_Init) for NVIC_Init
stm32f429i_discovery.o(i.STM_EVAL_PBInit) refers to stm32f429i_discovery.o(.constdata) for .constdata
stm32f429i_discovery.o(i.STM_EVAL_PBInit) refers to stm32f429i_discovery.o(.data) for .data
stm32f429i_discovery.o(i.sEE_LowLevel_DMAConfig) refers to stm32f4xx_dma.o(i.DMA_Init) for DMA_Init
stm32f429i_discovery.o(i.sEE_LowLevel_DMAConfig) refers to stm32f429i_discovery.o(.bss) for .bss
stm32f429i_discovery.o(i.sEE_LowLevel_DeInit) refers to stm32f4xx_i2c.o(i.I2C_Cmd) for I2C_Cmd
stm32f429i_discovery.o(i.sEE_LowLevel_DeInit) refers to stm32f4xx_i2c.o(i.I2C_DeInit) for I2C_DeInit
stm32f429i_discovery.o(i.sEE_LowLevel_DeInit) refers to stm32f4xx_rcc.o(i.RCC_APB1PeriphClockCmd) for RCC_APB1PeriphClockCmd
stm32f429i_discovery.o(i.sEE_LowLevel_DeInit) refers to stm32f4xx_gpio.o(i.GPIO_Init) for GPIO_Init
stm32f429i_discovery.o(i.sEE_LowLevel_DeInit) refers to misc.o(i.NVIC_Init) for NVIC_Init
stm32f429i_discovery.o(i.sEE_LowLevel_DeInit) refers to stm32f4xx_dma.o(i.DMA_Cmd) for DMA_Cmd
stm32f429i_discovery.o(i.sEE_LowLevel_DeInit) refers to stm32f4xx_dma.o(i.DMA_DeInit) for DMA_DeInit
stm32f429i_discovery.o(i.sEE_LowLevel_DeInit) refers to stm32f429i_discovery.o(.data) for .data
stm32f429i_discovery.o(i.sEE_LowLevel_Init) refers to stm32f4xx_rcc.o(i.RCC_APB1PeriphClockCmd) for RCC_APB1PeriphClockCmd
stm32f429i_discovery.o(i.sEE_LowLevel_Init) refers to stm32f4xx_rcc.o(i.RCC_AHB1PeriphClockCmd) for RCC_AHB1PeriphClockCmd
stm32f429i_discovery.o(i.sEE_LowLevel_Init) refers to stm32f4xx_rcc.o(i.RCC_APB2PeriphClockCmd) for RCC_APB2PeriphClockCmd
stm32f429i_discovery.o(i.sEE_LowLevel_Init) refers to stm32f4xx_rcc.o(i.RCC_APB1PeriphResetCmd) for RCC_APB1PeriphResetCmd
stm32f429i_discovery.o(i.sEE_LowLevel_Init) refers to stm32f4xx_gpio.o(i.GPIO_Init) for GPIO_Init
stm32f429i_discovery.o(i.sEE_LowLevel_Init) refers to stm32f4xx_gpio.o(i.GPIO_PinAFConfig) for GPIO_PinAFConfig
stm32f429i_discovery.o(i.sEE_LowLevel_Init) refers to misc.o(i.NVIC_Init) for NVIC_Init
stm32f429i_discovery.o(i.sEE_LowLevel_Init) refers to stm32f4xx_dma.o(i.DMA_ClearFlag) for DMA_ClearFlag
stm32f429i_discovery.o(i.sEE_LowLevel_Init) refers to stm32f4xx_dma.o(i.DMA_Cmd) for DMA_Cmd
stm32f429i_discovery.o(i.sEE_LowLevel_Init) refers to stm32f4xx_dma.o(i.DMA_DeInit) for DMA_DeInit
stm32f429i_discovery.o(i.sEE_LowLevel_Init) refers to stm32f4xx_dma.o(i.DMA_Init) for DMA_Init
stm32f429i_discovery.o(i.sEE_LowLevel_Init) refers to stm32f4xx_dma.o(i.DMA_ITConfig) for DMA_ITConfig
stm32f429i_discovery.o(i.sEE_LowLevel_Init) refers to stm32f429i_discovery.o(.data) for .data
stm32f429i_discovery.o(i.sEE_LowLevel_Init) refers to stm32f429i_discovery.o(.bss) for .bss
stm32f429i_discovery_lcd.o(i.LCD_AF_GPIOConfig) refers to stm32f4xx_rcc.o(i.RCC_AHB1PeriphClockCmd) for RCC_AHB1PeriphClockCmd
stm32f429i_discovery_lcd.o(i.LCD_AF_GPIOConfig) refers to stm32f4xx_gpio.o(i.GPIO_PinAFConfig) for GPIO_PinAFConfig
stm32f429i_discovery_lcd.o(i.LCD_AF_GPIOConfig) refers to stm32f4xx_gpio.o(i.GPIO_Init) for GPIO_Init
stm32f429i_discovery_lcd.o(i.LCD_ChipSelect) refers to stm32f4xx_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
stm32f429i_discovery_lcd.o(i.LCD_ChipSelect) refers to stm32f4xx_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
stm32f429i_discovery_lcd.o(i.LCD_Clear) refers to stm32f429i_discovery_lcd.o(.data) for .data
stm32f429i_discovery_lcd.o(i.LCD_ClearLine) refers to stm32f429i_discovery_lcd.o(i.LCD_DisplayChar) for LCD_DisplayChar
stm32f429i_discovery_lcd.o(i.LCD_ClearLine) refers to stm32f429i_discovery_lcd.o(.data) for .data
stm32f429i_discovery_lcd.o(i.LCD_ClosedPolyLine) refers to stm32f429i_discovery_lcd.o(i.LCD_PolyLine) for LCD_PolyLine
stm32f429i_discovery_lcd.o(i.LCD_ClosedPolyLine) refers to stm32f429i_discovery_lcd.o(i.LCD_DrawUniLine) for LCD_DrawUniLine
stm32f429i_discovery_lcd.o(i.LCD_ClosedPolyLineRelative) refers to stm32f429i_discovery_lcd.o(i.LCD_PolyLineRelativeClosed) for LCD_PolyLineRelativeClosed
stm32f429i_discovery_lcd.o(i.LCD_CtrlLinesConfig) refers to stm32f4xx_rcc.o(i.RCC_AHB1PeriphClockCmd) for RCC_AHB1PeriphClockCmd
stm32f429i_discovery_lcd.o(i.LCD_CtrlLinesConfig) refers to stm32f4xx_gpio.o(i.GPIO_Init) for GPIO_Init
stm32f429i_discovery_lcd.o(i.LCD_CtrlLinesConfig) refers to stm32f429i_discovery_lcd.o(i.LCD_CtrlLinesWrite) for LCD_CtrlLinesWrite
stm32f429i_discovery_lcd.o(i.LCD_CtrlLinesWrite) refers to stm32f4xx_gpio.o(i.GPIO_WriteBit) for GPIO_WriteBit
stm32f429i_discovery_lcd.o(i.LCD_DeInit) refers to stm32f429i_discovery_lcd.o(i.LCD_WriteCommand) for LCD_WriteCommand
stm32f429i_discovery_lcd.o(i.LCD_DeInit) refers to stm32f4xx_spi.o(i.SPI_Cmd) for SPI_Cmd
stm32f429i_discovery_lcd.o(i.LCD_DeInit) refers to stm32f4xx_spi.o(i.SPI_I2S_DeInit) for SPI_I2S_DeInit
stm32f429i_discovery_lcd.o(i.LCD_DeInit) refers to stm32f4xx_rcc.o(i.RCC_APB2PeriphClockCmd) for RCC_APB2PeriphClockCmd
stm32f429i_discovery_lcd.o(i.LCD_DeInit) refers to stm32f4xx_gpio.o(i.GPIO_Init) for GPIO_Init
stm32f429i_discovery_lcd.o(i.LCD_DeInit) refers to stm32f4xx_gpio.o(i.GPIO_PinAFConfig) for GPIO_PinAFConfig
stm32f429i_discovery_lcd.o(i.LCD_DisplayChar) refers to stm32f429i_discovery_lcd.o(i.LCD_DrawChar) for LCD_DrawChar
stm32f429i_discovery_lcd.o(i.LCD_DisplayChar) refers to stm32f429i_discovery_lcd.o(.data) for .data
stm32f429i_discovery_lcd.o(i.LCD_DisplayOff) refers to stm32f429i_discovery_lcd.o(i.LCD_WriteCommand) for LCD_WriteCommand
stm32f429i_discovery_lcd.o(i.LCD_DisplayOn) refers to stm32f429i_discovery_lcd.o(i.LCD_WriteCommand) for LCD_WriteCommand
stm32f429i_discovery_lcd.o(i.LCD_DisplayStringLine) refers to stm32f429i_discovery_lcd.o(i.LCD_DisplayChar) for LCD_DisplayChar
stm32f429i_discovery_lcd.o(i.LCD_DisplayStringLine) refers to stm32f429i_discovery_lcd.o(.data) for .data
stm32f429i_discovery_lcd.o(i.LCD_DrawChar) refers to stm32f429i_discovery_lcd.o(.data) for .data
stm32f429i_discovery_lcd.o(i.LCD_DrawCircle) refers to stm32f429i_discovery_lcd.o(.data) for .data
stm32f429i_discovery_lcd.o(i.LCD_DrawEllipse) refers to stm32f429i_discovery_lcd.o(.data) for .data
stm32f429i_discovery_lcd.o(i.LCD_DrawFullCircle) refers to stm32f429i_discovery_lcd.o(i.LCD_DrawLine) for LCD_DrawLine
stm32f429i_discovery_lcd.o(i.LCD_DrawFullCircle) refers to stm32f429i_discovery_lcd.o(i.LCD_DrawCircle) for LCD_DrawCircle
stm32f429i_discovery_lcd.o(i.LCD_DrawFullEllipse) refers to stm32f429i_discovery_lcd.o(i.LCD_DrawLine) for LCD_DrawLine
stm32f429i_discovery_lcd.o(i.LCD_DrawFullRect) refers to stm32f4xx_dma2d.o(i.DMA2D_DeInit) for DMA2D_DeInit
stm32f429i_discovery_lcd.o(i.LCD_DrawFullRect) refers to stm32f4xx_dma2d.o(i.DMA2D_Init) for DMA2D_Init
stm32f429i_discovery_lcd.o(i.LCD_DrawFullRect) refers to stm32f4xx_dma2d.o(i.DMA2D_StartTransfer) for DMA2D_StartTransfer
stm32f429i_discovery_lcd.o(i.LCD_DrawFullRect) refers to stm32f4xx_dma2d.o(i.DMA2D_GetFlagStatus) for DMA2D_GetFlagStatus
stm32f429i_discovery_lcd.o(i.LCD_DrawFullRect) refers to stm32f429i_discovery_lcd.o(.data) for .data
stm32f429i_discovery_lcd.o(i.LCD_DrawLine) refers to stm32f4xx_dma2d.o(i.DMA2D_DeInit) for DMA2D_DeInit
stm32f429i_discovery_lcd.o(i.LCD_DrawLine) refers to stm32f4xx_dma2d.o(i.DMA2D_Init) for DMA2D_Init
stm32f429i_discovery_lcd.o(i.LCD_DrawLine) refers to stm32f4xx_dma2d.o(i.DMA2D_StartTransfer) for DMA2D_StartTransfer
stm32f429i_discovery_lcd.o(i.LCD_DrawLine) refers to stm32f4xx_dma2d.o(i.DMA2D_GetFlagStatus) for DMA2D_GetFlagStatus
stm32f429i_discovery_lcd.o(i.LCD_DrawLine) refers to stm32f429i_discovery_lcd.o(.data) for .data
stm32f429i_discovery_lcd.o(i.LCD_DrawMonoPict) refers to stm32f429i_discovery_lcd.o(.data) for .data
stm32f429i_discovery_lcd.o(i.LCD_DrawRect) refers to stm32f429i_discovery_lcd.o(i.LCD_DrawLine) for LCD_DrawLine
stm32f429i_discovery_lcd.o(i.LCD_DrawUniLine) refers to stm32f429i_discovery_lcd.o(i.LCD_DrawLine) for LCD_DrawLine
stm32f429i_discovery_lcd.o(i.LCD_FillPolyLine) refers to stm32f429i_discovery_lcd.o(i.LCD_FillTriangle) for LCD_FillTriangle
stm32f429i_discovery_lcd.o(i.LCD_FillTriangle) refers to stm32f429i_discovery_lcd.o(i.LCD_DrawUniLine) for LCD_DrawUniLine
stm32f429i_discovery_lcd.o(i.LCD_GetColors) refers to stm32f429i_discovery_lcd.o(.data) for .data
stm32f429i_discovery_lcd.o(i.LCD_GetFont) refers to stm32f429i_discovery_lcd.o(.data) for .data
stm32f429i_discovery_lcd.o(i.LCD_Init) refers to stm32f429i_discovery_lcd.o(i.LCD_CtrlLinesConfig) for LCD_CtrlLinesConfig
stm32f429i_discovery_lcd.o(i.LCD_Init) refers to stm32f429i_discovery_lcd.o(i.LCD_ChipSelect) for LCD_ChipSelect
stm32f429i_discovery_lcd.o(i.LCD_Init) refers to stm32f429i_discovery_lcd.o(i.LCD_SPIConfig) for LCD_SPIConfig
stm32f429i_discovery_lcd.o(i.LCD_Init) refers to stm32f429i_discovery_lcd.o(i.LCD_PowerOn) for LCD_PowerOn
stm32f429i_discovery_lcd.o(i.LCD_Init) refers to stm32f4xx_rcc.o(i.RCC_APB2PeriphClockCmd) for RCC_APB2PeriphClockCmd
stm32f429i_discovery_lcd.o(i.LCD_Init) refers to stm32f4xx_rcc.o(i.RCC_AHB1PeriphClockCmd) for RCC_AHB1PeriphClockCmd
stm32f429i_discovery_lcd.o(i.LCD_Init) refers to stm32f429i_discovery_lcd.o(i.LCD_AF_GPIOConfig) for LCD_AF_GPIOConfig
stm32f429i_discovery_lcd.o(i.LCD_Init) refers to stm32f429i_discovery_sdram.o(i.SDRAM_Init) for SDRAM_Init
stm32f429i_discovery_lcd.o(i.LCD_Init) refers to stm32f4xx_rcc.o(i.RCC_PLLSAIConfig) for RCC_PLLSAIConfig
stm32f429i_discovery_lcd.o(i.LCD_Init) refers to stm32f4xx_rcc.o(i.RCC_LTDCCLKDivConfig) for RCC_LTDCCLKDivConfig
stm32f429i_discovery_lcd.o(i.LCD_Init) refers to stm32f4xx_rcc.o(i.RCC_PLLSAICmd) for RCC_PLLSAICmd
stm32f429i_discovery_lcd.o(i.LCD_Init) refers to stm32f4xx_rcc.o(i.RCC_GetFlagStatus) for RCC_GetFlagStatus
stm32f429i_discovery_lcd.o(i.LCD_Init) refers to stm32f4xx_ltdc.o(i.LTDC_Init) for LTDC_Init
stm32f429i_discovery_lcd.o(i.LCD_LayerInit) refers to stm32f4xx_ltdc.o(i.LTDC_LayerInit) for LTDC_LayerInit
stm32f429i_discovery_lcd.o(i.LCD_LayerInit) refers to stm32f4xx_ltdc.o(i.LTDC_ReloadConfig) for LTDC_ReloadConfig
stm32f429i_discovery_lcd.o(i.LCD_LayerInit) refers to stm32f4xx_ltdc.o(i.LTDC_LayerCmd) for LTDC_LayerCmd
stm32f429i_discovery_lcd.o(i.LCD_LayerInit) refers to stm32f4xx_ltdc.o(i.LTDC_DitherCmd) for LTDC_DitherCmd
stm32f429i_discovery_lcd.o(i.LCD_LayerInit) refers to stm32f429i_discovery_lcd.o(.data) for .data
stm32f429i_discovery_lcd.o(i.LCD_PolyLine) refers to stm32f429i_discovery_lcd.o(i.LCD_DrawUniLine) for LCD_DrawUniLine
stm32f429i_discovery_lcd.o(i.LCD_PolyLineRelative) refers to stm32f429i_discovery_lcd.o(i.LCD_PolyLineRelativeClosed) for LCD_PolyLineRelativeClosed
stm32f429i_discovery_lcd.o(i.LCD_PolyLineRelativeClosed) refers to stm32f429i_discovery_lcd.o(i.LCD_DrawUniLine) for LCD_DrawUniLine
stm32f429i_discovery_lcd.o(i.LCD_PowerOn) refers to stm32f429i_discovery_lcd.o(i.LCD_WriteCommand) for LCD_WriteCommand
stm32f429i_discovery_lcd.o(i.LCD_PowerOn) refers to stm32f429i_discovery_lcd.o(i.LCD_WriteData) for LCD_WriteData
stm32f429i_discovery_lcd.o(i.LCD_PowerOn) refers to stm32f429i_discovery_lcd.o(i.delay) for delay
stm32f429i_discovery_lcd.o(i.LCD_ReSetColorKeying) refers to stm32f4xx_ltdc.o(i.LTDC_ColorKeyingConfig) for LTDC_ColorKeyingConfig
stm32f429i_discovery_lcd.o(i.LCD_ReSetColorKeying) refers to stm32f4xx_ltdc.o(i.LTDC_ReloadConfig) for LTDC_ReloadConfig
stm32f429i_discovery_lcd.o(i.LCD_ReSetColorKeying) refers to stm32f429i_discovery_lcd.o(.data) for .data
stm32f429i_discovery_lcd.o(i.LCD_SPIConfig) refers to stm32f4xx_rcc.o(i.RCC_AHB1PeriphClockCmd) for RCC_AHB1PeriphClockCmd
stm32f429i_discovery_lcd.o(i.LCD_SPIConfig) refers to stm32f4xx_rcc.o(i.RCC_APB2PeriphClockCmd) for RCC_APB2PeriphClockCmd
stm32f429i_discovery_lcd.o(i.LCD_SPIConfig) refers to stm32f4xx_gpio.o(i.GPIO_Init) for GPIO_Init
stm32f429i_discovery_lcd.o(i.LCD_SPIConfig) refers to stm32f4xx_gpio.o(i.GPIO_PinAFConfig) for GPIO_PinAFConfig
stm32f429i_discovery_lcd.o(i.LCD_SPIConfig) refers to stm32f4xx_spi.o(i.SPI_I2S_DeInit) for SPI_I2S_DeInit
stm32f429i_discovery_lcd.o(i.LCD_SPIConfig) refers to stm32f4xx_spi.o(i.SPI_Init) for SPI_Init
stm32f429i_discovery_lcd.o(i.LCD_SPIConfig) refers to stm32f4xx_spi.o(i.SPI_Cmd) for SPI_Cmd
stm32f429i_discovery_lcd.o(i.LCD_SetBackColor) refers to stm32f429i_discovery_lcd.o(.data) for .data
stm32f429i_discovery_lcd.o(i.LCD_SetColorKeying) refers to stm32f4xx_ltdc.o(i.LTDC_ColorKeyingConfig) for LTDC_ColorKeyingConfig
stm32f429i_discovery_lcd.o(i.LCD_SetColorKeying) refers to stm32f4xx_ltdc.o(i.LTDC_ReloadConfig) for LTDC_ReloadConfig
stm32f429i_discovery_lcd.o(i.LCD_SetColorKeying) refers to stm32f429i_discovery_lcd.o(.data) for .data
stm32f429i_discovery_lcd.o(i.LCD_SetColors) refers to stm32f429i_discovery_lcd.o(.data) for .data
stm32f429i_discovery_lcd.o(i.LCD_SetCursor) refers to stm32f429i_discovery_lcd.o(.data) for .data
stm32f429i_discovery_lcd.o(i.LCD_SetDisplayWindow) refers to stm32f4xx_ltdc.o(i.LTDC_LayerPosition) for LTDC_LayerPosition
stm32f429i_discovery_lcd.o(i.LCD_SetDisplayWindow) refers to stm32f4xx_ltdc.o(i.LTDC_ReloadConfig) for LTDC_ReloadConfig
stm32f429i_discovery_lcd.o(i.LCD_SetDisplayWindow) refers to stm32f4xx_ltdc.o(i.LTDC_LayerSize) for LTDC_LayerSize
stm32f429i_discovery_lcd.o(i.LCD_SetDisplayWindow) refers to stm32f429i_discovery_lcd.o(.data) for .data
stm32f429i_discovery_lcd.o(i.LCD_SetFont) refers to stm32f429i_discovery_lcd.o(.data) for .data
stm32f429i_discovery_lcd.o(i.LCD_SetLayer) refers to stm32f429i_discovery_lcd.o(.data) for .data
stm32f429i_discovery_lcd.o(i.LCD_SetTextColor) refers to stm32f429i_discovery_lcd.o(.data) for .data
stm32f429i_discovery_lcd.o(i.LCD_SetTransparency) refers to stm32f4xx_ltdc.o(i.LTDC_LayerAlpha) for LTDC_LayerAlpha
stm32f429i_discovery_lcd.o(i.LCD_SetTransparency) refers to stm32f4xx_ltdc.o(i.LTDC_ReloadConfig) for LTDC_ReloadConfig
stm32f429i_discovery_lcd.o(i.LCD_SetTransparency) refers to stm32f429i_discovery_lcd.o(.data) for .data
stm32f429i_discovery_lcd.o(i.LCD_Triangle) refers to stm32f429i_discovery_lcd.o(i.LCD_DrawUniLine) for LCD_DrawUniLine
stm32f429i_discovery_lcd.o(i.LCD_WindowModeDisable) refers to stm32f429i_discovery_lcd.o(i.LCD_SetDisplayWindow) for LCD_SetDisplayWindow
stm32f429i_discovery_lcd.o(i.LCD_WriteBMP) refers to stm32f4xx_ltdc.o(i.LTDC_LayerSize) for LTDC_LayerSize
stm32f429i_discovery_lcd.o(i.LCD_WriteBMP) refers to stm32f4xx_ltdc.o(i.LTDC_ReloadConfig) for LTDC_ReloadConfig
stm32f429i_discovery_lcd.o(i.LCD_WriteBMP) refers to stm32f4xx_ltdc.o(i.LTDC_LayerPixelFormat) for LTDC_LayerPixelFormat
stm32f429i_discovery_lcd.o(i.LCD_WriteBMP) refers to stm32f429i_discovery_lcd.o(.data) for .data
stm32f429i_discovery_lcd.o(i.LCD_WriteCommand) refers to stm32f429i_discovery_lcd.o(i.LCD_CtrlLinesWrite) for LCD_CtrlLinesWrite
stm32f429i_discovery_lcd.o(i.LCD_WriteCommand) refers to stm32f429i_discovery_lcd.o(i.LCD_ChipSelect) for LCD_ChipSelect
stm32f429i_discovery_lcd.o(i.LCD_WriteCommand) refers to stm32f4xx_spi.o(i.SPI_I2S_SendData) for SPI_I2S_SendData
stm32f429i_discovery_lcd.o(i.LCD_WriteCommand) refers to stm32f4xx_spi.o(i.SPI_I2S_GetFlagStatus) for SPI_I2S_GetFlagStatus
stm32f429i_discovery_lcd.o(i.LCD_WriteData) refers to stm32f429i_discovery_lcd.o(i.LCD_CtrlLinesWrite) for LCD_CtrlLinesWrite
stm32f429i_discovery_lcd.o(i.LCD_WriteData) refers to stm32f429i_discovery_lcd.o(i.LCD_ChipSelect) for LCD_ChipSelect
stm32f429i_discovery_lcd.o(i.LCD_WriteData) refers to stm32f4xx_spi.o(i.SPI_I2S_SendData) for SPI_I2S_SendData
stm32f429i_discovery_lcd.o(i.LCD_WriteData) refers to stm32f4xx_spi.o(i.SPI_I2S_GetFlagStatus) for SPI_I2S_GetFlagStatus
stm32f429i_discovery_lcd.o(.data) refers to stm32f429i_discovery_lcd.o(.constdata) for ASCII16x24_Table
stm32f429i_discovery_lcd.o(.data) refers to stm32f429i_discovery_lcd.o(.constdata) for ASCII12x12_Table
stm32f429i_discovery_lcd.o(.data) refers to stm32f429i_discovery_lcd.o(.constdata) for ASCII8x12_Table
stm32f429i_discovery_lcd.o(.data) refers to stm32f429i_discovery_lcd.o(.constdata) for ASCII8x8_Table
stm32f429i_discovery_sdram.o(i.SDRAM_GPIOConfig) refers to stm32f4xx_rcc.o(i.RCC_AHB1PeriphClockCmd) for RCC_AHB1PeriphClockCmd
stm32f429i_discovery_sdram.o(i.SDRAM_GPIOConfig) refers to stm32f4xx_gpio.o(i.GPIO_PinAFConfig) for GPIO_PinAFConfig
stm32f429i_discovery_sdram.o(i.SDRAM_GPIOConfig) refers to stm32f4xx_gpio.o(i.GPIO_Init) for GPIO_Init
stm32f429i_discovery_sdram.o(i.SDRAM_Init) refers to stm32f429i_discovery_sdram.o(i.SDRAM_GPIOConfig) for SDRAM_GPIOConfig
stm32f429i_discovery_sdram.o(i.SDRAM_Init) refers to stm32f4xx_rcc.o(i.RCC_AHB3PeriphClockCmd) for RCC_AHB3PeriphClockCmd
stm32f429i_discovery_sdram.o(i.SDRAM_Init) refers to stm32f4xx_fmc.o(i.FMC_SDRAMInit) for FMC_SDRAMInit
stm32f429i_discovery_sdram.o(i.SDRAM_Init) refers to stm32f429i_discovery_sdram.o(i.SDRAM_InitSequence) for SDRAM_InitSequence
stm32f429i_discovery_sdram.o(i.SDRAM_InitSequence) refers to stm32f4xx_fmc.o(i.FMC_GetFlagStatus) for FMC_GetFlagStatus
stm32f429i_discovery_sdram.o(i.SDRAM_InitSequence) refers to stm32f4xx_fmc.o(i.FMC_SDRAMCmdConfig) for FMC_SDRAMCmdConfig
stm32f429i_discovery_sdram.o(i.SDRAM_InitSequence) refers to stm32f4xx_fmc.o(i.FMC_SetRefreshCount) for FMC_SetRefreshCount
stm32f429i_discovery_sdram.o(i.SDRAM_ReadBuffer) refers to stm32f4xx_fmc.o(i.FMC_GetFlagStatus) for FMC_GetFlagStatus
stm32f429i_discovery_sdram.o(i.SDRAM_WriteBuffer) refers to stm32f4xx_fmc.o(i.FMC_SDRAMWriteProtectionConfig) for FMC_SDRAMWriteProtectionConfig
stm32f429i_discovery_sdram.o(i.SDRAM_WriteBuffer) refers to stm32f4xx_fmc.o(i.FMC_GetFlagStatus) for FMC_GetFlagStatus
__2sprintf.o(.text) refers to _printf_char_common.o(.text) for _printf_char_common
__2sprintf.o(.text) refers to _sputc.o(.text) for _sputc
noretval__2sprintf.o(.text) refers to _printf_char_common.o(.text) for _printf_char_common
noretval__2sprintf.o(.text) refers to _sputc.o(.text) for _sputc
__printf.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
_printf_dec.o(.text) refers to _printf_intcommon.o(.text) for _printf_int_common
__printf_flags.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
__printf_flags.o(.text) refers to __printf_flags.o(.constdata) for .constdata
__printf_ss.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
__printf_flags_ss.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
__printf_flags_ss.o(.text) refers to __printf_flags_ss.o(.constdata) for .constdata
__printf_wp.o(.text) refers to __printf_wp.o(i._is_digit) for _is_digit
__printf_wp.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
__printf_flags_wp.o(.text) refers to __printf_wp.o(i._is_digit) for _is_digit
__printf_flags_wp.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
__printf_flags_wp.o(.text) refers to __printf_flags_wp.o(.constdata) for .constdata
__printf_ss_wp.o(.text) refers to __printf_wp.o(i._is_digit) for _is_digit
__printf_ss_wp.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
__printf_flags_ss_wp.o(.text) refers to __printf_wp.o(i._is_digit) for _is_digit
__printf_flags_ss_wp.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
__printf_flags_ss_wp.o(.text) refers to __printf_flags_ss_wp.o(.constdata) for .constdata
_printf_d.o(.ARM.Collect$$_printf_percent$$00000009) refers (Weak) to _printf_dec.o(.text) for _printf_int_dec
_printf_f.o(.ARM.Collect$$_printf_percent$$00000003) refers (Weak) to printf1.o(x$fpl$printf1) for _printf_fp_dec
_printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) refers (Special) to _printf_percent_end.o(.ARM.Collect$$_printf_percent$$00000017) for _printf_percent_end
__main.o(!!!main) refers to rtentry.o(.ARM.Collect$$rtentry$$00000000) for __rt_entry
f2d.o(x$fpl$f2d) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
f2d.o(x$fpl$f2d) refers to fnaninf.o(x$fpl$fnaninf) for __fpl_fnaninf
f2d.o(x$fpl$f2d) refers to dretinf.o(x$fpl$dretinf) for __fpl_dretinf
printf1.o(x$fpl$printf1) refers to _printf_fp_dec.o(.text) for _printf_fp_dec_real
rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to rtentry2.o(.ARM.Collect$$rtentry$$0000000A) for __rt_entry_li
rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to rtentry2.o(.ARM.Collect$$rtentry$$0000000D) for __rt_entry_main
rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to rtentry2.o(.ARM.Collect$$rtentry$$0000000C) for __rt_entry_postli_1
rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to rtentry2.o(.ARM.Collect$$rtentry$$00000009) for __rt_entry_postsh_1
rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to rtentry2.o(.ARM.Collect$$rtentry$$00000002) for __rt_entry_presh_1
rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to rtentry4.o(.ARM.Collect$$rtentry$$00000004) for __rt_entry_sh
_printf_fp_dec.o(.text) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
_printf_fp_dec.o(.text) refers (Special) to lc_numeric_c.o(locale$$code) for _get_lc_numeric
_printf_fp_dec.o(.text) refers to bigflt0.o(.text) for _btod_etento
_printf_fp_dec.o(.text) refers to btod.o(CL$$btod_d2e) for _btod_d2e
_printf_fp_dec.o(.text) refers to btod.o(CL$$btod_ediv) for _btod_ediv
_printf_fp_dec.o(.text) refers to btod.o(CL$$btod_emul) for _btod_emul
_printf_fp_dec.o(.text) refers to lludiv10.o(.text) for _ll_udiv10
_printf_fp_dec.o(.text) refers to fpclassify.o(i.__ARM_fpclassify) for __ARM_fpclassify
_printf_fp_dec.o(.text) refers to _printf_fp_infnan.o(.text) for _printf_fp_infnan
_printf_fp_dec.o(.text) refers to rt_locale_intlibspace.o(.text) for __rt_locale
_printf_char_common.o(.text) refers to __printf_wp.o(.text) for __printf
dretinf.o(x$fpl$dretinf) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
fnaninf.o(x$fpl$fnaninf) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
rtentry2.o(.ARM.Collect$$rtentry$$00000008) refers to boardinit2.o(.text) for _platform_post_stackheap_init
rtentry2.o(.ARM.Collect$$rtentry$$0000000A) refers to libinit.o(.ARM.Collect$$libinit$$00000000) for __rt_lib_init
rtentry2.o(.ARM.Collect$$rtentry$$0000000B) refers to boardinit3.o(.text) for _platform_post_lib_init
rtentry2.o(.ARM.Collect$$rtentry$$0000000D) refers to main.o(i.main) for main
rtentry2.o(.ARM.Collect$$rtentry$$0000000D) refers to exit.o(.text) for exit
rtentry2.o(.ARM.exidx) refers to rtentry2.o(.ARM.Collect$$rtentry$$00000001) for .ARM.Collect$$rtentry$$00000001
rtentry2.o(.ARM.exidx) refers to rtentry2.o(.ARM.Collect$$rtentry$$00000008) for .ARM.Collect$$rtentry$$00000008
rtentry2.o(.ARM.exidx) refers to rtentry2.o(.ARM.Collect$$rtentry$$0000000A) for .ARM.Collect$$rtentry$$0000000A
rtentry2.o(.ARM.exidx) refers to rtentry2.o(.ARM.Collect$$rtentry$$0000000B) for .ARM.Collect$$rtentry$$0000000B
rtentry2.o(.ARM.exidx) refers to rtentry2.o(.ARM.Collect$$rtentry$$0000000D) for .ARM.Collect$$rtentry$$0000000D
rtentry4.o(.ARM.Collect$$rtentry$$00000004) refers to sys_stackheap_outer.o(.text) for __user_setup_stackheap
rtentry4.o(.ARM.exidx) refers to rtentry4.o(.ARM.Collect$$rtentry$$00000004) for .ARM.Collect$$rtentry$$00000004
rt_locale.o(.text) refers to rt_locale.o(.bss) for __rt_locale_data
rt_locale_intlibspace.o(.text) refers to libspace.o(.bss) for __libspace_start
bigflt0.o(.text) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
bigflt0.o(.text) refers to btod.o(CL$$btod_emul) for _btod_emul
bigflt0.o(.text) refers to btod.o(CL$$btod_ediv) for _btod_ediv
bigflt0.o(.text) refers to bigflt0.o(.constdata) for .constdata
bigflt0.o(.constdata) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
btod.o(CL$$btod_d2e) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
btod.o(CL$$btod_d2e) refers to btod.o(CL$$btod_d2e_norm_op1) for _d2e_norm_op1
btod.o(CL$$btod_d2e_norm_op1) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
btod.o(CL$$btod_d2e_norm_op1) refers to btod.o(CL$$btod_d2e_denorm_low) for _d2e_denorm_low
btod.o(CL$$btod_d2e_denorm_low) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
btod.o(CL$$btod_emul) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
btod.o(CL$$btod_emul) refers to btod.o(CL$$btod_mult_common) for __btod_mult_common
btod.o(CL$$btod_emul) refers to btod.o(CL$$btod_e2e) for _e2e
btod.o(CL$$btod_ediv) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
btod.o(CL$$btod_ediv) refers to btod.o(CL$$btod_div_common) for __btod_div_common
btod.o(CL$$btod_ediv) refers to btod.o(CL$$btod_e2e) for _e2e
btod.o(CL$$btod_emuld) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
btod.o(CL$$btod_emuld) refers to btod.o(CL$$btod_mult_common) for __btod_mult_common
btod.o(CL$$btod_emuld) refers to btod.o(CL$$btod_e2d) for _e2d
btod.o(CL$$btod_edivd) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
btod.o(CL$$btod_edivd) refers to btod.o(CL$$btod_div_common) for __btod_div_common
btod.o(CL$$btod_edivd) refers to btod.o(CL$$btod_e2d) for _e2d
btod.o(CL$$btod_e2e) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
btod.o(CL$$btod_e2d) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
btod.o(CL$$btod_e2d) refers to btod.o(CL$$btod_e2e) for _e2e
btod.o(CL$$btod_mult_common) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
btod.o(CL$$btod_div_common) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
lc_numeric_c.o(locale$$data) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000014) for __rt_lib_init_lc_numeric_2
lc_numeric_c.o(locale$$code) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000014) for __rt_lib_init_lc_numeric_2
lc_numeric_c.o(locale$$code) refers to strcmpv7m.o(.text) for strcmp
lc_numeric_c.o(locale$$code) refers to lc_numeric_c.o(locale$$data) for __lcnum_c_name
istatus.o(x$fpl$ieeestatus) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
fpclassify.o(i.__ARM_fpclassify) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
libspace.o(.text) refers to libspace.o(.bss) for __libspace_start
sys_stackheap_outer.o(.text) refers to libspace.o(.text) for __user_perproc_libspace
sys_stackheap_outer.o(.text) refers to startup_stm32f429_439xx.o(.text) for __user_initial_stackheap
exit.o(.text) refers to rtexit.o(.ARM.Collect$$rtexit$$00000000) for __rt_exit
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000002C) for __rt_lib_init_alloca_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000002A) for __rt_lib_init_argv_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000019) for __rt_lib_init_atexit_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000001F) for __rt_lib_init_clock_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000030) for __rt_lib_init_cpp_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000002E) for __rt_lib_init_exceptions_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000001) for __rt_lib_init_fp_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000001D) for __rt_lib_init_fp_trap_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000021) for __rt_lib_init_getenv_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000008) for __rt_lib_init_heap_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000000F) for __rt_lib_init_lc_collate_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000011) for __rt_lib_init_lc_ctype_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000013) for __rt_lib_init_lc_monetary_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000015) for __rt_lib_init_lc_numeric_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000017) for __rt_lib_init_lc_time_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000000C) for __rt_lib_init_rand_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000031) for __rt_lib_init_return
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000001B) for __rt_lib_init_signal_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000023) for __rt_lib_init_stdio_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000000A) for __rt_lib_init_user_alloc_1
libinit2.o(.ARM.Collect$$libinit$$00000001) refers to fpinit.o(x$fpl$fpinit) for _fp_init
libinit2.o(.ARM.Collect$$libinit$$0000000D) refers (Weak) to rt_locale_intlibspace.o(.text) for __rt_locale
libinit2.o(.ARM.Collect$$libinit$$0000000E) refers to libinit2.o(.ARM.Collect$$libinit$$0000000D) for .ARM.Collect$$libinit$$0000000D
libinit2.o(.ARM.Collect$$libinit$$00000010) refers to libinit2.o(.ARM.Collect$$libinit$$0000000D) for .ARM.Collect$$libinit$$0000000D
libinit2.o(.ARM.Collect$$libinit$$00000012) refers to libinit2.o(.ARM.Collect$$libinit$$0000000D) for .ARM.Collect$$libinit$$0000000D
libinit2.o(.ARM.Collect$$libinit$$00000014) refers to libinit2.o(.ARM.Collect$$libinit$$0000000D) for .ARM.Collect$$libinit$$0000000D
libinit2.o(.ARM.Collect$$libinit$$00000014) refers (Weak) to lc_numeric_c.o(locale$$code) for _get_lc_numeric
libinit2.o(.ARM.Collect$$libinit$$00000016) refers to libinit2.o(.ARM.Collect$$libinit$$0000000D) for .ARM.Collect$$libinit$$0000000D
libinit2.o(.ARM.Collect$$libinit$$00000024) refers to argv_veneer.o(.emb_text) for __ARM_argv_veneer
libinit2.o(.ARM.Collect$$libinit$$00000025) refers to argv_veneer.o(.emb_text) for __ARM_argv_veneer
rtexit.o(.ARM.Collect$$rtexit$$00000000) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000004) for __rt_exit_exit
rtexit.o(.ARM.Collect$$rtexit$$00000000) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000003) for __rt_exit_ls
rtexit.o(.ARM.Collect$$rtexit$$00000000) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000002) for __rt_exit_prels_1
rtexit.o(.ARM.exidx) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000004) for __rt_exit_exit
rtexit.o(.ARM.exidx) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000003) for __rt_exit_ls
rtexit.o(.ARM.exidx) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000002) for __rt_exit_prels_1
rtexit.o(.ARM.exidx) refers to rtexit.o(.ARM.Collect$$rtexit$$00000000) for .ARM.Collect$$rtexit$$00000000
argv_veneer.o(.emb_text) refers to no_argv.o(.text) for __ARM_get_argv
rtexit2.o(.ARM.Collect$$rtexit$$00000003) refers to libshutdown.o(.ARM.Collect$$libshutdown$$00000000) for __rt_lib_shutdown
rtexit2.o(.ARM.Collect$$rtexit$$00000004) refers to sys_exit.o(.text) for _sys_exit
rtexit2.o(.ARM.exidx) refers to rtexit2.o(.ARM.Collect$$rtexit$$00000001) for .ARM.Collect$$rtexit$$00000001
rtexit2.o(.ARM.exidx) refers to rtexit2.o(.ARM.Collect$$rtexit$$00000003) for .ARM.Collect$$rtexit$$00000003
rtexit2.o(.ARM.exidx) refers to rtexit2.o(.ARM.Collect$$rtexit$$00000004) for .ARM.Collect$$rtexit$$00000004
_get_argv_nomalloc.o(.text) refers (Special) to hrguard.o(.text) for __heap_region$guard
_get_argv_nomalloc.o(.text) refers to defsig_rtmem_outer.o(.text) for __rt_SIGRTMEM
_get_argv_nomalloc.o(.text) refers to sys_command.o(.text) for _sys_command_string
sys_command.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
sys_command.o(.text) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
sys_exit.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
sys_exit.o(.text) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
defsig_rtmem_outer.o(.text) refers to defsig_rtmem_inner.o(.text) for __rt_SIGRTMEM_inner
defsig_rtmem_outer.o(.text) refers to defsig_exit.o(.text) for __sig_exit
defsig_rtmem_formal.o(.text) refers to rt_raise.o(.text) for __rt_raise
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000006) for __rt_lib_shutdown_fp_trap_1
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$0000000E) for __rt_lib_shutdown_heap_1
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$0000000F) for __rt_lib_shutdown_return
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000009) for __rt_lib_shutdown_signal_1
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000003) for __rt_lib_shutdown_stdio_1
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$0000000B) for __rt_lib_shutdown_user_alloc_1
rt_raise.o(.text) refers to __raise.o(.text) for __raise
rt_raise.o(.text) refers to sys_exit.o(.text) for _sys_exit
defsig_exit.o(.text) refers to sys_exit.o(.text) for _sys_exit
defsig_rtmem_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
__raise.o(.text) refers to defsig.o(CL$$defsig) for __default_signal_handler
defsig_general.o(.text) refers to sys_wrch.o(.text) for _ttywrch
sys_wrch.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
sys_wrch.o(.text) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
defsig.o(CL$$defsig) refers to defsig_rtmem_inner.o(.text) for __rt_SIGRTMEM_inner
defsig_abrt_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
defsig_fpe_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
defsig_rtred_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
defsig_stak_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
defsig_pvfn_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
defsig_cppl_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
defsig_segv_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
defsig_other.o(.text) refers to defsig_general.o(.text) for __default_signal_display
==============================================================================
Removing Unused input sections from the image.
Removing main.o(.rev16_text), (4 bytes).
Removing main.o(.revsh_text), (4 bytes).
Removing main.o(i.LCD_DisplayFloat), (60 bytes).
Removing main.o(.bss), (14 bytes).
Removing stm32f4xx_it.o(.rev16_text), (4 bytes).
Removing stm32f4xx_it.o(.revsh_text), (4 bytes).
Removing system_stm32f4xx.o(.rev16_text), (4 bytes).
Removing system_stm32f4xx.o(.revsh_text), (4 bytes).
Removing system_stm32f4xx.o(i.SystemCoreClockUpdate), (120 bytes).
Removing misc.o(.rev16_text), (4 bytes).
Removing misc.o(.revsh_text), (4 bytes).
Removing misc.o(i.NVIC_PriorityGroupConfig), (20 bytes).
Removing misc.o(i.NVIC_SetVectorTable), (20 bytes).
Removing misc.o(i.NVIC_SystemLPConfig), (24 bytes).
Removing misc.o(i.SysTick_CLKSourceConfig), (24 bytes).
Removing stm32f4xx_adc.o(.rev16_text), (4 bytes).
Removing stm32f4xx_adc.o(.revsh_text), (4 bytes).
Removing stm32f4xx_adc.o(i.ADC_AnalogWatchdogCmd), (16 bytes).
Removing stm32f4xx_adc.o(i.ADC_AnalogWatchdogSingleChannelConfig), (12 bytes).
Removing stm32f4xx_adc.o(i.ADC_AnalogWatchdogThresholdsConfig), (6 bytes).
Removing stm32f4xx_adc.o(i.ADC_AutoInjectedConvCmd), (20 bytes).
Removing stm32f4xx_adc.o(i.ADC_ClearFlag), (6 bytes).
Removing stm32f4xx_adc.o(i.ADC_ClearITPendingBit), (8 bytes).
Removing stm32f4xx_adc.o(i.ADC_Cmd), (20 bytes).
Removing stm32f4xx_adc.o(i.ADC_CommonInit), (40 bytes).
Removing stm32f4xx_adc.o(i.ADC_CommonStructInit), (12 bytes).
Removing stm32f4xx_adc.o(i.ADC_ContinuousModeCmd), (20 bytes).
Removing stm32f4xx_adc.o(i.ADC_DMACmd), (20 bytes).
Removing stm32f4xx_adc.o(i.ADC_DMARequestAfterLastTransferCmd), (20 bytes).
Removing stm32f4xx_adc.o(i.ADC_DeInit), (24 bytes).
Removing stm32f4xx_adc.o(i.ADC_DiscModeChannelCountConfig), (16 bytes).
Removing stm32f4xx_adc.o(i.ADC_DiscModeCmd), (20 bytes).
Removing stm32f4xx_adc.o(i.ADC_EOCOnEachRegularChannelCmd), (20 bytes).
Removing stm32f4xx_adc.o(i.ADC_ExternalTrigInjectedConvConfig), (12 bytes).
Removing stm32f4xx_adc.o(i.ADC_ExternalTrigInjectedConvEdgeConfig), (12 bytes).
Removing stm32f4xx_adc.o(i.ADC_GetConversionValue), (6 bytes).
Removing stm32f4xx_adc.o(i.ADC_GetFlagStatus), (14 bytes).
Removing stm32f4xx_adc.o(i.ADC_GetITStatus), (30 bytes).
Removing stm32f4xx_adc.o(i.ADC_GetInjectedConversionValue), (14 bytes).
Removing stm32f4xx_adc.o(i.ADC_GetMultiModeConversionValue), (12 bytes).
Removing stm32f4xx_adc.o(i.ADC_GetSoftwareStartConvStatus), (14 bytes).
Removing stm32f4xx_adc.o(i.ADC_GetSoftwareStartInjectedConvCmdStatus), (14 bytes).
Removing stm32f4xx_adc.o(i.ADC_ITConfig), (18 bytes).
Removing stm32f4xx_adc.o(i.ADC_Init), (76 bytes).
Removing stm32f4xx_adc.o(i.ADC_InjectedChannelConfig), (74 bytes).
Removing stm32f4xx_adc.o(i.ADC_InjectedDiscModeCmd), (20 bytes).
Removing stm32f4xx_adc.o(i.ADC_InjectedSequencerLengthConfig), (16 bytes).
Removing stm32f4xx_adc.o(i.ADC_MultiModeDMARequestAfterLastTransferCmd), (32 bytes).
Removing stm32f4xx_adc.o(i.ADC_RegularChannelConfig), (116 bytes).
Removing stm32f4xx_adc.o(i.ADC_SetInjectedOffset), (10 bytes).
Removing stm32f4xx_adc.o(i.ADC_SoftwareStartConv), (10 bytes).
Removing stm32f4xx_adc.o(i.ADC_SoftwareStartInjectedConv), (10 bytes).
Removing stm32f4xx_adc.o(i.ADC_StructInit), (20 bytes).
Removing stm32f4xx_adc.o(i.ADC_TempSensorVrefintCmd), (32 bytes).
Removing stm32f4xx_adc.o(i.ADC_VBATCmd), (32 bytes).
Removing stm32f4xx_dma.o(.rev16_text), (4 bytes).
Removing stm32f4xx_dma.o(.revsh_text), (4 bytes).
Removing stm32f4xx_dma.o(i.DMA_ClearFlag), (44 bytes).
Removing stm32f4xx_dma.o(i.DMA_ClearITPendingBit), (44 bytes).
Removing stm32f4xx_dma.o(i.DMA_Cmd), (20 bytes).
Removing stm32f4xx_dma.o(i.DMA_DeInit), (292 bytes).
Removing stm32f4xx_dma.o(i.DMA_DoubleBufferModeCmd), (20 bytes).
Removing stm32f4xx_dma.o(i.DMA_DoubleBufferModeConfig), (22 bytes).
Removing stm32f4xx_dma.o(i.DMA_FlowControllerConfig), (20 bytes).
Removing stm32f4xx_dma.o(i.DMA_GetCmdStatus), (14 bytes).
Removing stm32f4xx_dma.o(i.DMA_GetCurrDataCounter), (6 bytes).
Removing stm32f4xx_dma.o(i.DMA_GetCurrentMemoryTarget), (14 bytes).
Removing stm32f4xx_dma.o(i.DMA_GetFIFOStatus), (8 bytes).
Removing stm32f4xx_dma.o(i.DMA_GetFlagStatus), (52 bytes).
Removing stm32f4xx_dma.o(i.DMA_GetITStatus), (84 bytes).
Removing stm32f4xx_dma.o(i.DMA_ITConfig), (44 bytes).
Removing stm32f4xx_dma.o(i.DMA_Init), (84 bytes).
Removing stm32f4xx_dma.o(i.DMA_MemoryTargetConfig), (10 bytes).
Removing stm32f4xx_dma.o(i.DMA_PeriphIncOffsetSizeConfig), (20 bytes).
Removing stm32f4xx_dma.o(i.DMA_SetCurrDataCounter), (4 bytes).
Removing stm32f4xx_dma.o(i.DMA_StructInit), (34 bytes).
Removing stm32f4xx_dma2d.o(.rev16_text), (4 bytes).
Removing stm32f4xx_dma2d.o(.revsh_text), (4 bytes).
Removing stm32f4xx_dma2d.o(i.DMA2D_AbortTransfer), (16 bytes).
Removing stm32f4xx_dma2d.o(i.DMA2D_BGConfig), (108 bytes).
Removing stm32f4xx_dma2d.o(i.DMA2D_BGStart), (28 bytes).
Removing stm32f4xx_dma2d.o(i.DMA2D_BG_StructInit), (26 bytes).
Removing stm32f4xx_dma2d.o(i.DMA2D_ClearFlag), (12 bytes).
Removing stm32f4xx_dma2d.o(i.DMA2D_ClearITPendingBit), (12 bytes).
Removing stm32f4xx_dma2d.o(i.DMA2D_DeInit), (24 bytes).
Removing stm32f4xx_dma2d.o(i.DMA2D_DeadTimeConfig), (44 bytes).
Removing stm32f4xx_dma2d.o(i.DMA2D_FGConfig), (108 bytes).
Removing stm32f4xx_dma2d.o(i.DMA2D_FGStart), (28 bytes).
Removing stm32f4xx_dma2d.o(i.DMA2D_FG_StructInit), (26 bytes).
Removing stm32f4xx_dma2d.o(i.DMA2D_GetFlagStatus), (20 bytes).
Removing stm32f4xx_dma2d.o(i.DMA2D_GetITStatus), (36 bytes).
Removing stm32f4xx_dma2d.o(i.DMA2D_ITConfig), (24 bytes).
Removing stm32f4xx_dma2d.o(i.DMA2D_Init), (180 bytes).
Removing stm32f4xx_dma2d.o(i.DMA2D_LineWatermarkConfig), (12 bytes).
Removing stm32f4xx_dma2d.o(i.DMA2D_StartTransfer), (16 bytes).
Removing stm32f4xx_dma2d.o(i.DMA2D_StructInit), (24 bytes).
Removing stm32f4xx_dma2d.o(i.DMA2D_Suspend), (28 bytes).
Removing stm32f4xx_exti.o(.rev16_text), (4 bytes).
Removing stm32f4xx_exti.o(.revsh_text), (4 bytes).
Removing stm32f4xx_exti.o(i.EXTI_ClearFlag), (12 bytes).
Removing stm32f4xx_exti.o(i.EXTI_DeInit), (36 bytes).
Removing stm32f4xx_exti.o(i.EXTI_GenerateSWInterrupt), (16 bytes).
Removing stm32f4xx_exti.o(i.EXTI_GetFlagStatus), (20 bytes).
Removing stm32f4xx_exti.o(i.EXTI_GetITStatus), (20 bytes).
Removing stm32f4xx_exti.o(i.EXTI_StructInit), (14 bytes).
Removing stm32f4xx_fmc.o(.rev16_text), (4 bytes).
Removing stm32f4xx_fmc.o(.revsh_text), (4 bytes).
Removing stm32f4xx_fmc.o(i.FMC_ClearFlag), (54 bytes).
Removing stm32f4xx_fmc.o(i.FMC_ClearITPendingBit), (60 bytes).
Removing stm32f4xx_fmc.o(i.FMC_GetECC), (18 bytes).
Removing stm32f4xx_fmc.o(i.FMC_GetITStatus), (80 bytes).
Removing stm32f4xx_fmc.o(i.FMC_GetModeStatus), (26 bytes).
Removing stm32f4xx_fmc.o(i.FMC_ITConfig), (98 bytes).
Removing stm32f4xx_fmc.o(i.FMC_NANDCmd), (56 bytes).
Removing stm32f4xx_fmc.o(i.FMC_NANDDeInit), (40 bytes).
Removing stm32f4xx_fmc.o(i.FMC_NANDECCCmd), (56 bytes).
Removing stm32f4xx_fmc.o(i.FMC_NANDInit), (104 bytes).
Removing stm32f4xx_fmc.o(i.FMC_NANDStructInit), (54 bytes).
Removing stm32f4xx_fmc.o(i.FMC_NORSRAMCmd), (32 bytes).
Removing stm32f4xx_fmc.o(i.FMC_NORSRAMDeInit), (36 bytes).
Removing stm32f4xx_fmc.o(i.FMC_NORSRAMInit), (248 bytes).
Removing stm32f4xx_fmc.o(i.FMC_NORSRAMStructInit), (102 bytes).
Removing stm32f4xx_fmc.o(i.FMC_PCCARDCmd), (32 bytes).
Removing stm32f4xx_fmc.o(i.FMC_PCCARDDeInit), (28 bytes).
Removing stm32f4xx_fmc.o(i.FMC_PCCARDInit), (104 bytes).
Removing stm32f4xx_fmc.o(i.FMC_PCCARDStructInit), (60 bytes).
Removing stm32f4xx_fmc.o(i.FMC_SDRAMDeInit), (36 bytes).
Removing stm32f4xx_fmc.o(i.FMC_SDRAMStructInit), (60 bytes).
Removing stm32f4xx_fmc.o(i.FMC_SDRAMWriteProtectionConfig), (34 bytes).
Removing stm32f4xx_fmc.o(i.FMC_SetAutoRefresh_Number), (16 bytes).
Removing stm32f4xx_gpio.o(.rev16_text), (4 bytes).
Removing stm32f4xx_gpio.o(.revsh_text), (4 bytes).
Removing stm32f4xx_gpio.o(i.GPIO_DeInit), (260 bytes).
Removing stm32f4xx_gpio.o(i.GPIO_PinLockConfig), (24 bytes).
Removing stm32f4xx_gpio.o(i.GPIO_ReadInputData), (6 bytes).
Removing stm32f4xx_gpio.o(i.GPIO_ReadOutputData), (6 bytes).
Removing stm32f4xx_gpio.o(i.GPIO_ReadOutputDataBit), (14 bytes).
Removing stm32f4xx_gpio.o(i.GPIO_StructInit), (18 bytes).
Removing stm32f4xx_gpio.o(i.GPIO_ToggleBits), (8 bytes).
Removing stm32f4xx_gpio.o(i.GPIO_Write), (4 bytes).
Removing stm32f4xx_i2c.o(.rev16_text), (4 bytes).
Removing stm32f4xx_i2c.o(.revsh_text), (4 bytes).
Removing stm32f4xx_i2c.o(i.I2C_ARPCmd), (20 bytes).
Removing stm32f4xx_i2c.o(i.I2C_AcknowledgeConfig), (20 bytes).
Removing stm32f4xx_i2c.o(i.I2C_AnalogFilterCmd), (20 bytes).
Removing stm32f4xx_i2c.o(i.I2C_CalculatePEC), (20 bytes).
Removing stm32f4xx_i2c.o(i.I2C_CheckEvent), (24 bytes).
Removing stm32f4xx_i2c.o(i.I2C_ClearFlag), (6 bytes).
Removing stm32f4xx_i2c.o(i.I2C_ClearITPendingBit), (6 bytes).
Removing stm32f4xx_i2c.o(i.I2C_Cmd), (20 bytes).
Removing stm32f4xx_i2c.o(i.I2C_DMACmd), (20 bytes).
Removing stm32f4xx_i2c.o(i.I2C_DMALastTransferCmd), (20 bytes).
Removing stm32f4xx_i2c.o(i.I2C_DeInit), (68 bytes).
Removing stm32f4xx_i2c.o(i.I2C_DigitalFilterConfig), (16 bytes).
Removing stm32f4xx_i2c.o(i.I2C_DualAddressCmd), (20 bytes).
Removing stm32f4xx_i2c.o(i.I2C_FastModeDutyCycleConfig), (22 bytes).
Removing stm32f4xx_i2c.o(i.I2C_GeneralCallCmd), (20 bytes).
Removing stm32f4xx_i2c.o(i.I2C_GenerateSTART), (20 bytes).
Removing stm32f4xx_i2c.o(i.I2C_GenerateSTOP), (20 bytes).
Removing stm32f4xx_i2c.o(i.I2C_GetFlagStatus), (42 bytes).
Removing stm32f4xx_i2c.o(i.I2C_GetITStatus), (36 bytes).
Removing stm32f4xx_i2c.o(i.I2C_GetLastEvent), (14 bytes).
Removing stm32f4xx_i2c.o(i.I2C_GetPEC), (6 bytes).
Removing stm32f4xx_i2c.o(i.I2C_ITConfig), (16 bytes).
Removing stm32f4xx_i2c.o(i.I2C_Init), (180 bytes).
Removing stm32f4xx_i2c.o(i.I2C_NACKPositionConfig), (22 bytes).
Removing stm32f4xx_i2c.o(i.I2C_OwnAddress2Config), (16 bytes).
Removing stm32f4xx_i2c.o(i.I2C_PECPositionConfig), (22 bytes).
Removing stm32f4xx_i2c.o(i.I2C_ReadRegister), (10 bytes).
Removing stm32f4xx_i2c.o(i.I2C_ReceiveData), (6 bytes).
Removing stm32f4xx_i2c.o(i.I2C_SMBusAlertConfig), (22 bytes).
Removing stm32f4xx_i2c.o(i.I2C_Send7bitAddress), (16 bytes).
Removing stm32f4xx_i2c.o(i.I2C_SendData), (4 bytes).
Removing stm32f4xx_i2c.o(i.I2C_SoftwareResetCmd), (20 bytes).
Removing stm32f4xx_i2c.o(i.I2C_StretchClockCmd), (20 bytes).
Removing stm32f4xx_i2c.o(i.I2C_StructInit), (28 bytes).
Removing stm32f4xx_i2c.o(i.I2C_TransmitPEC), (20 bytes).
Removing stm32f4xx_ltdc.o(.rev16_text), (4 bytes).
Removing stm32f4xx_ltdc.o(.revsh_text), (4 bytes).
Removing stm32f4xx_ltdc.o(i.LTDC_CLUTCmd), (32 bytes).
Removing stm32f4xx_ltdc.o(i.LTDC_CLUTInit), (26 bytes).
Removing stm32f4xx_ltdc.o(i.LTDC_CLUTStructInit), (12 bytes).
Removing stm32f4xx_ltdc.o(i.LTDC_ClearFlag), (12 bytes).
Removing stm32f4xx_ltdc.o(i.LTDC_ClearITPendingBit), (12 bytes).
Removing stm32f4xx_ltdc.o(i.LTDC_ColorKeyingConfig), (64 bytes).
Removing stm32f4xx_ltdc.o(i.LTDC_ColorKeyingStructInit), (10 bytes).
Removing stm32f4xx_ltdc.o(i.LTDC_DeInit), (24 bytes).
Removing stm32f4xx_ltdc.o(i.LTDC_GetCDStatus), (20 bytes).
Removing stm32f4xx_ltdc.o(i.LTDC_GetFlagStatus), (20 bytes).
Removing stm32f4xx_ltdc.o(i.LTDC_GetITStatus), (36 bytes).
Removing stm32f4xx_ltdc.o(i.LTDC_GetPosStatus), (28 bytes).
Removing stm32f4xx_ltdc.o(i.LTDC_GetRGBWidth), (44 bytes).
Removing stm32f4xx_ltdc.o(i.LTDC_ITConfig), (24 bytes).
Removing stm32f4xx_ltdc.o(i.LTDC_LIPConfig), (12 bytes).
Removing stm32f4xx_ltdc.o(i.LTDC_LayerAddress), (4 bytes).
Removing stm32f4xx_ltdc.o(i.LTDC_LayerAlpha), (4 bytes).
Removing stm32f4xx_ltdc.o(i.LTDC_LayerPixelFormat), (96 bytes).
Removing stm32f4xx_ltdc.o(i.LTDC_LayerPosition), (116 bytes).
Removing stm32f4xx_ltdc.o(i.LTDC_LayerSize), (86 bytes).
Removing stm32f4xx_ltdc.o(i.LTDC_LayerStructInit), (44 bytes).
Removing stm32f4xx_ltdc.o(i.LTDC_PosStructInit), (8 bytes).
Removing stm32f4xx_ltdc.o(i.LTDC_RGBStructInit), (10 bytes).
Removing stm32f4xx_ltdc.o(i.LTDC_StructInit), (34 bytes).
Removing stm32f4xx_rcc.o(.rev16_text), (4 bytes).
Removing stm32f4xx_rcc.o(.revsh_text), (4 bytes).
Removing stm32f4xx_rcc.o(i.RCC_AHB1PeriphClockLPModeCmd), (24 bytes).
Removing stm32f4xx_rcc.o(i.RCC_AHB1PeriphResetCmd), (24 bytes).
Removing stm32f4xx_rcc.o(i.RCC_AHB2PeriphClockCmd), (24 bytes).
Removing stm32f4xx_rcc.o(i.RCC_AHB2PeriphClockLPModeCmd), (24 bytes).
Removing stm32f4xx_rcc.o(i.RCC_AHB2PeriphResetCmd), (24 bytes).
Removing stm32f4xx_rcc.o(i.RCC_AHB3PeriphClockLPModeCmd), (24 bytes).
Removing stm32f4xx_rcc.o(i.RCC_AHB3PeriphResetCmd), (24 bytes).
Removing stm32f4xx_rcc.o(i.RCC_APB1PeriphClockLPModeCmd), (24 bytes).
Removing stm32f4xx_rcc.o(i.RCC_APB2PeriphClockLPModeCmd), (24 bytes).
Removing stm32f4xx_rcc.o(i.RCC_AdjustHSICalibrationValue), (20 bytes).
Removing stm32f4xx_rcc.o(i.RCC_BackupResetCmd), (12 bytes).
Removing stm32f4xx_rcc.o(i.RCC_ClearFlag), (16 bytes).
Removing stm32f4xx_rcc.o(i.RCC_ClearITPendingBit), (12 bytes).
Removing stm32f4xx_rcc.o(i.RCC_ClockSecuritySystemCmd), (12 bytes).
Removing stm32f4xx_rcc.o(i.RCC_DeInit), (84 bytes).
Removing stm32f4xx_rcc.o(i.RCC_GetClocksFreq), (144 bytes).
Removing stm32f4xx_rcc.o(i.RCC_GetITStatus), (20 bytes).
Removing stm32f4xx_rcc.o(i.RCC_GetSYSCLKSource), (16 bytes).
Removing stm32f4xx_rcc.o(i.RCC_HCLKConfig), (20 bytes).
Removing stm32f4xx_rcc.o(i.RCC_HSEConfig), (16 bytes).
Removing stm32f4xx_rcc.o(i.RCC_HSICmd), (12 bytes).
Removing stm32f4xx_rcc.o(i.RCC_I2SCLKConfig), (12 bytes).
Removing stm32f4xx_rcc.o(i.RCC_ITConfig), (24 bytes).
Removing stm32f4xx_rcc.o(i.RCC_LSEConfig), (28 bytes).
Removing stm32f4xx_rcc.o(i.RCC_LSICmd), (12 bytes).
Removing stm32f4xx_rcc.o(i.RCC_MCO1Config), (20 bytes).
Removing stm32f4xx_rcc.o(i.RCC_MCO2Config), (20 bytes).
Removing stm32f4xx_rcc.o(i.RCC_PCLK1Config), (20 bytes).
Removing stm32f4xx_rcc.o(i.RCC_PCLK2Config), (20 bytes).
Removing stm32f4xx_rcc.o(i.RCC_PLLCmd), (12 bytes).
Removing stm32f4xx_rcc.o(i.RCC_PLLConfig), (40 bytes).
Removing stm32f4xx_rcc.o(i.RCC_PLLI2SCmd), (12 bytes).
Removing stm32f4xx_rcc.o(i.RCC_PLLI2SConfig), (20 bytes).
Removing stm32f4xx_rcc.o(i.RCC_RTCCLKCmd), (12 bytes).
Removing stm32f4xx_rcc.o(i.RCC_RTCCLKConfig), (48 bytes).
Removing stm32f4xx_rcc.o(i.RCC_SAIBlockACLKConfig), (20 bytes).
Removing stm32f4xx_rcc.o(i.RCC_SAIBlockBCLKConfig), (20 bytes).
Removing stm32f4xx_rcc.o(i.RCC_SAIPLLI2SClkDivConfig), (20 bytes).
Removing stm32f4xx_rcc.o(i.RCC_SAIPLLSAIClkDivConfig), (28 bytes).
Removing stm32f4xx_rcc.o(i.RCC_SYSCLKConfig), (20 bytes).
Removing stm32f4xx_rcc.o(i.RCC_TIMCLKPresConfig), (12 bytes).
Removing stm32f4xx_rcc.o(i.RCC_WaitForHSEStartUp), (44 bytes).
Removing stm32f4xx_rcc.o(.data), (16 bytes).
Removing stm32f4xx_spi.o(.rev16_text), (4 bytes).
Removing stm32f4xx_spi.o(.revsh_text), (4 bytes).
Removing stm32f4xx_spi.o(i.I2S_Cmd), (20 bytes).
Removing stm32f4xx_spi.o(i.I2S_FullDuplexConfig), (58 bytes).
Removing stm32f4xx_spi.o(i.I2S_Init), (196 bytes).
Removing stm32f4xx_spi.o(i.I2S_StructInit), (18 bytes).
Removing stm32f4xx_spi.o(i.SPI_BiDirectionalLineConfig), (22 bytes).
Removing stm32f4xx_spi.o(i.SPI_CalculateCRC), (20 bytes).
Removing stm32f4xx_spi.o(i.SPI_DataSizeConfig), (16 bytes).
Removing stm32f4xx_spi.o(i.SPI_GetCRC), (12 bytes).
Removing stm32f4xx_spi.o(i.SPI_GetCRCPolynomial), (4 bytes).
Removing stm32f4xx_spi.o(i.SPI_I2S_ClearFlag), (6 bytes).
Removing stm32f4xx_spi.o(i.SPI_I2S_ClearITPendingBit), (14 bytes).
Removing stm32f4xx_spi.o(i.SPI_I2S_DMACmd), (16 bytes).
Removing stm32f4xx_spi.o(i.SPI_I2S_GetITStatus), (44 bytes).
Removing stm32f4xx_spi.o(i.SPI_I2S_ITConfig), (24 bytes).
Removing stm32f4xx_spi.o(i.SPI_I2S_ReceiveData), (4 bytes).
Removing stm32f4xx_spi.o(i.SPI_NSSInternalSoftwareConfig), (24 bytes).
Removing stm32f4xx_spi.o(i.SPI_SSOutputCmd), (20 bytes).
Removing stm32f4xx_spi.o(i.SPI_StructInit), (24 bytes).
Removing stm32f4xx_spi.o(i.SPI_TIModeCmd), (20 bytes).
Removing stm32f4xx_spi.o(i.SPI_TransmitCRC), (10 bytes).
Removing stm32f4xx_syscfg.o(.rev16_text), (4 bytes).
Removing stm32f4xx_syscfg.o(.revsh_text), (4 bytes).
Removing stm32f4xx_syscfg.o(i.SYSCFG_CompensationCellCmd), (12 bytes).
Removing stm32f4xx_syscfg.o(i.SYSCFG_DeInit), (24 bytes).
Removing stm32f4xx_syscfg.o(i.SYSCFG_ETH_MediaInterfaceConfig), (12 bytes).
Removing stm32f4xx_syscfg.o(i.SYSCFG_GetCompensationCellStatus), (20 bytes).
Removing stm32f4xx_syscfg.o(i.SYSCFG_MemoryRemapConfig), (12 bytes).
Removing stm32f4xx_syscfg.o(i.SYSCFG_MemorySwappingBank), (12 bytes).
Removing stm32f4xx_tim.o(.rev16_text), (4 bytes).
Removing stm32f4xx_tim.o(.revsh_text), (4 bytes).
Removing stm32f4xx_tim.o(i.TI1_Config), (46 bytes).
Removing stm32f4xx_tim.o(i.TI2_Config), (54 bytes).
Removing stm32f4xx_tim.o(i.TIM_ARRPreloadConfig), (20 bytes).
Removing stm32f4xx_tim.o(i.TIM_BDTRConfig), (34 bytes).
Removing stm32f4xx_tim.o(i.TIM_BDTRStructInit), (18 bytes).
Removing stm32f4xx_tim.o(i.TIM_CCPreloadControl), (20 bytes).
Removing stm32f4xx_tim.o(i.TIM_CCxCmd), (22 bytes).
Removing stm32f4xx_tim.o(i.TIM_CCxNCmd), (22 bytes).
Removing stm32f4xx_tim.o(i.TIM_ClearFlag), (6 bytes).
Removing stm32f4xx_tim.o(i.TIM_ClearITPendingBit), (6 bytes).
Removing stm32f4xx_tim.o(i.TIM_ClearOC1Ref), (12 bytes).
Removing stm32f4xx_tim.o(i.TIM_ClearOC2Ref), (20 bytes).
Removing stm32f4xx_tim.o(i.TIM_ClearOC3Ref), (12 bytes).
Removing stm32f4xx_tim.o(i.TIM_ClearOC4Ref), (20 bytes).
Removing stm32f4xx_tim.o(i.TIM_Cmd), (20 bytes).
Removing stm32f4xx_tim.o(i.TIM_CounterModeConfig), (12 bytes).
Removing stm32f4xx_tim.o(i.TIM_CtrlPWMOutputs), (22 bytes).
Removing stm32f4xx_tim.o(i.TIM_DMACmd), (16 bytes).
Removing stm32f4xx_tim.o(i.TIM_DMAConfig), (8 bytes).
Removing stm32f4xx_tim.o(i.TIM_DeInit), (336 bytes).
Removing stm32f4xx_tim.o(i.TIM_ETRClockMode1Config), (18 bytes).
Removing stm32f4xx_tim.o(i.TIM_ETRClockMode2Config), (18 bytes).
Removing stm32f4xx_tim.o(i.TIM_ETRConfig), (24 bytes).
Removing stm32f4xx_tim.o(i.TIM_EncoderInterfaceConfig), (50 bytes).
Removing stm32f4xx_tim.o(i.TIM_ForcedOC1Config), (12 bytes).
Removing stm32f4xx_tim.o(i.TIM_ForcedOC2Config), (20 bytes).
Removing stm32f4xx_tim.o(i.TIM_ForcedOC3Config), (12 bytes).
Removing stm32f4xx_tim.o(i.TIM_ForcedOC4Config), (20 bytes).
Removing stm32f4xx_tim.o(i.TIM_GenerateEvent), (4 bytes).
Removing stm32f4xx_tim.o(i.TIM_GetCapture1), (4 bytes).
Removing stm32f4xx_tim.o(i.TIM_GetCapture2), (4 bytes).
Removing stm32f4xx_tim.o(i.TIM_GetCapture3), (4 bytes).
Removing stm32f4xx_tim.o(i.TIM_GetCapture4), (4 bytes).
Removing stm32f4xx_tim.o(i.TIM_GetCounter), (4 bytes).
Removing stm32f4xx_tim.o(i.TIM_GetFlagStatus), (14 bytes).
Removing stm32f4xx_tim.o(i.TIM_GetITStatus), (24 bytes).
Removing stm32f4xx_tim.o(i.TIM_GetPrescaler), (4 bytes).
Removing stm32f4xx_tim.o(i.TIM_ICInit), (172 bytes).
Removing stm32f4xx_tim.o(i.TIM_ICStructInit), (16 bytes).
Removing stm32f4xx_tim.o(i.TIM_ITConfig), (16 bytes).
Removing stm32f4xx_tim.o(i.TIM_ITRxExternalClockConfig), (18 bytes).
Removing stm32f4xx_tim.o(i.TIM_InternalClockConfig), (10 bytes).
Removing stm32f4xx_tim.o(i.TIM_OC1FastConfig), (12 bytes).
Removing stm32f4xx_tim.o(i.TIM_OC1Init), (96 bytes).
Removing stm32f4xx_tim.o(i.TIM_OC1NPolarityConfig), (12 bytes).
Removing stm32f4xx_tim.o(i.TIM_OC1PolarityConfig), (12 bytes).
Removing stm32f4xx_tim.o(i.TIM_OC1PreloadConfig), (12 bytes).
Removing stm32f4xx_tim.o(i.TIM_OC2FastConfig), (20 bytes).
Removing stm32f4xx_tim.o(i.TIM_OC2Init), (128 bytes).
Removing stm32f4xx_tim.o(i.TIM_OC2NPolarityConfig), (20 bytes).
Removing stm32f4xx_tim.o(i.TIM_OC2PolarityConfig), (20 bytes).
Removing stm32f4xx_tim.o(i.TIM_OC2PreloadConfig), (20 bytes).
Removing stm32f4xx_tim.o(i.TIM_OC3FastConfig), (12 bytes).
Removing stm32f4xx_tim.o(i.TIM_OC3Init), (124 bytes).
Removing stm32f4xx_tim.o(i.TIM_OC3NPolarityConfig), (20 bytes).
Removing stm32f4xx_tim.o(i.TIM_OC3PolarityConfig), (20 bytes).
Removing stm32f4xx_tim.o(i.TIM_OC3PreloadConfig), (12 bytes).
Removing stm32f4xx_tim.o(i.TIM_OC4FastConfig), (20 bytes).
Removing stm32f4xx_tim.o(i.TIM_OC4Init), (96 bytes).
Removing stm32f4xx_tim.o(i.TIM_OC4PolarityConfig), (20 bytes).
Removing stm32f4xx_tim.o(i.TIM_OC4PreloadConfig), (20 bytes).
Removing stm32f4xx_tim.o(i.TIM_OCStructInit), (20 bytes).
Removing stm32f4xx_tim.o(i.TIM_PWMIConfig), (108 bytes).
Removing stm32f4xx_tim.o(i.TIM_PrescalerConfig), (6 bytes).
Removing stm32f4xx_tim.o(i.TIM_RemapConfig), (6 bytes).
Removing stm32f4xx_tim.o(i.TIM_SelectCCDMA), (20 bytes).
Removing stm32f4xx_tim.o(i.TIM_SelectCOM), (20 bytes).
Removing stm32f4xx_tim.o(i.TIM_SelectHallSensor), (20 bytes).
Removing stm32f4xx_tim.o(i.TIM_SelectInputTrigger), (12 bytes).
Removing stm32f4xx_tim.o(i.TIM_SelectMasterSlaveMode), (16 bytes).
Removing stm32f4xx_tim.o(i.TIM_SelectOCxM), (74 bytes).
Removing stm32f4xx_tim.o(i.TIM_SelectOnePulseMode), (16 bytes).
Removing stm32f4xx_tim.o(i.TIM_SelectOutputTrigger), (16 bytes).
Removing stm32f4xx_tim.o(i.TIM_SelectSlaveMode), (16 bytes).
Removing stm32f4xx_tim.o(i.TIM_SetAutoreload), (4 bytes).
Removing stm32f4xx_tim.o(i.TIM_SetClockDivision), (16 bytes).
Removing stm32f4xx_tim.o(i.TIM_SetCompare1), (4 bytes).
Removing stm32f4xx_tim.o(i.TIM_SetCompare2), (4 bytes).
Removing stm32f4xx_tim.o(i.TIM_SetCompare3), (4 bytes).
Removing stm32f4xx_tim.o(i.TIM_SetCompare4), (4 bytes).
Removing stm32f4xx_tim.o(i.TIM_SetCounter), (4 bytes).
Removing stm32f4xx_tim.o(i.TIM_SetIC1Prescaler), (16 bytes).
Removing stm32f4xx_tim.o(i.TIM_SetIC2Prescaler), (24 bytes).
Removing stm32f4xx_tim.o(i.TIM_SetIC3Prescaler), (16 bytes).
Removing stm32f4xx_tim.o(i.TIM_SetIC4Prescaler), (24 bytes).
Removing stm32f4xx_tim.o(i.TIM_TIxExternalClockConfig), (46 bytes).
Removing stm32f4xx_tim.o(i.TIM_TimeBaseInit), (124 bytes).
Removing stm32f4xx_tim.o(i.TIM_TimeBaseStructInit), (18 bytes).
Removing stm32f4xx_tim.o(i.TIM_UpdateDisableConfig), (20 bytes).
Removing stm32f4xx_tim.o(i.TIM_UpdateRequestConfig), (20 bytes).
Removing stm32f4xx_usart.o(.rev16_text), (4 bytes).
Removing stm32f4xx_usart.o(.revsh_text), (4 bytes).
Removing stm32f4xx_usart.o(i.USART_ClearFlag), (6 bytes).
Removing stm32f4xx_usart.o(i.USART_ClearITPendingBit), (12 bytes).
Removing stm32f4xx_usart.o(i.USART_ClockInit), (28 bytes).
Removing stm32f4xx_usart.o(i.USART_ClockStructInit), (12 bytes).
Removing stm32f4xx_usart.o(i.USART_Cmd), (20 bytes).
Removing stm32f4xx_usart.o(i.USART_DMACmd), (16 bytes).
Removing stm32f4xx_usart.o(i.USART_DeInit), (172 bytes).
Removing stm32f4xx_usart.o(i.USART_GetFlagStatus), (14 bytes).
Removing stm32f4xx_usart.o(i.USART_GetITStatus), (62 bytes).
Removing stm32f4xx_usart.o(i.USART_HalfDuplexCmd), (20 bytes).
Removing stm32f4xx_usart.o(i.USART_ITConfig), (48 bytes).
Removing stm32f4xx_usart.o(i.USART_Init), (184 bytes).
Removing stm32f4xx_usart.o(i.USART_IrDACmd), (20 bytes).
Removing stm32f4xx_usart.o(i.USART_IrDAConfig), (16 bytes).
Removing stm32f4xx_usart.o(i.USART_LINBreakDetectLengthConfig), (16 bytes).
Removing stm32f4xx_usart.o(i.USART_LINCmd), (20 bytes).
Removing stm32f4xx_usart.o(i.USART_OneBitMethodCmd), (20 bytes).
Removing stm32f4xx_usart.o(i.USART_OverSampling8Cmd), (20 bytes).
Removing stm32f4xx_usart.o(i.USART_ReceiveData), (8 bytes).
Removing stm32f4xx_usart.o(i.USART_ReceiverWakeUpCmd), (20 bytes).
Removing stm32f4xx_usart.o(i.USART_SendBreak), (10 bytes).
Removing stm32f4xx_usart.o(i.USART_SendData), (8 bytes).
Removing stm32f4xx_usart.o(i.USART_SetAddress), (16 bytes).
Removing stm32f4xx_usart.o(i.USART_SetGuardTime), (16 bytes).
Removing stm32f4xx_usart.o(i.USART_SetPrescaler), (16 bytes).
Removing stm32f4xx_usart.o(i.USART_SmartCardCmd), (20 bytes).
Removing stm32f4xx_usart.o(i.USART_SmartCardNACKCmd), (20 bytes).
Removing stm32f4xx_usart.o(i.USART_StructInit), (22 bytes).
Removing stm32f4xx_usart.o(i.USART_WakeUpConfig), (16 bytes).
Removing stm32f4xx_flash.o(.rev16_text), (4 bytes).
Removing stm32f4xx_flash.o(.revsh_text), (4 bytes).
Removing stm32f4xx_flash.o(i.FLASH_ClearFlag), (12 bytes).
Removing stm32f4xx_flash.o(i.FLASH_DataCacheCmd), (28 bytes).
Removing stm32f4xx_flash.o(i.FLASH_DataCacheReset), (16 bytes).
Removing stm32f4xx_flash.o(i.FLASH_EraseAllBank1Sectors), (92 bytes).
Removing stm32f4xx_flash.o(i.FLASH_EraseAllBank2Sectors), (92 bytes).
Removing stm32f4xx_flash.o(i.FLASH_EraseAllSectors), (88 bytes).
Removing stm32f4xx_flash.o(i.FLASH_EraseSector), (108 bytes).
Removing stm32f4xx_flash.o(i.FLASH_GetFlagStatus), (20 bytes).
Removing stm32f4xx_flash.o(i.FLASH_GetStatus), (60 bytes).
Removing stm32f4xx_flash.o(i.FLASH_ITConfig), (24 bytes).
Removing stm32f4xx_flash.o(i.FLASH_InstructionCacheCmd), (28 bytes).
Removing stm32f4xx_flash.o(i.FLASH_InstructionCacheReset), (16 bytes).
Removing stm32f4xx_flash.o(i.FLASH_Lock), (16 bytes).
Removing stm32f4xx_flash.o(i.FLASH_OB_BORConfig), (24 bytes).
Removing stm32f4xx_flash.o(i.FLASH_OB_BootConfig), (24 bytes).
Removing stm32f4xx_flash.o(i.FLASH_OB_GetBOR), (16 bytes).
Removing stm32f4xx_flash.o(i.FLASH_OB_GetPCROP), (12 bytes).
Removing stm32f4xx_flash.o(i.FLASH_OB_GetPCROP1), (12 bytes).
Removing stm32f4xx_flash.o(i.FLASH_OB_GetRDP), (20 bytes).
Removing stm32f4xx_flash.o(i.FLASH_OB_GetUser), (16 bytes).
Removing stm32f4xx_flash.o(i.FLASH_OB_GetWRP), (12 bytes).
Removing stm32f4xx_flash.o(i.FLASH_OB_GetWRP1), (12 bytes).
Removing stm32f4xx_flash.o(i.FLASH_OB_Launch), (20 bytes).
Removing stm32f4xx_flash.o(i.FLASH_OB_Lock), (16 bytes).
Removing stm32f4xx_flash.o(i.FLASH_OB_PCROP1Config), (36 bytes).
Removing stm32f4xx_flash.o(i.FLASH_OB_PCROPConfig), (36 bytes).
Removing stm32f4xx_flash.o(i.FLASH_OB_PCROPSelectionConfig), (20 bytes).
Removing stm32f4xx_flash.o(i.FLASH_OB_RDPConfig), (24 bytes).
Removing stm32f4xx_flash.o(i.FLASH_OB_Unlock), (36 bytes).
Removing stm32f4xx_flash.o(i.FLASH_OB_UserConfig), (40 bytes).
Removing stm32f4xx_flash.o(i.FLASH_OB_WRP1Config), (36 bytes).
Removing stm32f4xx_flash.o(i.FLASH_OB_WRPConfig), (36 bytes).
Removing stm32f4xx_flash.o(i.FLASH_PrefetchBufferCmd), (28 bytes).
Removing stm32f4xx_flash.o(i.FLASH_ProgramByte), (56 bytes).
Removing stm32f4xx_flash.o(i.FLASH_ProgramDoubleWord), (64 bytes).
Removing stm32f4xx_flash.o(i.FLASH_ProgramHalfWord), (60 bytes).
Removing stm32f4xx_flash.o(i.FLASH_ProgramWord), (60 bytes).
Removing stm32f4xx_flash.o(i.FLASH_SetLatency), (12 bytes).
Removing stm32f4xx_flash.o(i.FLASH_Unlock), (36 bytes).
Removing stm32f4xx_flash.o(i.FLASH_WaitForLastOperation), (30 bytes).
Removing stm32f4xx_can.o(.rev16_text), (4 bytes).
Removing stm32f4xx_can.o(.revsh_text), (4 bytes).
Removing stm32f4xx_can.o(i.CAN_ClearITPendingBit), (120 bytes).
Removing stm32f4xx_can.o(i.CAN_DBGFreeze), (20 bytes).
Removing stm32f4xx_can.o(i.CAN_FIFORelease), (22 bytes).
Removing stm32f4xx_can.o(i.CAN_GetITStatus), (168 bytes).
Removing stm32f4xx_can.o(i.CAN_GetLSBTransmitErrorCounter), (8 bytes).
Removing stm32f4xx_can.o(i.CAN_GetLastErrorCode), (10 bytes).
Removing stm32f4xx_can.o(i.CAN_GetReceiveErrorCounter), (6 bytes).
Removing stm32f4xx_can.o(i.CAN_MessagePending), (22 bytes).
Removing stm32f4xx_can.o(i.CAN_OperatingModeRequest), (140 bytes).
Removing stm32f4xx_can.o(i.CAN_SlaveStartBank), (44 bytes).
Removing stm32f4xx_can.o(i.CAN_Sleep), (30 bytes).
Removing stm32f4xx_can.o(i.CAN_StructInit), (32 bytes).
Removing stm32f4xx_can.o(i.CAN_TTComModeCmd), (90 bytes).
Removing stm32f4xx_can.o(i.CAN_WakeUp), (42 bytes).
Removing stm32f4xx_can.o(i.CheckITStatus), (12 bytes).
Removing stm32f429i_discovery.o(.rev16_text), (4 bytes).
Removing stm32f429i_discovery.o(.revsh_text), (4 bytes).
Removing stm32f429i_discovery.o(i.STM_EVAL_LEDToggle), (28 bytes).
Removing stm32f429i_discovery.o(i.sEE_LowLevel_DMAConfig), (44 bytes).
Removing stm32f429i_discovery.o(i.sEE_LowLevel_DeInit), (152 bytes).
Removing stm32f429i_discovery.o(i.sEE_LowLevel_Init), (332 bytes).
Removing stm32f429i_discovery.o(.bss), (60 bytes).
Removing stm32f429i_discovery_lcd.o(.rev16_text), (4 bytes).
Removing stm32f429i_discovery_lcd.o(.revsh_text), (4 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_ClearLine), (52 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_ClosedPolyLine), (32 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_ClosedPolyLineRelative), (6 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_DisplayOff), (6 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_DisplayOn), (6 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_DisplayStringLine), (60 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_DrawCircle), (116 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_DrawEllipse), (432 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_DrawFullCircle), (154 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_DrawFullEllipse), (398 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_DrawFullRect), (104 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_DrawLine), (120 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_DrawMonoPict), (60 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_DrawRect), (64 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_DrawUniLine), (200 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_FillPolyLine), (268 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_FillTriangle), (188 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_GetColors), (16 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_PolyLine), (40 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_PolyLineRelative), (6 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_PolyLineRelativeClosed), (98 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_ReSetColorKeying), (44 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_SetBackColor), (12 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_SetColorKeying), (60 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_SetColors), (12 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_SetCursor), (24 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_SetDisplayWindow), (68 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_SetFont), (12 bytes).
Removing stm32f429i_discovery_lcd.o(i.LCD_SetTextColor), (12 bytes).