* fbt, faploader: minimal app module implementation * faploader, libs: moved API hashtable core to flipper_application * example: compound api * lib: flipper_application: naming fixes, doxygen comments * fbt: changed `requires` manifest field behavior for app extensions * examples: refactored plugin apps; faploader: changed new API naming; fbt: changed PLUGIN app type meaning * loader: dropped support for debug apps & plugin menus * moved applications/plugins -> applications/external * Restored x bit on chiplist_convert.py * git: fixed free-dap submodule path * pvs: updated submodule paths * examples: example_advanced_plugins.c: removed potential memory leak on errors * examples: example_plugins: refined requires * fbt: not deploying app modules for debug/sample apps; extra validation for .PLUGIN-type apps * apps: removed cdefines for external apps * fbt: moved ext app path definition * fbt: reworked fap_dist handling; f18: synced api_symbols.csv * fbt: removed resources_paths for extapps * scripts: reworked storage * scripts: reworked runfap.py & selfupdate.py to use new api * wip: fal runner * fbt: moved file packaging into separate module * scripts: storage: fixes * scripts: storage: minor fixes for new api * fbt: changed internal artifact storage details for external apps * scripts: storage: additional fixes and better error reporting; examples: using APP_DATA_PATH() * fbt, scripts: reworked launch_app to deploy plugins; moved old runfap.py to distfap.py * fbt: extra check for plugins descriptors * fbt: additional checks in emitter * fbt: better info message on SDK rebuild * scripts: removed requirements.txt * loader: removed remnants of plugins & debug menus * post-review fixes
		
			
				
	
	
		
			83 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			1.7 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 as well
 | 
						|
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",
 | 
						|
    "${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",
 | 
						|
        "unit_tests",
 | 
						|
    ],
 | 
						|
}
 | 
						|
 | 
						|
FIRMWARE_APP_SET = "default"
 |