- just a skeleton to get us started - cpu feature config and irq names / vectab2 setup done - pulled in the second stage for pico as a blob for now - seems to be hard faulting out of systick setup in platform_init()
15 lines
214 B
Makefile
15 lines
214 B
Makefile
LOCAL_DIR := $(GET_LOCAL_DIR)
|
|
|
|
MODULE := $(LOCAL_DIR)
|
|
|
|
PLATFORM := rp20xx
|
|
|
|
GLOBAL_DEFINES += \
|
|
TARGET_HAS_DEBUG_LED=1
|
|
|
|
MODULE_SRCS += \
|
|
$(LOCAL_DIR)/boot.stage2.S \
|
|
$(LOCAL_DIR)/target.c
|
|
|
|
include make/module.mk
|