* Updated stack to 1.17.0 * hal: ble: Fixed stack config * Bumped stack version in config * scripts: added validation of copro stack version in update bundles * Copro: update to 1.17.2 * FuriHal: adjust tick frequency for HSE as sys clk * FuriHal: adjust systick reload on sys clock change * Sync api and format sources * scripts: updated ob.data for newer stack * FuriHal: return core2 hse pll transition on deep sleep * FuriHal: cleanup ble glue * FuriHal: rework ble glue, allow shci_send in critical section * FuriHal: sync api symbols * FuriHal: cleanup BLE glue, remove unused garbage and duplicate declarations * FuriHal: BLE glue cleanup, 2nd iteration * FuriHal: hide tick drift reports under FURI_HAL_OS_DEBUG * Lib: sync stm32wb_copro with latest dev * FuriHal: ble-glue, slightly less editable device name and duplicate definition cleanup * FuriHal: update ble config options, enable some optimizations and ext adv * FuriHal: update clock switch method documentation * FuriHal: better SNBRSA bug workaround fix * FuriHal: complete comment about tick skew * FuriHal: proper condition in clock hsi2hse transition * FuriHal: move PLL start to hse2pll routine, fix lockup caused by core2 switching to HSE before us * FuriHal: explicit HSE start before switch * FuriHal: fix documentation and move flash latency change to later stage, remove duplicate LL_RCC_SetRFWKPClockSource call --------- Co-authored-by: hedger <hedger@nanode.su> Co-authored-by: hedger <hedger@users.noreply.github.com>
		
			
				
	
	
		
			86 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
from pathlib import Path
 | 
						|
import posixpath
 | 
						|
 | 
						|
# For more details on these options, run 'fbt -h'
 | 
						|
 | 
						|
FIRMWARE_ORIGIN = "Official"
 | 
						|
 | 
						|
# Default hardware target
 | 
						|
TARGET_HW = 7
 | 
						|
 | 
						|
# Optimization flags
 | 
						|
## Optimize for size
 | 
						|
COMPACT = 0
 | 
						|
## Optimize for debugging experience
 | 
						|
DEBUG = 1
 | 
						|
 | 
						|
# Suffix to add to files when building distribution
 | 
						|
# If OS environment has DIST_SUFFIX set, it will be used instead
 | 
						|
DIST_SUFFIX = "local"
 | 
						|
 | 
						|
# Coprocessor firmware
 | 
						|
COPRO_OB_DATA = "scripts/ob.data"
 | 
						|
 | 
						|
# Must match lib/stm32wb_copro version
 | 
						|
COPRO_CUBE_VERSION = "1.17.2"
 | 
						|
 | 
						|
COPRO_CUBE_DIR = "lib/stm32wb_copro"
 | 
						|
 | 
						|
# Default radio stack
 | 
						|
COPRO_STACK_BIN = "stm32wb5x_BLE_Stack_light_fw.bin"
 | 
						|
# Firmware also supports "ble_full", but it might not fit into debug builds
 | 
						|
COPRO_STACK_TYPE = "ble_light"
 | 
						|
 | 
						|
# Leave 0 to let scripts automatically calculate it
 | 
						|
COPRO_STACK_ADDR = "0x0"
 | 
						|
 | 
						|
# If you override COPRO_CUBE_DIR on commandline, override this as well
 | 
						|
COPRO_STACK_BIN_DIR = posixpath.join(COPRO_CUBE_DIR, "firmware")
 | 
						|
 | 
						|
# Supported toolchain versions
 | 
						|
FBT_TOOLCHAIN_VERSIONS = (" 10.3.",)
 | 
						|
 | 
						|
OPENOCD_OPTS = [
 | 
						|
    "-f",
 | 
						|
    "interface/stlink.cfg",
 | 
						|
    "-c",
 | 
						|
    "transport select hla_swd",
 | 
						|
    "-f",
 | 
						|
    "${FBT_DEBUG_DIR}/stm32wbx.cfg",
 | 
						|
    "-c",
 | 
						|
    "stm32wbx.cpu configure -rtos auto",
 | 
						|
]
 | 
						|
 | 
						|
SVD_FILE = "${FBT_DEBUG_DIR}/STM32WB55_CM4.svd"
 | 
						|
 | 
						|
# Look for blackmagic probe on serial ports and local network
 | 
						|
BLACKMAGIC = "auto"
 | 
						|
 | 
						|
# Application to start on boot
 | 
						|
LOADER_AUTOSTART = ""
 | 
						|
 | 
						|
FIRMWARE_APPS = {
 | 
						|
    "default": [
 | 
						|
        # Svc
 | 
						|
        "basic_services",
 | 
						|
        # Apps
 | 
						|
        "main_apps",
 | 
						|
        "system_apps",
 | 
						|
        # Settings
 | 
						|
        "settings_apps",
 | 
						|
    ],
 | 
						|
    "unit_tests": [
 | 
						|
        "basic_services",
 | 
						|
        "updater_app",
 | 
						|
        "radio_device_cc1101_ext",
 | 
						|
        "unit_tests",
 | 
						|
    ],
 | 
						|
}
 | 
						|
 | 
						|
FIRMWARE_APP_SET = "default"
 | 
						|
 | 
						|
custom_options_fn = "fbt_options_local.py"
 | 
						|
 | 
						|
if Path(custom_options_fn).exists():
 | 
						|
    exec(compile(Path(custom_options_fn).read_text(), custom_options_fn, "exec"))
 |