forked from RogueMaster/flipperzero-firmware-wPlugins
-
Notifications
You must be signed in to change notification settings - Fork 1
/
fbt_options.py
90 lines (74 loc) · 1.82 KB
/
fbt_options.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import posixpath
# Default hardware target
TARGET_HW = 7
# Optimization flags
## Optimize for size
COMPACT = 1
## Optimize for debugging experience
DEBUG = 0
# 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 lets 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
BLACKMAGIC = "auto"
FIRMWARE_APPS = {
"default": [
"crypto_start",
# Svc
"basic_services",
# Apps
"basic_apps",
"updater_app",
"archive",
# Custom Apps
"custom_apps",
# Settings
"passport",
"system_settings",
"about",
# Plugins
"basic_plugins",
# Custom Games
"custom_games",
# Debug
"debug_apps",
],
"unit_tests": [
"basic_services",
"unit_tests",
],
}
FIRMWARE_APP_SET = "default"