Statistics
| Branch: | Tag: | Revision:

amiro-os / modules / NUCLEO-L476RG / Makefile @ 0aed1f1b

History | View | Annotate | Download (8.358 KB)

1 27d0378b Simon Welzel
################################################################################
2
# AMiRo-OS is an operating system designed for the Autonomous Mini Robot       #
3
# (AMiRo) platform.                                                            #
4 1678f270 Simon Welzel
# Copyright (C) 2016..2019  Thomas Schöpping et al.                            #
5 27d0378b Simon Welzel
#                                                                              #
6
# This program is free software: you can redistribute it and/or modify         #
7
# it under the terms of the GNU General Public License as published by         #
8
# the Free Software Foundation, either version 3 of the License, or            #
9
# (at your option) any later version.                                          #
10
#                                                                              #
11
# This program is distributed in the hope that it will be useful,              #
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of               #
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                #
14
# GNU General Public License for more details.                                 #
15
#                                                                              #
16
# You should have received a copy of the GNU General Public License            #
17
# along with this program.  If not, see <http://www.gnu.org/licenses/>.        #
18
#                                                                              #
19
# This research/work was supported by the Cluster of Excellence Cognitive      #
20
# Interaction Technology 'CITEC' (EXC 277) at Bielefeld University, which is   #
21
# funded by the German Research Foundation (DFG).                              #
22
################################################################################
23
24
25
26
################################################################################
27
# Build global options                                                         #
28
# NOTE: Can be overridden externally.                                          #
29
#                                                                              #
30
31
# Compiler options here.
32
ifeq ($(USE_OPT),)
33 00843891 Thomas Schöpping
  USE_OPT = -O2 -fstack-usage
34 27d0378b Simon Welzel
endif
35
36
# C specific options here (added to USE_OPT).
37
ifeq ($(USE_COPT),)
38 691a0632 Thomas Schöpping
  USE_COPT = -std=c17
39 27d0378b Simon Welzel
endif
40
41
# C++ specific options here (added to USE_OPT).
42
ifeq ($(USE_CPPOPT),)
43
  USE_CPPOPT = -fno-rtti -std=c++17
44
endif
45
46 732a4657 Thomas Schöpping
# Enable this if you want the linker to remove unused code and data.
47 27d0378b Simon Welzel
ifeq ($(USE_LINK_GC),)
48
  USE_LINK_GC = yes
49
endif
50
51
# Linker extra options here.
52
ifeq ($(USE_LDOPT),)
53
  USE_LDOPT =
54
endif
55
56 732a4657 Thomas Schöpping
# Enable this if you want link time optimizations (LTO).
57 27d0378b Simon Welzel
ifeq ($(USE_LTO),)
58
  USE_LTO = yes
59
endif
60
61
# Enable this if you want to see the full log while compiling.
62
ifeq ($(USE_VERBOSE_COMPILE),)
63
  USE_VERBOSE_COMPILE = no
64
endif
65
66
# If enabled, this option makes the build process faster by not compiling
67
# modules not used in the current configuration.
68
ifeq ($(USE_SMART_BUILD),)
69
  USE_SMART_BUILD = no
70
endif
71
72
#                                                                              #
73
# Build global options                                                         #
74
################################################################################
75
76
################################################################################
77
# Architecture or project specific options                                     #
78
#                                                                              #
79
80
# Stack size to be allocated to the Cortex-M process stack. This stack is
81
# the stack used by the main() thread.
82
ifeq ($(USE_PROCESS_STACKSIZE),)
83
  USE_PROCESS_STACKSIZE = 0x400
84
endif
85
86
# Stack size to the allocated to the Cortex-M main/exceptions stack. This
87
# stack is used for processing interrupts and exceptions.
88
ifeq ($(USE_EXCEPTIONS_STACKSIZE),)
89
  USE_EXCEPTIONS_STACKSIZE = 0x400
90
endif
91
92 732a4657 Thomas Schöpping
# Enables the use of FPU.
93 27d0378b Simon Welzel
# Possible selections are:
94
#   no     - no FPU is used (probably equals 'soft')
95
#   soft   - does not use the FPU, thus all floating point operations are emulated
96
#   softfp - uses the FPU, but uses the integer registers only
97
#   hard   - uses the FPU and passes data via the FPU registers
98
ifeq ($(USE_FPU),)
99
  USE_FPU = softfp
100
endif
101
102 732a4657 Thomas Schöpping
# FPU-related options.
103
ifeq ($(USE_FPU_OPT),)
104
  USE_FPU_OPT = -mfloat-abi=$(USE_FPU) -mfpu=fpv4-sp-d16
105
endif
106
107 27d0378b Simon Welzel
#                                                                              #
108
# Architecture or project specific options                                     #
109
################################################################################
110
111
################################################################################
112 732a4657 Thomas Schöpping
# Project, target, sources and paths                                           #
113 27d0378b Simon Welzel
#                                                                              #
114
115 4c72a54c Thomas Schöpping
# Absolute path to the project.
116
PROJECT_PATH := $(abspath $(dir $(lastword $(MAKEFILE_LIST))))
117 2f5f6722 Thomas Schöpping
118 4c72a54c Thomas Schöpping
# Project name.
119
PROJECT := $(notdir $(PROJECT_PATH))
120 27d0378b Simon Welzel
121 732a4657 Thomas Schöpping
# Target settings.
122 4c72a54c Thomas Schöpping
MCU := cortex-m4
123 732a4657 Thomas Schöpping
124 4c72a54c Thomas Schöpping
# Module specific paths and directories.
125 efe86ca9 Thomas Schöpping
MODULE_DIR := .
126
CONFIG_DIR := $(MODULEDIR)
127 e7b5a625 Thomas Schöpping
ifeq ($(BUILDDIR),)
128
  BUILDDIR := $(PROJECT_PATH)/build
