added a button/led script

This commit is contained in:
2024-03-24 21:01:38 +01:00
parent 998ac94f28
commit 7f4b1fd08c
13 changed files with 13707 additions and 5 deletions

View File

@ -50,6 +50,9 @@ VECT_TBL = $(SRC_DIR)/vector_table.S
AS_SRC = $(SRC_DIR)/core.S
C_SRC = $(SRC_DIR)/main.c
INCLUDE = -I./
INCLUDE += -I./device
OBJS = $(BUILD_DIR)/$(notdir $(VECT_TBL:.S=.o))
OBJS += $(BUILD_DIR)/$(notdir $(AS_SRC:.S=.o))
OBJS += $(BUILD_DIR)/$(notdir $(C_SRC:.c=.o))