forked from joeycastillo/Sensor-Watch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake.mk
277 lines (249 loc) · 10 KB
/
make.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
##############################################################################
ifndef EMSCRIPTEN
BUILD = ./build
else
BUILD = ./build-sim
endif
BIN = watch
##############################################################################
.PHONY: all directory clean size
# OS detection, adapted from https://gist.github.com/sighingnow/deee806603ec9274fd47
DETECTED_OS :=
ifeq ($(OS),Windows_NT)
DETECTED_OS = WINDOWS
else
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Linux)
DETECTED_OS = LINUX
endif
ifeq ($(UNAME_S),Darwin)
DETECTED_OS = OSX
endif
endif
$(if ${VERBOSE},$(info OS detected: $(DETECTED_OS)))
ifeq ($(OS), Windows_NT)
MKDIR = gmkdir
else
MKDIR = mkdir
endif
ifeq ($(DETECTED_OS), LINUX)
MAKEFLAGS += -j $(shell nproc)
endif
ifeq ($(DETECTED_OS), OSX)
NPROCS = $(shell sysctl hw.ncpu | grep -o '[0-9]\+')
MAKEFLAGS += -j $(NPROCS)
endif
ifeq ($(DETECTED_OS), WINDOWS)
MAKEFLAGS += -j $(NUMBER_OF_PROCESSORS)
endif
ifndef EMSCRIPTEN
CC = arm-none-eabi-gcc
OBJCOPY = arm-none-eabi-objcopy
SIZE = arm-none-eabi-size
UF2 = python3 $(TOP)/utils/uf2conv.py
CFLAGS += -W -Wall -Wextra -Wmissing-prototypes -Wmissing-declarations
CFLAGS += --std=gnu99 -Os
CFLAGS += -fno-diagnostics-show-caret
CFLAGS += -fdata-sections -ffunction-sections
CFLAGS += -funsigned-char -funsigned-bitfields
CFLAGS += -mcpu=cortex-m0plus -mthumb
CFLAGS += -MD -MP -MT $(BUILD)/$(*F).o -MF $(BUILD)/$(@F).d
LDFLAGS += -mcpu=cortex-m0plus -mthumb
LDFLAGS += -Wl,--gc-sections
LDFLAGS += -Wl,--script=$(TOP)/watch-library/hardware/linker/saml22j18.ld
LDFLAGS += -Wl,--print-memory-usage
LIBS += -lm
INCLUDES += \
-I$(TOP)/tinyusb/src \
-I$(TOP)/boards/$(BOARD) \
-I$(TOP)/watch-library/shared/config/ \
-I$(TOP)/watch-library/shared/driver/ \
-I$(TOP)/watch-library/shared/watch/ \
-I$(TOP)/watch-library/hardware/include \
-I$(TOP)/watch-library/hardware/hal/ \
-I$(TOP)/watch-library/hardware/hal/documentation/ \
-I$(TOP)/watch-library/hardware/hal/include/ \
-I$(TOP)/watch-library/hardware/hal/src/ \
-I$(TOP)/watch-library/hardware/hal/utils/ \
-I$(TOP)/watch-library/hardware/hal/utils/include/ \
-I$(TOP)/watch-library/hardware/hal/utils/src/ \
-I$(TOP)/watch-library/hardware/hpl/ \
-I$(TOP)/watch-library/hardware/hpl/core/ \
-I$(TOP)/watch-library/hardware/hpl/dmac/ \
-I$(TOP)/watch-library/hardware/hpl/eic/ \
-I$(TOP)/watch-library/hardware/hpl/gclk/ \
-I$(TOP)/watch-library/hardware/hpl/mclk/ \
-I$(TOP)/watch-library/hardware/hpl/osc32kctrl/ \
-I$(TOP)/watch-library/hardware/hpl/oscctrl/ \
-I$(TOP)/watch-library/hardware/hpl/pm/ \
-I$(TOP)/watch-library/hardware/hpl/port/ \
-I$(TOP)/watch-library/hardware/hpl/sercom/ \
-I$(TOP)/watch-library/hardware/hpl/slcd/ \
-I$(TOP)/watch-library/hardware/hpl/systick/ \
-I$(TOP)/watch-library/hardware/hri/ \
-I$(TOP)/watch-library/hardware/hw/ \
-I$(TOP)/watch-library/hardware/watch/ \
-I$(TOP)/watch-library/hardware \
SRCS += \
$(TOP)/tinyusb/src/tusb.c \
$(TOP)/tinyusb/src/common/tusb_fifo.c \
$(TOP)/tinyusb/src/class/cdc/cdc_device.c \
$(TOP)/tinyusb/src/device/usbd.c \
$(TOP)/tinyusb/src/device/usbd_control.c \
$(TOP)/tinyusb/src/portable/microchip/samd/dcd_samd.c \
$(TOP)/watch-library/hardware/main.c \
$(TOP)/watch-library/hardware/startup_saml22.c \
$(TOP)/watch-library/hardware/hw/driver_init.c \
$(TOP)/watch-library/hardware/watch/watch_rtc.c \
$(TOP)/watch-library/hardware/watch/watch_slcd.c \
$(TOP)/watch-library/hardware/watch/watch_extint.c \
$(TOP)/watch-library/hardware/watch/watch_led.c \
$(TOP)/watch-library/hardware/watch/watch_buzzer.c \
$(TOP)/watch-library/hardware/watch/watch_adc.c \
$(TOP)/watch-library/hardware/watch/watch_gpio.c \
$(TOP)/watch-library/hardware/watch/watch_i2c.c \
$(TOP)/watch-library/hardware/watch/watch_spi.c \
$(TOP)/watch-library/hardware/watch/watch_uart.c \
$(TOP)/watch-library/hardware/watch/watch_storage.c \
$(TOP)/watch-library/hardware/watch/watch_deepsleep.c \
$(TOP)/watch-library/hardware/watch/watch_private.c \
$(TOP)/watch-library/hardware/watch/watch_private_cdc.c \
$(TOP)/watch-library/hardware/watch/watch.c \
$(TOP)/watch-library/hardware/hal/src/hal_atomic.c \
$(TOP)/watch-library/hardware/hal/src/hal_delay.c \
$(TOP)/watch-library/hardware/hal/src/hal_ext_irq.c \
$(TOP)/watch-library/hardware/hal/src/hal_gpio.c \
$(TOP)/watch-library/hardware/hal/src/hal_i2c_m_sync.c \
$(TOP)/watch-library/hardware/hal/src/hal_spi_m_sync.c \
$(TOP)/watch-library/hardware/hal/src/hal_usart_sync.c \
$(TOP)/watch-library/hardware/hal/src/hal_init.c \
$(TOP)/watch-library/hardware/hal/src/hal_io.c \
$(TOP)/watch-library/hardware/hal/src/hal_slcd_sync.c \
$(TOP)/watch-library/hardware/hal/src/hal_sleep.c \
$(TOP)/watch-library/hardware/hal/utils/src/utils_assert.c \
$(TOP)/watch-library/hardware/hal/utils/src/utils_event.c \
$(TOP)/watch-library/hardware/hal/utils/src/utils_list.c \
$(TOP)/watch-library/hardware/hal/utils/src/utils_syscalls.c \
$(TOP)/watch-library/hardware/hpl/core/hpl_core_m0plus_base.c \
$(TOP)/watch-library/hardware/hpl/core/hpl_init.c \
$(TOP)/watch-library/hardware/hpl/dmac/hpl_dmac.c \
$(TOP)/watch-library/hardware/hpl/eic/hpl_eic.c \
$(TOP)/watch-library/hardware/hpl/gclk/hpl_gclk.c \
$(TOP)/watch-library/hardware/hpl/mclk/hpl_mclk.c \
$(TOP)/watch-library/hardware/hpl/osc32kctrl/hpl_osc32kctrl.c \
$(TOP)/watch-library/hardware/hpl/oscctrl/hpl_oscctrl.c \
$(TOP)/watch-library/hardware/hpl/pm/hpl_pm.c \
$(TOP)/watch-library/hardware/hpl/sercom/hpl_sercom.c \
$(TOP)/watch-library/hardware/hpl/slcd/hpl_slcd.c \
$(TOP)/watch-library/hardware/hpl/systick/hpl_systick.c \
$(TOP)/watch-library/shared/driver/thermistor_driver.c \
$(TOP)/watch-library/shared/driver/lis2dw.c \
$(TOP)/watch-library/shared/driver/opt3001.c \
$(TOP)/watch-library/shared/driver/spiflash.c \
$(TOP)/watch-library/shared/watch/watch_private_display.c \
$(TOP)/watch-library/shared/watch/watch_utility.c \
DEFINES += \
-D__SAML22J18A__ \
-DDONT_USE_CMSIS_INIT
else
CFLAGS += -W -Wall -Wextra -Wmissing-prototypes -Wmissing-declarations
CFLAGS += -Wno-format -Wno-unused-parameter
CFLAGS += -MD -MP -MT $(BUILD)/$(*F).o -MF $(BUILD)/$(@F).d
INCLUDES += \
-I$(TOP)/boards/$(BOARD) \
-I$(TOP)/watch-library/shared/driver/ \
-I$(TOP)/watch-library/shared/config/ \
-I$(TOP)/watch-library/shared/watch/ \
-I$(TOP)/watch-library/simulator/watch/ \
-I$(TOP)/watch-library/simulator/hpl/port/ \
-I$(TOP)/watch-library/hardware/include/component \
-I$(TOP)/watch-library/hardware/hal/include/ \
-I$(TOP)/watch-library/hardware/hal/utils/include/ \
-I$(TOP)/watch-library/hardware/hpl/slcd/ \
-I$(TOP)/watch-library/hardware/hw/ \
SRCS += \
$(TOP)/watch-library/simulator/main.c \
$(TOP)/watch-library/simulator/watch/watch_rtc.c \
$(TOP)/watch-library/simulator/watch/watch_slcd.c \
$(TOP)/watch-library/simulator/watch/watch_extint.c \
$(TOP)/watch-library/simulator/watch/watch_led.c \
$(TOP)/watch-library/simulator/watch/watch_buzzer.c \
$(TOP)/watch-library/simulator/watch/watch_adc.c \
$(TOP)/watch-library/simulator/watch/watch_gpio.c \
$(TOP)/watch-library/simulator/watch/watch_i2c.c \
$(TOP)/watch-library/simulator/watch/watch_spi.c \
$(TOP)/watch-library/simulator/watch/watch_uart.c \
$(TOP)/watch-library/simulator/watch/watch_storage.c \
$(TOP)/watch-library/simulator/watch/watch_deepsleep.c \
$(TOP)/watch-library/simulator/watch/watch_private.c \
$(TOP)/watch-library/simulator/watch/watch.c \
$(TOP)/watch-library/shared/driver/thermistor_driver.c \
$(TOP)/watch-library/shared/driver/opt3001.c \
$(TOP)/watch-library/shared/watch/watch_private_display.c \
$(TOP)/watch-library/shared/watch/watch_utility.c \
endif
ifeq ($(filter $(MAKECMDGOALS),clean analyze size directory install),)
ifeq ($(LED), BLUE)
CFLAGS += -DWATCH_IS_BLUE_BOARD
endif
ifndef COLOR
COLOR := RED
$(info COLOR is set to $(COLOR) by default.)
endif
COLOR_VALID := $(filter $(COLOR),RED BLUE GREEN)
ifeq ($(COLOR_VALID),)
$(error Set the COLOR variable to RED, BLUE, GREEN or PRO depending on what board you have.)
endif
ifeq ($(COLOR), PRO)
override BOARD = OSO-SWAT-C1-00
else
override BOARD = OSO-SWAT-A1-05
endif
ifeq ($(COLOR), BLUE)
CFLAGS += -DWATCH_IS_BLUE_BOARD
endif
ifeq ($(COLOR), RED)
CFLAGS += -DWATCH_INVERT_LED_POLARITY
CFLAGS += -DNO_FREQCORR
endif
ifdef FIRMWARE
CFLAGS += -DMOVEMENT_FIRMWARE_$(FIRMWARE)=1
CFLAGS += -DMOVEMENT_FIRMWARE=MOVEMENT_FIRMWARE_$(FIRMWARE)
endif
ifeq ($(BOARD), OSO-FEAL-A1-00)
CFLAGS += -DCRYSTALLESS
endif
# DATE = X
# YEAR = Sets the year and timezone to the PC's
# DAY = Sets the default time down to the day (year, month, day, timezone)
# MIN = Sets the default time down to the minute (year, month, day, timezone, hour, minute)
TIMEZONE := $(shell date +%z | awk '{print substr($$0, 1, 3) * 60 + substr($$0, 4, 2)}')
CURRENT_YEAR := $(shell echo $$(($(shell date +"%Y") - 2020)))
CURRENT_MONTH := $(shell date -u +"%-m")
CURRENT_DAY := $(shell date -u +"%-d")
CURRENT_HOUR := $(shell date -u +"%-H")
CURRENT_MINUTE := $(shell date -u +"%-M")
ifndef DATE
DATE := MIN
endif
ifeq ($(DATE), YEAR)
CFLAGS += -DMAKEFILE_CURR_YEAR=$(CURRENT_YEAR)
$(info Default year is set to $(shell date +"%Y"))
else ifeq ($(DATE), DAY)
CFLAGS += -DMAKEFILE_TIMEZONE=$(TIMEZONE)
CFLAGS += -DMAKEFILE_CURR_YEAR=$(CURRENT_YEAR)
CFLAGS += -DMAKEFILE_CURR_MONTH=$(CURRENT_MONTH)
CFLAGS += -DMAKEFILE_CURR_DAY=$(CURRENT_DAY)
$(info Default date set to $(shell date +"%b") $(CURRENT_DAY) $(shell date +"%Y") $(shell date +%Z))
else ifeq ($(DATE), MIN)
CFLAGS += -DMAKEFILE_TIMEZONE=$(TIMEZONE)
CFLAGS += -DMAKEFILE_CURR_YEAR=$(CURRENT_YEAR)
CFLAGS += -DMAKEFILE_CURR_MONTH=$(CURRENT_MONTH)
CFLAGS += -DMAKEFILE_CURR_DAY=$(CURRENT_DAY)
CFLAGS += -DMAKEFILE_CURR_HOUR=$(CURRENT_HOUR)
CFLAGS += -DMAKEFILE_CURR_MINUTE=$(CURRENT_MINUTE)
$(info Default time set to $(shell date +"%H:%M") on $(shell date +"%b") $(CURRENT_DAY) $(shell date +"%Y") $(shell date +%Z) (In UTC, which is what the watch is set to, it's $(CURRENT_HOUR):$(shell printf "%02d" $(CURRENT_MINUTE))))
else
$(error DATE must be YEAR, DAY, or MIN if used.)
endif
endif