File tree Expand file tree Collapse file tree 3 files changed +9
-8
lines changed
examples/i2s-controller-demo Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -13,5 +13,5 @@ embedded-hal = "1.0.0"
13
13
systick-monotonic = " 1.0.0"
14
14
rtt-target = " 0.6.0"
15
15
nrf52840-hal = { features = [" rt" ], path = " ../../nrf52840-hal" }
16
- heapless = " 0.8.0 "
16
+ heapless = " 0.9.1 "
17
17
small_morse = " 0.1.0"
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ protocol = "Swd"
15
15
enabled = true
16
16
# Whether or not the target should be halted after reset.
17
17
# DEPRECATED, moved to reset section
18
- halt_afterwards = false
18
+ # halt_afterwards = false
19
19
# Whether or not bytes erased but not rewritten with data from the ELF
20
20
# should be restored with their contents before erasing.
21
21
restore_unwritten_bytes = false
@@ -43,13 +43,14 @@ log_level = "WARN"
43
43
# This is exclusive and cannot be used with GDB at the moment.
44
44
enabled = true
45
45
# A list of channel associations to be displayed. If left empty, all channels are displayed.
46
- channels = [
47
- # { up = 0, down = 0, name = "name", format = "String" }
46
+ up_channels = [
47
+ # { name = "name", format = "String" }
48
+ ]
49
+ down_channels = [
50
+ # { name = "name", format = "String" }
48
51
]
49
52
# The duration in ms for which the logger should retry to attach to RTT.
50
53
timeout = 3000
51
- # Whether timestamps in the RTTUI are enabled
52
- show_timestamps = true
53
54
# Whether to save rtt history buffer on exit.
54
55
log_enabled = false
55
56
# Where to save rtt history buffer relative to manifest path.
Original file line number Diff line number Diff line change @@ -41,8 +41,8 @@ mod app {
41
41
struct Local {
42
42
signal_buf : & ' static [ i16 ; 32 ] ,
43
43
mute_buf : & ' static [ i16 ; 32 ] ,
44
- producer : Producer < ' static , State , 257 > ,
45
- consumer : Consumer < ' static , State , 257 > ,
44
+ producer : Producer < ' static , State > ,
45
+ consumer : Consumer < ' static , State > ,
46
46
uarte : Uarte < UARTE0 > ,
47
47
uarte_timer : Timer < TIMER0 > ,
48
48
gpiote : Gpiote ,
You can’t perform that action at this time.
0 commit comments