2023-03-18 18:30:51 +07:00
|
|
|
MCU = K32L2A41A
|
|
|
|
|
|
|
|
CFLAGS += \
|
|
|
|
-mcpu=cortex-m0plus \
|
|
|
|
-DCPU_K32L2A41VLH1A \
|
|
|
|
|
|
|
|
# mcu driver cause following warnings
|
|
|
|
CFLAGS += -Wno-error=unused-parameter -Wno-error=redundant-decls -Wno-error=cast-qual
|
|
|
|
|
|
|
|
# All source paths should be relative to the top level.
|
|
|
|
LD_FILE = $(MCU_DIR)/gcc/K32L2A41xxxxA_flash.ld
|
|
|
|
|
2023-03-18 19:50:24 +07:00
|
|
|
SRC_C += \
|
|
|
|
$(MCU_DIR)/project_template/clock_config.c \
|
|
|
|
|
2023-03-18 18:30:51 +07:00
|
|
|
# For freeRTOS port source
|
|
|
|
FREERTOS_PORTABLE_SRC = $(FREERTOS_PORTABLE_PATH)/ARM_CM0
|
|
|
|
|
|
|
|
# For flash-jlink target
|
|
|
|
JLINK_DEVICE = K32L2A41xxxxA
|
|
|
|
|
|
|
|
# For flash-pyocd target
|
|
|
|
PYOCD_TARGET = K32L2A
|
|
|
|
|
|
|
|
# flash using pyocd
|
|
|
|
flash: flash-pyocd
|