-
Notifications
You must be signed in to change notification settings - Fork 0
/
programm_sgk_v1.map
1557 lines (1303 loc) · 82 KB
/
programm_sgk_v1.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
Map of ..\program_sgk_v1\programm_sgk_v1.sm8 from link file ..\program_sgk_v1\programm_sgk_v1.lkf - Mon Dec 17 21:57:44 2018
--------
Segments
--------
start 00008080 end 000081d1 length 337 segment .const
start 000081d4 end 0000ba43 length 14447 segment .text
start 00004000 end 00004000 length 0 segment .eeprom
start 00000000 end 00000000 length 0 segment .bsct
start 00000000 end 0000000a length 10 segment .ubsct
start 0000000a end 0000000a length 0 segment .bit
start 0000000a end 0000000a length 0 segment .share
start 00000100 end 00000100 length 0 segment .data
start 00000100 end 000001a2 length 162 segment .bss
start 00000000 end 00000b62 length 2914 segment .info.
start 00000000 end 0000daf7 length 56055 segment .debug
start 00008000 end 00008080 length 128 segment .const
start 000081d1 end 000081d4 length 3 segment .init
-------
Modules
-------
C:\Program Files\COSMIC\FSE_Compilers\CXSTM8\lib\crtsi0.sm8:
start 000081d4 end 00008224 length 80 section .text
start 00000100 end 00000100 length 0 section .bss
start 00000000 end 00000000 length 0 section .ubsct
start 00000000 end 00000034 length 52 section .info.
..\program_sgk_v1\stm8s_beep.o:
start 00008224 end 000082f9 length 213 section .text
start 00000000 end 000002cf length 719 section .debug
start 00000034 end 000000cf length 155 section .info.
start 00008080 end 000080a7 length 39 section .const
..\program_sgk_v1\stm8s_clk.o:
start 000082f9 end 000088c0 length 1479 section .text
start 000002cf end 00001926 length 5719 section .debug
start 000000cf end 00000169 length 154 section .info.
start 000080a7 end 000080cd length 38 section .const
..\program_sgk_v1\stm8s_gpio.o:
start 000088c0 end 000089ca length 266 section .text
start 00001926 end 0000232c length 2566 section .debug
start 00000169 end 00000204 length 155 section .info.
start 000080cd end 000080e8 length 27 section .const
..\program_sgk_v1\stm8s_itc.o:
start 000089ca end 00008b5d length 403 section .text
start 0000232c end 00002963 length 1591 section .debug
start 00000204 end 0000029e length 154 section .info.
start 000080e8 end 00008166 length 126 section .const
..\program_sgk_v1\stm8s_spi.o:
start 00008b5d end 00008e96 length 825 section .text
start 00002963 end 0000387b length 3864 section .debug
start 0000029e end 00000338 length 154 section .info.
start 00008166 end 00008180 length 26 section .const
..\program_sgk_v1\stm8s_tim1.o:
start ******** end ******** length 0 section .text *** removed ***
start 0000387b end 00007731 length 16054 section .debug
start 00000338 end 000003d3 length 155 section .info.
start ******** end ******** length 0 section .const *** removed ***
..\program_sgk_v1\stm8s_tim2.o:
start 00008e96 end 00009869 length 2515 section .text
start 00007731 end 000099b5 length 8836 section .debug
start 000003d3 end 0000046e length 155 section .info.
start 00008180 end 0000819b length 27 section .const
..\program_sgk_v1\stm8s_tim3.o:
start 00009869 end 0000a05a length 2033 section .text
start 000099b5 end 0000b75f length 7594 section .debug
start 0000046e end 00000509 length 155 section .info.
start 0000819b end 000081b6 length 27 section .const
..\program_sgk_v1\stm8s_tim4.o:
start 0000a05a end 0000a2ac length 594 section .text
start 0000b75f end 0000c302 length 2979 section .debug
start 00000509 end 000005a4 length 155 section .info.
start 000081b6 end 000081d1 length 27 section .const
..\program_sgk_v1\initial_tuning.o:
start 0000a2ac end 0000a634 length 904 section .text
start 0000c302 end 0000c5a4 length 674 section .debug
start 000005a4 end 00000643 length 159 section .info.
..\program_sgk_v1\main.o:
start 0000a634 end 0000a67f length 75 section .text
start 00000100 end 000001a2 length 162 section .bss
start 0000c5a4 end 0000cf17 length 2419 section .debug
start 00000643 end 000006d8 length 149 section .info.
start ******** end ******** length 0 section .const *** removed ***
..\program_sgk_v1\stm8s_it.o:
start 0000a67f end 0000b017 length 2456 section .text
start 0000cf17 end 0000d5dd length 1734 section .debug
start 000006d8 end 00000771 length 153 section .info.
..\program_sgk_v1\subroutines.o:
start 0000b017 end 0000b8a1 length 2186 section .text
start 0000d5dd end 0000d9d1 length 1012 section .debug
start 00000771 end 0000080d length 156 section .info.
(C:\Program Files\COSMIC\FSE_Compilers\CXSTM8\lib\libm0.sm8)imul.o:
start 0000b8a1 end 0000b8c2 length 33 section .text
start 0000080d end 0000083c length 47 section .info.
(C:\Program Files\COSMIC\FSE_Compilers\CXSTM8\lib\libm0.sm8)lcmp.o:
start 0000b8c2 end 0000b8e2 length 32 section .text
start 0000083c end 0000086b length 47 section .info.
(C:\Program Files\COSMIC\FSE_Compilers\CXSTM8\lib\libm0.sm8)llsh.o:
start 0000b8e2 end 0000b8f1 length 15 section .text
start 0000086b end 0000089a length 47 section .info.
(C:\Program Files\COSMIC\FSE_Compilers\CXSTM8\lib\libm0.sm8)lreg.o:
start 00000000 end 00000004 length 4 section .ubsct
start 0000089a end 000008c9 length 47 section .info.
(C:\Program Files\COSMIC\FSE_Compilers\CXSTM8\lib\libm0.sm8)ltor.o:
start 0000b8f1 end 0000b903 length 18 section .text
start 000008c9 end 000008f8 length 47 section .info.
(C:\Program Files\COSMIC\FSE_Compilers\CXSTM8\lib\libm0.sm8)ludiv.o:
start 0000b903 end 0000b917 length 20 section .text
start 000008f8 end 00000928 length 48 section .info.
(C:\Program Files\COSMIC\FSE_Compilers\CXSTM8\lib\libm0.sm8)ldiv.o:
start 0000b917 end 0000ba02 length 235 section .text
start 00000928 end 00000957 length 47 section .info.
(C:\Program Files\COSMIC\FSE_Compilers\CXSTM8\lib\libm0.sm8)lgneg.o:
start 0000ba02 end 0000ba15 length 19 section .text
start 00000957 end 00000987 length 48 section .info.
(C:\Program Files\COSMIC\FSE_Compilers\CXSTM8\lib\libm0.sm8)lneg.o:
start 0000ba15 end 0000ba2a length 21 section .text
start 00000987 end 000009b6 length 47 section .info.
(C:\Program Files\COSMIC\FSE_Compilers\CXSTM8\lib\libm0.sm8)rtol.o:
start 0000ba2a end 0000ba3c length 18 section .text
start 000009b6 end 000009e5 length 47 section .info.
(C:\Program Files\COSMIC\FSE_Compilers\CXSTM8\lib\libm0.sm8)utolx.o:
start 0000ba3c end 0000ba43 length 7 section .text
start 000009e5 end 00000a15 length 48 section .info.
(C:\Program Files\COSMIC\FSE_Compilers\CXSTM8\lib\libm0.sm8)xreg.o:
start 00000004 end 00000007 length 3 section .ubsct
start 00000a15 end 00000a44 length 47 section .info.
(C:\Program Files\COSMIC\FSE_Compilers\CXSTM8\lib\libm0.sm8)yreg.o:
start 00000007 end 0000000a length 3 section .ubsct
start 00000a44 end 00000a73 length 47 section .info.
..\program_sgk_v1\stm8_interrupt_vector.o:
start 0000d9d1 end 0000daf7 length 294 section .debug
start 00000a73 end 00000b19 length 166 section .info.
start 00008000 end 00008080 length 128 section .const
-----------
Stack usage
-----------
..\program_sgk_v1\initial_tuning.o:
_Beep_Config 41 (2)
_CLK_Config 12 (2)
_GPIO_Config 14 (2)
_LSIMeasurment 39 (14)
_SPI_Config 19 (2)
_Timers_Config 12 (2)
_Variables_Config 10 (2)
..\program_sgk_v1\main.o:
_assert_failed 6 (6)
_main > 43 (2)
..\program_sgk_v1\stm8s_beep.o:
_BEEP_Cmd > 2 (2)
_BEEP_DeInit > 2 (2)
_BEEP_Init 9 (3)
_BEEP_LSICalibrationConfig 26 (12)
..\program_sgk_v1\stm8s_clk.o:
_CLK_AdjustHSICalibrationValue > 9 (3)
_CLK_CCOCmd > 9 (3)
_CLK_CCOConfig > 9 (3)
_CLK_ClearITPendingBit > 9 (3)
_CLK_ClockSecuritySystemEnable > 2 (2)
_CLK_ClockSwitchCmd > 9 (3)
_CLK_ClockSwitchConfig > 16 (10)
_CLK_DeInit > 2 (2)
_CLK_FastHaltWakeUpCmd > 9 (3)
_CLK_GetClockFreq 25 (11)
_CLK_GetFlagStatus > 13 (7)
_CLK_GetITStatus > 10 (4)
_CLK_GetSYSCLKSource > 2 (2)
_CLK_HSECmd > 9 (3)
_CLK_HSICmd > 9 (3)
_CLK_HSIPrescalerConfig 9 (3)
_CLK_ITConfig > 10 (4)
_CLK_LSICmd 9 (3)
_CLK_PeripheralClockConfig 10 (4)
_CLK_SWIMConfig > 9 (3)
_CLK_SYSCLKConfig > 9 (3)
_CLK_SYSCLKEmergencyClear > 2 (2)
_CLK_SlowActiveHaltWakeUpCmd > 9 (3)
..\program_sgk_v1\stm8s_gpio.o:
_GPIO_DeInit > 2 (2)
_GPIO_ExternalPullUpConfig > 12 (6)
_GPIO_Init 12 (6)
_GPIO_ReadInputData 2 (2)
_GPIO_ReadInputPin > 5 (5)
_GPIO_ReadOutputData > 2 (2)
_GPIO_Write > 5 (5)
_GPIO_WriteHigh > 5 (5)
_GPIO_WriteLow 5 (5)
_GPIO_WriteReverse > 5 (5)
..\program_sgk_v1\stm8s_it.o:
f_ADC1_IRQHandler > 6 (6)
f_AWU_IRQHandler > 6 (6)
f_CLK_IRQHandler > 6 (6)
f_EEPROM_EEC_IRQHandler > 6 (6)
f_EXTI_PORTA_IRQHandler > 6 (6)
f_EXTI_PORTB_IRQHandler > 6 (6)
f_EXTI_PORTC_IRQHandler > 6 (6)
f_EXTI_PORTD_IRQHandler > 6 (6)
f_EXTI_PORTE_IRQHandler > 6 (6)
f_I2C_IRQHandler > 6 (6)
f_NonHandledInterrupt > 6 (6)
f_SPI_IRQHandler > 6 (6)
f_TIM1_CAP_COM_IRQHandler > 6 (6)
f_TIM1_UPD_OVF_TRG_BRK_IRQHandler > 6 (6)
f_TIM2_CAP_COM_IRQHandler > 6 (6)
f_TIM2_UPD_OVF_BRK_IRQHandler > 6 (6)
f_TIM3_CAP_COM_IRQHandler > 6 (6)
f_TIM3_UPD_OVF_BRK_IRQHandler > 6 (6)
f_TIM4_UPD_OVF_IRQHandler > 6 (6)
f_TLI_IRQHandler > 6 (6)
f_TRAP_IRQHandler > 6 (6)
f_UART2_RX_IRQHandler > 6 (6)
f_UART2_TX_IRQHandler > 6 (6)
..\program_sgk_v1\stm8s_itc.o:
_ITC_DeInit > 2 (2)
_ITC_GetCPUCC 2 (2)
_ITC_GetSoftIntStatus 4 (2)
_ITC_GetSoftwarePriority > 11 (5)
_ITC_SetSoftwarePriority 12 (6)
..\program_sgk_v1\stm8s_spi.o:
_SPI_BiDirectionalLineConfig > 9 (3)
_SPI_CalculateCRCCmd 9 (3)
_SPI_ClearFlag > 9 (3)
_SPI_ClearITPendingBit > 10 (4)
_SPI_Cmd 9 (3)
_SPI_DeInit > 2 (2)
_SPI_GetCRC > 10 (4)
_SPI_GetCRCPolynomial > 2 (2)
_SPI_GetFlagStatus > 10 (4)
_SPI_GetITStatus > 11 (5)
_SPI_ITConfig 11 (5)
_SPI_Init 17 (11)
_SPI_NSSInternalSoftwareCmd > 9 (3)
_SPI_ReceiveData > 2 (2)
_SPI_ResetCRC > 11 (2)
_SPI_SendData > 2 (2)
_SPI_TransmitCRC > 2 (2)
..\program_sgk_v1\stm8s_tim2.o:
L7_TI3_Config 6 (6)
_TIM2_ARRPreloadConfig > 9 (3)
_TIM2_CCxCmd > 10 (4)
_TIM2_ClearFlag > 10 (4)
_TIM2_ClearITPendingBit > 9 (3)
_TIM2_Cmd 9 (3)
_TIM2_DeInit > 2 (2)
_TIM2_ForcedOC1Config > 9 (3)
_TIM2_ForcedOC2Config > 9 (3)
_TIM2_ForcedOC3Config > 9 (3)
_TIM2_GenerateEvent > 9 (3)
_TIM2_GetCapture1 > 6 (6)
_TIM2_GetCapture2 > 6 (6)
_TIM2_GetCapture3 > 6 (6)
_TIM2_GetCounter > 4 (4)
_TIM2_GetFlagStatus > 12 (6)
_TIM2_GetITStatus > 11 (5)
_TIM2_GetPrescaler > 2 (2)
_TIM2_ICInit > 16 (7)
_TIM2_ITConfig 10 (4)
_TIM2_OC1Init > 14 (8)
_TIM2_OC1PolarityConfig > 9 (3)
_TIM2_OC1PreloadConfig > 9 (3)
_TIM2_OC2Init > 14 (8)
_TIM2_OC2PolarityConfig > 9 (3)
_TIM2_OC2PreloadConfig > 9 (3)
_TIM2_OC3Init > 14 (8)
_TIM2_OC3PolarityConfig > 9 (3)
_TIM2_OC3PreloadConfig > 9 (3)
_TIM2_PWMIConfig > 18 (9)
_TIM2_PrescalerConfig > 10 (4)
_TIM2_SelectOCxM > 10 (4)
_TIM2_SelectOnePulseMode > 9 (3)
_TIM2_SetAutoreload 2 (2)
_TIM2_SetCompare1 > 2 (2)
_TIM2_SetCompare2 > 2 (2)
_TIM2_SetCompare3 > 2 (2)
_TIM2_SetCounter 2 (2)
_TIM2_SetIC1Prescaler 9 (3)
_TIM2_SetIC2Prescaler 9 (3)
_TIM2_SetIC3Prescaler 9 (3)
_TIM2_TimeBaseInit 5 (5)
_TIM2_UpdateDisableConfig > 9 (3)
_TIM2_UpdateRequestConfig > 9 (3)
..\program_sgk_v1\stm8s_tim3.o:
L3_TI1_Config 6 (6)
L5_TI2_Config 6 (6)
_TIM3_ARRPreloadConfig > 9 (3)
_TIM3_CCxCmd > 10 (4)
_TIM3_ClearFlag 10 (4)
_TIM3_ClearITPendingBit > 9 (3)
_TIM3_Cmd 9 (3)
_TIM3_DeInit > 2 (2)
_TIM3_ForcedOC1Config > 9 (3)
_TIM3_ForcedOC2Config > 9 (3)
_TIM3_GenerateEvent > 9 (3)
_TIM3_GetCapture1 6 (6)
_TIM3_GetCapture2 > 6 (6)
_TIM3_GetCounter > 4 (4)
_TIM3_GetFlagStatus > 12 (6)
_TIM3_GetITStatus > 11 (5)
_TIM3_GetPrescaler > 2 (2)
_TIM3_ICInit 16 (7)
_TIM3_ITConfig > 10 (4)
_TIM3_OC1Init > 14 (8)
_TIM3_OC1PolarityConfig > 9 (3)
_TIM3_OC1PreloadConfig > 9 (3)
_TIM3_OC2Init > 14 (8)
_TIM3_OC2PolarityConfig > 9 (3)
_TIM3_OC2PreloadConfig > 9 (3)
_TIM3_PWMIConfig > 18 (9)
_TIM3_PrescalerConfig > 10 (4)
_TIM3_SelectOCxM > 10 (4)
_TIM3_SelectOnePulseMode > 9 (3)
_TIM3_SetAutoreload > 2 (2)
_TIM3_SetCompare1 > 2 (2)
_TIM3_SetCompare2 > 2 (2)
_TIM3_SetCounter > 2 (2)
_TIM3_SetIC1Prescaler 9 (3)
_TIM3_SetIC2Prescaler 9 (3)
_TIM3_TimeBaseInit > 5 (5)
_TIM3_UpdateDisableConfig > 9 (3)
_TIM3_UpdateRequestConfig > 9 (3)
..\program_sgk_v1\stm8s_tim4.o:
_TIM4_ARRPreloadConfig > 9 (3)
_TIM4_ClearFlag 9 (3)
_TIM4_ClearITPendingBit > 9 (3)
_TIM4_Cmd 9 (3)
_TIM4_DeInit > 2 (2)
_TIM4_GenerateEvent > 9 (3)
_TIM4_GetCounter > 2 (2)
_TIM4_GetFlagStatus > 10 (4)
_TIM4_GetITStatus > 11 (5)
_TIM4_GetPrescaler > 2 (2)
_TIM4_ITConfig 10 (4)
_TIM4_PrescalerConfig > 10 (4)
_TIM4_SelectOnePulseMode > 9 (3)
_TIM4_SetAutoreload > 2 (2)
_TIM4_SetCounter > 2 (2)
_TIM4_TimeBaseInit 10 (4)
_TIM4_UpdateDisableConfig > 9 (3)
_TIM4_UpdateRequestConfig > 9 (3)
..\program_sgk_v1\subroutines.o:
_ButtonsService 14 (3)
_EncoderService 20 (9)
_FunctionStartGenerator 11 (2)
_FunctionStopGenerator 11 (2)
_NumberToNumberShow 8 (8)
_ScreenUpdate 13 (2)
_StartTestPulse 11 (2)
_TimeService 13 (2)
Stack size: 49
---------
Call tree
---------
1 > _BEEP_Cmd: (2)
2 > _BEEP_DeInit: (2)
3 > _CLK_AdjustHSICalibrationValue: (3)
4 + _assert_failed: (6)
5 > _CLK_CCOCmd: (3)
6 + _assert_failed --> 4
7 > _CLK_CCOConfig: (3)
8 + _assert_failed --> 4
9 > _CLK_ClearITPendingBit: (3)
10 + _assert_failed --> 4
11 > _CLK_ClockSecuritySystemEnable: (2)
12 > _CLK_ClockSwitchCmd: (3)
13 + _assert_failed --> 4
14 > _CLK_ClockSwitchConfig: (10)
15 + _assert_failed --> 4
16 > _CLK_DeInit: (2)
17 > _CLK_FastHaltWakeUpCmd: (3)
18 + _assert_failed --> 4
19 > _CLK_GetFlagStatus: (7)
20 + _assert_failed --> 4
21 > _CLK_GetITStatus: (4)
22 + _assert_failed --> 4
23 > _CLK_GetSYSCLKSource: (2)
24 > _CLK_HSECmd: (3)
25 + _assert_failed --> 4
26 > _CLK_HSICmd: (3)
27 + _assert_failed --> 4
28 > _CLK_ITConfig: (4)
29 + _assert_failed --> 4
30 > _CLK_SWIMConfig: (3)
31 + _assert_failed --> 4
32 > _CLK_SYSCLKConfig: (3)
33 + _assert_failed --> 4
34 > _CLK_SYSCLKEmergencyClear: (2)
35 > _CLK_SlowActiveHaltWakeUpCmd: (3)
36 + _assert_failed --> 4
37 > _GPIO_DeInit: (2)
38 > _GPIO_ExternalPullUpConfig: (6)
39 + _assert_failed --> 4
40 > _GPIO_ReadInputPin: (5)
41 > _GPIO_ReadOutputData: (2)
42 > _GPIO_Write: (5)
43 > _GPIO_WriteHigh: (5)
44 > _GPIO_WriteReverse: (5)
45 > _ITC_DeInit: (2)
46 > _ITC_GetSoftwarePriority: (5)
47 + _assert_failed --> 4
48 > _SPI_BiDirectionalLineConfig: (3)
49 + _assert_failed --> 4
50 > _SPI_ClearFlag: (3)
51 + _assert_failed --> 4
52 > _SPI_ClearITPendingBit: (4)
53 + _assert_failed --> 4
54 > _SPI_DeInit: (2)
55 > _SPI_GetCRC: (4)
56 + _assert_failed --> 4
57 > _SPI_GetCRCPolynomial: (2)
58 > _SPI_GetFlagStatus: (4)
59 + _assert_failed --> 4
60 > _SPI_GetITStatus: (5)
61 + _assert_failed --> 4
62 > _SPI_NSSInternalSoftwareCmd: (3)
63 + _assert_failed --> 4
64 > _SPI_ReceiveData: (2)
65 > _SPI_ResetCRC: (2)
66 + _SPI_CalculateCRCCmd: (3)
67 | + _assert_failed --> 4
|
68 + _SPI_Cmd: (3)
69 | + _assert_failed --> 4
|
70 > _SPI_SendData: (2)
71 > _SPI_TransmitCRC: (2)
72 > _TIM2_ARRPreloadConfig: (3)
73 + _assert_failed --> 4
74 > _TIM2_CCxCmd: (4)
75 + _assert_failed --> 4
76 > _TIM2_ClearFlag: (4)
77 + _assert_failed --> 4
78 > _TIM2_ClearITPendingBit: (3)
79 + _assert_failed --> 4
80 > _TIM2_DeInit: (2)
81 > _TIM2_ForcedOC1Config: (3)
82 + _assert_failed --> 4
83 > _TIM2_ForcedOC2Config: (3)
84 + _assert_failed --> 4
85 > _TIM2_ForcedOC3Config: (3)
86 + _assert_failed --> 4
87 > _TIM2_GenerateEvent: (3)
88 + _assert_failed --> 4
89 > _TIM2_GetCapture1: (6)
90 > _TIM2_GetCapture2: (6)
91 > _TIM2_GetCapture3: (6)
92 > _TIM2_GetCounter: (4)
93 > _TIM2_GetFlagStatus: (6)
94 + _assert_failed --> 4
95 > _TIM2_GetITStatus: (5)
96 + _assert_failed --> 4
97 > _TIM2_GetPrescaler: (2)
98 > _TIM2_ICInit: (7)
99 + L3_TI1_Config: (6)
100 + L5_TI2_Config: (6)
101 + L7_TI3_Config: (6)
102 + _TIM2_SetIC1Prescaler: (3)
103 | + _assert_failed --> 4
|
104 + _TIM2_SetIC2Prescaler: (3)
105 | + _assert_failed --> 4
|
106 + _TIM2_SetIC3Prescaler: (3)
107 | + _assert_failed --> 4
|
108 + _assert_failed --> 4
109 > _TIM2_OC1Init: (8)
110 + _assert_failed --> 4
111 > _TIM2_OC1PolarityConfig: (3)
112 + _assert_failed --> 4
113 > _TIM2_OC1PreloadConfig: (3)
114 + _assert_failed --> 4
115 > _TIM2_OC2Init: (8)
116 + _assert_failed --> 4
117 > _TIM2_OC2PolarityConfig: (3)
118 + _assert_failed --> 4
119 > _TIM2_OC2PreloadConfig: (3)
120 + _assert_failed --> 4
121 > _TIM2_OC3Init: (8)
122 + _assert_failed --> 4
123 > _TIM2_OC3PolarityConfig: (3)
124 + _assert_failed --> 4
125 > _TIM2_OC3PreloadConfig: (3)
126 + _assert_failed --> 4
127 > _TIM2_PWMIConfig: (9)
128 + L3_TI1_Config --> 99
129 + L5_TI2_Config --> 100
130 + _TIM2_SetIC1Prescaler --> 102
131 + _TIM2_SetIC2Prescaler --> 104
132 + _assert_failed --> 4
133 > _TIM2_PrescalerConfig: (4)
134 + _assert_failed --> 4
135 > _TIM2_SelectOCxM: (4)
136 + _assert_failed --> 4
137 > _TIM2_SelectOnePulseMode: (3)
138 + _assert_failed --> 4
139 > _TIM2_SetCompare1: (2)
140 > _TIM2_SetCompare2: (2)
141 > _TIM2_SetCompare3: (2)
142 > _TIM2_UpdateDisableConfig: (3)
143 + _assert_failed --> 4
144 > _TIM2_UpdateRequestConfig: (3)
145 + _assert_failed --> 4
146 > _TIM3_ARRPreloadConfig: (3)
147 + _assert_failed --> 4
148 > _TIM3_CCxCmd: (4)
149 + _assert_failed --> 4
150 > _TIM3_ClearITPendingBit: (3)
151 + _assert_failed --> 4
152 > _TIM3_DeInit: (2)
153 > _TIM3_ForcedOC1Config: (3)
154 + _assert_failed --> 4
155 > _TIM3_ForcedOC2Config: (3)
156 + _assert_failed --> 4
157 > _TIM3_GenerateEvent: (3)
158 + _assert_failed --> 4
159 > _TIM3_GetCapture2: (6)
160 > _TIM3_GetCounter: (4)
161 > _TIM3_GetFlagStatus: (6)
162 + _assert_failed --> 4
163 > _TIM3_GetITStatus: (5)
164 + _assert_failed --> 4
165 > _TIM3_GetPrescaler: (2)
166 > _TIM3_ITConfig: (4)
167 + _assert_failed --> 4
168 > _TIM3_OC1Init: (8)
169 + _assert_failed --> 4
170 > _TIM3_OC1PolarityConfig: (3)
171 + _assert_failed --> 4
172 > _TIM3_OC1PreloadConfig: (3)
173 + _assert_failed --> 4
174 > _TIM3_OC2Init: (8)
175 + _assert_failed --> 4
176 > _TIM3_OC2PolarityConfig: (3)
177 + _assert_failed --> 4
178 > _TIM3_OC2PreloadConfig: (3)
179 + _assert_failed --> 4
180 > _TIM3_PWMIConfig: (9)
181 + L3_TI1_Config --> 99
182 + L5_TI2_Config --> 100
183 + _TIM3_SetIC1Prescaler: (3)
184 | + _assert_failed --> 4
|
185 + _TIM3_SetIC2Prescaler: (3)
186 | + _assert_failed --> 4
|
187 + _assert_failed --> 4
188 > _TIM3_PrescalerConfig: (4)
189 + _assert_failed --> 4
190 > _TIM3_SelectOCxM: (4)
191 + _assert_failed --> 4
192 > _TIM3_SelectOnePulseMode: (3)
193 + _assert_failed --> 4
194 > _TIM3_SetAutoreload: (2)
195 > _TIM3_SetCompare1: (2)
196 > _TIM3_SetCompare2: (2)
197 > _TIM3_SetCounter: (2)
198 > _TIM3_TimeBaseInit: (5)
199 > _TIM3_UpdateDisableConfig: (3)
200 + _assert_failed --> 4
201 > _TIM3_UpdateRequestConfig: (3)
202 + _assert_failed --> 4
203 > _TIM4_ARRPreloadConfig: (3)
204 + _assert_failed --> 4
205 > _TIM4_ClearITPendingBit: (3)
206 + _assert_failed --> 4
207 > _TIM4_DeInit: (2)
208 > _TIM4_GenerateEvent: (3)
209 + _assert_failed --> 4
210 > _TIM4_GetCounter: (2)
211 > _TIM4_GetFlagStatus: (4)
212 + _assert_failed --> 4
213 > _TIM4_GetITStatus: (5)
214 + _assert_failed --> 4
215 > _TIM4_GetPrescaler: (2)
216 > _TIM4_PrescalerConfig: (4)
217 + _assert_failed --> 4
218 > _TIM4_SelectOnePulseMode: (3)
219 + _assert_failed --> 4
220 > _TIM4_SetAutoreload: (2)
221 > _TIM4_SetCounter: (2)
222 > _TIM4_UpdateDisableConfig: (3)
223 + _assert_failed --> 4
224 > _TIM4_UpdateRequestConfig: (3)
225 + _assert_failed --> 4
226 > __stext: (0)
227 > _main: (2)
228 + _Beep_Config: (2)
229 | + _BEEP_Init: (3)
230 | | + _assert_failed --> 4
| |
231 | + _BEEP_LSICalibrationConfig: (12)
232 | | + _assert_failed --> 4
| |
233 | + _LSIMeasurment: (14)
234 | | + _CLK_GetClockFreq: (11)
235 | | + _TIM3_ClearFlag: (4)
236 | | | + _assert_failed --> 4
| | |
237 | | + _TIM3_Cmd: (3)
238 | | | + _assert_failed --> 4
| | |
239 | | + _TIM3_GetCapture1: (6)
240 | | + _TIM3_ICInit: (7)
241 | | | + L3_TI1_Config --> 99
242 | | | + L5_TI2_Config --> 100
243 | | | + _TIM3_SetIC1Prescaler --> 183
244 | | | + _TIM3_SetIC2Prescaler --> 185
245 | | | + _assert_failed --> 4
| | |
| |
|
246 + _ButtonsService: (3)
247 | + _FunctionStartGenerator: (2)
248 | | + _TIM2_Cmd: (3)
249 | | | + _assert_failed --> 4
| | |
250 | | + _TIM2_SetAutoreload: (2)
251 | | + _TIM2_SetCounter: (2)
| |
252 | + _FunctionStopGenerator: (2)
253 | | + _TIM2_Cmd --> 248
| |
254 | + _GPIO_ReadInputData: (2)
|
255 + _CLK_Config: (2)
256 | + _CLK_HSIPrescalerConfig: (3)
257 | | + _assert_failed --> 4
| |
258 | + _CLK_LSICmd: (3)
259 | | + _assert_failed --> 4
| |
260 | + _CLK_PeripheralClockConfig: (4)
261 | | + _assert_failed --> 4
| |
|
262 + _EncoderService: (9)
263 | + _FunctionStopGenerator --> 252
264 | + _GPIO_ReadInputData --> 254
265 | + _NumberToNumberShow: (8)
|
266 + _GPIO_Config: (2)
267 | + _GPIO_Init: (6)
268 | | + _assert_failed --> 4
| |
269 | + _GPIO_WriteLow: (5)
|
270 + _ITC_SetSoftwarePriority: (6)
271 | + _ITC_GetSoftIntStatus: (2)
272 | | + _ITC_GetCPUCC: (2)
| |
273 | + _assert_failed --> 4
|
274 + _SPI_Config: (2)
275 | + _SPI_Cmd --> 68
276 | + _SPI_Init: (11)
277 | | + _assert_failed --> 4
| |
|
278 + _ScreenUpdate: (2)
279 | + _GPIO_WriteLow --> 269
280 | + _SPI_ITConfig: (5)
281 | | + _assert_failed --> 4
| |
|
282 + _StartTestPulse: (2)
283 | + _TIM2_Cmd --> 248
284 | + _TIM2_SetAutoreload --> 250
285 | + _TIM2_SetCounter --> 251
|
286 + _TimeService: (2)
287 | + _FunctionStartGenerator --> 247
288 | + _FunctionStopGenerator --> 252
289 | + _NumberToNumberShow --> 265
290 | + _TIM2_Cmd --> 248
291 | + _TIM2_SetAutoreload --> 250
292 | + _TIM2_SetCounter --> 251
|
293 + _Timers_Config: (2)
294 | + _TIM2_ITConfig: (4)
295 | | + _assert_failed --> 4
| |
296 | + _TIM2_TimeBaseInit: (5)
297 | + _TIM4_ClearFlag: (3)
298 | | + _assert_failed --> 4
| |
299 | + _TIM4_Cmd: (3)
300 | | + _assert_failed --> 4
| |
301 | + _TIM4_ITConfig: (4)
302 | | + _assert_failed --> 4
| |
303 | + _TIM4_TimeBaseInit: (4)
304 | | + _assert_failed --> 4
| |
|
305 + _Variables_Config: (2)
306 | + _GPIO_ReadInputData --> 254
307 | + _NumberToNumberShow --> 265
|
308 > f_ADC1_IRQHandler: (6)
309 > f_AWU_IRQHandler: (6)
310 > f_CLK_IRQHandler: (6)
311 > f_EEPROM_EEC_IRQHandler: (6)
312 > f_EXTI_PORTA_IRQHandler: (6)
313 > f_EXTI_PORTB_IRQHandler: (6)
314 > f_EXTI_PORTC_IRQHandler: (6)
315 > f_EXTI_PORTD_IRQHandler: (6)
316 > f_EXTI_PORTE_IRQHandler: (6)
317 > f_I2C_IRQHandler: (6)
318 > f_NonHandledInterrupt: (6)
319 > f_SPI_IRQHandler: (6)
320 > f_TIM1_CAP_COM_IRQHandler: (6)
321 > f_TIM1_UPD_OVF_TRG_BRK_IRQHandler: (6)
322 > f_TIM2_CAP_COM_IRQHandler: (6)
323 > f_TIM2_UPD_OVF_BRK_IRQHandler: (6)
324 > f_TIM3_CAP_COM_IRQHandler: (6)
325 > f_TIM3_UPD_OVF_BRK_IRQHandler: (6)
326 > f_TIM4_UPD_OVF_IRQHandler: (6)
327 > f_TLI_IRQHandler: (6)
328 > f_TRAP_IRQHandler: (6)
329 > f_UART2_RX_IRQHandler: (6)
330 > f_UART2_TX_IRQHandler: (6)
331 L3_TI1_Config --> 99
332 L5_TI2_Config --> 100
333 L7_TI3_Config --> 101
334 _BEEP_Init --> 229
335 _BEEP_LSICalibrationConfig --> 231
336 _Beep_Config --> 228
337 _ButtonsService --> 246
338 _CLK_Config --> 255
339 _CLK_GetClockFreq --> 234
340 _CLK_HSIPrescalerConfig --> 256
341 _CLK_LSICmd --> 258
342 _CLK_PeripheralClockConfig --> 260
343 _EncoderService --> 262
344 _FunctionStartGenerator --> 247
345 _FunctionStopGenerator --> 252
346 _GPIO_Config --> 266
347 _GPIO_Init --> 267
348 _GPIO_ReadInputData --> 254
349 _GPIO_WriteLow --> 269
350 _ITC_GetCPUCC --> 272
351 _ITC_GetSoftIntStatus --> 271
352 _ITC_SetSoftwarePriority --> 270
353 _LSIMeasurment --> 233
354 _NumberToNumberShow --> 265
355 _SPI_CalculateCRCCmd --> 66
356 _SPI_Cmd --> 68
357 _SPI_Config --> 274
358 _SPI_ITConfig --> 280
359 _SPI_Init --> 276
360 _ScreenUpdate --> 278
361 _StartTestPulse --> 282
362 _TIM2_Cmd --> 248
363 _TIM2_ITConfig --> 294
364 _TIM2_SetAutoreload --> 250
365 _TIM2_SetCounter --> 251
366 _TIM2_SetIC1Prescaler --> 102
367 _TIM2_SetIC2Prescaler --> 104
368 _TIM2_SetIC3Prescaler --> 106
369 _TIM2_TimeBaseInit --> 296
370 _TIM3_ClearFlag --> 235
371 _TIM3_Cmd --> 237
372 _TIM3_GetCapture1 --> 239