add tinyusb as a git submodule

This commit is contained in:
Willian Paixao 2021-12-05 19:35:29 +01:00
parent ac2e205ae9
commit 54d1981df6
No known key found for this signature in database
GPG key ID: 4BB3AE4D48EF1764
3 changed files with 10 additions and 1 deletions

3
.gitmodules vendored Normal file
View file

@ -0,0 +1,3 @@
[submodule "tinyusb"]
path = tinyusb
url = https://github.com/hathach/tinyusb.git

View file

@ -2,7 +2,9 @@ CFLAGS += $(INCLUDES) $(DEFINES)
OBJS = $(addprefix $(BUILD)/, $(notdir %/$(subst .c,.o, $(SRCS))))
all: directory $(BUILD)/$(BIN).elf $(BUILD)/$(BIN).hex $(BUILD)/$(BIN).bin $(BUILD)/$(BIN).uf2 size
SUBMODULES = tinyusb
all: directory $(SUBMODULES) $(BUILD)/$(BIN).elf $(BUILD)/$(BIN).hex $(BUILD)/$(BIN).bin $(BUILD)/$(BIN).uf2 size
$(BUILD)/$(BIN).elf: $(OBJS)
@echo LD $@
@ -20,6 +22,9 @@ $(BUILD)/$(BIN).uf2: $(BUILD)/$(BIN).bin
@echo UF2CONV $@
@$(UF2) $^ -co $@
$(SUBMODULES):
git submodule update --init --recursive
install:
@$(UF2) -D $(BUILD)/$(BIN).uf2

1
tinyusb Submodule

@ -0,0 +1 @@
Subproject commit f8288be03f28ad7b944e6925f49422dfa39202c5