Bump default target to f7 (#757)

* Bump default target to f7
* Bootloader: set default target to F7

Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
This commit is contained in:
Anna Prosvetova 2021-10-12 18:30:55 +03:00 committed by GitHub
parent 91c5151518
commit 8c5813ef9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ on:
env:
TARGETS: f6 f7
DEFAULT_TARGET: f6
DEFAULT_TARGET: f7
jobs:
build:

View File

@ -8,7 +8,7 @@ ASM_SOURCES += $(wildcard src/*.s)
C_SOURCES += $(wildcard src/*.c)
CPP_SOURCES += $(wildcard src/*.cpp)
TARGET ?= f6
TARGET ?= f7
TARGET_DIR = targets/$(TARGET)
include $(TARGET_DIR)/target.mk

View File

@ -12,7 +12,7 @@ CFLAGS += -I$(PROJECT_ROOT) -Itargets/furi-hal-include
CFLAGS += -Werror -Wno-address-of-packed-member
CPPFLAGS += -Werror
TARGET ?= f6
TARGET ?= f7
TARGET_DIR = targets/$(TARGET)
include $(TARGET_DIR)/target.mk