-
This is related to #671, but I feel we will need a couple of extra things to make this code work.
```rust
#[flux::refined_by(ring_len: int, head: int, tail: int)]
#[flux::invariant(0 < ring_len)]…
-
What's up with UART classes going in there accessing member variables of `RingBuffer` class?
Here is a rewritten `RingBuffer` class that no longer allow access to its member variables but can be used…
-
https://st.suckless.org/patches/scrollback/st-scrollback-ringbuffer-0.8.5.diff
i personally don't know the differences between this new scrollback patch that uses a ring buffer.
t is also said that…
-
Hey,
im currently using TinyGO along with a raspberry pico to talk to a sim7020e NB-IoT board. The problem im having is that one of the MQTT related AT command returns a rather long reply (+CMQPUB)…
-
Hi Eckhart,
I have attempted to build the USB cdc example in your stm32f103 C++ template library, but its main.cpp file includes ringbuffer.h and I haven't been able to find ringbuffer files anywhe…
-
Here's a sketch of what the `RingBuffer` trait should look like:
```rust
pub trait RingBuffer {
type Item;
fn is_full(&self) -> bool;
fn is_empty(&self) -> bool;
// Peek ahea…
-
Reads don't remove backup items, they only remove primaries when TTL is configured. This reduces usable memory.
-
Hallo Ed,
[hope you don't consider this out of topic]
My Wemos D1 runs an air traffic control radio that is heavily based on your Esp-radio. For the most part, I just left out what I didn't need a…
-
I decided to make an issue here to summarize my issues/requests with rtmixer, perhaps for future fixes/updates.
In general, what I am trying to do is to execute an audio processing algorithm in real-…
-
The `source_loc` struct holds `const char *filename` and `const char *funcname` which need buffering for the same reason the logger name and payload `string_view` do.
I encountered this issue when …