# # Thanks to Tom Van den Bon for cleaning up the STM templates into # something easily built with GCC at # # https://github.com/tomvdb/stm32f401-nucleo-basic-template # TOPLEVEL ?= . # Location of the Libraries folder from the STM32F0xx Standard Peripheral Library STD_PERIPH_LIB ?= $(TOPLEVEL)/Drivers # Location of the linker scripts LDSCRIPT_INC ?= $(TOPLEVEL)/Device/ldscripts # location of OpenOCD Board .cfg files (only used with 'make flash-target') # # This path is from Ubuntu 14.04. # OPENOCD_BOARD_DIR ?= /usr/share/openocd/scripts/board # Configuration (cfg) file containing programming directives for OpenOCD # # If you are using an STLINK v2.0 from an STM32 F4 DISCOVERY board, # set this variable to "stm32f4discovery.cfg". # # If you are using a NUCLEO board, set it to "stm32f4-openocd.cfg" (tomvdb) or # "board/st_nucleo_f401re.cfg" I guess. # # If you are using something else, look for a matching configuration file in # the OPENOCD_BOARD_DIR directory. # OPENOCD_PROC_FILE ?= stm32f4discovery.cfg # MCU selection parameters # STDPERIPH_SETTINGS ?= -DUSE_STDPERIPH_DRIVER -DSTM32F4XX -DSTM32F429xx # # For the dev-bridge rev01 board, use stm32f429bitx.ld. MCU_LINKSCRIPT ?= stm32f429bitx.ld # add startup file to build # # For the dev-bridge rev01 board, use startup_stm32f429xx.s. SRCS += $(TOPLEVEL)/Device/startup_stm32f429xx.s SRCS += $(TOPLEVEL)/Device/system_stm32f4xx.c # that's it, no need to change anything below this line! ################################################### CC=arm-none-eabi-gcc OBJCOPY=arm-none-eabi-objcopy OBJDUMP=arm-none-eabi-objdump SIZE=arm-none-eabi-size GDB=arm-none-eabi-gdb OPENOCD=openocd CFLAGS = -ggdb -O2 -Wall -Wextra -Warray-bounds CFLAGS += -mcpu=cortex-m4 -mthumb -mlittle-endian -mthumb-interwork CFLAGS += -mfloat-abi=hard -mfpu=fpv4-sp-d16 CFLAGS += $(STDPERIPH_SETTINGS) CFLAGS += -ffunction-sections -fdata-sections CFLAGS += -Wl,--gc-sections -Wl,-Map=$(PROJ_NAME).map ################################################### vpath %.c src vpath %.a $(STD_PERIPH_LIB) ROOT=$(shell pwd) CFLAGS += -I include -I $(STD_PERIPH_LIB) -I $(STD_PERIPH_LIB)/CMSIS/Device/ST/STM32F4xx/Include CFLAGS += -I $(STD_PERIPH_LIB)/CMSIS/Include -I $(STD_PERIPH_LIB)/STM32F4xx_HAL_Driver/Inc #CFLAGS += -include $(STD_PERIPH_LIB)/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_conf.h '>
path: root/rtl/alpha_fmc_top.v
blob: 03c28028f5f05cf98cc9d5464231ca27a991fa9c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192