FL-409 Boot0 OK button (#257)

* update makefiles for f3-1
* add f3-1 files
* fix mk for f3
* remap OK button
* differ gpio invert
* expose full duplex spi2
* remove duplicate bq drivers
* remove bq inc
This commit is contained in:
coreglitch
2020-12-02 16:40:06 +03:00
committed by GitHub
parent 3a6fbff8c3
commit 884dba647a
56 changed files with 9964 additions and 21 deletions

View File

@@ -43,15 +43,15 @@ $(OBJ_DIR)/$(PROJECT).bin: $(OBJ_DIR)/$(PROJECT).elf
@$(BIN) $< $@
$(OBJ_DIR)/%.o: %.c $(OBJ_DIR)/BUILD_FLAGS $(ASSETS)
@echo "\tCC\t" $@
@echo "\tCC\t" $< "->" $@
@$(CC) $(CFLAGS) -c $< -o $@
$(OBJ_DIR)/%.o: %.s $(OBJ_DIR)/BUILD_FLAGS $(ASSETS)
@echo "\tASM\t" $@
@echo "\tASM\t" $< "->" $@
@$(AS) $(CFLAGS) -c $< -o $@
$(OBJ_DIR)/%.o: %.cpp $(OBJ_DIR)/BUILD_FLAGS $(ASSETS)
@echo "\tCPP\t" $@
@echo "\tCPP\t" $< "->" $@
@$(CPP) $(CFLAGS) $(CPPFLAGS) -c $< -o $@
$(OBJ_DIR)/flash: $(OBJ_DIR)/$(PROJECT).bin