summaryrefslogtreecommitdiffstats
path: root/make.mk
diff options
context:
space:
mode:
authorAlexsander Akers <me@a2.io>2022-01-25 15:03:22 -0500
committerGitHub <noreply@github.com>2022-01-25 15:03:22 -0500
commitb8de35658ffd78ad8b22f91ccbbd3d63663afda9 (patch)
tree1f265ddfcc8e5abf0316b81b15f80bf5c70fa7b7 /make.mk
parent9e24f6c336773c7404139ab4db0eaab2f99504e2 (diff)
downloadSensor-Watch-b8de35658ffd78ad8b22f91ccbbd3d63663afda9.tar.gz
Sensor-Watch-b8de35658ffd78ad8b22f91ccbbd3d63663afda9.tar.bz2
Sensor-Watch-b8de35658ffd78ad8b22f91ccbbd3d63663afda9.zip
Sensor Watch Simulator (#35)
* Put something on screen * Use the 32bit watch_date_time repr to pass from JS * Implement periodic callbacks * Clear display on enabling * Hook up watch_set_led_color() to SVG (green-only) * Make debug output full-width * Remove default Emscripten canvas * Implement sleep and button clicks * Fix time zone conversion bug in beats-time app * Clean up warnings * Fix pin levels * Set time zone to browser value (if available) * Add basic backup data saving * Silence format specifier warnings in both targets * Remove unnecessary, copied files * Use RTC pointer to clear callbacks (if available) * Use preprocessor define to avoid hardcoding MOVEMENT_NUM_FACES * Change each face to const preprocessor definition * Remove Intl.DateTimeFormat usage * Update shell.html title, header * Add touch start/end event handlers on SVG buttons * Update shell.html * Update folder structure (shared, simulator, hardware under watch-library) * Tease out shared components from watch_slcd * Clean up simulator watch_slcd.c inline JS calls * Fix missing newlines at end of file * Add simulator warnings (except format, unused-paremter) * Implement remaining watch_rtc functions * Fix button bug on mouse down then drag out * Implement remaining watch_slcd functions * Link keyboard events to buttons (for keys A, L, M) * Rewrite event handling (mouse, touch, keyboard) in C * Set explicit text UTF-8 charset in shell.html * Address PR comments * Remove unused directories from include paths
Diffstat (limited to 'make.mk')
-rw-r--r--make.mk193
1 files changed, 116 insertions, 77 deletions
diff --git a/make.mk b/make.mk
index 1b688ae5..94d0bd82 100644
--- a/make.mk
+++ b/make.mk
@@ -9,17 +9,18 @@ endif
##############################################################################
.PHONY: all directory clean size
-CC = arm-none-eabi-gcc
-OBJCOPY = arm-none-eabi-objcopy
-SIZE = arm-none-eabi-size
-UF2 = python $(TOP)/utils/uf2conv.py
-
ifeq ($(OS), Windows_NT)
MKDIR = gmkdir
else
MKDIR = mkdir
endif
+ifndef EMSCRIPTEN
+CC = arm-none-eabi-gcc
+OBJCOPY = arm-none-eabi-objcopy
+SIZE = arm-none-eabi-size
+UF2 = python $(TOP)/utils/uf2conv.py
+
CFLAGS += -W -Wall -Wextra -Wmissing-prototypes -Wmissing-declarations
CFLAGS += --std=gnu99 -Os
CFLAGS += -fno-diagnostics-show-caret
@@ -30,40 +31,41 @@ 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/linker/saml22j18.ld
+LDFLAGS += -Wl,--script=$(TOP)/watch-library/hardware/linker/saml22j18.ld
LIBS += -lm
INCLUDES += \
-I$(TOP)/tinyusb/src \
-I$(TOP)/boards/$(BOARD) \
- -I$(TOP)/watch-library/include \
- -I$(TOP)/watch-library/hal/ \
- -I$(TOP)/watch-library/hal/documentation/ \
- -I$(TOP)/watch-library/hal/include/ \
- -I$(TOP)/watch-library/hal/src/ \
- -I$(TOP)/watch-library/hal/utils/ \
- -I$(TOP)/watch-library/hal/utils/include/ \
- -I$(TOP)/watch-library/hal/utils/src/ \
- -I$(TOP)/watch-library/hpl/ \
- -I$(TOP)/watch-library/hpl/core/ \
- -I$(TOP)/watch-library/hpl/dmac/ \
- -I$(TOP)/watch-library/hpl/eic/ \
- -I$(TOP)/watch-library/hpl/gclk/ \
- -I$(TOP)/watch-library/hpl/mclk/ \
- -I$(TOP)/watch-library/hpl/osc32kctrl/ \
- -I$(TOP)/watch-library/hpl/oscctrl/ \
- -I$(TOP)/watch-library/hpl/pm/ \
- -I$(TOP)/watch-library/hpl/port/ \
- -I$(TOP)/watch-library/hpl/sercom/ \
- -I$(TOP)/watch-library/hpl/slcd/ \
- -I$(TOP)/watch-library/hpl/systick/ \
- -I$(TOP)/watch-library/hri/ \
- -I$(TOP)/watch-library/config/ \
- -I$(TOP)/watch-library/hw/ \
- -I$(TOP)/watch-library/watch/ \
- -I$(TOP)/watch-library/driver/ \
- -I$(TOP)/watch-library
+ -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 \
@@ -72,55 +74,92 @@ SRCS += \
$(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/main.c \
- $(TOP)/watch-library/startup_saml22.c \
- $(TOP)/watch-library/hw/driver_init.c \
- $(TOP)/watch-library/watch/watch_rtc.c \
- $(TOP)/watch-library/watch/watch_slcd.c \
- $(TOP)/watch-library/watch/watch_extint.c \
- $(TOP)/watch-library/watch/watch_led.c \
- $(TOP)/watch-library/watch/watch_buzzer.c \
- $(TOP)/watch-library/watch/watch_adc.c \
- $(TOP)/watch-library/watch/watch_gpio.c \
- $(TOP)/watch-library/watch/watch_i2c.c \
- $(TOP)/watch-library/watch/watch_uart.c \
- $(TOP)/watch-library/watch/watch_deepsleep.c \
- $(TOP)/watch-library/watch/watch_utility.c \
- $(TOP)/watch-library/watch/watch_private.c \
- $(TOP)/watch-library/watch/watch.c \
- $(TOP)/watch-library/hal/src/hal_atomic.c \
- $(TOP)/watch-library/hal/src/hal_delay.c \
- $(TOP)/watch-library/hal/src/hal_ext_irq.c \
- $(TOP)/watch-library/hal/src/hal_gpio.c \
- $(TOP)/watch-library/hal/src/hal_i2c_m_sync.c \
- $(TOP)/watch-library/hal/src/hal_spi_m_sync.c \
- $(TOP)/watch-library/hal/src/hal_init.c \
- $(TOP)/watch-library/hal/src/hal_io.c \
- $(TOP)/watch-library/hal/src/hal_slcd_sync.c \
- $(TOP)/watch-library/hal/src/hal_sleep.c \
- $(TOP)/watch-library/hal/utils/src/utils_assert.c \
- $(TOP)/watch-library/hal/utils/src/utils_event.c \
- $(TOP)/watch-library/hal/utils/src/utils_list.c \
- $(TOP)/watch-library/hal/utils/src/utils_syscalls.c \
- $(TOP)/watch-library/hpl/core/hpl_core_m0plus_base.c \
- $(TOP)/watch-library/hpl/core/hpl_init.c \
- $(TOP)/watch-library/hpl/dmac/hpl_dmac.c \
- $(TOP)/watch-library/hpl/eic/hpl_eic.c \
- $(TOP)/watch-library/hpl/gclk/hpl_gclk.c \
- $(TOP)/watch-library/hpl/mclk/hpl_mclk.c \
- $(TOP)/watch-library/hpl/osc32kctrl/hpl_osc32kctrl.c \
- $(TOP)/watch-library/hpl/oscctrl/hpl_oscctrl.c \
- $(TOP)/watch-library/hpl/pm/hpl_pm.c \
- $(TOP)/watch-library/hpl/sercom/hpl_sercom.c \
- $(TOP)/watch-library/hpl/slcd/hpl_slcd.c \
- $(TOP)/watch-library/hpl/systick/hpl_systick.c \
- $(TOP)/watch-library/driver/lis2dh.c \
- $(TOP)/watch-library/driver/lis2dw.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_uart.c \
+ $(TOP)/watch-library/hardware/watch/watch_deepsleep.c \
+ $(TOP)/watch-library/hardware/watch/watch_private.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_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/lis2dh.c \
+ $(TOP)/watch-library/shared/driver/lis2dw.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
+
+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/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_uart.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/watch/watch_private_display.c \
+ $(TOP)/watch-library/shared/watch/watch_utility.c \
+
+endif
+
ifeq ($(LED), BLUE)
CFLAGS += -DWATCH_SWAP_LED_PINS
endif