-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEmbed.toml
45 lines (38 loc) · 878 Bytes
/
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
[default.probe]
protocol = "Swd"
speed = 20000
# If you only have one probe cargo embed will pick automatically
# Otherwise: add your probe's VID/PID/serial to filter
## rust-dap
# usb_vid = "6666"
# usb_pid = "4444"
# serial = "test"
[default.flashing]
enabled = true
restore_unwritten_bytes = false
do_chip_erase = false
disable_double_buffering = false
preverify = false
verify = false
[default.reset]
enabled = true
halt_afterwards = false
[default.general]
chip = "RP2040"
log_level = "WARN"
# RP2040 does not support connect_under_reset
connect_under_reset = false
[default.rtt]
enabled = true
up_mode = "NoBlockSkip"
up_channels = [
{ channel = 0, mode = "BlockIfFull", format = "Defmt", show_location = true },
]
down_channels = [
]
timeout = 3000
log_enabled = false
log_path = "./logs"
[default.gdb]
enabled = false
gdb_connection_string = "127.0.0.1:2345"