forked from blackmagic-debug/blackmagic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson_options.txt
91 lines (91 loc) · 1.96 KB
/
meson_options.txt
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
91
option(
'probe',
type: 'combo',
choices: [
'',
'96b_carbon',
'blackpill-f401cc',
'blackpill-f401ce',
'blackpill-f411ce',
'bluepill',
'f072',
'f3',
'f4discovery',
'hydrabus',
'launchpad-icdi',
'native',
'stlink',
'stlinkv3',
'swlink'
],
value: '',
description: 'Hardware platform where the BMD firmware will run'
)
option(
'targets',
type: 'array',
choices: [
'cortexar',
'cortexm',
'riscv32',
'riscv64',
'efm',
'hc32',
'lpc',
'nrf',
'nxp',
'renesas',
'rp',
'sam',
'stm',
'ti',
'xilinx'
],
description: 'Enabled debug targets'
)
option(
'print_memory_usage',
type: 'boolean',
value: true,
description: 'Print firmware static memory usage at the end of the build'
)
option(
'debug_output',
type: 'boolean',
value: false,
description: 'Enable debug output (for debugging the BMD stack, not debug targets)'
)
option('rtt_support', type: 'boolean', value: true, description: 'Enable RTT (Real Time Transfer) support')
option('rtt_ident', type: 'string', description: 'RTT (Real Time Transfer) identifier string')
option(
'no_own_ll',
type: 'boolean',
value: false,
description: 'Use generic interface routines (for when low level routines are not available)'
)
option('bmd_bootloader', type: 'boolean', value: true, description: 'Use the BMD bootloader (not always applicable)')
option(
'stlink_swim_as_uart',
type: 'boolean',
value: false,
description: 'Repurpose the SWIM pins as the UART (only applicable to stlink)'
)
option('serialno', type: 'string', value: '1', description: 'Serial number to report (only applicable to some probes)')
option(
'advertise_noackmode',
type: 'boolean',
value: false,
description: 'Let GDB know that the probe supports and prefers `QStartNoAckMode`'
)
option(
'alternative_pinout',
type: 'combo',
choices: ['0', '1', '2', '3'],
value: '0',
description: 'Alternative pinout for probe (only applicable to blackpill-f4*)'
)
option(
'enable_gpiod',
type: 'feature',
value: 'auto'
)