forked from jelinj8/dso203
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathapp1.map
1266 lines (1238 loc) · 77.2 KB
/
app1.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
Archive member included to satisfy reference by file (symbol)
/usr/lib/gcc/arm-none-eabi/9.2.0/../../../../arm-none-eabi/lib/thumb/v7/nofp/libc.a(lib_a-memcmp.o)
Main.o (memcmp)
/usr/lib/gcc/arm-none-eabi/9.2.0/../../../../arm-none-eabi/lib/thumb/v7/nofp/libc.a(lib_a-memcpy.o)
Files.o (memcpy)
/usr/lib/gcc/arm-none-eabi/9.2.0/../../../../arm-none-eabi/lib/thumb/v7/nofp/libc.a(lib_a-memset.o)
Files.o (memset)
/usr/lib/gcc/arm-none-eabi/9.2.0/../../../../arm-none-eabi/lib/thumb/v7/nofp/libc.a(lib_a-strcpy.o)
Menu.o (strcpy)
/usr/lib/gcc/arm-none-eabi/9.2.0/thumb/v7/nofp/libgcc.a(_udivsi3.o)
Draw.o (__aeabi_uidiv)
/usr/lib/gcc/arm-none-eabi/9.2.0/thumb/v7/nofp/libgcc.a(_divsi3.o)
Calibrat.o (__aeabi_idiv)
/usr/lib/gcc/arm-none-eabi/9.2.0/thumb/v7/nofp/libgcc.a(_dvmd_tls.o)
/usr/lib/gcc/arm-none-eabi/9.2.0/thumb/v7/nofp/libgcc.a(_udivsi3.o) (__aeabi_idiv0)
Memory Configuration
Name Origin Length Attributes
rom 0x000000000800c000 0x0000000000010000 xr
extra 0x0000000008048000 0x0000000000020000 xr
ram 0x0000000020003000 0x000000000000c000 xrw
*default* 0x0000000000000000 0xffffffffffffffff
Linker script and memory map
LOAD Calibrat.o
LOAD Draw.o
LOAD Files.o
LOAD Function.o
LOAD Interrupt.o
LOAD Main.o
LOAD Menu.o
LOAD Process.o
LOAD BIOS.o
LOAD startup.o
LOAD stm32f10x_nvic.o
LOAD cortexm3_macro.o
LOAD /usr/lib/gcc/arm-none-eabi/9.2.0/../../../../arm-none-eabi/lib/thumb/v7/nofp/libc.a
START GROUP
LOAD /usr/lib/gcc/arm-none-eabi/9.2.0/thumb/v7/nofp/libgcc.a
LOAD /usr/lib/gcc/arm-none-eabi/9.2.0/../../../../arm-none-eabi/lib/thumb/v7/nofp/libc.a
END GROUP
0x000000002000e400 _estack = ((ORIGIN (ram) + LENGTH (ram)) - 0xc00)
0x0000000000000000 . = 0x0
.bios 0x0000000008004200 0xb8
BIOS.o()
.text 0x0000000008004200 0x9e BIOS.o
0x0000000008004200 __CTR_HP
0x0000000008004204 __USB_Istr
0x0000000008004208 __LCD_Initial
0x000000000800420c __Point_SCR
0x0000000008004210 __LCD_SetPixl
0x0000000008004214 __Clear_Screen
0x0000000008004218 __Get_TAB_8x14
0x000000000800421c __LCD_Set_Block
0x0000000008004220 __LCD_DMA_Ready
0x0000000008004224 __LCD_Copy
0x0000000008004228 __LCD_Fill
0x000000000800422c __Row_DMA_Ready
0x0000000008004230 __Row_Copy
0x0000000008004234 __Read_FIFO
0x0000000008004238 __Input_Lic
0x000000000800423c __GetDev_SN
0x0000000008004240 __Chk_SYS
0x0000000008004244 __Ident
0x0000000008004248 __Display_Str
0x000000000800424c __Set
0x0000000008004250 __Set_Param
0x0000000008004254 __Get
0x0000000008004258 __ExtFlash_PageWR
0x000000000800425c __ExtFlash_PageRD
0x0000000008004260 __ReadDiskData
0x0000000008004264 __ProgDiskPage
0x0000000008004268 __LCD_GetPixl
0x000000000800426c __USB_Init
0x0000000008004270 __FLASH_Erase
0x0000000008004274 __FLASH_Prog
0x0000000008004278 __FLASH_Unlock
0x000000000800427c __FLASH_Lock
0x0000000008004280 __Chk_DFU
0x0000000008004284 __Chk_HDW
0x0000000008004288 __OpenFileWr
0x000000000800428c __OpenFileRd
0x0000000008004290 __ReadFileSec
0x0000000008004294 __ProgFileSec
0x0000000008004298 __CloseFile
0x000000000800429c __Row_Fill
.data 0x000000000800429e 0x0 BIOS.o
.bss 0x000000000800429e 0x0 BIOS.o
.ARM.attributes
0x000000000800429e 0x1a BIOS.o
.isr_vector 0x000000000800c000 0xd454
0x000000000800c000 _vectors = .
*(.isr_vectors)
.isr_vectors 0x000000000800c000 0x130 startup.o
0x000000000800c000 g_pfnVectors
0x000000000800c130 . = ALIGN (0x4)
*(.text.startup)
.text.startup 0x000000000800c130 0x7784 Main.o
0x000000000800c130 main
Main.o(.text)
.text 0x00000000080138b4 0x1564 Main.o
0x0000000008013b04 MeterDefaults
0x0000000008013b1c DisableMeter
0x0000000008013ba0 EnableTitleMeters
0x0000000008013c24 UpdateBigMeters
0x0000000008013ccc EnableMeter
0x0000000008013dac UpdateMeterPage
0x0000000008013ee8 GetHoldoffIndPos
0x0000000008013f1c EnableChannel
0x0000000008013f70 UpdateTriggerMem
0x0000000008013f98 SelUpdate
0x0000000008013fc4 TriggFlagUpdate
0x0000000008013fe8 MessageHandler
0x0000000008013ffc CurDetailUpdate
0x000000000801402c ChannelStatus
0x0000000008014068 MeterUpdate
0x0000000008014098 TrigMemory
0x00000000080140dc BackLight
0x0000000008014118 PWMdutyControl
0x0000000008014168 PWMscaleReset
0x0000000008014190 SetIRQ2Priority
0x0000000008014218 BurstAdjust
0x0000000008014290 InitChart
0x0000000008014358 Config_init
0x0000000008014684 ConfigFile
0x0000000008014738 ProcessEditName
0x00000000080147d4 ResetEditList
0x0000000008014878 CursorSpeedLogic
0x00000000080148d0 UpdateFrameMode
0x0000000008014a64 LeftToggleSpecialFunctions
Calibrat.o(.text)
.text 0x0000000008014e18 0x17c0 Calibrat.o
0x0000000008014e18 ClearTop
0x0000000008014e4c Calibrat
*(.rodata*)
.rodata.str1.4
0x00000000080165d8 0x38d Calibrat.o
0x3a1 (size before relaxing)
*fill* 0x0000000008016965 0x3
.rodata 0x0000000008016968 0x228 Calibrat.o
0x0000000008016a08 CenterStep
0x0000000008016a28 CenterStr
0x0000000008016a64 VS_STR
0x0000000008016ac4 ClockEntry
0x0000000008016b88 V_UNIT1
.rodata.str1.4
0x0000000008016b90 0x2c Draw.o
0x34 (size before relaxing)
.rodata 0x0000000008016bbc 0x9d7 Draw.o
0x0000000008016ea4 Mark_TAB
0x0000000008016ec8 RULE_BASE
0x0000000008016ed8 DetFrqAdj
0x0000000008016f0c DbScale
0x0000000008016f2c CursorTypeStr
0x0000000008016f40 FrameCountRef
0x0000000008016f6c Char_TAB_8x11
0x000000000801756c Mark_TAB_T
0x0000000008017574 Mark_TAB_4
0x000000000801757c Mark_TAB_3
0x0000000008017584 Mark_TAB_2
0x000000000801758c Mark_TAB_1
*fill* 0x0000000008017593 0x1
.rodata.str1.4
0x0000000008017594 0x8c Files.o
.rodata 0x0000000008017620 0x3ac Files.o
0x0000000008017620 DiskDevInfo_8M
0x0000000008017630 Clk
0x0000000008017648 BMP_Color
0x0000000008017678 ErrorCode
0x0000000008017724 SubSamplingPeriod
0x000000000801778c OSsampling
0x00000000080177c4 Offset
0x00000000080177cc DigSampling
0x00000000080177fc AmplitudeX10Steps
0x000000000801782c AmplitudeSteps
0x000000000801785c Sampling
0x0000000008017894 BmpHead64
0x00000000080178d8 BmpHead16
0x0000000008017910 SamplingPeriod
0x00000000080179c0 SPeriod
0x00000000080179c8 FatStart
.rodata 0x00000000080179cc 0x12e Function.o
0x00000000080179f8 SineQuad
*fill* 0x0000000008017afa 0x2
.rodata.str1.4
0x0000000008017afc 0x5a4 Main.o
0x5b0 (size before relaxing)
.rodata 0x00000000080180a0 0x2a1 Main.o
0x00000000080182d8 TrigReset
0x0000000008018304 NoneStr
0x0000000008018314 NoteTimer
0x000000000801831c DisableSTR
*fill* 0x0000000008018341 0x3
.rodata 0x0000000008018344 0x79e Menu.o
0x00000000080183e8 Y_INV
0x00000000080183f4 METER
0x0000000008018430 Y_COLOR
0x000000000801843c T_UNIT
0x0000000008018448 FFT_GAIN_STR
0x0000000008018484 TIM2Speed
0x0000000008018490 GEN_UART_MODE_STR
0x00000000080184a8 X100TbaseScale
0x00000000080184b8 TrunkFactor
0x00000000080184c0 F_UNIT
0x00000000080184cc V_UNIT
0x00000000080184d8 S_UNIT
0x00000000080184e4 F_UNITSUB
0x00000000080184f0 P_UNIT
0x00000000080184fc MM_UNIT
0x000000000801850c DD_UNIT
0x000000000801851c H_UNIT
0x000000000801852c M_UNIT
0x000000000801853c D_UNIT
0x000000000801854c VV_UNIT
0x0000000008018558 XY_CH_A_STR
0x000000000801858c XY_CH_B_STR
0x00000000080185c0 Vol_Str
0x00000000080185c8 BL_Str
0x00000000080185d0 DELTA_T
0x00000000080185d8 DELTA_V
0x00000000080185ec F_INV
0x00000000080185f0 F_EXT
0x0000000008018640 F_FUNC
0x0000000008018658 T_COLOR
0x000000000801865c T_INV
0x0000000008018660 V_COLOR
0x0000000008018664 V_INV
0x0000000008018668 VERNIE4
0x0000000008018670 VERNIE3
0x0000000008018678 VERNIE2
0x0000000008018680 VERNIE1
0x0000000008018688 DELAY_STR
0x000000000801868c VT_STR
0x0000000008018690 TR_TYPE
0x00000000080186ec TRIGSTR
0x0000000008018720 SubStr
0x00000000080187a4 FO_STR
0x000000000801888c FO_TYPE
0x00000000080188e8 XCOLOR
0x00000000080188ec XPOSISTR
0x00000000080188f4 MODESTR
0x000000000801893c YPOSISTR
0x0000000008018944 YCOUPLE_B
0x0000000008018978 YCOUPLE
0x00000000080189c0 NO_DEF
0x00000000080189c4 NO_RANGE
0x00000000080189c8 CH_D_STR
0x0000000008018a68 CH_C_STR
0x0000000008018a7c B_COLOR
0x0000000008018a88 BATT_STR
0x0000000008018abc S_Inv
0x0000000008018ac4 STATESTR
*fill* 0x0000000008018ae2 0x2
.rodata.str1.4
0x0000000008018ae4 0x280 Menu.o
0x296 (size before relaxing)
.rodata 0x0000000008018d64 0x6f0 Process.o
0x0000000008018e20 A_Freq
0x0000000008018e68 TbaseSub
0x0000000008018ed0 Log10Mant
0x0000000008018f34 ScaleIndex
0x0000000008018f48 DIGI_DATA
0x0000000008018f4c Sine100K
0x0000000008018f70 Triangle100K
0x0000000008018f94 Sine200K
0x0000000008018fa8 Triangle200K
0x0000000008018fbc TimeBase
0x0000000008018fe8 A_Tab
0x000000000801900c TbaseOS
0x0000000008019050 Wait
0x000000000801907c shortwait
0x00000000080190a8 TrigDelayLoop
0x00000000080190bc AltDelay
0x00000000080190e8 SIN_QUAD
0x0000000008019254 Window
.extra 0x0000000008048000 0x179d4
0x0000000008048000 . = ALIGN (0x4)
*(.text*)
.text 0x0000000008048000 0x6248 Draw.o
0x0000000008048034 Get_TAB_8x11
0x0000000008048048 Print_Str
0x0000000008048184 PrintText
0x000000000804821c PrintConfigName
0x0000000008048280 Print_Str2
0x000000000804841c Draw_Mark
0x00000000080485f4 Update_View_Area
0x00000000080488e8 InitiateCharArrays
0x000000000804892c LoadChars
0x0000000008048eb8 Uart
0x0000000008049234 IndexPosition
0x0000000008049274 BitReadPosition
0x000000000804940c Spi
0x0000000008049800 i2c
0x0000000008049a60 LoadBuffer
0x0000000008049d08 Print_Str_Row
0x0000000008049dd4 DisplayDetFrqn
0x000000000804a1c4 SpiChart
0x000000000804a3dc PrintDir
0x000000000804a668 LoadXYBuffer
0x000000000804a978 PrintUart
0x000000000804b75c DisplayDbScale
0x000000000804b9ec DisplayFFtValues
0x000000000804bcb8 LoadFFTbuffer
0x000000000804c010 VernierMark
0x000000000804c038 LoadBaseBuffers
0x000000000804c09c TraceShadow
0x000000000804c0d8 Base1
0x000000000804c0fc ClearFFTbuffer
0x000000000804c114 ScaleXposi
0x000000000804c184 ClearScreenArea
0x000000000804c1d0 Clear_Meter_Area
0x000000000804c1f8 NFreqParse
0x000000000804c250 ColorIndexGen
0x000000000804c34c DrawPixel
0x000000000804c360 DrawBase
0x000000000804c388 UartLogic
0x000000000804c3c4 i2cLogic
0x000000000804c400 SpiLogic
0x000000000804c43c Update_Mark
0x000000000804c710 UpdateMarkLogic
0x000000000804c748 DisplayDeltaValues
0x000000000804c894 DisplayCursorValues
0x000000000804c9c0 Draw_Row
0x000000000804d454 Draw_Window
.text 0x000000000804e248 0x32b0 Files.o
0x000000000804e424 InitFileSystem
0x000000000804e440 Print_Clk
0x000000000804e480 Make_Filename
0x000000000804e4b8 Color_Num
0x000000000804e5e8 Load_Dat
0x000000000804e6e8 Load_Bmp
0x000000000804e918 WriteFileSec
0x000000000804e960 Save_Img
0x000000000804eaa0 Save_Dat
0x000000000804ec08 Load_Arbt
0x000000000804ede0 DeleteFile
0x000000000804eff8 FileMessage
0x000000000804f0a8 ReadDir
0x000000000804f1e0 FileEntryAdd
0x000000000804f254 Load_Uart
0x000000000804f340 Load_Buf
0x000000000804f624 save_parameter
0x000000000804f644 reset_parameter
0x000000000804f77c WriteSector
0x000000000804f7a0 CSVdataModeLogic
0x000000000804f814 CSVdata
0x000000000804f8c4 OverWriteWarn
0x000000000804f95c Save_Bmp
0x000000000804fbcc Save_Buf
0x000000000804fe8c Save_Csv
0x0000000008050780 ProcessConfigName
0x00000000080507f0 Load_Param
0x0000000008050e70 Save_Param
0x00000000080514dc UpdateFileMenu
.text 0x00000000080514f8 0xef0 Function.o
0x00000000080514f8 LoadNwave
0x000000000805154c Power
0x0000000008051574 Delayms
0x0000000008051584 Int2Str
0x00000000080519c8 u8ToDec3
0x0000000008051a24 u32ToDec7
0x0000000008051a5c s8ToPercen
0x0000000008051ab0 u8ToDec2
0x0000000008051ae4 Char2Hex
0x0000000008051b08 Word2Hex
0x0000000008051b54 Int_sqrt
0x0000000008051b9c Read_Keys
0x0000000008051e2c s16ToDec3
0x0000000008051e84 AsciiToU16
0x0000000008051f00 s8ToDec2
0x0000000008051f54 S32ToFloat3
0x00000000080520e4 fix_fft
0x0000000008052290 ProcessFileName
.text 0x00000000080523e8 0xa40 Interrupt.o
0x00000000080523e8 NMIException
0x00000000080523ec HardFaultException
0x00000000080523f0 MemManageException
0x00000000080523f4 BusFaultException
0x00000000080523f8 UsageFaultException
0x00000000080523fc DebugMonitor
0x0000000008052400 SVCHandler
0x0000000008052404 PendSVC
0x0000000008052408 SysTickHandler
0x000000000805240c WWDG_IRQHandler
0x0000000008052410 PVD_IRQHandler
0x0000000008052414 TAMPER_IRQHandler
0x0000000008052418 RTC_IRQHandler
0x000000000805241c FLASH_IRQHandler
0x0000000008052420 RCC_IRQHandler
0x0000000008052424 EXTI0_IRQHandler
0x0000000008052428 EXTI1_IRQHandler
0x000000000805242c EXTI2_IRQHandler
0x0000000008052430 EXTI3_IRQHandler
0x0000000008052434 EXTI4_IRQHandler
0x0000000008052438 DMA1_Channel1_IRQHandler
0x000000000805243c DMA1_Channel2_IRQHandler
0x0000000008052440 DMA1_Channel3_IRQHandler
0x0000000008052444 DMA1_Channel4_IRQHandler
0x0000000008052448 DMA1_Channel5_IRQHandler
0x000000000805244c DMA1_Channel6_IRQHandler
0x0000000008052450 DMA1_Channel7_IRQHandler
0x0000000008052454 ADC1_2_IRQHandler
0x0000000008052458 USB_HP_CAN_TX_IRQHandler
0x0000000008052464 USB_LP_CAN_RX0_IRQHandler
0x0000000008052470 CAN_RX1_IRQHandler
0x0000000008052474 CAN_SCE_IRQHandler
0x0000000008052478 EXTI9_5_IRQHandler
0x000000000805247c TIM1_BRK_IRQHandler
0x0000000008052480 TIM1_UP_IRQHandler
0x0000000008052484 TIM1_TRG_COM_IRQHandler
0x0000000008052488 TIM1_CC_IRQHandler
0x000000000805248c TIM2_IRQHandler
0x000000000805294c TIM3_IRQHandler
0x0000000008052b88 TIM4_IRQHandler
0x0000000008052db4 I2C1_EV_IRQHandler
0x0000000008052db8 I2C1_ER_IRQHandler
0x0000000008052dbc I2C2_EV_IRQHandler
0x0000000008052dc0 I2C2_ER_IRQHandler
0x0000000008052dc4 SPI1_IRQHandler
0x0000000008052dc8 SPI2_IRQHandler
0x0000000008052dcc USART1_IRQHandler
0x0000000008052dd0 USART2_IRQHandler
0x0000000008052dd4 USART3_IRQHandler
0x0000000008052dd8 EXTI15_10_IRQHandler
0x0000000008052ddc RTCAlarm_IRQHandler
0x0000000008052de0 USBWakeUp_IRQHandler
0x0000000008052de4 TIM8_BRK_IRQHandler
0x0000000008052de8 TIM8_UP_IRQHandler
0x0000000008052dec TIM8_TRG_COM_IRQHandler
0x0000000008052df0 TIM8_CC_IRQHandler
0x0000000008052df4 ADC3_IRQHandler
0x0000000008052df8 FSMC_IRQHandler
0x0000000008052dfc SDIO_IRQHandler
0x0000000008052e00 TIM5_IRQHandler
0x0000000008052e04 SPI3_IRQHandler
0x0000000008052e08 UART4_IRQHandler
0x0000000008052e0c UART5_IRQHandler
0x0000000008052e10 TIM6_IRQHandler
0x0000000008052e14 TIM7_IRQHandler
0x0000000008052e18 DMA2_Channel1_IRQHandler
0x0000000008052e1c DMA2_Channel2_IRQHandler
0x0000000008052e20 DMA2_Channel3_IRQHandler
0x0000000008052e24 DMA2_Channel4_5_IRQHandler
.text 0x0000000008052e28 0x521c Menu.o
0x0000000008052e54 Display_Meter
0x0000000008052f8c Load_Attr
0x0000000008053028 Update_Battery
0x0000000008053128 DisplayBigMeter
0x00000000080533cc TimeScaleCorrection
0x0000000008053450 UpScale
0x00000000080534dc CalculateTimeMeters
0x00000000080536ec Period
0x0000000008053804 ClockAdjust
0x0000000008053870 MeterChannelLogic
0x000000000805393c FFTlevel
0x0000000008053a84 OutputAdjust
0x0000000008053d08 TIM_2IRQControl
0x0000000008053de8 DisplaySamples
0x0000000008054da8 GenTrigColor
0x0000000008054e48 UpdatePWMDuty
0x0000000008054ec8 SyncSweep
0x0000000008054fbc DetStatusLogic
0x000000000805500c ChDetLogic
0x0000000008055054 AlignTbaseSweep
0x000000000805516c ChartLogic
0x0000000008055190 ListLogic
0x00000000080551ac EditListActive
0x00000000080551dc UpdateEditBox
0x0000000008055290 KpCompensation
0x000000000805531c Display_Value
0x0000000008056078 CalculateTvernier
0x0000000008056964 ProcessCursorDisplayStr
0x0000000008056988 CalculateVvernier
0x0000000008056b08 Display_Title
0x0000000008057654 AutoSet
.text 0x0000000008058044 0x6d50 Process.o
0x0000000008058078 BackGround_Reset
0x0000000008058138 App_init
0x000000000805817c ResetDMA2_Ch4Params
0x00000000080581e8 CalculateArbtTimer
0x00000000080582a8 UpdateTLevels
0x0000000008058324 Send_Data
0x0000000008058504 get_bag_max_buf
0x00000000080585f8 Beeper
0x000000000805862c cleardatabuf
0x0000000008058714 TransferFIFO
0x0000000008058af8 SetOffset
0x0000000008058b60 InterpolateS8
0x0000000008058ba0 InterpolateU16
0x0000000008058be0 BatLevelCompensation
0x0000000008058d2c QParam
0x0000000008058e90 QError
0x0000000008058f14 VRunAvg
0x0000000008058f54 RunAvg
0x0000000008058f98 Average
0x0000000008059150 ClearMinMax
0x00000000080591a4 ClearHold
0x00000000080591e0 ClearTrackBuff
0x0000000008059248 Log10Process
0x00000000080592c4 WaveValue
0x0000000008059334 WaveGen
0x000000000805964c InitiateCalData
0x0000000008059704 InitiateOSBuffers
0x000000000805979c RandomGen
0x00000000080597c0 TriggerModeLogic
0x0000000008059810 OSBufferLogic
0x0000000008059898 Update_Trig
0x0000000008059e00 Update_Output
0x000000000805a410 Update_Range
0x000000000805a4f8 AlternateChannel
0x000000000805a6ec Update_Base
0x000000000805a704 GetXposRef
0x000000000805a7a4 GetXpos
0x000000000805a820 CursorDisplaySelectLogic
0x000000000805a904 UpdateCursorMeter
0x000000000805a944 DownConvertRestore
0x000000000805a9cc FFTdownConvert
0x000000000805b12c ResetSum
0x000000000805b210 Process
0x000000000805e3c4 ClearMeters
0x000000000805e400 Synchro
.text 0x000000000805ed94 0xd4 startup.o
0x000000000805ed94 DebugMon_Handler
0x000000000805ed94 SysTick_Handler
0x000000000805ed94 PendSV_Handler
0x000000000805ed94 UsageFault_Handler
0x000000000805ed94 CAN1_RX1_IRQHandler
0x000000000805ed94 Default_Handler
0x000000000805ed94 MemManage_Handler
0x000000000805ed94 SVC_Handler
0x000000000805ed94 USB_LP_CAN1_RX0_IRQHandler
0x000000000805ed94 USB_HP_CAN1_TX_IRQHandler
0x000000000805ed94 CAN1_SCE_IRQHandler
0x000000000805ed94 BusFault_Handler
0x000000000805ed94 MMI_Handler
0x000000000805ed98 Reset_Handler
0x000000000805ee04 __Init_Data
0x000000000805ee64 _init
.text 0x000000000805ee68 0x320 stm32f10x_nvic.o
0x000000000805ee68 NVIC_DeInit
0x000000000805eea0 NVIC_SCBDeInit
0x000000000805eed4 NVIC_PriorityGroupConfig
0x000000000805eee8 NVIC_Init
0x000000000805ef60 NVIC_StructInit
0x000000000805ef6c NVIC_SETPRIMASK
0x000000000805ef70 NVIC_RESETPRIMASK
0x000000000805ef74 NVIC_SETFAULTMASK
0x000000000805ef78 NVIC_RESETFAULTMASK
0x000000000805ef7c NVIC_BASEPRICONFIG
0x000000000805ef84 NVIC_GetBASEPRI
0x000000000805ef88 NVIC_GetCurrentPendingIRQChannel
0x000000000805ef98 NVIC_GetIRQChannelPendingBitStatus
0x000000000805efbc NVIC_SetIRQChannelPendingBit
0x000000000805efc8 NVIC_ClearIRQChannelPendingBit
0x000000000805efe4 NVIC_GetCurrentActiveHandler
0x000000000805eff4 NVIC_GetIRQChannelActiveBitStatus
0x000000000805f018 NVIC_GetCPUID
0x000000000805f024 NVIC_SetVectorTable
0x000000000805f038 NVIC_GenerateSystemReset
0x000000000805f048 NVIC_GenerateCoreReset
0x000000000805f058 NVIC_SystemLPConfig
0x000000000805f070 NVIC_SystemHandlerConfig
0x000000000805f090 NVIC_SystemHandlerPriorityConfig
0x000000000805f0dc NVIC_GetSystemHandlerPendingBitStatus
0x000000000805f0f8 NVIC_SetSystemHandlerPendingBit
0x000000000805f110 NVIC_ClearSystemHandlerPendingBit
0x000000000805f128 NVIC_GetSystemHandlerActiveBitStatus
0x000000000805f144 NVIC_GetFaultHandlerSources
0x000000000805f178 NVIC_GetFaultAddress
.text 0x000000000805f188 0x7a cortexm3_macro.o
0x000000000805f188 __WFI
0x000000000805f18c __WFE
0x000000000805f190 __SEV
0x000000000805f194 __ISB
0x000000000805f19a __DSB
0x000000000805f1a0 __DMB
0x000000000805f1a6 __SVC
0x000000000805f1aa __MRS_CONTROL
0x000000000805f1b0 __MSR_CONTROL
0x000000000805f1ba __MRS_PSP
0x000000000805f1c0 __MSR_PSP
0x000000000805f1c6 __MRS_MSP
0x000000000805f1cc __MSR_MSP
0x000000000805f1d2 __RESETPRIMASK
0x000000000805f1d6 __SETPRIMASK
0x000000000805f1da __READ_PRIMASK
0x000000000805f1e0 __RESETFAULTMASK
0x000000000805f1e4 __SETFAULTMASK
0x000000000805f1e8 __READ_FAULTMASK
0x000000000805f1ee __BASEPRICONFIG
0x000000000805f1f4 __GetBASEPRI
0x000000000805f1fa __REV_HalfWord
0x000000000805f1fe __REV_Word
.text 0x000000000805f202 0x0 /usr/lib/gcc/arm-none-eabi/9.2.0/../../../../arm-none-eabi/lib/thumb/v7/nofp/libc.a(lib_a-memcmp.o)
*fill* 0x000000000805f202 0x2
.text.memcmp 0x000000000805f204 0x5c /usr/lib/gcc/arm-none-eabi/9.2.0/../../../../arm-none-eabi/lib/thumb/v7/nofp/libc.a(lib_a-memcmp.o)
0x000000000805f204 memcmp
.text 0x000000000805f260 0xec /usr/lib/gcc/arm-none-eabi/9.2.0/../../../../arm-none-eabi/lib/thumb/v7/nofp/libc.a(lib_a-memcpy.o)
0x000000000805f260 memcpy
.text 0x000000000805f34c 0x0 /usr/lib/gcc/arm-none-eabi/9.2.0/../../../../arm-none-eabi/lib/thumb/v7/nofp/libc.a(lib_a-memset.o)
.text.memset 0x000000000805f34c 0xa0 /usr/lib/gcc/arm-none-eabi/9.2.0/../../../../arm-none-eabi/lib/thumb/v7/nofp/libc.a(lib_a-memset.o)
0x000000000805f34c memset
.text 0x000000000805f3ec 0x0 /usr/lib/gcc/arm-none-eabi/9.2.0/../../../../arm-none-eabi/lib/thumb/v7/nofp/libc.a(lib_a-strcpy.o)
.text.strcpy 0x000000000805f3ec 0xbc /usr/lib/gcc/arm-none-eabi/9.2.0/../../../../arm-none-eabi/lib/thumb/v7/nofp/libc.a(lib_a-strcpy.o)
0x000000000805f3ec strcpy
.text 0x000000000805f4a8 0x278 /usr/lib/gcc/arm-none-eabi/9.2.0/thumb/v7/nofp/libgcc.a(_udivsi3.o)
0x000000000805f4a8 __udivsi3
0x000000000805f4a8 __aeabi_uidiv
0x000000000805f704 __aeabi_uidivmod
.text 0x000000000805f720 0x2b0 /usr/lib/gcc/arm-none-eabi/9.2.0/thumb/v7/nofp/libgcc.a(_divsi3.o)
0x000000000805f720 __aeabi_idiv
0x000000000805f720 __divsi3
0x000000000805f9b4 __aeabi_idivmod
.text 0x000000000805f9d0 0x4 /usr/lib/gcc/arm-none-eabi/9.2.0/thumb/v7/nofp/libgcc.a(_dvmd_tls.o)
0x000000000805f9d0 __aeabi_ldiv0
0x000000000805f9d0 __aeabi_idiv0
.text 0x0000000008019454 0x0
0x0000000008019454 . = ALIGN (0x4)
0x0000000008019454 _etext = .
0x0000000008019454 _sidata = _etext
.glue_7 0x0000000008019454 0x0
.glue_7 0x0000000008019454 0x0 linker stubs
.glue_7t 0x0000000008019454 0x0
.glue_7t 0x0000000008019454 0x0 linker stubs
.vfp11_veneer 0x0000000008019454 0x0
.vfp11_veneer 0x0000000008019454 0x0 linker stubs
.v4_bx 0x0000000008019454 0x0
.v4_bx 0x0000000008019454 0x0 linker stubs
.iplt 0x0000000008019454 0x0
.iplt 0x0000000008019454 0x0 Calibrat.o
.rel.dyn 0x0000000008019454 0x0
.rel.iplt 0x0000000008019454 0x0 Calibrat.o
.data 0x0000000020003000 0x6fc load address 0x0000000008019454
0x0000000020003000 _sdata = .
*(.data*)
.data 0x0000000020003000 0x0 Calibrat.o
.data 0x0000000020003000 0x4b Draw.o
0x0000000020003000 Color
0x0000000020003020 V_Trigg
0x0000000020003030 SpiNumBits
0x0000000020003032 TcurDelta
0x0000000020003034 FrameSize
0x0000000020003038 Mask
0x000000002000303a ClockPeriod
0x000000002000303c Limit
0x000000002000303e ChartIndex
0x0000000020003040 COLOR_INDEX
0x0000000020003044 XYLimit
0x0000000020003046 InitXY
0x0000000020003048 SpecRow
0x000000002000304a DataSize
*fill* 0x000000002000304b 0x1
.data 0x000000002000304c 0x18 Files.o
0x000000002000304c RootStart
0x0000000020003050 RootStop
0x0000000020003054 LastAccessedConfig
0x0000000020003060 Ext
.data 0x0000000020003064 0x0 Function.o
.data 0x0000000020003064 0x29 Interrupt.o
0x0000000020003064 FineAdjust
0x0000000020003068 FineAdjustFactor
0x000000002000308a FineAdjustLimit
0x000000002000308b Tim2Factor
0x000000002000308c Volume
*fill* 0x000000002000308d 0x3
.data 0x0000000020003090 0x90 Main.o
0x0000000020003090 UpdateMeter
0x0000000020003094 C_Dmeter
0x000000002000309c Timeout
0x00000000200030a0 Show
0x00000000200030e0 ChOnStatus
0x00000000200030e4 DisplayChart
.data 0x0000000020003120 0x544 Menu.o
0x0000000020003120 Meter
0x000000002000318c EnablePWM
0x000000002000318d SweepIndex
0x000000002000318e SweepMod
0x000000002000318f SweepStep
0x0000000020003190 GenBaudRate
0x0000000020003194 GenUartMode
0x0000000020003198 EditChar
0x00000000200031a8 MinTresh
0x00000000200031ac CH_A_STR
0x00000000200031e0 CH_B_STR
0x0000000020003214 O_COLOR
0x0000000020003218 x10
0x0000000020003250 Title
0x0000000020003660 Update
0x0000000020003661 CharValue
0x0000000020003662 GenBaudIndex
.data 0x0000000020003664 0x95 Process.o
0x0000000020003664 Ch1TLevel
0x0000000020003666 Ch2TLevel
0x0000000020003668 BufferSize
0x000000002000366a ADCoffset
0x000000002000366c bag_max_buf
0x000000002000366e TrigSourceEnable
0x0000000020003678 ScalingOffset
0x0000000020003680 TempKp1
0x0000000020003684 InvTrig
0x000000002000368c PrevSource
0x000000002000368d PrevKind
0x000000002000368e StartOffset
0x000000002000368f M_Factor
0x0000000020003690 D_Tab
0x00000000200036ec PrevSweepIndex
0x00000000200036f0 USART1_DR
0x00000000200036f4 EnablePaS
0x00000000200036f5 ScrollFlag
0x00000000200036f6 Normal
0x00000000200036f7 FastMode
0x00000000200036f8 Filter
.data 0x00000000200036f9 0x0 startup.o
.data 0x00000000200036f9 0x0 stm32f10x_nvic.o
.data 0x00000000200036f9 0x0 cortexm3_macro.o
.data 0x00000000200036f9 0x0 /usr/lib/gcc/arm-none-eabi/9.2.0/../../../../arm-none-eabi/lib/thumb/v7/nofp/libc.a(lib_a-memcmp.o)
.data 0x00000000200036f9 0x0 /usr/lib/gcc/arm-none-eabi/9.2.0/../../../../arm-none-eabi/lib/thumb/v7/nofp/libc.a(lib_a-memcpy.o)
.data 0x00000000200036f9 0x0 /usr/lib/gcc/arm-none-eabi/9.2.0/../../../../arm-none-eabi/lib/thumb/v7/nofp/libc.a(lib_a-memset.o)
.data 0x00000000200036f9 0x0 /usr/lib/gcc/arm-none-eabi/9.2.0/../../../../arm-none-eabi/lib/thumb/v7/nofp/libc.a(lib_a-strcpy.o)
.data 0x00000000200036f9 0x0 /usr/lib/gcc/arm-none-eabi/9.2.0/thumb/v7/nofp/libgcc.a(_udivsi3.o)
.data 0x00000000200036f9 0x0 /usr/lib/gcc/arm-none-eabi/9.2.0/thumb/v7/nofp/libgcc.a(_divsi3.o)
.data 0x00000000200036f9 0x0 /usr/lib/gcc/arm-none-eabi/9.2.0/thumb/v7/nofp/libgcc.a(_dvmd_tls.o)
0x00000000200036fc . = ALIGN (0x4)
*fill* 0x00000000200036f9 0x3
0x00000000200036fc _edata = .
.igot.plt 0x00000000200036fc 0x0 load address 0x0000000008019b50
.igot.plt 0x00000000200036fc 0x0 Calibrat.o
.bss 0x00000000200036fc 0x9f64 load address 0x0000000008019454
0x00000000200036fc _sbss = .
*(.bss)
.bss 0x00000000200036fc 0x3 Calibrat.o
0x00000000200036fc PPM_Comp
0x00000000200036fe CalibrateMode
*fill* 0x00000000200036ff 0x1
.bss 0x0000000020003700 0xf24 Draw.o
0x0000000020003700 SkipFirstRow
0x0000000020003701 OSBuffer
0x0000000020003704 AscChar
0x000000002000376c AscCharB
0x00000000200037d2 ArrayIndex
0x00000000200037d4 HexLookup
0x00000000200037d8 BitDuration
0x00000000200037da Parity
0x00000000200037db ValidFrame
0x00000000200037dc SpiMode
0x00000000200037e2 WordEndFlag
0x00000000200037e3 SpiBitOrder
0x00000000200037e4 DigChLockout
0x00000000200037e5 ListBottom
0x00000000200037e6 skip
0x00000000200037e8 Raw
0x00000000200037ec DetFrqn
0x0000000020003812 XYper
0x0000000020003814 FactorX
0x0000000020003816 MAX_X
0x0000000020003818 FactorY13
0x000000002000381a FactorY
0x000000002000381c OffsetX
0x000000002000381d OffsetY
0x000000002000381f SpiChartFlag
0x0000000020003820 RowMemPeak
0x0000000020003824 Nsuffix
0x0000000020003828 Nfreq
0x0000000020003831 ClearPerst
0x0000000020003832 UpdateBackground
0x0000000020003834 RowMem
0x0000000020003838 Tmp2
0x000000002000383c CursorDisplaySelect
0x000000002000383d Hbold
0x000000002000383e EnableCursorDisplay
0x0000000020003840 Count_FPS
0x0000000020003842 PerstFrameNumber
0x0000000020003843 FrameCount
0x0000000020003844 Rdiscard
0x0000000020003845 SpecMode
0x0000000020003846 SpecLine
0x0000000020003847 UpdateScale
0x0000000020003848 Base2Buffer
0x00000000200039dc Base3Buffer
0x0000000020003b70 Base4Buffer
0x0000000020003d04 LCD_Buffer
0x00000000200040c4 SpiAdj
0x00000000200040c8 ByteArray
0x00000000200043c8 DataAdj
0x00000000200043cc HexCharB
0x00000000200044f4 HexChar
0x000000002000461c BaudRate
0x0000000020004620 DbScaleStr
0x0000000020004623 DisableCursorDisplay
.bss 0x0000000020004624 0x1fc0 Files.o
0x0000000020004624 flash_mode
0x0000000020004626 SectorSize
0x0000000020004628 SelectedFileName
0x0000000020004632 ArbtSampleNumber
0x0000000020004634 DirRange
0x0000000020004638 UartFileSize
0x000000002000463c BufferRestore
0x000000002000463e CSVposition
0x0000000020004640 ConfigFileName
0x0000000020004649 Versions
0x000000002000464a SaveShortBuffXpos
0x000000002000464b Edited
0x000000002000464c Label
0x0000000020004710 TempPar
0x00000000200047a4 FileBuff
0x0000000020004de4 SecBuff
.bss 0x00000000200065e4 0x304 Function.o
0x00000000200065e4 SetLowVolume
0x00000000200065e8 Sinewave
.bss 0x00000000200068e8 0x10f Interrupt.o
0x00000000200068e8 LimitTransfer
0x00000000200068ec Cnt_mS
0x00000000200068ee SweepResetFlag
0x00000000200068ef ClearStatus
0x00000000200068f0 ToneBurstCounter
0x00000000200068f2 BurstLimit
0x00000000200068f4 SpecFrameCount
0x00000000200068f8 Wait_Cnt
0x00000000200068fc Delay_Cnt
0x00000000200068fe Beep_mS
0x0000000020006900 Cnt_20mS
0x0000000020006902 Sec_Cnt
0x0000000020006904 PD_Cnt
0x0000000020006906 Cursor_Cnt
0x0000000020006908 NotificationTimer
0x000000002000690a Twink
0x000000002000690b Blink
0x000000002000690c SecondsTick
0x000000002000690e DelayLoopBreak
0x0000000020006910 PersHoldTimer
0x0000000020006912 ConfNameTimer
0x0000000020006914 CursorDisplayTimer
0x0000000020006916 AutoSetTimer
0x0000000020006918 RepeatTimerR
0x0000000020006919 RepeatTimerL
0x000000002000691a Key_Mid_Speed
0x000000002000691b Key_Wait_Cnt
0x000000002000691c Key_Repeat_Cnt
0x000000002000691d Key_Buffer
0x000000002000691e LoBeepLevel
0x0000000020006926 FilterOut
0x000000002000692c NoiseIP
0x00000000200069f4 Key_Status_Last
0x00000000200069f6 Light
*fill* 0x00000000200069f7 0x1
.bss 0x00000000200069f8 0x45 Main.o
0x00000000200069f8 FlagMeter
0x00000000200069f9 BTwinkState
0x00000000200069fa LastSelected
0x00000000200069fc PreviousTrigSelect
0x0000000020006a04 SelectiveUpdate
0x0000000020006a05 MessageNumber
0x0000000020006a08 ChStatus
0x0000000020006a0c NVIC_InitStructure
0x0000000020006a10 XposRef
0x0000000020006a12 OldTrack1X
0x0000000020006a14 OldTrack2X
0x0000000020006a16 OldMeter
0x0000000020006a18 _Vt1Old
0x0000000020006a1a _Vt2Old
0x0000000020006a1c TrgAutoOld
0x0000000020006a1d TrgAuto
0x0000000020006a1e FlagFrameMode
0x0000000020006a1f ShortBuffXpos
0x0000000020006a20 ShowFFT
0x0000000020006a24 SaveCurrent
0x0000000020006a26 XposFlag
0x0000000020006a27 OldFrame
0x0000000020006a28 ABTrigStatus
0x0000000020006a29 UpdateFlag
0x0000000020006a2a UpdateCount
0x0000000020006a2b ClearDir
0x0000000020006a2c RefreshDisplay
0x0000000020006a2d OldCurrent
0x0000000020006a2e OSStatus
0x0000000020006a2f FastRepeatL
0x0000000020006a30 FastRepeatR
0x0000000020006a34 Tmp
0x0000000020006a38 OldPosY
0x0000000020006a3a OldPosX
0x0000000020006a3c OldDet
*fill* 0x0000000020006a3d 0x3
.bss 0x0000000020006a40 0x280 Menu.o
0x0000000020006a40 Current
0x0000000020006a41 Cnt_InCharge
0x0000000020006a42 Cnt_Charged
0x0000000020006a43 Cnt_Batt
0x0000000020006a44 FlagInCharge
0x0000000020006a48 NumStr
0x0000000020006a54 BTwink
0x0000000020006a55 ShiftDigits
0x0000000020006a58 Detail
0x0000000020006a66 DownConvertMode
0x0000000020006a67 AutoFFT
0x0000000020006a68 GenFreqShift
0x0000000020006a69 Sweep
0x0000000020006a6a PWAdjustMode
0x0000000020006a6b GenAdjustMode
0x0000000020006a6c CurrentARR
0x0000000020006a6e AutoSetFlag
0x0000000020006a6f OffsetSelect
0x0000000020006a70 AutoSaveBuf
0x0000000020006a71 AutoSaveSelect
0x0000000020006a72 AdjBeepLevel
0x0000000020006a73 FastDimAdjust
0x0000000020006a74 FastDim
0x0000000020006a75 HboldAdjust
0x0000000020006a76 GenBaudAdjSpeed
0x0000000020006a77 GenUartStopBits
0x0000000020006a78 GenUartCont
0x0000000020006a79 GenUartAdj
0x0000000020006a7a T1Start
0x0000000020006a7b GenTrigColorFlag
0x0000000020006a7d Det
0x0000000020006a7e CharIndex
0x0000000020006a7f DETflag
0x0000000020006a80 Result_FPS
0x0000000020006a82 Ga_Min
0x0000000020006a84 Gb_Min
0x0000000020006a88 LastFreqReadout
0x0000000020006a8c N_UNIT
0x0000000020006a98 NSamples
0x0000000020006a9a GHb_Max
0x0000000020006a9c GHa_Max
0x0000000020006a9e GHb_Min
0x0000000020006aa0 GHa_Min
0x0000000020006aa2 Gb_Max
0x0000000020006aa4 Ga_Max
0x0000000020006aa6 Neg
0x0000000020006aa7 MinBypass
0x0000000020006aa8 CursorDisplayStrM
0x0000000020006ab4 CursorDisplayStr
0x0000000020006ac0 CursorDisplayStrH
0x0000000020006acc TNumStr
0x0000000020006ad8 VNumStr
0x0000000020006ae4 ListOverride
0x0000000020006ae5 ConfigFileNumber
0x0000000020006ae6 OldCurDefTime
0x0000000020006ae8 OldPosi
0x0000000020006aea MeterStatus
0x0000000020006aeb AutoSequence
0x0000000020006afa OldMode
0x0000000020006afc BaseStr
0x0000000020006c28 Vertical
0x0000000020006cbe EnableMeterCalc
0x0000000020006cbf PrevShift
.bss 0x0000000020006cc0 0x69a0 Process.o
0x0000000020006cc0 HoldResetFlag
0x0000000020006cc2 A_Posi
0x0000000020006cc4 B_Posi
0x0000000020006cc6 ClearMeterAreaFlag
0x0000000020006cc8 ARBT_ARR
0x0000000020006ccc Ka1
0x0000000020006cd8 Ka2
0x0000000020006cec Kb1
0x0000000020006cf8 Kb2
0x0000000020006d0c OsBufferLogicFlag
0x0000000020006d0d OsChartFlag
0x0000000020006d0e c_Max
0x0000000020006d10 Posi_412
0x0000000020006d12 Posi_41_2
0x0000000020006d14 d_Max
0x0000000020006d16 Posi_4F1
0x0000000020006d18 Posi_4F2
0x0000000020006d1a Posi_4F3
0x0000000020006d1c Posi_4F4
0x0000000020006d1e FrameMode
0x0000000020006d20 Xtend
0x0000000020006d22 OSAvg
0x0000000020006d24 ReverseBitMask
0x0000000020006d28 BitMask
0x0000000020006d2c OsTransferCompleteFlag
0x0000000020006d34 Waste
0x0000000020006d3c ChartMode
0x0000000020006d40 SubIndex
0x0000000020006d44 Ka3
0x0000000020006d50 Kb3
0x0000000020006d5c LoBatLevel
0x0000000020006d60 VDiff
0x0000000020006d64 HiBatLevel
0x0000000020006d68 LKa2
0x0000000020006d7c HKa2
0x0000000020006d90 HKa1
0x0000000020006d9c LKa1