* faploader: more subsystem headers in API table; not counting header entries for SDK version change * subghz: removed dead function * Adjusted API version * hal: removed furi_hal_power_get_system_voltage * lib: mbedtls: additional flags for .fap linkage * fbt: rebuilding assets when git commit id changes * fbt: removed assets rebuild on git commit id change; added explicit dependency for SDK source on compiled assets parts; removed unneeded sdk regeneration runs * fbt: changed stock plugins to EXTERNAL apps; restored building app as a PLUGIN as a part of main fw as well as a .fap; readme fixes * fbt: restored certain apps to PLUGIN type * fbt: app manifests: renamed version->fap_version, added extra fields * fbt: fixed version processing after rename Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			90 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
import posixpath
 | 
						|
 | 
						|
# For more details on these options, run 'fbt -h'
 | 
						|
 | 
						|
 | 
						|
# 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/STM32CubeWB version
 | 
						|
COPRO_CUBE_VERSION = "1.13.3"
 | 
						|
 | 
						|
COPRO_CUBE_DIR = "lib/STM32CubeWB"
 | 
						|
 | 
						|
# 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 aswell
 | 
						|
COPRO_STACK_BIN_DIR = posixpath.join(
 | 
						|
    COPRO_CUBE_DIR,
 | 
						|
    "Projects",
 | 
						|
    "STM32WB_Copro_Wireless_Binaries",
 | 
						|
    "STM32WB5x",
 | 
						|
)
 | 
						|
 | 
						|
# 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",
 | 
						|
]
 | 
						|
 | 
						|
SVD_FILE = "debug/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",
 | 
						|
        # Stock plugins - no longer built into fw, now they're .faps
 | 
						|
        # Yet you can still build them as a part of fw
 | 
						|
        # "basic_plugins",
 | 
						|
        # Debug
 | 
						|
        # "debug_apps",
 | 
						|
    ],
 | 
						|
    "unit_tests": [
 | 
						|
        "basic_services",
 | 
						|
        "updater_app",
 | 
						|
        "unit_tests",
 | 
						|
    ],
 | 
						|
}
 | 
						|
 | 
						|
FIRMWARE_APP_SET = "default"
 |