28 lines
779 B
TOML
28 lines
779 B
TOML
|
|
[default.general]
|
||
|
|
chip = "STM32G474RETx"
|
||
|
|
connect_under_reset = true
|
||
|
|
|
||
|
|
#[default.probe]
|
||
|
|
#usb_vid = "0483"
|
||
|
|
#usb_pid = "3752"
|
||
|
|
#serial = "066DFF35304B4E3043045539"
|
||
|
|
|
||
|
|
[default.flashing]
|
||
|
|
enabled = true
|
||
|
|
|
||
|
|
|
||
|
|
[default.rtt]
|
||
|
|
enabled = true
|
||
|
|
up_channels = [
|
||
|
|
{ channel = 0, mode = "BlockIfFull", format = "Defmt", show_location = true, show_timestamps = true },
|
||
|
|
{ channel = 1, mode = "BlockIfFull", format = "String", show_timestamps = false },
|
||
|
|
{ channel = 2, mode = "BlockIfFull", format = "BinaryLE", show_timestamps = false, socket = "127.0.0.1:12346" },
|
||
|
|
]
|
||
|
|
down_channels = [{ channel = 0, mode = "BlockIfFull" }]
|
||
|
|
tabs = [
|
||
|
|
{ up_channel = 0, name = "Logs" },
|
||
|
|
{ up_channel = 1, down_channel = 0, name = "Terminal" },
|
||
|
|
{ up_channel = 2, name = "wav", hide = true },
|
||
|
|
]
|
||
|
|
|