1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-13 05:06:30 +04:00

Merge branch 'fz-dev' into dev

This commit is contained in:
Eng1n33r
2022-07-04 21:57:40 +03:00
62 changed files with 1405 additions and 221 deletions

View File

@@ -41,10 +41,24 @@ COPRO_STACK_BIN_DIR = posixpath.join(
# Supported toolchain versions
FBT_TOOLCHAIN_VERSIONS = (" 10.3.",)
OPENOCD_OPTS = '-f interface/stlink.cfg -c "transport select hla_swd" -f debug/stm32wbx.cfg -c "stm32wbx.cpu configure -rtos auto" -c "init"'
OPENOCD_OPTS = [
"-f",
"interface/stlink.cfg",
"-c",
"transport select hla_swd",
"-f",
"debug/stm32wbx.cfg",
"-c",
"stm32wbx.cpu configure -rtos auto",
"-c",
"init",
]
SVD_FILE = "debug/STM32WB55_CM4.svd"
# Look for blackmagic probe on serial ports
BLACKMAGIC = "auto"
FIRMWARE_APPS = {
"default": [
"crypto_start",