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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
|
# Copyright 2020 Daniel Friesel
#
# SPDX-License-Identifier: BSD-2-Clause
COMMON_FLAGS = -g -Os -Wall -Wextra
# Only load .config when app/arch are not specified on commandline
ifneq (${app}, )
CONFIG_app = ${app}
CONFIG_arch = ${arch}
else
-include .config
COMMON_FLAGS += -include include/config.h
endif
# Make cannot include "foo"/Makefile.inc, so remove quotes from config entries
quote="
app_dir = $(subst ${quote},,${CONFIG_app})
arch_dir = $(subst ${quote},,${CONFIG_arch})
INCLUDES = -Iinclude -Iinclude/arch/${arch_dir}
CFLAGS = -std=c99
CXXFLAGS = -std=c++14 -fno-rtti -fno-threadsafe-statics -fno-exceptions
QUIET = @
ASM_TARGETS =
C_TARGETS =
CXX_TARGETS = src/app/${app_dir}/main.cc src/os/object/cpp_helpers.cc src/os/object/outputstream.cc
ifdef verbose
QUIET =
endif
ifeq (${aspectc}, 1)
CONFIG_aspectc = y
endif
ifneq (${app_dir}, )
include src/app/${app_dir}/Makefile.inc
endif
ifneq (${stack_usage}, )
COMMON_FLAGS += -fstack-usage
endif
ifdef CONFIG_driver_dummy
CXX_TARGETS += src/driver/dummy.cc
endif
ifdef CONFIG_driver_lm75
CXX_TARGETS += src/driver/lm75.cc
endif
ifdef CONFIG_driver_s5851a
CXX_TARGETS += src/driver/s5851a.cc
endif
ifdef CONFIG_driver_am2320
CXX_TARGETS += src/driver/am2320.cc
endif
ifdef CONFIG_driver_bme280
CXX_TARGETS += src/driver/bme280.cc src/driver/bme680_util.cc
endif
ifdef CONFIG_driver_bme680
CXX_TARGETS += src/driver/bme680.cc src/driver/bme680_util.cc
endif
ifdef CONFIG_driver_ccs811
CXX_TARGETS += src/driver/ccs811.cc
endif
ifdef CONFIG_driver_ds2482
CXX_TARGETS += src/driver/ds2482.cc
endif
ifdef CONFIG_driver_eeprom24lc64
CXX_TARGETS += src/driver/eeprom24lc64.cc
endif
ifdef CONFIG_driver_max44006
CXX_TARGETS += src/driver/max44006.cc
endif
ifdef CONFIG_driver_max44009
CXX_TARGETS += src/driver/max44009.cc
endif
ifdef CONFIG_driver_hdc1080
CXX_TARGETS += src/driver/hdc1080.cc
endif
ifdef CONFIG_driver_mpu9250
CXX_TARGETS += src/driver/mpu9250.cc
endif
ifdef CONFIG_driver_mmsimple
CXX_TARGETS += src/driver/mmsimple.cc
endif
ifdef CONFIG_driver_mmsubstate
CXX_TARGETS += src/driver/mmsubstate.cc
endif
ifdef CONFIG_driver_tsl2591
CXX_TARGETS += src/driver/tsl2591.cc
endif
ifdef CONFIG_driver_scd4x
CXX_TARGETS += src/driver/scd4x.cc
endif
ifdef CONFIG_driver_nrf24l01
CXX_TARGETS += src/driver/nrf24l01.cc
ifeq (${arch_dir}, msp430fr5994lp)
nrf24l01_cs_pin ?= p1_3
nrf24l01_en_pin ?= p6_2
nrf24l01_irq_pin ?= p8_3
endif
ifeq (${arch_dir}, msp430fr5969lp)
nrf24l01_en_pin ?= p4_3
nrf24l01_cs_pin ?= p2_4
nrf24l01_irq_pin ?= p1_5
endif
ifeq (${arch_dir}, arduino-nano)
nrf24l01_en_pin ?= pc1
nrf24l01_cs_pin ?= pc0
nrf24l01_irq_pin ?= pc2
endif
COMMON_FLAGS += -DNRF24L01_EN_PIN=GPIO::${nrf24l01_en_pin}
COMMON_FLAGS += -DNRF24L01_CS_PIN=GPIO::${nrf24l01_cs_pin}
COMMON_FLAGS += -DNRF24L01_IRQ_PIN=GPIO::${nrf24l01_irq_pin}
endif
ifdef CONFIG_driver_pervasive_aurora_mb
CXX_TARGETS += src/driver/pervasive_aurora_mb.cc
ifeq (${arch_dir}, msp430fr5994lp)
pervasive_aurora_mb_reset_pin ?= p7_0
pervasive_aurora_mb_cs_pin ?= p5_7
pervasive_aurora_mb_dc_pin ?= p7_1
pervasive_aurora_mb_vcc_pin ?= p8_1
pervasive_aurora_mb_busy_pin ?= p6_3
endif
COMMON_FLAGS += -DDRIVER_PERVASIVE_AURORA_MB
COMMON_FLAGS += -DPERVASIVE_AURORA_RESET_PIN=GPIO::${pervasive_aurora_mb_reset_pin}
COMMON_FLAGS += -DPERVASIVE_AURORA_CS_PIN=GPIO::${pervasive_aurora_mb_cs_pin}
COMMON_FLAGS += -DPERVASIVE_AURORA_DC_PIN=GPIO::${pervasive_aurora_mb_dc_pin}
COMMON_FLAGS += -DPERVASIVE_AURORA_VCC_PIN=GPIO::${pervasive_aurora_mb_vcc_pin}
COMMON_FLAGS += -DPERVASIVE_AURORA_BUSY_PIN=GPIO::${pervasive_aurora_mb_busy_pin}
endif
ifdef CONFIG_driver_sharp96
CXX_TARGETS += src/driver/sharp96.cc
ifeq (${arch_dir}, msp430fr5969lp)
sharp96_power_pin ?= p4_2
sharp96_en_pin ?= p4_3
sharp96_cs_pin ?= p2_4
endif
ifeq (${arch_dir}, msp430fr5994lp)
sharp96_power_pin ?= p1_2
sharp96_en_pin ?= p6_2
sharp96_cs_pin ?= p1_3
endif
COMMON_FLAGS += -DDRIVER_SHARP6
COMMON_FLAGS += -DSHARP96_POWER_PIN=GPIO::${sharp96_power_pin}
COMMON_FLAGS += -DSHARP96_EN_PIN=GPIO::${sharp96_en_pin}
COMMON_FLAGS += -DSHARP96_CS_PIN=GPIO::${sharp96_cs_pin}
endif
ifdef CONFIG_driver_ssd1306
CXX_TARGETS += src/driver/ssd1306.cc
COMMON_FLAGS += -DSSD1306_WIDTH=${CONFIG_driver_ssd1306_width} -DSSD1306_HEIGHT=${CONFIG_driver_ssd1306_height}
endif
ifdef CONFIG_driver_resistive_load
CXX_TARGETS += src/driver/resistive_load.cc
resistor1_pin ?= p3_0
resistor2_pin ?= p3_1
resistor3_pin ?= p3_2
resistor4_pin ?= p3_3
COMMON_FLAGS += -DRESISTIVE_LOAD_PIN1=GPIO::${resistor1_pin}
COMMON_FLAGS += -DRESISTIVE_LOAD_PIN2=GPIO::${resistor2_pin}
COMMON_FLAGS += -DRESISTIVE_LOAD_PIN3=GPIO::${resistor3_pin}
COMMON_FLAGS += -DRESISTIVE_LOAD_PIN4=GPIO::${resistor4_pin}
endif
ifdef CONFIG_driver_aemr_transition_sync
CXX_TARGETS += src/driver/aemr_transition_sync.cc
endif
ifdef CONFIG_driver_softi2c
CXX_TARGETS += src/driver/soft_i2c.cc
endif
ifdef CONFIG_meta_driver_hardware_i2c
COMMON_FLAGS += -DDRIVER_HARDWARE_I2C
endif
ifdef CONFIG_framebuffer
CXX_TARGETS += src/os/object/framebuffer.cc
endif
ifdef CONFIG_lib_inflate
CXX_TARGETS += src/lib/inflate.cc
endif
ifdef CONFIG_lib_inflate_checksum
COMMON_FLAGS += -DDEFLATE_CHECKSUM
endif
ifdef CONFIG_lib_inflate_lut
COMMON_FLAGS += -DDEFLATE_WITH_LUT
endif
# Configure drivers (TODO: Kconfig)
ifneq (${i2c_freq}, )
CONFIG_i2c_freq = ${i2c_freq}
endif
ifdef CONFIG_i2c_freq
COMMON_FLAGS += -DF_I2C=${CONFIG_i2c_freq}
endif
ifneq (${timer_freq}, )
CONFIG_timer_freq = ${timer_freq}
endif
ifdef CONFIG_timer_freq
COMMON_FLAGS += -DF_TIMER=${CONFIG_timer_freq}
endif
ifdef CONFIG_driver_softi2c_pullup_dynamic_internal
softi2c_pullup=internal
endif
ifeq (${softi2c_pullup}, internal)
COMMON_FLAGS += -DCONFIG_driver_softi2c_pullup_dynamic_internal
endif
ifdef CONFIG_driver_softi2c_pullup_dynamic_external
softi2c_pullup=external
endif
ifeq (${softi2c_pullup}, external)
COMMON_FLAGS += -DCONFIG_driver_softi2c_pullup_dynamic_external
endif
ifdef CONFIG_driver_softi2c_pullup_external
softi2c_pullup=gpio
endif
ifeq (${softi2c_pullup}, gpio)
COMMON_FLAGS += -DCONFIG_driver_softi2c_pullup_external
endif
ifeq (${i2c_pullup}, gpio)
COMMON_FLAGS += -DCONFIG_I2C_PULLUP_FIXED_GPIO
endif
ifeq (${softi2c_timer}, 1)
override arch_drivers += ,timer
COMMON_FLAGS += -DSOFTI2C_TIMER
endif
ifeq (${timer_us}, 1)
COMMON_FLAGS += -DTIMER_US
endif
ifeq (${loop}, 1)
COMMON_FLAGS += -DCONFIG_loop
endif
ifeq (${wakeup}, 1)
COMMON_FLAGS += -DCONFIG_wakeup
endif
ifeq (${ostream}, 1)
COMMON_FLAGS += -DCONFIG_ostream
endif
ifeq (${trace_malloc}, 1)
CXX_TARGETS += src/lib/mpmalloc.cc
COMMON_FLAGS += -DMULTIPASS_TRACE_MALLOC
endif
ifneq (${arch_dir}, )
include src/arch/${arch_dir}/Makefile.inc
endif
default: build/system.elf
include/config.h: .config
${QUIET}test -z "${app}" && awk -f script/conf2h.awk .config > include/config.h || : > include/config.h
stack: default
${QUIET}test -n "${OBJDUMP}"
${QUIET}test -n "${ARCH_SHORTNAME}"
${QUIET}script/static-stack-analyze.pl ${OBJDUMP} ${ARCH_SHORTNAME} ${OBJECTS}
stackm: default
${QUIET}test -n "${OBJDUMP}"
${QUIET}test -n "${ARCH_SHORTNAME}"
${QUIET}script/static-stack-analyze.pl --machine-readable ${OBJDUMP} ${ARCH_SHORTNAME} ${OBJECTS}
Kconfig: script/mkconfig
${QUIET}script/mkconfig > Kconfig
config: Kconfig
${QUIET}kconfig-qconf Kconfig
nconfig: Kconfig
${QUIET}kconfig-nconf Kconfig
randconfig: Kconfig
${QUIET}script/randconfig
clean: arch_clean
${QUIET}rm -f build/system.elf
help: arch_help
@echo
@echo "common flags:"
@echo " timer_us timer_s -- enable specific timers. May be mutually exclusive"
@echo " loop -- enable loop() function"
@echo " i2c_freq -- I2C Frequency in Hz"
@echo " timer_freq -- Timer frequency in Hz"
@echo " softi2c_pullup -- When using softi2c driver: configure SDA/SCL pull-ups"
@echo " internal: Use internal pull-ups. Pull-ups are disabled when transmitting a LOW signal"
@echo " external: Use external pull-ups connected to two separate CPU pins. Pull-Ups are disabled when transmitting a LOW signal"
@echo " gpio: Use external pull-ups connected to two separate CPU pins. Pull-Ups are always enabled"
@echo " softi2c_timer -- Use hardware timer instead of busy waiting for I2C timing"
@echo " i2c_pullup -- When using arch i2c driver: configure SDA/SCL pull-ups"
@echo " gpio: Use external pull-ups connected to two separate CPU pins. Pull-Ups are always enabled"
@echo " kout_nop -- Do not write output to stdout / serial console"
@echo " ostream -- include C++ ostream standard library"
@echo " trace_malloc -- trace mpmalloc/mpcalloc/mprealloc calls on stdout"
@echo " stack_usage -- Generate .su files for stack usage estimation (-> make stack)"
@echo
@echo "${arch_dir} drivers:"
@ls -1 src/arch/${arch_dir}/driver | fgrep .c | cut -d . -f 1 | sed 's/^/ /'
@echo
@echo "common drivers:"
@ls -1 src/driver | fgrep .c | cut -d . -f 1 | sed 's/^/ /'
@echo
@echo "available architectures:"
@ls -1 src/arch | sed 's/^/ /'
info: arch_info
@echo "COMMON_FLAGS: ${COMMON_FLAGS}"
@echo "CFLAGS: ${CFLAGS}"
@echo "CXXFLAGS: ${CXXFLAGS}"
@echo "Selected (common/arch) drivers: ${drivers} / ${arch_drivers}"
nfpkeys:
@echo '{"OS Image": {"ROM": {"unit": "B", "description": "ROM size", "minimize": true}, "RAM": {"unit": "B", "description": "RAM size", "minimize": true}}}'
.PHONY: clean config default randconfig stack stackm help info nfpkeys
|