Statistics
| Branch: | Tag: | Revision:

amiro-os / modules / PowerManagement_1-1 / Makefile @ e7b5a625

History | View | Annotate | Download (9.803 KB)

1
################################################################################
2
# AMiRo-OS is an operating system designed for the Autonomous Mini Robot       #
3
# (AMiRo) platform.                                                            #
4
# Copyright (C) 2016..2019  Thomas Schöpping et al.                            #
5
#                                                                              #
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
  USE_OPT = -O2 -fstack-usage
34
endif
35

    
36
# C specific options here (added to USE_OPT).
37
ifeq ($(USE_COPT),)
38
  USE_COPT = -std=c17
39
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
# Enable this if you want the linker to remove unused code and data.
47
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
# Enable this if you want link time optimizations (LTO).
57
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
# Enables the use of FPU.
93
# 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
# FPU-related options.
103
ifeq ($(USE_FPU_OPT),)
104
  USE_FPU_OPT = -mfloat-abi=$(USE_FPU) -mfpu=fpv4-sp-d16
105
endif
106

    
107
#                                                                              #
108
# Architecture or project specific options                                     #
109
################################################################################
110

    
111
################################################################################
112
# Project, target, sources and paths                                           #
113
#                                                                              #
114

    
115
# Absolute path to the project.
116
PROJECT_PATH := $(abspath $(dir $(lastword $(MAKEFILE_LIST))))
117

    
118
# Project name.
119
PROJECT := $(notdir $(PROJECT_PATH))
120

    
121
# Target settings.
122
MCU := cortex-m4
123

    
124
# Module specific paths and directories.
125
MODULE_DIR := .
126
CONFIG_DIR := $(MODULEDIR)
127
ifeq ($(BUILDDIR),)
128
  BUILDDIR := $(PROJECT_PATH)/build
129
endif
130
DEPDIR := $(dir $(BUILDDIR)).dep
131

    
132
# Linker script.
133
LDSCRIPT = STM32F405xG.ld
134

    
135
# General AMiRo-OS files.
136
include ../../amiro-os.mk
137

    
138
# Module specific ChibiOS files.
139
include $(CHIBIOS)/os/common/startup/ARMCMx/compilers/GCC/mk/startup_stm32f4xx.mk
140
include $(CHIBIOS)/os/hal/ports/STM32/STM32F4xx/platform.mk
141
include $(CHIBIOS)/os/common/ports/ARMCMx/compilers/GCC/mk/port_v7m.mk
142

    
143
# Periphery LLDs.
144
include $(AMIROLLD)/drivers/AT24C01B/v1/alld_AT24C01B.mk
145
include $(AMIROLLD)/drivers/AT42QT1050/v1/alld_AT42QT1050.mk
146
include $(AMIROLLD)/drivers/bq241xx/v1/alld_bq241xx.mk
147
include $(AMIROLLD)/drivers/bq27500/v1/alld_bq27500.mk
148
include $(AMIROLLD)/drivers/INA219/v1/alld_INA219.mk
149
include $(AMIROLLD)/drivers/LED/v1/alld_LED.mk
150
include $(AMIROLLD)/drivers/MPR121/v1/alld_MPR121.mk
151
include $(AMIROLLD)/drivers/PCA9544A/v1/alld_PCA9544A.mk
152
include $(AMIROLLD)/drivers/PCAL6524/v1/alld_PCAL6524.mk
153
include $(AMIROLLD)/drivers/PKxxxExxx/v1/alld_PKxxxExxx.mk
154
include $(AMIROLLD)/drivers/TPS6211x/v1/alld_TPS6211x.mk
155
include $(AMIROLLD)/drivers/VCNL4020/v1/alld_VCNL4020.mk
156

    
157
# Tests.
158
AMIROOS_TEST_INC += $(AMIROOS_TEST_DIR)lld/adc \
159
                    $(AMIROOS_TEST_DIR)periphery-lld/AT24C01B_v1 \
160
                    $(AMIROOS_TEST_DIR)periphery-lld/AT42QT1050_v1 \
161
                    $(AMIROOS_TEST_DIR)periphery-lld/bq241xx_v1 \
162
                    $(AMIROOS_TEST_DIR)periphery-lld/bq27500_v1 \
163
                    $(AMIROOS_TEST_DIR)periphery-lld/bq27500_v1_bq241xx_v1 \
164
                    $(AMIROOS_TEST_DIR)periphery-lld/INA219_v1 \
165
                    $(AMIROOS_TEST_DIR)periphery-lld/LED_v1 \
166
                    $(AMIROOS_TEST_DIR)periphery-lld/MPR121_v1 \
167
                    $(AMIROOS_TEST_DIR)periphery-lld/PCA9544A_v1 \
168
                    $(AMIROOS_TEST_DIR)periphery-lld/PCAL6524_v1 \
169
                    $(AMIROOS_TEST_DIR)periphery-lld/PKxxxExxx_v1 \
170
                    $(AMIROOS_TEST_DIR)periphery-lld/TPS6211x_v1 \
171
                    $(AMIROOS_TEST_DIR)periphery-lld/TPS6211x_v1_INA219_v1 \
172
                    $(AMIROOS_TEST_DIR)periphery-lld/VCNL4020_v1
173

    
174
# Module specific inclusion directories
175
MODULE_INC = $(MODULE_DIR) \
176
             $(wildcard $(MODULE_DIR)/test/*)
177

    
178
# Module specific C source files.
179
MODULE_CSRC = $(wildcard $(MODULE_INC:%=%/*.[Cc]))
180

    
181
# C warning options.
182
CWARN = -Wall -Wextra -Wundef -Wstrict-prototypes
183

    
184
# C++ warning options.
185
CPPWARN = -Wall -Wextra -Wundef
186

    
187
# Create an additional .srec image file.
188
SREC = $(CP) -O srec --srec-len=248
189

    
190
#                                                                              #
191
# Project, target, sources and paths                                           #
192
################################################################################
193

    
194
################################################################################
195
# Start of user section                                                        #
196
#                                                                              #
197

    
198
# List all user C define here, like -D_DEBUG=1
199
UDEFS +=
200

    
201
# Define ASM defines here
202
UADEFS +=
203

    
204
# List all user directories here
205
UINCDIR +=
206

    
207
# List the user directory to look for the libraries here
208
ULIBDIR +=
209

    
210
# List all user libraries here
211
ULIBS +=
212

    
213
#                                                                              #
214
# End of user section                                                          #
215
################################################################################
216

    
217
################################################################################
218
# Common rules                                                                 #
219
#                                                                              #
220

    
221
RULESPATH = $(CHIBIOS)/os/common/startup/ARMCMx/compilers/GCC/mk
222
include $(RULESPATH)/arm-none-eabi.mk
223
include $(RULESPATH)/rules.mk
224

    
225
#                                                                              #
226
# Common rules                                                                 #
227
################################################################################
228

    
229
################################################################################
230
# Custom rules                                                                 #
231
#                                                                              #
232

    
233
FLASH_MODULES = $(PROJECT)
234
FLASH_FILES = $(BUILDDIR)/$(PROJECT).$(FLASHTOOL_EXT)
235

    
236
flash: $(FLASH_FILES)
237
	$(info )
238
ifeq ($(FLASHTOOL),SerialBoot)
239
	$(info Flashing ($(FLASHTOOL)):)
240
	$(FLASHTOOL_CMD) $(FLASHTOOL_ARGS)
241
else
242
	$(info ERROR: unable to flash the module (SerialBoot unavailable))
243
endif
244

    
245
#                                                                              #
246
# Custom rules                                                                 #
247
################################################################################
248