aboutsummaryrefslogtreecommitdiff
path: root/embassy-sync/src/ring_buffer.rs
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-sync/src/ring_buffer.rs')
-rw-r--r--embassy-sync/src/ring_buffer.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/embassy-sync/src/ring_buffer.rs b/embassy-sync/src/ring_buffer.rs
index 81e60c42b..f03b7dd8f 100644
--- a/embassy-sync/src/ring_buffer.rs
+++ b/embassy-sync/src/ring_buffer.rs
@@ -1,5 +1,6 @@
1use core::ops::Range; 1use core::ops::Range;
2 2
3#[derive(Debug)]
3pub struct RingBuffer<const N: usize> { 4pub struct RingBuffer<const N: usize> {
4 start: usize, 5 start: usize,
5 end: usize, 6 end: usize,