solved Task 3a
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
[EXTDLL]
|
||||
Count=0
|
||||
@@ -0,0 +1,3 @@
|
||||
./build/adc.o: app\adc.c \
|
||||
C:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\Device\Include\reg_stm32f4xx.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
.\build\datainit_ctboard.o: RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
@@ -0,0 +1,372 @@
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 1
|
||||
|
||||
|
||||
1 00000000 ;* -----------------------------------------------------
|
||||
-------------
|
||||
2 00000000 ;* -- _____ ______ _____
|
||||
-
|
||||
3 00000000 ;* -- |_ _| | ____|/ ____|
|
||||
-
|
||||
4 00000000 ;* -- | | _ __ | |__ | (___ Institute of Embedded
|
||||
Systems -
|
||||
5 00000000 ;* -- | | | '_ \| __| \___ \ Zurich University of
|
||||
-
|
||||
6 00000000 ;* -- _| |_| | | | |____ ____) | Applied Sciences
|
||||
-
|
||||
7 00000000 ;* -- |_____|_| |_|______|_____/ 8401 Winterthur, Swit
|
||||
zerland -
|
||||
8 00000000 ;* -----------------------------------------------------
|
||||
-------------
|
||||
9 00000000 ;* --
|
||||
10 00000000 ;* -- Project : CT Board - Cortex M4
|
||||
11 00000000 ;* -- Description : Data Segment initialisation.
|
||||
12 00000000 ;* --
|
||||
13 00000000 ;* -- $Id$
|
||||
14 00000000 ;* -----------------------------------------------------
|
||||
-------------
|
||||
15 00000000
|
||||
16 00000000
|
||||
17 00000000 ; ------------------------------------------------------
|
||||
-------------
|
||||
18 00000000 ; -- __Main
|
||||
19 00000000 ; ------------------------------------------------------
|
||||
-------------
|
||||
20 00000000
|
||||
21 00000000 AREA |.text|, CODE, READONLY
|
||||
22 00000000
|
||||
23 00000000 IMPORT main
|
||||
24 00000000
|
||||
25 00000000 EXPORT __main
|
||||
26 00000000
|
||||
27 00000000 __main PROC
|
||||
28 00000000
|
||||
29 00000000 ; initialize RW and ZI data - this includes heap and sta
|
||||
ck for the -ro=... -rw=... -entry=... linking cmd args..
|
||||
.
|
||||
30 00000000 IMPORT |Image$$RO$$Limit| [WEAK]
|
||||
31 00000000 IMPORT |Image$$RW$$Base| [WEAK]
|
||||
32 00000000 IMPORT |Image$$ZI$$Base| [WEAK]
|
||||
33 00000000 IMPORT |Image$$ZI$$Limit| [WEAK]
|
||||
34 00000000 ; ...or from auto generated scatter file. Needs linker o
|
||||
ption: --diag_suppress 6314
|
||||
35 00000000 IMPORT |Image$$ER_IROM1$$Limit| [W
|
||||
EAK]
|
||||
36 00000000 IMPORT |Image$$RW_IRAM1$$Base| [W
|
||||
EAK]
|
||||
37 00000000 IMPORT |Image$$RW_IRAM1$$ZI$$Base| [W
|
||||
EAK]
|
||||
38 00000000 IMPORT |Image$$RW_IRAM1$$ZI$$Limit| [W
|
||||
EAK]
|
||||
39 00000000 ; import stack parameter
|
||||
40 00000000 IMPORT Stack_Size [WEAK]
|
||||
41 00000000 IMPORT Stack_Mem [WEAK]
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 2
|
||||
|
||||
|
||||
42 00000000
|
||||
43 00000000 ; switch between command line generated regions and auto
|
||||
scatter file generated regions
|
||||
44 00000000 4912 LDR R1, =|Image$$RO$$Limit|
|
||||
45 00000002 2900 CMP R1,#0
|
||||
46 00000004 D004 BEQ ScatterFileSymbols
|
||||
47 00000006 CommandLineSymbols
|
||||
48 00000006 4A12 LDR R2, =|Image$$RW$$Base| ; start
|
||||
of the RW data in R
|
||||
AM
|
||||
49 00000008 4B12 LDR R3, =|Image$$ZI$$Base| ; end of
|
||||
the RW data in RAM
|
||||
|
||||
50 0000000A 461D MOV R5, R3 ; start of zero ini
|
||||
tialized data
|
||||
51 0000000C 4E12 LDR R6, =|Image$$ZI$$Limit| ; end o
|
||||
f zero initialized
|
||||
data
|
||||
52 0000000E E009 B CondRWLoop
|
||||
53 00000010 ScatterFileSymbols
|
||||
54 00000010 4912 LDR R1, =|Image$$ER_IROM1$$Limit| ;
|
||||
start of flashed i
|
||||
nitial RW data
|
||||
55 00000012 4A13 LDR R2, =|Image$$RW_IRAM1$$Base| ;
|
||||
start of the RW dat
|
||||
a in RAM
|
||||
56 00000014 4B13 LDR R3, =|Image$$RW_IRAM1$$ZI$$Base
|
||||
|
|
||||
; end of the RW dat
|
||||
a in RAM
|
||||
57 00000016 461D MOV R5, R3 ; start of zero ini
|
||||
tialized data
|
||||
58 00000018 4E13 LDR R6, =|Image$$RW_IRAM1$$ZI$$Limi
|
||||
t|
|
||||
; end of zero initi
|
||||
alized data
|
||||
59 0000001A E003 B CondRWLoop
|
||||
60 0000001C
|
||||
61 0000001C ; init non-zero data
|
||||
62 0000001C 680C LoopRWCopy
|
||||
LDR R4, [R1]
|
||||
63 0000001E 6014 STR R4, [R2]
|
||||
64 00000020 1D09 ADDS R1, R1, #4
|
||||
65 00000022 1D12 ADDS R2, R2, #4
|
||||
66 00000024 429A CondRWLoop
|
||||
CMP R2, R3
|
||||
67 00000026 D1F9 BNE LoopRWCopy
|
||||
68 00000028
|
||||
69 00000028 ; init zero-initialized data
|
||||
70 00000028 462A MOV R2, R5
|
||||
71 0000002A 4633 MOV R3, R6
|
||||
72 0000002C 2400 MOVS R4, #0
|
||||
73 0000002E E001 B CondZILoop
|
||||
74 00000030 6014 LoopZICopy
|
||||
STR R4, [R2]
|
||||
75 00000032 1D12 ADDS R2, R2, #4
|
||||
76 00000034 429A CondZILoop
|
||||
CMP R2, R3
|
||||
77 00000036 D1FB BNE LoopZICopy
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 3
|
||||
|
||||
|
||||
78 00000038
|
||||
79 00000038 ; fingerprint stack section
|
||||
80 00000038 480C LDR R0, =Stack_Mem
|
||||
81 0000003A 490D LDR R1, =Stack_Size
|
||||
82 0000003C 4A0D LDR R2, =0xEFBEADDE ; stack fingerp
|
||||
rint (little endian
|
||||
!)
|
||||
83 0000003E 6002 LoopStack
|
||||
STR R2, [R0]
|
||||
84 00000040 1D00 ADDS R0, R0, #4
|
||||
85 00000042 3904 SUBS R1, #4
|
||||
86 00000044 D1FB BNE LoopStack
|
||||
87 00000046
|
||||
88 00000046 ; go to the user main function
|
||||
89 00000046 480C LDR R0, =main
|
||||
90 00000048 4700 BX R0
|
||||
91 0000004A ENDP
|
||||
92 0000004A
|
||||
93 0000004A
|
||||
94 0000004A ; ------------------------------------------------------
|
||||
-------------
|
||||
95 0000004A ; -- End of file
|
||||
96 0000004A ; ------------------------------------------------------
|
||||
-------------
|
||||
97 0000004A
|
||||
98 0000004A 00 00 ALIGN
|
||||
99 0000004C
|
||||
100 0000004C END
|
||||
00000000
|
||||
00000000
|
||||
00000000
|
||||
00000000
|
||||
00000000
|
||||
00000000
|
||||
00000000
|
||||
00000000
|
||||
00000000
|
||||
00000000
|
||||
EFBEADDE
|
||||
00000000
|
||||
Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M0 --depend=.\bu
|
||||
ild\datainit_ctboard.d -o.\build\datainit_ctboard.o -I.\RTE\_Target_1 -IC:\User
|
||||
s\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\Device\Include -IC:\Us
|
||||
ers\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\Device\Include\m0 -I
|
||||
C:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\HAL\Include --p
|
||||
redefine="__EVAL SETA 1" --predefine="__UVISION_VERSION SETA 537" --predefine="
|
||||
_RTE_ SETA 1" --predefine="_RTE_ SETA 1" --list=.\build\datainit_ctboard.lst RT
|
||||
E/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
.text 00000000
|
||||
|
||||
Symbol: .text
|
||||
Definitions
|
||||
At line 21 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Uses
|
||||
None
|
||||
Comment: .text unused
|
||||
CommandLineSymbols 00000006
|
||||
|
||||
Symbol: CommandLineSymbols
|
||||
Definitions
|
||||
At line 47 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Uses
|
||||
None
|
||||
Comment: CommandLineSymbols unused
|
||||
CondRWLoop 00000024
|
||||
|
||||
Symbol: CondRWLoop
|
||||
Definitions
|
||||
At line 66 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Uses
|
||||
At line 52 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
At line 59 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
|
||||
CondZILoop 00000034
|
||||
|
||||
Symbol: CondZILoop
|
||||
Definitions
|
||||
At line 76 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Uses
|
||||
At line 73 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Comment: CondZILoop used once
|
||||
LoopRWCopy 0000001C
|
||||
|
||||
Symbol: LoopRWCopy
|
||||
Definitions
|
||||
At line 62 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Uses
|
||||
At line 67 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Comment: LoopRWCopy used once
|
||||
LoopStack 0000003E
|
||||
|
||||
Symbol: LoopStack
|
||||
Definitions
|
||||
At line 83 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Uses
|
||||
At line 86 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Comment: LoopStack used once
|
||||
LoopZICopy 00000030
|
||||
|
||||
Symbol: LoopZICopy
|
||||
Definitions
|
||||
At line 74 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Uses
|
||||
At line 77 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Comment: LoopZICopy used once
|
||||
ScatterFileSymbols 00000010
|
||||
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 2 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
Symbol: ScatterFileSymbols
|
||||
Definitions
|
||||
At line 53 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Uses
|
||||
At line 46 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Comment: ScatterFileSymbols used once
|
||||
__main 00000000
|
||||
|
||||
Symbol: __main
|
||||
Definitions
|
||||
At line 27 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Uses
|
||||
At line 25 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Comment: __main used once
|
||||
9 symbols
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
||||
External symbols
|
||||
|
||||
Image$$ER_IROM1$$Limit 00000000
|
||||
|
||||
Symbol: Image$$ER_IROM1$$Limit
|
||||
Definitions
|
||||
At line 35 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Uses
|
||||
At line 54 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Comment: Image$$ER_IROM1$$Limit used once
|
||||
Image$$RO$$Limit 00000000
|
||||
|
||||
Symbol: Image$$RO$$Limit
|
||||
Definitions
|
||||
At line 30 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Uses
|
||||
At line 44 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Comment: Image$$RO$$Limit used once
|
||||
Image$$RW$$Base 00000000
|
||||
|
||||
Symbol: Image$$RW$$Base
|
||||
Definitions
|
||||
At line 31 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Uses
|
||||
At line 48 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Comment: Image$$RW$$Base used once
|
||||
Image$$RW_IRAM1$$Base 00000000
|
||||
|
||||
Symbol: Image$$RW_IRAM1$$Base
|
||||
Definitions
|
||||
At line 36 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Uses
|
||||
At line 55 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Comment: Image$$RW_IRAM1$$Base used once
|
||||
Image$$RW_IRAM1$$ZI$$Base 00000000
|
||||
|
||||
Symbol: Image$$RW_IRAM1$$ZI$$Base
|
||||
Definitions
|
||||
At line 37 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Uses
|
||||
At line 56 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Comment: Image$$RW_IRAM1$$ZI$$Base used once
|
||||
Image$$RW_IRAM1$$ZI$$Limit 00000000
|
||||
|
||||
Symbol: Image$$RW_IRAM1$$ZI$$Limit
|
||||
Definitions
|
||||
At line 38 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Uses
|
||||
At line 58 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Comment: Image$$RW_IRAM1$$ZI$$Limit used once
|
||||
Image$$ZI$$Base 00000000
|
||||
|
||||
Symbol: Image$$ZI$$Base
|
||||
Definitions
|
||||
At line 32 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Uses
|
||||
At line 49 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Comment: Image$$ZI$$Base used once
|
||||
Image$$ZI$$Limit 00000000
|
||||
|
||||
Symbol: Image$$ZI$$Limit
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 2 Alphabetic symbol ordering
|
||||
External symbols
|
||||
|
||||
Definitions
|
||||
At line 33 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Uses
|
||||
At line 51 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Comment: Image$$ZI$$Limit used once
|
||||
Stack_Mem 00000000
|
||||
|
||||
Symbol: Stack_Mem
|
||||
Definitions
|
||||
At line 41 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Uses
|
||||
At line 80 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Comment: Stack_Mem used once
|
||||
Stack_Size 00000000
|
||||
|
||||
Symbol: Stack_Size
|
||||
Definitions
|
||||
At line 40 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Uses
|
||||
At line 81 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Comment: Stack_Size used once
|
||||
main 00000000
|
||||
|
||||
Symbol: main
|
||||
Definitions
|
||||
At line 23 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Uses
|
||||
At line 89 in file RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s
|
||||
Comment: main used once
|
||||
11 symbols
|
||||
355 symbols in table
|
||||
Binary file not shown.
@@ -0,0 +1,5 @@
|
||||
./build/hal_fmc.o: RTE\HAL\CT_Board_HS14_M0\hal_fmc.c \
|
||||
C:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\HAL\Include\hal_fmc.h \
|
||||
C:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\HAL\Include\hal_common.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\Device\Include\reg_stm32f4xx.h
|
||||
Binary file not shown.
@@ -0,0 +1,5 @@
|
||||
./build/hal_gpio.o: RTE\HAL\CT_Board_HS14_M0\hal_gpio.c \
|
||||
C:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\HAL\Include\hal_gpio.h \
|
||||
C:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\Device\Include\reg_stm32f4xx.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\HAL\Include\hal_common.h
|
||||
Binary file not shown.
@@ -0,0 +1,5 @@
|
||||
./build/hal_pwr.o: RTE\HAL\CT_Board_HS14_M0\hal_pwr.c \
|
||||
C:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\HAL\Include\hal_pwr.h \
|
||||
C:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\HAL\Include\hal_common.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\Device\Include\reg_stm32f4xx.h
|
||||
Binary file not shown.
@@ -0,0 +1,5 @@
|
||||
./build/hal_rcc.o: RTE\HAL\CT_Board_HS14_M0\hal_rcc.c \
|
||||
C:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\HAL\Include\hal_rcc.h \
|
||||
C:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\HAL\Include\hal_common.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\Device\Include\reg_stm32f4xx.h
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
.\build\startup_ctboard.o: RTE/Device/CT_Board_HS14_M0/startup_ctboard.s
|
||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -0,0 +1 @@
|
||||
.\build\struct_code.o: app\struct_code.s
|
||||
@@ -0,0 +1,605 @@
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 1
|
||||
|
||||
|
||||
1 00000000 ; ------------------------------------------------------
|
||||
------------
|
||||
2 00000000 ; -- _____ ______ _____
|
||||
-
|
||||
3 00000000 ; -- |_ _| | ____|/ ____|
|
||||
-
|
||||
4 00000000 ; -- | | _ __ | |__ | (___ Institute of Embedded
|
||||
Systems -
|
||||
5 00000000 ; -- | | | '_ \| __| \___ \ Zurich University of
|
||||
-
|
||||
6 00000000 ; -- _| |_| | | | |____ ____) | Applied Sciences
|
||||
-
|
||||
7 00000000 ; -- |_____|_| |_|______|_____/ 8401 Winterthur, Switz
|
||||
erland -
|
||||
8 00000000 ; ------------------------------------------------------
|
||||
------------
|
||||
9 00000000 ; --
|
||||
10 00000000 ; -- main.s
|
||||
11 00000000 ; --
|
||||
12 00000000 ; -- CT1 P08 "Strukturierte Codierung" mit Assembler
|
||||
13 00000000 ; --
|
||||
14 00000000 ; -- $Id: struct_code.s 3787 2016-11-17 09:41:48Z kesr $
|
||||
|
||||
15 00000000 ; ------------------------------------------------------
|
||||
------------
|
||||
16 00000000 ;Directives
|
||||
17 00000000 PRESERVE8
|
||||
18 00000000 THUMB
|
||||
19 00000000
|
||||
20 00000000 ; ------------------------------------------------------
|
||||
------------
|
||||
21 00000000 ; -- Address-Defines
|
||||
22 00000000 ; ------------------------------------------------------
|
||||
------------
|
||||
23 00000000 ; input
|
||||
24 00000000 60000200
|
||||
ADDR_DIP_SWITCH_7_0
|
||||
EQU 0x60000200
|
||||
25 00000000 60000210
|
||||
ADDR_BUTTONS
|
||||
EQU 0x60000210
|
||||
26 00000000
|
||||
27 00000000 ; output
|
||||
28 00000000 60000100
|
||||
ADDR_LED_31_0
|
||||
EQU 0x60000100
|
||||
29 00000000 60000114
|
||||
ADDR_7_SEG_BIN_DS3_0
|
||||
EQU 0x60000114
|
||||
30 00000000 60000340
|
||||
ADDR_LCD_COLOUR
|
||||
EQU 0x60000340
|
||||
31 00000000 60000300
|
||||
ADDR_LCD_ASCII
|
||||
EQU 0x60000300
|
||||
32 00000000 60000302
|
||||
ADDR_LCD_ASCII_BIT_POS
|
||||
EQU 0x60000302
|
||||
33 00000000 60000314
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 2
|
||||
|
||||
|
||||
ADDR_LCD_ASCII_2ND_LINE
|
||||
EQU 0x60000314
|
||||
34 00000000
|
||||
35 00000000
|
||||
36 00000000 ; ------------------------------------------------------
|
||||
------------
|
||||
37 00000000 ; -- Program-Defines
|
||||
38 00000000 ; ------------------------------------------------------
|
||||
------------
|
||||
39 00000000 ; value for clearing lcd
|
||||
40 00000000 00000000
|
||||
ASCII_DIGIT_CLEAR
|
||||
EQU 0x00000000
|
||||
41 00000000 00000028
|
||||
LCD_LAST_OFFSET
|
||||
EQU 0x00000028
|
||||
42 00000000
|
||||
43 00000000 ; offset for showing the digit in the lcd
|
||||
44 00000000 00000030
|
||||
ASCII_DIGIT_OFFSET
|
||||
EQU 0x00000030
|
||||
45 00000000
|
||||
46 00000000 ; lcd background colors to be written
|
||||
47 00000000 00000000
|
||||
DISPLAY_COLOUR_RED
|
||||
EQU 0
|
||||
48 00000000 00000002
|
||||
DISPLAY_COLOUR_GREEN
|
||||
EQU 2
|
||||
49 00000000 00000004
|
||||
DISPLAY_COLOUR_BLUE
|
||||
EQU 4
|
||||
50 00000000
|
||||
51 00000000 ; ------------------------------------------------------
|
||||
------------
|
||||
52 00000000 ; -- myConstants
|
||||
53 00000000 ; ------------------------------------------------------
|
||||
------------
|
||||
54 00000000 AREA myConstants, DATA, READONLY
|
||||
55 00000000 ; display defines for hex / dec
|
||||
56 00000000 42 69 74
|
||||
20 DISPLAY_BIT
|
||||
DCB "Bit "
|
||||
57 00000004 32 DISPLAY_2_BIT
|
||||
DCB "2"
|
||||
58 00000005 34 DISPLAY_4_BIT
|
||||
DCB "4"
|
||||
59 00000006 38 DISPLAY_8_BIT
|
||||
DCB "8"
|
||||
60 00000007 00 ALIGN
|
||||
61 00000008
|
||||
62 00000008 ; ------------------------------------------------------
|
||||
------------
|
||||
63 00000008 ; -- myCode
|
||||
64 00000008 ; ------------------------------------------------------
|
||||
------------
|
||||
65 00000008 AREA myCode, CODE, READONLY
|
||||
66 00000000 ENTRY
|
||||
67 00000000
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 3
|
||||
|
||||
|
||||
68 00000000 ; imports for calls
|
||||
69 00000000 import adc_init
|
||||
70 00000000 import adc_get_value
|
||||
71 00000000
|
||||
72 00000000 main PROC
|
||||
73 00000000 export main
|
||||
74 00000000 ; 8 bit resolution, cont. sampling
|
||||
75 00000000 F7FF FFFE BL adc_init
|
||||
76 00000004 F000 F832 BL clear_lcd
|
||||
77 00000008
|
||||
78 00000008 main_loop
|
||||
79 00000008 ; STUDENTS: To be programmed
|
||||
80 00000008
|
||||
81 00000008 ; Read ADC Value to R0
|
||||
82 00000008 F7FF FFFE BL adc_get_value
|
||||
83 0000000C
|
||||
84 0000000C ; check T0
|
||||
85 0000000C 4920 LDR R1, =ADDR_BUTTONS
|
||||
86 0000000E 7809 LDRB R1, [R1]
|
||||
87 00000010 4A20 LDR R2, =0x01
|
||||
88 00000012 4211 TST R1, R2
|
||||
89 00000014 D11D BNE case_green ; If T0 is pressed:
|
||||
goto case_green, e
|
||||
lse: continue
|
||||
90 00000016
|
||||
91 00000016 ; Else (T0 is not pressed):
|
||||
92 00000016
|
||||
93 00000016 ; Read 8-bit value from DIP-Switch 7-0 to R1
|
||||
94 00000016 4920 LDR R1, =ADDR_DIP_SWITCH_7_0
|
||||
95 00000018 7809 LDRB R1, [R1]
|
||||
96 0000001A
|
||||
97 0000001A ; Calc diff: DIP-Switch-7-0 - ADC-Value
|
||||
98 0000001A 1A0A SUBS R2, R1, R0
|
||||
99 0000001C DB0C BLT case_red ; IF diff >= 0: con
|
||||
tinue case blue, el
|
||||
se: goto case red
|
||||
100 0000001E
|
||||
101 0000001E
|
||||
102 0000001E case_blue
|
||||
103 0000001E ; Make LCD Display Blue
|
||||
104 0000001E 4B1F LDR R3, =ADDR_LCD_COLOUR
|
||||
105 00000020 4C1F LDR R4, =DISPLAY_COLOUR_BLUE
|
||||
106 00000022 4D20 LDR R5, =0xffff
|
||||
107 00000024 531D STRH R5, [R3, R4]
|
||||
108 00000026 4C20 LDR R4, =DISPLAY_COLOUR_RED
|
||||
109 00000028 4D1F LDR R5, =0x0000
|
||||
110 0000002A 531D STRH R5, [R3, R4]
|
||||
111 0000002C 4C1F LDR R4, =DISPLAY_COLOUR_GREEN
|
||||
112 0000002E 4D1E LDR R5, =0x0000
|
||||
113 00000030 531D STRH R5, [R3, R4]
|
||||
114 00000032
|
||||
115 00000032 ; Show Diff on 7-Segment
|
||||
116 00000032 4B1F LDR R3, =ADDR_7_SEG_BIN_DS3_0
|
||||
117 00000034 701A STRB R2, [R3]
|
||||
118 00000036
|
||||
119 00000036 E018 B end_cases
|
||||
120 00000038 case_red
|
||||
121 00000038 ; Make LCD Display Red
|
||||
122 00000038 4B18 LDR R3, =ADDR_LCD_COLOUR
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 4
|
||||
|
||||
|
||||
123 0000003A 4C1B LDR R4, =DISPLAY_COLOUR_RED
|
||||
124 0000003C 4D19 LDR R5, =0xffff
|
||||
125 0000003E 531D STRH R5, [R3, R4]
|
||||
126 00000040 4C17 LDR R4, =DISPLAY_COLOUR_BLUE
|
||||
127 00000042 4D19 LDR R5, =0x0000
|
||||
128 00000044 531D STRH R5, [R3, R4]
|
||||
129 00000046 4C19 LDR R4, =DISPLAY_COLOUR_GREEN
|
||||
130 00000048 4D17 LDR R5, =0x0000
|
||||
131 0000004A 531D STRH R5, [R3, R4]
|
||||
132 0000004C
|
||||
133 0000004C ; Show Diff on 7-Segment
|
||||
134 0000004C 4B18 LDR R3, =ADDR_7_SEG_BIN_DS3_0
|
||||
135 0000004E 701A STRB R2, [R3]
|
||||
136 00000050
|
||||
137 00000050 E00B B end_cases
|
||||
138 00000052 case_green
|
||||
139 00000052 ; Make LCD Display Green
|
||||
140 00000052 4B12 LDR R3, =ADDR_LCD_COLOUR
|
||||
141 00000054 4C15 LDR R4, =DISPLAY_COLOUR_GREEN
|
||||
142 00000056 4D13 LDR R5, =0xffff
|
||||
143 00000058 531D STRH R5, [R3, R4]
|
||||
144 0000005A 4C13 LDR R4, =DISPLAY_COLOUR_RED
|
||||
145 0000005C 4D12 LDR R5, =0x0000
|
||||
146 0000005E 531D STRH R5, [R3, R4]
|
||||
147 00000060 4C0F LDR R4, =DISPLAY_COLOUR_BLUE
|
||||
148 00000062 4D11 LDR R5, =0x0000
|
||||
149 00000064 531D STRH R5, [R3, R4]
|
||||
150 00000066
|
||||
151 00000066 ; Show ADC Value on 7-Semgment
|
||||
152 00000066 4B12 LDR R3, =ADDR_7_SEG_BIN_DS3_0
|
||||
153 00000068 7018 STRB R0, [R3]
|
||||
154 0000006A
|
||||
155 0000006A end_cases
|
||||
156 0000006A ; END: To be programmed
|
||||
157 0000006A E7CD B main_loop
|
||||
158 0000006C
|
||||
159 0000006C clear_lcd
|
||||
160 0000006C B407 PUSH {R0, R1, R2}
|
||||
161 0000006E 4A0E LDR R2, =0x0
|
||||
162 00000070 clear_lcd_loop
|
||||
163 00000070 4810 LDR R0, =ADDR_LCD_ASCII
|
||||
164 00000072 1880 ADDS R0, R0, R2 ; add index to lcd
|
||||
offset
|
||||
165 00000074 490C LDR R1, =ASCII_DIGIT_CLEAR
|
||||
166 00000076 6001 STR R1, [R0]
|
||||
167 00000078 1D12 ADDS R2, R2, #4 ; increas index by
|
||||
4 (word step)
|
||||
168 0000007A 2A28 CMP R2, #LCD_LAST_OFFSET ; until in
|
||||
dex reached last lc
|
||||
d point
|
||||
169 0000007C D4F8 BMI clear_lcd_loop
|
||||
170 0000007E BC07 POP {R0, R1, R2}
|
||||
171 00000080 4770 BX LR
|
||||
172 00000082
|
||||
173 00000082 write_bit_ascii
|
||||
174 00000082 B403 PUSH {R0, R1}
|
||||
175 00000084 480C LDR R0, =ADDR_LCD_ASCII_BIT_POS
|
||||
176 00000086 490D LDR R1, =DISPLAY_BIT
|
||||
177 00000088 6809 LDR R1, [R1]
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 5
|
||||
|
||||
|
||||
178 0000008A 6001 STR R1, [R0]
|
||||
179 0000008C BC03 POP {R0, R1}
|
||||
180 0000008E 4770 BX LR
|
||||
181 00000090
|
||||
182 00000090 ENDP
|
||||
183 00000090 ALIGN
|
||||
184 00000090
|
||||
185 00000090
|
||||
186 00000090 ; ------------------------------------------------------
|
||||
------------
|
||||
187 00000090 ; End of code
|
||||
188 00000090 ; ------------------------------------------------------
|
||||
------------
|
||||
189 00000090 END
|
||||
60000210
|
||||
00000001
|
||||
60000200
|
||||
60000340
|
||||
00000004
|
||||
0000FFFF
|
||||
00000000
|
||||
00000002
|
||||
60000114
|
||||
60000300
|
||||
60000302
|
||||
00000000
|
||||
Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M0 --depend=.\bu
|
||||
ild\struct_code.d -o.\build\struct_code.o -I.\RTE\_Target_1 -IC:\Users\roman\Ap
|
||||
pData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\Device\Include -IC:\Users\roman\
|
||||
AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\Device\Include\m0 -IC:\Users\r
|
||||
oman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\HAL\Include --predefine="
|
||||
__EVAL SETA 1" --predefine="__UVISION_VERSION SETA 537" --predefine="_RTE_ SETA
|
||||
1" --predefine="_RTE_ SETA 1" --list=.\build\struct_code.lst app\struct_code.s
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
DISPLAY_2_BIT 00000004
|
||||
|
||||
Symbol: DISPLAY_2_BIT
|
||||
Definitions
|
||||
At line 57 in file app\struct_code.s
|
||||
Uses
|
||||
None
|
||||
Comment: DISPLAY_2_BIT unused
|
||||
DISPLAY_4_BIT 00000005
|
||||
|
||||
Symbol: DISPLAY_4_BIT
|
||||
Definitions
|
||||
At line 58 in file app\struct_code.s
|
||||
Uses
|
||||
None
|
||||
Comment: DISPLAY_4_BIT unused
|
||||
DISPLAY_8_BIT 00000006
|
||||
|
||||
Symbol: DISPLAY_8_BIT
|
||||
Definitions
|
||||
At line 59 in file app\struct_code.s
|
||||
Uses
|
||||
None
|
||||
Comment: DISPLAY_8_BIT unused
|
||||
DISPLAY_BIT 00000000
|
||||
|
||||
Symbol: DISPLAY_BIT
|
||||
Definitions
|
||||
At line 56 in file app\struct_code.s
|
||||
Uses
|
||||
At line 176 in file app\struct_code.s
|
||||
Comment: DISPLAY_BIT used once
|
||||
myConstants 00000000
|
||||
|
||||
Symbol: myConstants
|
||||
Definitions
|
||||
At line 54 in file app\struct_code.s
|
||||
Uses
|
||||
None
|
||||
Comment: myConstants unused
|
||||
5 symbols
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
case_blue 0000001E
|
||||
|
||||
Symbol: case_blue
|
||||
Definitions
|
||||
At line 102 in file app\struct_code.s
|
||||
Uses
|
||||
None
|
||||
Comment: case_blue unused
|
||||
case_green 00000052
|
||||
|
||||
Symbol: case_green
|
||||
Definitions
|
||||
At line 138 in file app\struct_code.s
|
||||
Uses
|
||||
At line 89 in file app\struct_code.s
|
||||
Comment: case_green used once
|
||||
case_red 00000038
|
||||
|
||||
Symbol: case_red
|
||||
Definitions
|
||||
At line 120 in file app\struct_code.s
|
||||
Uses
|
||||
At line 99 in file app\struct_code.s
|
||||
Comment: case_red used once
|
||||
clear_lcd 0000006C
|
||||
|
||||
Symbol: clear_lcd
|
||||
Definitions
|
||||
At line 159 in file app\struct_code.s
|
||||
Uses
|
||||
At line 76 in file app\struct_code.s
|
||||
Comment: clear_lcd used once
|
||||
clear_lcd_loop 00000070
|
||||
|
||||
Symbol: clear_lcd_loop
|
||||
Definitions
|
||||
At line 162 in file app\struct_code.s
|
||||
Uses
|
||||
At line 169 in file app\struct_code.s
|
||||
Comment: clear_lcd_loop used once
|
||||
end_cases 0000006A
|
||||
|
||||
Symbol: end_cases
|
||||
Definitions
|
||||
At line 155 in file app\struct_code.s
|
||||
Uses
|
||||
At line 119 in file app\struct_code.s
|
||||
At line 137 in file app\struct_code.s
|
||||
|
||||
main 00000000
|
||||
|
||||
Symbol: main
|
||||
Definitions
|
||||
At line 72 in file app\struct_code.s
|
||||
Uses
|
||||
At line 73 in file app\struct_code.s
|
||||
Comment: main used once
|
||||
main_loop 00000008
|
||||
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 2 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
Symbol: main_loop
|
||||
Definitions
|
||||
At line 78 in file app\struct_code.s
|
||||
Uses
|
||||
At line 157 in file app\struct_code.s
|
||||
Comment: main_loop used once
|
||||
myCode 00000000
|
||||
|
||||
Symbol: myCode
|
||||
Definitions
|
||||
At line 65 in file app\struct_code.s
|
||||
Uses
|
||||
None
|
||||
Comment: myCode unused
|
||||
write_bit_ascii 00000082
|
||||
|
||||
Symbol: write_bit_ascii
|
||||
Definitions
|
||||
At line 173 in file app\struct_code.s
|
||||
Uses
|
||||
None
|
||||
Comment: write_bit_ascii unused
|
||||
10 symbols
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
||||
Absolute symbols
|
||||
|
||||
ADDR_7_SEG_BIN_DS3_0 60000114
|
||||
|
||||
Symbol: ADDR_7_SEG_BIN_DS3_0
|
||||
Definitions
|
||||
At line 29 in file app\struct_code.s
|
||||
Uses
|
||||
At line 116 in file app\struct_code.s
|
||||
At line 134 in file app\struct_code.s
|
||||
At line 152 in file app\struct_code.s
|
||||
|
||||
ADDR_BUTTONS 60000210
|
||||
|
||||
Symbol: ADDR_BUTTONS
|
||||
Definitions
|
||||
At line 25 in file app\struct_code.s
|
||||
Uses
|
||||
At line 85 in file app\struct_code.s
|
||||
Comment: ADDR_BUTTONS used once
|
||||
ADDR_DIP_SWITCH_7_0 60000200
|
||||
|
||||
Symbol: ADDR_DIP_SWITCH_7_0
|
||||
Definitions
|
||||
At line 24 in file app\struct_code.s
|
||||
Uses
|
||||
At line 94 in file app\struct_code.s
|
||||
Comment: ADDR_DIP_SWITCH_7_0 used once
|
||||
ADDR_LCD_ASCII 60000300
|
||||
|
||||
Symbol: ADDR_LCD_ASCII
|
||||
Definitions
|
||||
At line 31 in file app\struct_code.s
|
||||
Uses
|
||||
At line 163 in file app\struct_code.s
|
||||
Comment: ADDR_LCD_ASCII used once
|
||||
ADDR_LCD_ASCII_2ND_LINE 60000314
|
||||
|
||||
Symbol: ADDR_LCD_ASCII_2ND_LINE
|
||||
Definitions
|
||||
At line 33 in file app\struct_code.s
|
||||
Uses
|
||||
None
|
||||
Comment: ADDR_LCD_ASCII_2ND_LINE unused
|
||||
ADDR_LCD_ASCII_BIT_POS 60000302
|
||||
|
||||
Symbol: ADDR_LCD_ASCII_BIT_POS
|
||||
Definitions
|
||||
At line 32 in file app\struct_code.s
|
||||
Uses
|
||||
At line 175 in file app\struct_code.s
|
||||
Comment: ADDR_LCD_ASCII_BIT_POS used once
|
||||
ADDR_LCD_COLOUR 60000340
|
||||
|
||||
Symbol: ADDR_LCD_COLOUR
|
||||
Definitions
|
||||
At line 30 in file app\struct_code.s
|
||||
Uses
|
||||
At line 104 in file app\struct_code.s
|
||||
At line 122 in file app\struct_code.s
|
||||
At line 140 in file app\struct_code.s
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 2 Alphabetic symbol ordering
|
||||
Absolute symbols
|
||||
|
||||
|
||||
ADDR_LED_31_0 60000100
|
||||
|
||||
Symbol: ADDR_LED_31_0
|
||||
Definitions
|
||||
At line 28 in file app\struct_code.s
|
||||
Uses
|
||||
None
|
||||
Comment: ADDR_LED_31_0 unused
|
||||
ASCII_DIGIT_CLEAR 00000000
|
||||
|
||||
Symbol: ASCII_DIGIT_CLEAR
|
||||
Definitions
|
||||
At line 40 in file app\struct_code.s
|
||||
Uses
|
||||
At line 165 in file app\struct_code.s
|
||||
Comment: ASCII_DIGIT_CLEAR used once
|
||||
ASCII_DIGIT_OFFSET 00000030
|
||||
|
||||
Symbol: ASCII_DIGIT_OFFSET
|
||||
Definitions
|
||||
At line 44 in file app\struct_code.s
|
||||
Uses
|
||||
None
|
||||
Comment: ASCII_DIGIT_OFFSET unused
|
||||
DISPLAY_COLOUR_BLUE 00000004
|
||||
|
||||
Symbol: DISPLAY_COLOUR_BLUE
|
||||
Definitions
|
||||
At line 49 in file app\struct_code.s
|
||||
Uses
|
||||
At line 105 in file app\struct_code.s
|
||||
At line 126 in file app\struct_code.s
|
||||
At line 147 in file app\struct_code.s
|
||||
|
||||
DISPLAY_COLOUR_GREEN 00000002
|
||||
|
||||
Symbol: DISPLAY_COLOUR_GREEN
|
||||
Definitions
|
||||
At line 48 in file app\struct_code.s
|
||||
Uses
|
||||
At line 111 in file app\struct_code.s
|
||||
At line 129 in file app\struct_code.s
|
||||
At line 141 in file app\struct_code.s
|
||||
|
||||
DISPLAY_COLOUR_RED 00000000
|
||||
|
||||
Symbol: DISPLAY_COLOUR_RED
|
||||
Definitions
|
||||
At line 47 in file app\struct_code.s
|
||||
Uses
|
||||
At line 108 in file app\struct_code.s
|
||||
At line 123 in file app\struct_code.s
|
||||
At line 144 in file app\struct_code.s
|
||||
|
||||
LCD_LAST_OFFSET 00000028
|
||||
|
||||
Symbol: LCD_LAST_OFFSET
|
||||
Definitions
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 3 Alphabetic symbol ordering
|
||||
Absolute symbols
|
||||
|
||||
At line 41 in file app\struct_code.s
|
||||
Uses
|
||||
At line 168 in file app\struct_code.s
|
||||
Comment: LCD_LAST_OFFSET used once
|
||||
14 symbols
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
||||
External symbols
|
||||
|
||||
adc_get_value 00000000
|
||||
|
||||
Symbol: adc_get_value
|
||||
Definitions
|
||||
At line 70 in file app\struct_code.s
|
||||
Uses
|
||||
At line 82 in file app\struct_code.s
|
||||
Comment: adc_get_value used once
|
||||
adc_init 00000000
|
||||
|
||||
Symbol: adc_init
|
||||
Definitions
|
||||
At line 69 in file app\struct_code.s
|
||||
Uses
|
||||
At line 75 in file app\struct_code.s
|
||||
Comment: adc_init used once
|
||||
2 symbols
|
||||
366 symbols in table
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,110 @@
|
||||
<html>
|
||||
<body>
|
||||
<pre>
|
||||
<h1>µVision Build Log</h1>
|
||||
<h2>Tool Versions:</h2>
|
||||
IDE-Version: µVision V5.37.0.0
|
||||
Copyright (C) 2022 ARM Ltd and ARM Germany GmbH. All rights reserved.
|
||||
License Information: Roman Schenk, ZHAW, LIC=----
|
||||
|
||||
Tool Versions:
|
||||
Toolchain: MDK-Lite Version: 5.37.0.0
|
||||
Toolchain Path: C:\Keil_v5\ARM\ARMCLANG\Bin
|
||||
C Compiler: ArmClang.exe V6.18
|
||||
Assembler: Armasm.exe V6.18
|
||||
Linker/Locator: ArmLink.exe V6.18
|
||||
Library Manager: ArmAr.exe V6.18
|
||||
Hex Converter: FromElf.exe V6.18
|
||||
CPU DLL: SARMCM3.DLL V5.37.0.0
|
||||
Dialog DLL: DARMCM1.DLL V1.19.6.0
|
||||
Target DLL: STLink\ST-LINKIII-KEIL_SWO.dll V3.0.9.0
|
||||
Dialog DLL: TARMCM1.DLL V1.14.6.0
|
||||
|
||||
<h2>Project:</h2>
|
||||
C:\Users\roman\Documents\Lab_8_Structured_Programming_in_Assembly\project\strukt_code.uvprojx
|
||||
Project File Date: 11/11/2022
|
||||
|
||||
<h2>Output:</h2>
|
||||
*** Using Compiler 'V6.18', folder: 'C:\Keil_v5\ARM\ARMCLANG\Bin'
|
||||
Rebuild target 'Target 1'
|
||||
assembling datainit_ctboard.s...
|
||||
assembling startup_ctboard.s...
|
||||
assembling struct_code.s...
|
||||
app/adc.c(39): warning: logical not is only applied to the left hand side of this bitwise operator [-Wlogical-not-parentheses]
|
||||
while (!ADC3->SR & 0x00000002) ;
|
||||
^ ~
|
||||
app/adc.c(39): note: add parentheses after the '!' to evaluate the bitwise operator first
|
||||
while (!ADC3->SR & 0x00000002) ;
|
||||
^
|
||||
( )
|
||||
app/adc.c(39): note: add parentheses around left hand side expression to silence this warning
|
||||
while (!ADC3->SR & 0x00000002) ;
|
||||
^
|
||||
( )
|
||||
1 warning generated.
|
||||
compiling adc.c...
|
||||
compiling system_ctboard.c...
|
||||
compiling hal_fmc.c...
|
||||
compiling hal_pwr.c...
|
||||
compiling hal_rcc.c...
|
||||
compiling hal_gpio.c...
|
||||
linking...
|
||||
Program Size: Code=3696 RO-data=436 RW-data=0 ZI-data=8192
|
||||
".\build\strukt_code.axf" - 0 Error(s), 1 Warning(s).
|
||||
|
||||
<h2>Software Packages used:</h2>
|
||||
|
||||
Package Vendor: InES
|
||||
https://ennis.zhaw.ch/pack/InES.CTBoard14_DFP.4.0.2.pack
|
||||
InES.CTBoard14_DFP.4.0.2
|
||||
CT Board 14 (STM32F429ZI) Device Support
|
||||
* Component: Startup Version: 4.0.1
|
||||
* Component: FMC Version: 3.0.1
|
||||
* Component: GPIO Version: 4.0.1
|
||||
* Component: PWR Version: 2.2.0
|
||||
* Component: RCC Version: 4.0.1
|
||||
|
||||
<h2>Collection of Component include folders:</h2>
|
||||
./RTE/_Target_1
|
||||
C:/Users/roman/AppData/Local/Arm/Packs/InES/CTBoard14_DFP/4.0.2/Device/Include
|
||||
C:/Users/roman/AppData/Local/Arm/Packs/InES/CTBoard14_DFP/4.0.2/Device/Include/m0
|
||||
C:/Users/roman/AppData/Local/Arm/Packs/InES/CTBoard14_DFP/4.0.2/HAL/Include
|
||||
|
||||
<h2>Collection of Component Files used:</h2>
|
||||
|
||||
* Component: InES::Device:Startup:4.0.1
|
||||
Include file: Device/Include/m0/platform_ctboard.h
|
||||
Include file: Device/Include/reg_stm32f4xx.h
|
||||
Include file: Device/Include/reg_ctboard.h
|
||||
Include file: Device/Include/system_ctboard.h
|
||||
Source file: Device/Source/system_ctboard.c
|
||||
Source file: Device/Source/startup_ctboard.s
|
||||
Source file: Device/Source/datainit_ctboard.s
|
||||
|
||||
* Component: InES::HAL:FMC:3.0.1
|
||||
Include file: HAL/Include/hal_common.h
|
||||
Include file: Device/Include/reg_stm32f4xx.h
|
||||
Source file: HAL/Source/hal_fmc.c
|
||||
Include file: HAL/Include/hal_fmc.h
|
||||
|
||||
* Component: InES::HAL:GPIO:4.0.1
|
||||
Source file: HAL/Source/hal_gpio.c
|
||||
Include file: HAL/Include/hal_common.h
|
||||
Include file: Device/Include/reg_stm32f4xx.h
|
||||
Include file: HAL/Include/hal_gpio.h
|
||||
|
||||
* Component: InES::HAL:PWR:2.2.0
|
||||
Include file: HAL/Include/hal_common.h
|
||||
Include file: Device/Include/reg_stm32f4xx.h
|
||||
Include file: HAL/Include/hal_pwr.h
|
||||
Source file: HAL/Source/hal_pwr.c
|
||||
|
||||
* Component: InES::HAL:RCC:4.0.1
|
||||
Source file: HAL/Source/hal_rcc.c
|
||||
Include file: HAL/Include/hal_common.h
|
||||
Include file: Device/Include/reg_stm32f4xx.h
|
||||
Include file: HAL/Include/hal_rcc.h
|
||||
Build Time Elapsed: 00:00:00
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,622 @@
|
||||
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
|
||||
<html><head>
|
||||
<title>Static Call Graph - [.\build\strukt_code.axf]</title></head>
|
||||
<body><HR>
|
||||
<H1>Static Call Graph for image .\build\strukt_code.axf</H1><HR>
|
||||
<BR><P>#<CALLGRAPH># ARM Linker, 6180002: Last Updated: Fri Nov 11 09:07:05 2022
|
||||
<BR><P>
|
||||
<H3>Maximum Stack Usage = 132 bytes + Unknown(Cycles, Untraceable Function Pointers)</H3><H3>
|
||||
Call chain for Maximum Stack Depth:</H3>
|
||||
__system ⇒ system_enter_run ⇒ hal_gpio_init_alternate ⇒ hal_gpio_init_output
|
||||
<P>
|
||||
<H3>
|
||||
Mutually Recursive functions
|
||||
</H3> <LI><a href="#[1]">NMI_Handler</a> ⇒ <a href="#[1]">NMI_Handler</a><BR>
|
||||
<LI><a href="#[2]">HardFault_Handler</a> ⇒ <a href="#[2]">HardFault_Handler</a><BR>
|
||||
<LI><a href="#[3]">MemManage_Handler</a> ⇒ <a href="#[3]">MemManage_Handler</a><BR>
|
||||
<LI><a href="#[4]">BusFault_Handler</a> ⇒ <a href="#[4]">BusFault_Handler</a><BR>
|
||||
<LI><a href="#[5]">UsageFault_Handler</a> ⇒ <a href="#[5]">UsageFault_Handler</a><BR>
|
||||
<LI><a href="#[6]">SVC_Handler</a> ⇒ <a href="#[6]">SVC_Handler</a><BR>
|
||||
<LI><a href="#[7]">DebugMon_Handler</a> ⇒ <a href="#[7]">DebugMon_Handler</a><BR>
|
||||
<LI><a href="#[8]">PendSV_Handler</a> ⇒ <a href="#[8]">PendSV_Handler</a><BR>
|
||||
<LI><a href="#[9]">SysTick_Handler</a> ⇒ <a href="#[9]">SysTick_Handler</a><BR>
|
||||
<LI><a href="#[1c]">ADC_IRQHandler</a> ⇒ <a href="#[1c]">ADC_IRQHandler</a><BR>
|
||||
</UL>
|
||||
<P>
|
||||
<H3>
|
||||
Function Pointers
|
||||
</H3><UL>
|
||||
<LI><a href="#[1c]">ADC_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[4]">BusFault_Handler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[1e]">CAN1_RX0_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[1f]">CAN1_RX1_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[20]">CAN1_SCE_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[1d]">CAN1_TX_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[4a]">CAN2_RX0_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[4b]">CAN2_RX1_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[4c]">CAN2_SCE_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[49]">CAN2_TX_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[59]">CRYP_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[58]">DCMI_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[15]">DMA1_Stream0_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[16]">DMA1_Stream1_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[17]">DMA1_Stream2_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[18]">DMA1_Stream3_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[19]">DMA1_Stream4_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[1a]">DMA1_Stream5_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[1b]">DMA1_Stream6_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[39]">DMA1_Stream7_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[64]">DMA2D_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[42]">DMA2_Stream0_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[43]">DMA2_Stream1_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[44]">DMA2_Stream2_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[45]">DMA2_Stream3_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[46]">DMA2_Stream4_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[4e]">DMA2_Stream5_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[4f]">DMA2_Stream6_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[50]">DMA2_Stream7_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[7]">DebugMon_Handler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[47]">ETH_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[48]">ETH_WKUP_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[10]">EXTI0_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[32]">EXTI15_10_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[11]">EXTI1_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[12]">EXTI2_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[13]">EXTI3_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[14]">EXTI4_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[21]">EXTI9_5_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[e]">FLASH_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[3a]">FMC_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[5b]">FPU_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[5a]">HASH_RNG_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[2]">HardFault_Handler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[2a]">I2C1_ER_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[29]">I2C1_EV_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[2c]">I2C2_ER_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[2b]">I2C2_EV_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[53]">I2C3_ER_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[52]">I2C3_EV_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[63]">LTDC_ER_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[62]">LTDC_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[3]">MemManage_Handler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[1]">NMI_Handler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[4d]">OTG_FS_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[34]">OTG_FS_WKUP_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[55]">OTG_HS_EP1_IN_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[54]">OTG_HS_EP1_OUT_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[57]">OTG_HS_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[56]">OTG_HS_WKUP_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[b]">PVD_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[8]">PendSV_Handler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[f]">RCC_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[33]">RTC_Alarm_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[d]">RTC_WKUP_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[0]">Reset_Handler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[61]">SAI1_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[3b]">SDIO_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[2d]">SPI1_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[2e]">SPI2_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[3d]">SPI3_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[5e]">SPI4_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[5f]">SPI5_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[60]">SPI6_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[6]">SVC_Handler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[9]">SysTick_Handler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[c]">TAMP_STAMP_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[22]">TIM1_BRK_TIM9_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[25]">TIM1_CC_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[24]">TIM1_TRG_COM_TIM11_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[23]">TIM1_UP_TIM10_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[26]">TIM2_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[27]">TIM3_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[28]">TIM4_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[3c]">TIM5_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[40]">TIM6_DAC_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[41]">TIM7_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[35]">TIM8_BRK_TIM12_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[38]">TIM8_CC_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[37]">TIM8_TRG_COM_TIM14_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[36]">TIM8_UP_TIM13_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[3e]">UART4_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[3f]">UART5_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[5c]">UART7_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[5d]">UART8_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[2f]">USART1_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[30]">USART2_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[31]">USART3_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[51]">USART6_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[5]">UsageFault_Handler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[a]">WWDG_IRQHandler</a> from startup_ctboard.o(.text) referenced from startup_ctboard.o(RESET)
|
||||
<LI><a href="#[67]">__main</a> from datainit_ctboard.o(.text) referenced from startup_ctboard.o(.text)
|
||||
<LI><a href="#[66]">__system</a> from system_ctboard.o(.text) referenced from startup_ctboard.o(.text)
|
||||
<LI><a href="#[65]">main</a> from struct_code.o(myCode) referenced from datainit_ctboard.o(.text)
|
||||
</UL>
|
||||
<P>
|
||||
<H3>
|
||||
Global Symbols
|
||||
</H3>
|
||||
<P><STRONG><a name="[71]"></a>adc_init</STRONG> (Thumb, 80 bytes, Stack size 16 bytes, adc.o(.text))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = adc_init
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[65]">>></a> main
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[72]"></a>adc_get_value</STRONG> (Thumb, 24 bytes, Stack size 0 bytes, adc.o(.text))
|
||||
<BR><BR>[Called By]<UL><LI><a href="#[65]">>></a> main
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[67]"></a>__main</STRONG> (Thumb, 74 bytes, Stack size 0 bytes, datainit_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(.text)
|
||||
</UL>
|
||||
<P><STRONG><a name="[0]"></a>Reset_Handler</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[1]"></a>NMI_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR><BR>[Calls]<UL><LI><a href="#[1]">>></a> NMI_Handler
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[1]">>></a> NMI_Handler
|
||||
</UL>
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[2]"></a>HardFault_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR><BR>[Calls]<UL><LI><a href="#[2]">>></a> HardFault_Handler
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[2]">>></a> HardFault_Handler
|
||||
</UL>
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[3]"></a>MemManage_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR><BR>[Calls]<UL><LI><a href="#[3]">>></a> MemManage_Handler
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[3]">>></a> MemManage_Handler
|
||||
</UL>
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[4]"></a>BusFault_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR><BR>[Calls]<UL><LI><a href="#[4]">>></a> BusFault_Handler
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[4]">>></a> BusFault_Handler
|
||||
</UL>
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[5]"></a>UsageFault_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR><BR>[Calls]<UL><LI><a href="#[5]">>></a> UsageFault_Handler
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[5]">>></a> UsageFault_Handler
|
||||
</UL>
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[6]"></a>SVC_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR><BR>[Calls]<UL><LI><a href="#[6]">>></a> SVC_Handler
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[6]">>></a> SVC_Handler
|
||||
</UL>
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[7]"></a>DebugMon_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR><BR>[Calls]<UL><LI><a href="#[7]">>></a> DebugMon_Handler
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[7]">>></a> DebugMon_Handler
|
||||
</UL>
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[8]"></a>PendSV_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR><BR>[Calls]<UL><LI><a href="#[8]">>></a> PendSV_Handler
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[8]">>></a> PendSV_Handler
|
||||
</UL>
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[9]"></a>SysTick_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR><BR>[Calls]<UL><LI><a href="#[9]">>></a> SysTick_Handler
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[9]">>></a> SysTick_Handler
|
||||
</UL>
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[1c]"></a>ADC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR><BR>[Calls]<UL><LI><a href="#[1c]">>></a> ADC_IRQHandler
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[1c]">>></a> ADC_IRQHandler
|
||||
</UL>
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[1e]"></a>CAN1_RX0_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[1f]"></a>CAN1_RX1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[20]"></a>CAN1_SCE_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[1d]"></a>CAN1_TX_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[4a]"></a>CAN2_RX0_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[4b]"></a>CAN2_RX1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[4c]"></a>CAN2_SCE_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[49]"></a>CAN2_TX_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[59]"></a>CRYP_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[58]"></a>DCMI_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[15]"></a>DMA1_Stream0_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[16]"></a>DMA1_Stream1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[17]"></a>DMA1_Stream2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[18]"></a>DMA1_Stream3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[19]"></a>DMA1_Stream4_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[1a]"></a>DMA1_Stream5_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[1b]"></a>DMA1_Stream6_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[39]"></a>DMA1_Stream7_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[64]"></a>DMA2D_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[42]"></a>DMA2_Stream0_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[43]"></a>DMA2_Stream1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[44]"></a>DMA2_Stream2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[45]"></a>DMA2_Stream3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[46]"></a>DMA2_Stream4_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[4e]"></a>DMA2_Stream5_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[4f]"></a>DMA2_Stream6_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[50]"></a>DMA2_Stream7_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[47]"></a>ETH_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[48]"></a>ETH_WKUP_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[10]"></a>EXTI0_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[32]"></a>EXTI15_10_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[11]"></a>EXTI1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[12]"></a>EXTI2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[13]"></a>EXTI3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[14]"></a>EXTI4_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[21]"></a>EXTI9_5_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[e]"></a>FLASH_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[3a]"></a>FMC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[5b]"></a>FPU_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[5a]"></a>HASH_RNG_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[2a]"></a>I2C1_ER_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[29]"></a>I2C1_EV_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[2c]"></a>I2C2_ER_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[2b]"></a>I2C2_EV_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[53]"></a>I2C3_ER_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[52]"></a>I2C3_EV_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[63]"></a>LTDC_ER_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[62]"></a>LTDC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[4d]"></a>OTG_FS_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[34]"></a>OTG_FS_WKUP_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[55]"></a>OTG_HS_EP1_IN_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[54]"></a>OTG_HS_EP1_OUT_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[57]"></a>OTG_HS_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[56]"></a>OTG_HS_WKUP_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[b]"></a>PVD_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[f]"></a>RCC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[33]"></a>RTC_Alarm_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[d]"></a>RTC_WKUP_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[61]"></a>SAI1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[3b]"></a>SDIO_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[2d]"></a>SPI1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[2e]"></a>SPI2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[3d]"></a>SPI3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[5e]"></a>SPI4_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[5f]"></a>SPI5_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[60]"></a>SPI6_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[c]"></a>TAMP_STAMP_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[22]"></a>TIM1_BRK_TIM9_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[25]"></a>TIM1_CC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[24]"></a>TIM1_TRG_COM_TIM11_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[23]"></a>TIM1_UP_TIM10_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[26]"></a>TIM2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[27]"></a>TIM3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[28]"></a>TIM4_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[3c]"></a>TIM5_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[40]"></a>TIM6_DAC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[41]"></a>TIM7_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[35]"></a>TIM8_BRK_TIM12_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[38]"></a>TIM8_CC_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[37]"></a>TIM8_TRG_COM_TIM14_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[36]"></a>TIM8_UP_TIM13_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[3e]"></a>UART4_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[3f]"></a>UART5_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[5c]"></a>UART7_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[5d]"></a>UART8_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[2f]"></a>USART1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[30]"></a>USART2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[31]"></a>USART3_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[51]"></a>USART6_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[a]"></a>WWDG_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_ctboard.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[66]"></a>__system</STRONG> (Thumb, 8 bytes, Stack size 8 bytes, system_ctboard.o(.text))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 132<LI>Call Chain = __system ⇒ system_enter_run ⇒ hal_gpio_init_alternate ⇒ hal_gpio_init_output
|
||||
</UL>
|
||||
<BR>[Calls]<UL><LI><a href="#[68]">>></a> system_enter_run
|
||||
</UL>
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_ctboard.o(.text)
|
||||
</UL>
|
||||
<P><STRONG><a name="[68]"></a>system_enter_run</STRONG> (Thumb, 280 bytes, Stack size 48 bytes, system_ctboard.o(.text))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 124<LI>Call Chain = system_enter_run ⇒ hal_gpio_init_alternate ⇒ hal_gpio_init_output
|
||||
</UL>
|
||||
<BR>[Calls]<UL><LI><a href="#[6f]">>></a> hal_fmc_init_sram
|
||||
<LI><a href="#[6e]">>></a> hal_gpio_init_alternate
|
||||
<LI><a href="#[6d]">>></a> hal_rcc_setup_clock
|
||||
<LI><a href="#[6c]">>></a> hal_pwr_set_overdrive
|
||||
<LI><a href="#[6b]">>></a> hal_rcc_setup_pll
|
||||
<LI><a href="#[6a]">>></a> hal_rcc_set_osc
|
||||
<LI><a href="#[69]">>></a> hal_rcc_reset
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[66]">>></a> __system
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[73]"></a>system_enter_sleep</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, system_ctboard.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[74]"></a>system_enter_stop</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, system_ctboard.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[75]"></a>system_enter_standby</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, system_ctboard.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[76]"></a>hal_fmc_reset</STRONG> (Thumb, 60 bytes, Stack size 0 bytes, hal_fmc.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[6f]"></a>hal_fmc_init_sram</STRONG> (Thumb, 264 bytes, Stack size 36 bytes, hal_fmc.o(.text))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 36<LI>Call Chain = hal_fmc_init_sram
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[68]">>></a> system_enter_run
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[77]"></a>hal_gpio_reset</STRONG> (Thumb, 68 bytes, Stack size 0 bytes, hal_gpio.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[78]"></a>hal_gpio_init_input</STRONG> (Thumb, 156 bytes, Stack size 32 bytes, hal_gpio.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[79]"></a>hal_gpio_init_analog</STRONG> (Thumb, 240 bytes, Stack size 36 bytes, hal_gpio.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[70]"></a>hal_gpio_init_output</STRONG> (Thumb, 276 bytes, Stack size 36 bytes, hal_gpio.o(.text))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 36<LI>Call Chain = hal_gpio_init_output
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[6e]">>></a> hal_gpio_init_alternate
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[6e]"></a>hal_gpio_init_alternate</STRONG> (Thumb, 262 bytes, Stack size 40 bytes, hal_gpio.o(.text))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 76<LI>Call Chain = hal_gpio_init_alternate ⇒ hal_gpio_init_output
|
||||
</UL>
|
||||
<BR>[Calls]<UL><LI><a href="#[70]">>></a> hal_gpio_init_output
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[68]">>></a> system_enter_run
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[7a]"></a>hal_gpio_input_read</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, hal_gpio.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[7b]"></a>hal_gpio_output_read</STRONG> (Thumb, 6 bytes, Stack size 0 bytes, hal_gpio.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[7c]"></a>hal_gpio_output_write</STRONG> (Thumb, 20 bytes, Stack size 0 bytes, hal_gpio.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[7d]"></a>hal_gpio_bit_set</STRONG> (Thumb, 24 bytes, Stack size 0 bytes, hal_gpio.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[7e]"></a>hal_gpio_bit_reset</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, hal_gpio.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[7f]"></a>hal_gpio_bit_toggle</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, hal_gpio.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[80]"></a>hal_gpio_irq_set</STRONG> (Thumb, 292 bytes, Stack size 36 bytes, hal_gpio.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[81]"></a>hal_gpio_irq_status</STRONG> (Thumb, 24 bytes, Stack size 0 bytes, hal_gpio.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[82]"></a>hal_gpio_irq_clear</STRONG> (Thumb, 12 bytes, Stack size 0 bytes, hal_gpio.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[83]"></a>hal_pwr_reset</STRONG> (Thumb, 16 bytes, Stack size 0 bytes, hal_pwr.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[84]"></a>hal_pwr_set_backup_domain</STRONG> (Thumb, 56 bytes, Stack size 16 bytes, hal_pwr.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[85]"></a>hal_pwr_set_backup_access</STRONG> (Thumb, 24 bytes, Stack size 0 bytes, hal_pwr.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[86]"></a>hal_pwr_set_wakeup_pin</STRONG> (Thumb, 24 bytes, Stack size 0 bytes, hal_pwr.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[87]"></a>hal_pwr_set_flash_powerdown</STRONG> (Thumb, 24 bytes, Stack size 0 bytes, hal_pwr.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[6c]"></a>hal_pwr_set_overdrive</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, hal_pwr.o(.text))
|
||||
<BR><BR>[Called By]<UL><LI><a href="#[68]">>></a> system_enter_run
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[88]"></a>hal_pwr_set_underdrive</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, hal_pwr.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[69]"></a>hal_rcc_reset</STRONG> (Thumb, 104 bytes, Stack size 16 bytes, hal_rcc.o(.text))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = hal_rcc_reset
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[68]">>></a> system_enter_run
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[89]"></a>hal_rcc_set_peripheral</STRONG> (Thumb, 228 bytes, Stack size 8 bytes, hal_rcc.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[6a]"></a>hal_rcc_set_osc</STRONG> (Thumb, 108 bytes, Stack size 16 bytes, hal_rcc.o(.text))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = hal_rcc_set_osc
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[68]">>></a> system_enter_run
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[6b]"></a>hal_rcc_setup_pll</STRONG> (Thumb, 220 bytes, Stack size 24 bytes, hal_rcc.o(.text))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = hal_rcc_setup_pll
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[68]">>></a> system_enter_run
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[6d]"></a>hal_rcc_setup_clock</STRONG> (Thumb, 80 bytes, Stack size 16 bytes, hal_rcc.o(.text))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = hal_rcc_setup_clock
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[68]">>></a> system_enter_run
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[65]"></a>main</STRONG> (Thumb, 144 bytes, Stack size 0 bytes, struct_code.o(myCode))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = main ⇒ adc_init
|
||||
</UL>
|
||||
<BR>[Calls]<UL><LI><a href="#[72]">>></a> adc_get_value
|
||||
<LI><a href="#[71]">>></a> adc_init
|
||||
</UL>
|
||||
<BR>[Address Reference Count : 1]<UL><LI> datainit_ctboard.o(.text)
|
||||
</UL><P>
|
||||
<H3>
|
||||
Local Symbols
|
||||
</H3><P>
|
||||
<H3>
|
||||
Undefined Global Symbols
|
||||
</H3><HR></body></html>
|
||||
@@ -0,0 +1,14 @@
|
||||
--cpu Cortex-M0
|
||||
".\build\adc.o"
|
||||
".\build\struct_code.o"
|
||||
".\build\datainit_ctboard.o"
|
||||
".\build\startup_ctboard.o"
|
||||
".\build\system_ctboard.o"
|
||||
".\build\hal_fmc.o"
|
||||
".\build\hal_gpio.o"
|
||||
".\build\hal_pwr.o"
|
||||
".\build\hal_rcc.o"
|
||||
--ro-base 0x08000000 --entry 0x08000000 --rw-base 0x20000000 --entry Reset_Handler --first __Vectors --strict
|
||||
--diag_suppress 6314 --summary_stderr --info summarysizes --map --load_addr_map_info --xref --callgraph --symbols
|
||||
--info sizes --info totals --info unused --info veneers
|
||||
--list ".\build\strukt_code.map" -o .\build\strukt_code.axf
|
||||
@@ -0,0 +1,385 @@
|
||||
Component: Arm Compiler for Embedded 6.18 Tool: armlink [5e4cc100]
|
||||
|
||||
==============================================================================
|
||||
|
||||
Section Cross References
|
||||
|
||||
adc.o(.ARM.exidx) refers to adc.o(.text) for [Anonymous Symbol]
|
||||
struct_code.o(myCode) refers to adc.o(.text) for adc_init
|
||||
struct_code.o(myCode) refers to struct_code.o(myConstants) for DISPLAY_BIT
|
||||
datainit_ctboard.o(.text) refers (Weak) to startup_ctboard.o(STACK) for Stack_Mem
|
||||
datainit_ctboard.o(.text) refers to struct_code.o(myCode) for main
|
||||
startup_ctboard.o(RESET) refers to startup_ctboard.o(STACK) for __initial_sp
|
||||
startup_ctboard.o(RESET) refers to startup_ctboard.o(.text) for Reset_Handler
|
||||
startup_ctboard.o(.text) refers to system_ctboard.o(.text) for __system
|
||||
startup_ctboard.o(.text) refers to datainit_ctboard.o(.text) for __main
|
||||
system_ctboard.o(.text) refers to hal_rcc.o(.text) for hal_rcc_reset
|
||||
system_ctboard.o(.text) refers to hal_pwr.o(.text) for hal_pwr_set_overdrive
|
||||
system_ctboard.o(.text) refers to hal_gpio.o(.text) for hal_gpio_init_alternate
|
||||
system_ctboard.o(.text) refers to hal_fmc.o(.text) for hal_fmc_init_sram
|
||||
system_ctboard.o(.ARM.exidx) refers to system_ctboard.o(.text) for [Anonymous Symbol]
|
||||
hal_fmc.o(.ARM.exidx) refers to hal_fmc.o(.text) for [Anonymous Symbol]
|
||||
hal_gpio.o(.ARM.exidx) refers to hal_gpio.o(.text) for [Anonymous Symbol]
|
||||
hal_pwr.o(.ARM.exidx) refers to hal_pwr.o(.text) for [Anonymous Symbol]
|
||||
hal_rcc.o(.ARM.exidx) refers to hal_rcc.o(.text) for [Anonymous Symbol]
|
||||
|
||||
|
||||
==============================================================================
|
||||
|
||||
Removing Unused input sections from the image.
|
||||
|
||||
Removing adc.o(.ARM.exidx), (16 bytes).
|
||||
Removing startup_ctboard.o(HEAP), (2048 bytes).
|
||||
Removing system_ctboard.o(.ARM.exidx), (40 bytes).
|
||||
Removing hal_fmc.o(.ARM.exidx), (16 bytes).
|
||||
Removing hal_gpio.o(.ARM.exidx), (112 bytes).
|
||||
Removing hal_pwr.o(.ARM.exidx), (56 bytes).
|
||||
Removing hal_rcc.o(.ARM.exidx), (40 bytes).
|
||||
|
||||
7 unused section(s) (total 2328 bytes) removed from the image.
|
||||
|
||||
==============================================================================
|
||||
|
||||
Image Symbol Table
|
||||
|
||||
Local Symbols
|
||||
|
||||
Symbol Name Value Ov Type Size Object(Section)
|
||||
|
||||
RTE/Device/CT_Board_HS14_M0/datainit_ctboard.s 0x00000000 Number 0 datainit_ctboard.o ABSOLUTE
|
||||
RTE/Device/CT_Board_HS14_M0/startup_ctboard.s 0x00000000 Number 0 startup_ctboard.o ABSOLUTE
|
||||
adc.c 0x00000000 Number 0 adc.o ABSOLUTE
|
||||
app\struct_code.s 0x00000000 Number 0 struct_code.o ABSOLUTE
|
||||
hal_fmc.c 0x00000000 Number 0 hal_fmc.o ABSOLUTE
|
||||
hal_gpio.c 0x00000000 Number 0 hal_gpio.o ABSOLUTE
|
||||
hal_pwr.c 0x00000000 Number 0 hal_pwr.o ABSOLUTE
|
||||
hal_rcc.c 0x00000000 Number 0 hal_rcc.o ABSOLUTE
|
||||
system_ctboard.c 0x00000000 Number 0 system_ctboard.o ABSOLUTE
|
||||
RESET 0x08000000 Section 428 startup_ctboard.o(RESET)
|
||||
[Anonymous Symbol] 0x080001ac Section 0 adc.o(.text)
|
||||
__arm_cp.0_0 0x080001fc Number 4 adc.o(.text)
|
||||
__arm_cp.0_1 0x08000200 Number 4 adc.o(.text)
|
||||
__arm_cp.0_2 0x08000204 Number 4 adc.o(.text)
|
||||
__arm_cp.1_0 0x08000220 Number 4 adc.o(.text)
|
||||
.text 0x08000224 Section 124 datainit_ctboard.o(.text)
|
||||
.text 0x080002a0 Section 36 startup_ctboard.o(.text)
|
||||
[Anonymous Symbol] 0x080002c4 Section 0 system_ctboard.o(.text)
|
||||
__arm_cp.1_0 0x080003e4 Number 4 system_ctboard.o(.text)
|
||||
__arm_cp.1_1 0x080003e8 Number 4 system_ctboard.o(.text)
|
||||
__arm_cp.1_2 0x080003ec Number 4 system_ctboard.o(.text)
|
||||
__arm_cp.1_3 0x080003f0 Number 4 system_ctboard.o(.text)
|
||||
__arm_cp.1_4 0x080003f4 Number 4 system_ctboard.o(.text)
|
||||
__arm_cp.1_5 0x080003f8 Number 4 system_ctboard.o(.text)
|
||||
__arm_cp.1_6 0x080003fc Number 4 system_ctboard.o(.text)
|
||||
__arm_cp.1_7 0x08000400 Number 4 system_ctboard.o(.text)
|
||||
__arm_cp.1_8 0x08000404 Number 4 system_ctboard.o(.text)
|
||||
__arm_cp.1_9 0x08000408 Number 4 system_ctboard.o(.text)
|
||||
__arm_cp.1_10 0x0800040c Number 4 system_ctboard.o(.text)
|
||||
__arm_cp.1_11 0x08000410 Number 4 system_ctboard.o(.text)
|
||||
__arm_cp.1_12 0x08000414 Number 4 system_ctboard.o(.text)
|
||||
__arm_cp.1_13 0x08000418 Number 4 system_ctboard.o(.text)
|
||||
__arm_cp.1_14 0x0800041c Number 4 system_ctboard.o(.text)
|
||||
[Anonymous Symbol] 0x08000428 Section 0 hal_fmc.o(.text)
|
||||
__arm_cp.0_0 0x08000464 Number 4 hal_fmc.o(.text)
|
||||
__arm_cp.0_1 0x08000468 Number 4 hal_fmc.o(.text)
|
||||
__arm_cp.0_2 0x0800046c Number 4 hal_fmc.o(.text)
|
||||
__arm_cp.1_0 0x08000578 Number 4 hal_fmc.o(.text)
|
||||
[Anonymous Symbol] 0x0800057c Section 0 hal_gpio.o(.text)
|
||||
__arm_cp.0_0 0x080005c0 Number 4 hal_gpio.o(.text)
|
||||
__arm_cp.0_1 0x080005c4 Number 4 hal_gpio.o(.text)
|
||||
__arm_cp.1_0 0x08000664 Number 4 hal_gpio.o(.text)
|
||||
__arm_cp.1_1 0x08000668 Number 4 hal_gpio.o(.text)
|
||||
__arm_cp.2_0 0x0800075c Number 4 hal_gpio.o(.text)
|
||||
__arm_cp.2_1 0x08000760 Number 4 hal_gpio.o(.text)
|
||||
__arm_cp.3_0 0x08000878 Number 4 hal_gpio.o(.text)
|
||||
__arm_cp.3_1 0x0800087c Number 4 hal_gpio.o(.text)
|
||||
__arm_cp.7_0 0x080009a8 Number 4 hal_gpio.o(.text)
|
||||
__arm_cp.7_1 0x080009ac Number 4 hal_gpio.o(.text)
|
||||
__arm_cp.8_0 0x080009c8 Number 4 hal_gpio.o(.text)
|
||||
__arm_cp.8_1 0x080009cc Number 4 hal_gpio.o(.text)
|
||||
__arm_cp.9_0 0x080009ec Number 4 hal_gpio.o(.text)
|
||||
__arm_cp.9_1 0x080009f0 Number 4 hal_gpio.o(.text)
|
||||
__arm_cp.10_0 0x08000a10 Number 4 hal_gpio.o(.text)
|
||||
__arm_cp.10_1 0x08000a14 Number 4 hal_gpio.o(.text)
|
||||
__arm_cp.11_0 0x08000b3c Number 4 hal_gpio.o(.text)
|
||||
__arm_cp.11_1 0x08000b40 Number 4 hal_gpio.o(.text)
|
||||
__arm_cp.11_2 0x08000b44 Number 4 hal_gpio.o(.text)
|
||||
__arm_cp.11_3 0x08000b48 Number 4 hal_gpio.o(.text)
|
||||
__arm_cp.11_4 0x08000b4c Number 4 hal_gpio.o(.text)
|
||||
__arm_cp.11_5 0x08000b50 Number 4 hal_gpio.o(.text)
|
||||
__arm_cp.12_0 0x08000b6c Number 4 hal_gpio.o(.text)
|
||||
__arm_cp.13_0 0x08000b7c Number 4 hal_gpio.o(.text)
|
||||
[Anonymous Symbol] 0x08000b80 Section 0 hal_pwr.o(.text)
|
||||
__arm_cp.0_0 0x08000b90 Number 4 hal_pwr.o(.text)
|
||||
__arm_cp.1_0 0x08000bcc Number 4 hal_pwr.o(.text)
|
||||
__arm_cp.2_0 0x08000be8 Number 4 hal_pwr.o(.text)
|
||||
__arm_cp.3_0 0x08000c04 Number 4 hal_pwr.o(.text)
|
||||
__arm_cp.4_0 0x08000c20 Number 4 hal_pwr.o(.text)
|
||||
[Anonymous Symbol] 0x08000c2c Section 0 hal_rcc.o(.text)
|
||||
__arm_cp.0_0 0x08000c94 Number 4 hal_rcc.o(.text)
|
||||
__arm_cp.0_1 0x08000c98 Number 4 hal_rcc.o(.text)
|
||||
__arm_cp.0_2 0x08000c9c Number 4 hal_rcc.o(.text)
|
||||
__arm_cp.0_3 0x08000ca0 Number 4 hal_rcc.o(.text)
|
||||
__arm_cp.0_4 0x08000ca4 Number 4 hal_rcc.o(.text)
|
||||
__arm_cp.0_5 0x08000ca8 Number 4 hal_rcc.o(.text)
|
||||
__arm_cp.0_6 0x08000cac Number 4 hal_rcc.o(.text)
|
||||
__arm_cp.0_7 0x08000cb0 Number 4 hal_rcc.o(.text)
|
||||
__arm_cp.1_0 0x08000d98 Number 4 hal_rcc.o(.text)
|
||||
__arm_cp.2_0 0x08000e08 Number 4 hal_rcc.o(.text)
|
||||
__arm_cp.2_1 0x08000e0c Number 4 hal_rcc.o(.text)
|
||||
__arm_cp.3_0 0x08000eec Number 4 hal_rcc.o(.text)
|
||||
__arm_cp.3_1 0x08000ef0 Number 4 hal_rcc.o(.text)
|
||||
__arm_cp.3_2 0x08000ef4 Number 4 hal_rcc.o(.text)
|
||||
__arm_cp.3_3 0x08000ef8 Number 4 hal_rcc.o(.text)
|
||||
__arm_cp.3_4 0x08000efc Number 4 hal_rcc.o(.text)
|
||||
__arm_cp.3_5 0x08000f00 Number 4 hal_rcc.o(.text)
|
||||
__arm_cp.4_0 0x08000f54 Number 4 hal_rcc.o(.text)
|
||||
__arm_cp.4_1 0x08000f58 Number 4 hal_rcc.o(.text)
|
||||
myCode 0x08000f5c Section 192 struct_code.o(myCode)
|
||||
DISPLAY_BIT 0x0800101c Data 4 struct_code.o(myConstants)
|
||||
myConstants 0x0800101c Section 8 struct_code.o(myConstants)
|
||||
STACK 0x20000000 Section 8192 startup_ctboard.o(STACK)
|
||||
__initial_sp 0x20002000 Data 0 startup_ctboard.o(STACK)
|
||||
|
||||
Global Symbols
|
||||
|
||||
Symbol Name Value Ov Type Size Object(Section)
|
||||
|
||||
BuildAttributes$$THM_ISAv3M$S$PE$A:L22$X:L11$S22$IEEE1$IW$~IW$USESV6$~STKCKD$USESV7$WCHAR32$ENUMINT$~SHL$OTIME$EBA8$STANDARDLIB$REQ8$PRES8$EABIv2 0x00000000 Number 0 anon$$obj.o ABSOLUTE
|
||||
Image$$ER_IROM1$$Limit - Undefined Weak Reference
|
||||
Image$$RW_IRAM1$$Base - Undefined Weak Reference
|
||||
Image$$RW_IRAM1$$ZI$$Base - Undefined Weak Reference
|
||||
Image$$RW_IRAM1$$ZI$$Limit - Undefined Weak Reference
|
||||
__Vectors_Size 0x000001ac Number 0 startup_ctboard.o ABSOLUTE
|
||||
Stack_Size 0x00002000 Number 0 startup_ctboard.o ABSOLUTE
|
||||
__Vectors 0x08000000 Data 4 startup_ctboard.o(RESET)
|
||||
__Vectors_End 0x080001ac Data 0 startup_ctboard.o(RESET)
|
||||
adc_init 0x080001ad Thumb Code 80 adc.o(.text)
|
||||
adc_get_value 0x08000209 Thumb Code 24 adc.o(.text)
|
||||
__main 0x08000225 Thumb Code 74 datainit_ctboard.o(.text)
|
||||
Reset_Handler 0x080002a1 Thumb Code 8 startup_ctboard.o(.text)
|
||||
NMI_Handler 0x080002a9 Thumb Code 2 startup_ctboard.o(.text)
|
||||
HardFault_Handler 0x080002ab Thumb Code 2 startup_ctboard.o(.text)
|
||||
MemManage_Handler 0x080002ad Thumb Code 2 startup_ctboard.o(.text)
|
||||
BusFault_Handler 0x080002af Thumb Code 2 startup_ctboard.o(.text)
|
||||
UsageFault_Handler 0x080002b1 Thumb Code 2 startup_ctboard.o(.text)
|
||||
SVC_Handler 0x080002b3 Thumb Code 2 startup_ctboard.o(.text)
|
||||
DebugMon_Handler 0x080002b5 Thumb Code 2 startup_ctboard.o(.text)
|
||||
PendSV_Handler 0x080002b7 Thumb Code 2 startup_ctboard.o(.text)
|
||||
SysTick_Handler 0x080002b9 Thumb Code 2 startup_ctboard.o(.text)
|
||||
ADC_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
CAN1_RX0_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
CAN1_RX1_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
CAN1_SCE_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
CAN1_TX_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
CAN2_RX0_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
CAN2_RX1_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
CAN2_SCE_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
CAN2_TX_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
CRYP_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
DCMI_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
DMA1_Stream0_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
DMA1_Stream1_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
DMA1_Stream2_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
DMA1_Stream3_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
DMA1_Stream4_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
DMA1_Stream5_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
DMA1_Stream6_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
DMA1_Stream7_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
DMA2D_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
DMA2_Stream0_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
DMA2_Stream1_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
DMA2_Stream2_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
DMA2_Stream3_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
DMA2_Stream4_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
DMA2_Stream5_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
DMA2_Stream6_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
DMA2_Stream7_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
ETH_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
ETH_WKUP_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
EXTI0_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
EXTI15_10_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
EXTI1_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
EXTI2_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
EXTI3_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
EXTI4_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
EXTI9_5_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
FLASH_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
FMC_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
FPU_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
HASH_RNG_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
I2C1_ER_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
I2C1_EV_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
I2C2_ER_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
I2C2_EV_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
I2C3_ER_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
I2C3_EV_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
LTDC_ER_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
LTDC_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
OTG_FS_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
OTG_FS_WKUP_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
OTG_HS_EP1_IN_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
OTG_HS_EP1_OUT_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
OTG_HS_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
OTG_HS_WKUP_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
PVD_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
RCC_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
RTC_Alarm_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
RTC_WKUP_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
SAI1_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
SDIO_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
SPI1_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
SPI2_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
SPI3_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
SPI4_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
SPI5_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
SPI6_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
TAMP_STAMP_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
TIM1_BRK_TIM9_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
TIM1_CC_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
TIM1_TRG_COM_TIM11_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
TIM1_UP_TIM10_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
TIM2_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
TIM3_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
TIM4_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
TIM5_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
TIM6_DAC_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
TIM7_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
TIM8_BRK_TIM12_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
TIM8_CC_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
TIM8_TRG_COM_TIM14_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
TIM8_UP_TIM13_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
UART4_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
UART5_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
UART7_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
UART8_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
USART1_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
USART2_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
USART3_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
USART6_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
WWDG_IRQHandler 0x080002bb Thumb Code 0 startup_ctboard.o(.text)
|
||||
__system 0x080002c5 Thumb Code 8 system_ctboard.o(.text)
|
||||
system_enter_run 0x080002cd Thumb Code 280 system_ctboard.o(.text)
|
||||
system_enter_sleep 0x08000421 Thumb Code 2 system_ctboard.o(.text)
|
||||
system_enter_stop 0x08000423 Thumb Code 2 system_ctboard.o(.text)
|
||||
system_enter_standby 0x08000425 Thumb Code 2 system_ctboard.o(.text)
|
||||
hal_fmc_reset 0x08000429 Thumb Code 60 hal_fmc.o(.text)
|
||||
hal_fmc_init_sram 0x08000471 Thumb Code 264 hal_fmc.o(.text)
|
||||
hal_gpio_reset 0x0800057d Thumb Code 68 hal_gpio.o(.text)
|
||||
hal_gpio_init_input 0x080005c9 Thumb Code 156 hal_gpio.o(.text)
|
||||
hal_gpio_init_analog 0x0800066d Thumb Code 240 hal_gpio.o(.text)
|
||||
hal_gpio_init_output 0x08000765 Thumb Code 276 hal_gpio.o(.text)
|
||||
hal_gpio_init_alternate 0x08000881 Thumb Code 262 hal_gpio.o(.text)
|
||||
hal_gpio_input_read 0x08000987 Thumb Code 6 hal_gpio.o(.text)
|
||||
hal_gpio_output_read 0x0800098d Thumb Code 6 hal_gpio.o(.text)
|
||||
hal_gpio_output_write 0x08000995 Thumb Code 20 hal_gpio.o(.text)
|
||||
hal_gpio_bit_set 0x080009b1 Thumb Code 24 hal_gpio.o(.text)
|
||||
hal_gpio_bit_reset 0x080009d1 Thumb Code 28 hal_gpio.o(.text)
|
||||
hal_gpio_bit_toggle 0x080009f5 Thumb Code 28 hal_gpio.o(.text)
|
||||
hal_gpio_irq_set 0x08000a19 Thumb Code 292 hal_gpio.o(.text)
|
||||
hal_gpio_irq_status 0x08000b55 Thumb Code 24 hal_gpio.o(.text)
|
||||
hal_gpio_irq_clear 0x08000b71 Thumb Code 12 hal_gpio.o(.text)
|
||||
hal_pwr_reset 0x08000b81 Thumb Code 16 hal_pwr.o(.text)
|
||||
hal_pwr_set_backup_domain 0x08000b95 Thumb Code 56 hal_pwr.o(.text)
|
||||
hal_pwr_set_backup_access 0x08000bd1 Thumb Code 24 hal_pwr.o(.text)
|
||||
hal_pwr_set_wakeup_pin 0x08000bed Thumb Code 24 hal_pwr.o(.text)
|
||||
hal_pwr_set_flash_powerdown 0x08000c09 Thumb Code 24 hal_pwr.o(.text)
|
||||
hal_pwr_set_overdrive 0x08000c25 Thumb Code 4 hal_pwr.o(.text)
|
||||
hal_pwr_set_underdrive 0x08000c29 Thumb Code 4 hal_pwr.o(.text)
|
||||
hal_rcc_reset 0x08000c2d Thumb Code 104 hal_rcc.o(.text)
|
||||
hal_rcc_set_peripheral 0x08000cb5 Thumb Code 228 hal_rcc.o(.text)
|
||||
hal_rcc_set_osc 0x08000d9d Thumb Code 108 hal_rcc.o(.text)
|
||||
hal_rcc_setup_pll 0x08000e11 Thumb Code 220 hal_rcc.o(.text)
|
||||
hal_rcc_setup_clock 0x08000f05 Thumb Code 80 hal_rcc.o(.text)
|
||||
main 0x08000f5d Thumb Code 144 struct_code.o(myCode)
|
||||
Image$$RO$$Limit 0x08001024 Number 0 anon$$obj.o ABSOLUTE
|
||||
Image$$RW$$Base 0x20000000 Number 0 anon$$obj.o ABSOLUTE
|
||||
Image$$ZI$$Base 0x20000000 Number 0 anon$$obj.o ABSOLUTE
|
||||
Stack_Mem 0x20000000 Data 8192 startup_ctboard.o(STACK)
|
||||
Image$$ZI$$Limit 0x20002000 Number 0 anon$$obj.o ABSOLUTE
|
||||
|
||||
|
||||
|
||||
==============================================================================
|
||||
|
||||
Memory Map of the image
|
||||
|
||||
Image Entry point : 0x080002a1
|
||||
|
||||
Load Region LR_1 (Base: 0x08000000, Size: 0x00001024, Max: 0xffffffff, ABSOLUTE)
|
||||
|
||||
Execution Region ER_RO (Exec base: 0x08000000, Load base: 0x08000000, Size: 0x00001024, Max: 0xffffffff, ABSOLUTE)
|
||||
|
||||
Exec Addr Load Addr Size Type Attr Idx E Section Name Object
|
||||
|
||||
0x08000000 0x08000000 0x000001ac Data RO 21 RESET startup_ctboard.o
|
||||
0x080001ac 0x080001ac 0x00000078 Code RO 1 .text adc.o
|
||||
0x08000224 0x08000224 0x0000007c Code RO 15 .text datainit_ctboard.o
|
||||
0x080002a0 0x080002a0 0x00000024 Code RO 22 * .text startup_ctboard.o
|
||||
0x080002c4 0x080002c4 0x00000162 Code RO 26 .text system_ctboard.o
|
||||
0x08000426 0x08000426 0x00000002 PAD
|
||||
0x08000428 0x08000428 0x00000154 Code RO 34 .text hal_fmc.o
|
||||
0x0800057c 0x0800057c 0x00000604 Code RO 42 .text hal_gpio.o
|
||||
0x08000b80 0x08000b80 0x000000ac Code RO 50 .text hal_pwr.o
|
||||
0x08000c2c 0x08000c2c 0x00000330 Code RO 58 .text hal_rcc.o
|
||||
0x08000f5c 0x08000f5c 0x000000c0 Code RO 9 * myCode struct_code.o
|
||||
0x0800101c 0x0800101c 0x00000008 Data RO 8 myConstants struct_code.o
|
||||
|
||||
|
||||
Execution Region ER_RW (Exec base: 0x20000000, Load base: 0x08001024, Size: 0x00000000, Max: 0xffffffff, ABSOLUTE)
|
||||
|
||||
**** No section assigned to this execution region ****
|
||||
|
||||
|
||||
Execution Region ER_ZI (Exec base: 0x20000000, Load base: 0x08001024, Size: 0x00002000, Max: 0xffffffff, ABSOLUTE)
|
||||
|
||||
Exec Addr Load Addr Size Type Attr Idx E Section Name Object
|
||||
|
||||
0x20000000 - 0x00002000 Zero RW 19 STACK startup_ctboard.o
|
||||
|
||||
|
||||
==============================================================================
|
||||
|
||||
Image component sizes
|
||||
|
||||
|
||||
Code (inc. data) RO Data RW Data ZI Data Debug Object Name
|
||||
|
||||
120 16 0 0 0 2175 adc.o
|
||||
124 50 0 0 0 432 datainit_ctboard.o
|
||||
340 16 0 0 0 3840 hal_fmc.o
|
||||
1540 96 0 0 0 12004 hal_gpio.o
|
||||
172 20 0 0 0 2135 hal_pwr.o
|
||||
816 168 0 0 0 5363 hal_rcc.o
|
||||
36 8 428 0 8192 832 startup_ctboard.o
|
||||
192 48 8 0 0 440 struct_code.o
|
||||
354 60 0 0 0 6774 system_ctboard.o
|
||||
|
||||
----------------------------------------------------------------------
|
||||
3696 482 436 0 8192 33995 Object Totals
|
||||
0 0 0 0 0 0 (incl. Generated)
|
||||
2 0 0 0 0 0 (incl. Padding)
|
||||
|
||||
----------------------------------------------------------------------
|
||||
0 0 0 0 0 0 Library Totals
|
||||
0 0 0 0 0 0 (incl. Padding)
|
||||
|
||||
----------------------------------------------------------------------
|
||||
|
||||
==============================================================================
|
||||
|
||||
|
||||
Code (inc. data) RO Data RW Data ZI Data Debug
|
||||
|
||||
3696 482 436 0 8192 33791 Grand Totals
|
||||
3696 482 436 0 8192 33791 ELF Image Totals
|
||||
3696 482 436 0 0 0 ROM Totals
|
||||
|
||||
==============================================================================
|
||||
|
||||
Total RO Size (Code + RO Data) 4132 ( 4.04kB)
|
||||
Total RW Size (RW Data + ZI Data) 8192 ( 8.00kB)
|
||||
Total ROM Size (Code + RO Data + RW Data) 4132 ( 4.04kB)
|
||||
|
||||
==============================================================================
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
Dependencies for Project 'strukt_code', Target 'Target 1': (DO NOT MODIFY !)
|
||||
CompilerVersion: 6180000::V6.18::ARMCLANG
|
||||
F (.\app\adc.c)(0x636DF2E9)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m0 -c
|
||||
|
||||
-fno-rtti -funsigned-char
|
||||
|
||||
-D__EVAL -gdwarf-4 -O1 -fno-function-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier
|
||||
|
||||
-I./RTE/_Target_1
|
||||
|
||||
-IC:/Users/roman/AppData/Local/Arm/Packs/InES/CTBoard14_DFP/4.0.2/Device/Include
|
||||
|
||||
-IC:/Users/roman/AppData/Local/Arm/Packs/InES/CTBoard14_DFP/4.0.2/Device/Include/m0
|
||||
|
||||
-IC:/Users/roman/AppData/Local/Arm/Packs/InES/CTBoard14_DFP/4.0.2/HAL/Include
|
||||
|
||||
-D__UVISION_VERSION="537" -D_RTE_ -D_RTE_
|
||||
|
||||
-o ./build/adc.o -MD)
|
||||
I (C:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\Device\Include\reg_stm32f4xx.h)(0x5C597514)
|
||||
I (C:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6252B538)
|
||||
F (.\app\struct_code.s)(0x636E0271)(--cpu Cortex-M0 --pd "__EVAL SETA 1" -g
|
||||
|
||||
-I.\RTE\_Target_1
|
||||
|
||||
-IC:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\Device\Include
|
||||
|
||||
-IC:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\Device\Include\m0
|
||||
|
||||
-IC:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\HAL\Include
|
||||
|
||||
--pd "__UVISION_VERSION SETA 537"
|
||||
|
||||
--pd "_RTE_ SETA 1"
|
||||
|
||||
--pd "_RTE_ SETA 1"
|
||||
|
||||
--list .\build\struct_code.lst
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
./build/system_ctboard.o: RTE\Device\CT_Board_HS14_M0\system_ctboard.c \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\Device\Include\system_ctboard.h \
|
||||
C:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\Device\Include\m0\platform_ctboard.h \
|
||||
C:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\HAL\Include\hal_gpio.h \
|
||||
C:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\Device\Include\reg_stm32f4xx.h \
|
||||
C:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\HAL\Include\hal_common.h \
|
||||
C:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\HAL\Include\hal_fmc.h \
|
||||
C:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\HAL\Include\hal_pwr.h \
|
||||
C:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\HAL\Include\hal_rcc.h \
|
||||
C:\Users\roman\AppData\Local\Arm\Packs\InES\CTBoard14_DFP\4.0.2\Device\Include\reg_ctboard.h
|
||||
Binary file not shown.
Reference in New Issue
Block a user