forked from taunusflieger/nucleo-h755-embassy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Embed.toml
106 lines (97 loc) · 4.69 KB
/
Embed.toml
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[default.probe]
# USB vendor ID
# usb_vid = "1337"
# USB product ID
# usb_pid = "1337"
# Serial number
# serial = "12345678"
# The protocol to be used for communicating with the target.
protocol = "Swd"
# The speed in kHz of the data link to the target.
# speed = 1337
[default.flashing]
# Whether or not the target should be flashed.
enabled = true
# Whether or not the target should be halted after reset.
# DEPRECATED, moved to reset section
halt_afterwards = false
# Whether or not bytes erased but not rewritten with data from the ELF
# should be restored with their contents before erasing.
restore_unwritten_bytes = false
# The path where an SVG of the assembled flash layout should be written to.
# flash_layout_output_path = "out.svg"
# Triggers a full chip erase instead of a page by page erase.
do_chip_erase = false
[default.reset]
# Whether or not the target should be reset.
# When flashing is enabled as well, the target will be reset after flashing.
enabled = true
# Whether or not the target should be halted after reset.
halt_afterwards = false
[default.general]
# The chip name of the chip to be debugged.
chip = "STM32H755ZITx"
# A list of chip descriptions to be loaded during runtime.
#chip_descriptions = []
# The default log level to be used. Possible values are one of:
# "OFF", "ERROR", "WARN", "INFO", "DEBUG", "TRACE"
log_level = "WARN"
# Use this flag to assert the nreset & ntrst pins during attaching the probe to the chip.
connect_under_reset = false
[default.rtt]
# Whether or not an RTTUI should be opened after flashing.
enabled = false
# The duration in ms for which the logger should retry to attach to RTT.
timeout = 3000
# Whether timestamps in the RTTUI are enabled
show_timestamps = true
# Whether locations for defmt messages are enabled in the RTTUI
#show_location = false
# Whether to save rtt history buffer on exit.
log_enabled = false
# Where to save rtt history buffer relative to manifest path.
log_path = "./logs"
# A list of up (target -> host) channel settings associations to be displayed. If left empty, all channels are displayed.
# object key - RTT channel identifier number
# mode (Optional) - RTT operation mode. Describes how the target handles RTT outputs that won't
# fit in the buffer. If left unset, the firmware will determine the default
# for each RTT up channel.
# * NoBlockSkip - Skip writing the data completely if it doesn't fit in its
# entirety.
# * NoBlockTrim - Write as much as possible of the data and ignore the rest.
# * BlockIfFull - Spin until the host reads data. Can result in app freezing.
# format (Optional) - How to interpret data from target firmware. One of:
# * String - Directly show output from the target (default)
# * Defmt - Format output on the host, see https://defmt.ferrous-systems.com/
# * BinaryLE - Display as raw hex
# show_location (Optional) - Whether to show the location of defmt messages in the UI.
# show_timestamps (Optional) - Whether to show the timestamps of String messages in the UI.
# socket (Optional) - Server socket address (for optional external frontend or endpoint).
channels = [
{ channel = 0, mode = "BlockIfFull", format = "Defmt" },
# { channel = 1, mode = "BlockIfFull", format = "String", show_timestamps = false, socket = "127.0.0.1:12345" },
]
# A list of down (host -> target) channel settings. You can select a down channel for each UI tab,
# which will be used to send data to the target.
# object key - RTT channel identifier number
# mode (Optional) - RTT operation mode. Describes how the target handles RTT outputs that won't
# fit in the buffer. If left unset, the firmware will determine the default
# for each RTT down channel.
#down_channels = [
# { channel = 0, mode = "BlockIfFull" }
#]
# UI tab settings. All up channels are displayed, except when hidden here. You can specify how each
# tab is displayed and whether they allow sending data to the target.
# up_channel - The channel_number of the RTT up channel to display
# hide (Optional) - Whether to hide the tab. Defaults to false.
# down_channel (Optional) - The channel_number of the RTT down channel to use for this tab.
# name (Optional) - String to be displayed in the RTTUI tab. Defaults to the channel name.
#tabs = [
# { up_channel = 0, down_channel = 0, name = "My channel" },
# { up_channel = 1, hide = true },
#]
[default.gdb]
# Whether or not a GDB server should be opened after flashing.
enabled = false
# The connection string in host:port format wher the GDB server will open a socket.
gdb_connection_string = "127.0.0.1:1337"