129 732a4657 Thomas Schöpping
endif
130 e7b5a625 Thomas Schöpping
DEPDIR := $(dir $(BUILDDIR)).dep
131 4c72a54c Thomas Schöpping
132
# Linker script.
133 efe86ca9 Thomas Schöpping
LDSCRIPT := $(MODULE_DIR)/STM32L476xG.ld
134 4c72a54c Thomas Schöpping
135
# General AMiRo-OS files.
136 efe86ca9 Thomas Schöpping
include ../../amiro-os.mk
137 4c72a54c Thomas Schöpping
138
# Module specific ChibiOS files.
139 27d0378b Simon Welzel
include $(CHIBIOS)/os/common/startup/ARMCMx/compilers/GCC/mk/startup_stm32l4xx.mk
140
include $(CHIBIOS)/os/hal/ports/STM32/STM32L4xx/platform.mk
141
include $(CHIBIOS)/os/common/ports/ARMCMx/compilers/GCC/mk/port_v7m.mk
142 4c72a54c Thomas Schöpping
143
# Periphery LLDs.
144 efe86ca9 Thomas Schöpping
include $(AMIROLLD)/drivers/LED/v1/alld_LED.mk
145
include $(AMIROLLD)/drivers/button/v1/alld_button.mk
146
include $(AMIROLLD)/drivers/MPU6050/v1/alld_MPU6050.mk
147 4c72a54c Thomas Schöpping
148
# Tests.
149 0aed1f1b Thomas Schöpping
include $(AMIROOS_TEST_DIR)periphery-lld/button_v1/aos_test_button.mk
150
include $(AMIROOS_TEST_DIR)periphery-lld/LED_v1/aos_test_LED.mk
151
include $(AMIROOS_TEST_DIR)periphery-lld/MPU6050_v1/aos_test_MPU6050.mk
152 4c72a54c Thomas Schöpping
153
# Module specific inclusion directories
154 efe86ca9 Thomas Schöpping
MODULE_INC = $(MODULE_DIR) \
155
             $(wildcard $(MODULE_DIR)/test/*)
156 4c72a54c Thomas Schöpping
157
# Module specific C source files.
158
MODULE_CSRC = $(wildcard $(MODULE_INC:%=%/*.[Cc]))
159
160
# C warning options.
161 732a4657 Thomas Schöpping
CWARN = -Wall -Wextra -Wundef -Wstrict-prototypes
162 27d0378b Simon Welzel
163 4c72a54c Thomas Schöpping
# C++ warning options.
164 732a4657 Thomas Schöpping
CPPWARN = -Wall -Wextra -Wundef
165 27d0378b Simon Welzel
166
#                                                                              #
167 732a4657 Thomas Schöpping
# Project, target, sources and paths                                           #
168 27d0378b Simon Welzel
################################################################################
169
170
################################################################################
171
# Start of user section                                                        #
172
#                                                                              #
173
174
# List all user C define here, like -D_DEBUG=1
175
UDEFS +=
176
177
# Define ASM defines here
178
UADEFS +=
179
180
# List all user directories here
181
UINCDIR +=
182
183
# List the user directory to look for the libraries here
184
ULIBDIR +=
185
186
# List all user libraries here
187
ULIBS +=
188
189
#                                                                              #
190 732a4657 Thomas Schöpping
# End of user section                                                          #
191 27d0378b Simon Welzel
################################################################################
192
193 1678f270 Simon Welzel
################################################################################
194 732a4657 Thomas Schöpping
# Common rules                                                                 #
195 1678f270 Simon Welzel
#                                                                              #
196 27d0378b Simon Welzel
197 732a4657 Thomas Schöpping
RULESPATH = $(CHIBIOS)/os/common/startup/ARMCMx/compilers/GCC/mk
198
include $(RULESPATH)/arm-none-eabi.mk
199 27d0378b Simon Welzel
include $(RULESPATH)/rules.mk
200
201 732a4657 Thomas Schöpping
#                                                                              #
202
# Common rules                                                                 #
203
################################################################################
204
205
################################################################################
206
# Custom rules                                                                 #
207
#                                                                              #
208 83e94d4b Thomas Schöpping
209
flash: $(BUILDDIR)/$(PROJECT).elf
210 eeb84bf1 Thomas Schöpping
	openocd -f interface/stlink-v2-1.cfg -c "set WORKAREASIZE 0x2000" -f target/stm32l4x.cfg -c "program $(BUILDDIR)/$(PROJECT).elf verify reset exit"
211 83e94d4b Thomas Schöpping
212 1678f270 Simon Welzel
#                                                                              #
213 732a4657 Thomas Schöpping
# Custom rules                                                                 #
214 1678f270 Simon Welzel
################################################################################