2021-08-29 01:58:21 +08:00
|
|
|
##############################################################################
|
|
|
|
BUILD = ./build
|
|
|
|
BIN = watch
|
|
|
|
|
2021-09-14 04:43:35 +08:00
|
|
|
ifndef BOARD
|
|
|
|
override BOARD = OSO-SWAT-A1-04
|
|
|
|
endif
|
|
|
|
|
2021-08-29 01:58:21 +08:00
|
|
|
##############################################################################
|
|
|
|
.PHONY: all directory clean size
|
|
|
|
|
|
|
|
ifeq ($(OS), Windows_NT)
|
|
|
|
MKDIR = gmkdir
|
|
|
|
else
|
|
|
|
MKDIR = mkdir
|
|
|
|
endif
|
|
|
|
|
2022-01-26 04:03:22 +08:00
|
|
|
ifndef EMSCRIPTEN
|
|
|
|
CC = arm-none-eabi-gcc
|
|
|
|
OBJCOPY = arm-none-eabi-objcopy
|
|
|
|
SIZE = arm-none-eabi-size
|
|
|
|
UF2 = python $(TOP)/utils/uf2conv.py
|
|
|
|
|
2021-12-05 20:58:44 +08:00
|
|
|
CFLAGS += -W -Wall -Wextra -Wmissing-prototypes -Wmissing-declarations
|
|
|
|
CFLAGS += --std=gnu99 -Os
|
2021-08-29 01:58:21 +08:00
|
|
|
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
|
2022-01-26 04:03:22 +08:00
|
|
|
LDFLAGS += -Wl,--script=$(TOP)/watch-library/hardware/linker/saml22j18.ld
|
2021-08-29 01:58:21 +08:00
|
|
|
|
2021-11-23 01:09:52 +08:00
|
|
|
LIBS += -lm
|
|
|
|
|
2021-08-29 01:58:21 +08:00
|
|
|
INCLUDES += \
|
2021-09-17 03:40:01 +08:00
|
|
|
-I$(TOP)/tinyusb/src \
|
|
|
|
-I$(TOP)/boards/$(BOARD) \
|
2022-01-26 04:03:22 +08:00
|
|
|
-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 \
|
2021-08-29 01:58:21 +08:00
|
|
|
|
|
|
|
SRCS += \
|
2021-09-17 03:40:01 +08:00
|
|
|
$(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 \
|
2022-01-26 04:03:22 +08:00
|
|
|
$(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 \
|
2022-01-27 08:31:49 +08:00
|
|
|
$(TOP)/watch-library/hardware/hal/src/hal_usart_sync.c \
|
2022-01-26 04:03:22 +08:00
|
|
|
$(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 \
|
2021-08-29 01:58:21 +08:00
|
|
|
|
|
|
|
DEFINES += \
|
|
|
|
-D__SAML22J18A__ \
|
|
|
|
-DDONT_USE_CMSIS_INIT
|
2021-09-01 08:28:36 +08:00
|
|
|
|
2022-01-26 04:03:22 +08:00
|
|
|
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
|
|
|
|
|
2021-09-01 08:28:36 +08:00
|
|
|
ifeq ($(LED), BLUE)
|
|
|
|
CFLAGS += -DWATCH_SWAP_LED_PINS
|
|
|
|
endif
|
2021-10-19 22:14:24 +08:00
|
|
|
|
|
|
|
ifeq ($(BOARD), OSO-FEAL-A1-00)
|
|
|
|
CFLAGS += -DCRYSTALLESS
|
|
|
|
endif
|