43 lines
1.2 KiB
TOML
43 lines
1.2 KiB
TOML
[default.probe]
|
|
protocol = "Swd"
|
|
# USB vendor ID
|
|
# usb_vid = "6790"
|
|
# USB product ID
|
|
# usb_pid = "29987"
|
|
|
|
[default.flashing]
|
|
enabled = true
|
|
|
|
[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 = "STM32G030J6Mx"
|
|
chip = "STM32G070CBTx"
|
|
# A list of chip descriptions to be loaded during runtime.
|
|
chip_descriptions = []
|
|
# The default log level to be used.
|
|
log_level = "Warn"
|
|
|
|
[default.rtt]
|
|
enabled = false
|
|
# A list of channel associations to be displayed. If left empty, all channels are displayed.
|
|
channels = [
|
|
# { up = 0, down = 0, name = "name" }
|
|
]
|
|
# 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
|
|
|
|
[default.gdb]
|
|
# Whether or not a GDB server should be opened after flashing.
|
|
# This is exclusive and cannot be used with RTT at the moment.
|
|
enabled = false
|
|
# The connection string in host:port format wher the GDB server will open a socket.
|
|
# gdb_connection_string |