-
Hi,
If you try the DMA ringbuffer with the Teensy 3.1, it does not work as expected : only half the buffer is filled, I think that the correction needs to be done on line 85, you should have 2 \* b_s…
-
A ring buffer should write around the "edge" of the buffer. Zed's RingBuffer merely resets once it is empty.
Consider renaming to FancyBuffer or AdvancedBuffer, or change the implementation to writ…
-
As of commit e2cbbd0c264b323a422ef6dc8c586c287aec845a I count at least 4 separate ring buffer implementations:
- `std.fifo.LinearFifo` - most generic, longest existing.
- `std.RingBuffer` - used o…
-
I am working with a MKRNB1500 with MKRNB. Sometimes I see what appears to be an incomplete or no response from the SARA modem. The interface to the SARA modem is a UART serial interface.
I starte…
-
Just doing the following:
```C++
#include
#include
int main(int argc, char *argv[])
{
LoadLibraryA("libjack64.dll");
return 0;
}
```
crashes on windows with a weird stacktrace :
…
-
```
Currently ringbuffer.c uses /dev/shm, which is not available in some
environments. Instead, create a file in /tmp and mmap it.
--Michi
```
Original issue reported on code.google.com by `mutsu…
-
Follow-up from https://github.com/seL4/projects_libs/pull/18#discussion_r1003527717
The ring buffer does not support 0 as data value, but expects this as an end marker. Thus I wonder if `rb_new()`s…
-
Currently playing with fire by reusing the same buffers for drawing. Need to write a gfx::RingBuffer to reuse that does the right things here, as well as add QueueFence queries and waiting to properly…
-
Hi! We have compiled last version (jan 11-2023) and generated the bitstream and installed it on AndtSDR E310v1.
We can execute srsenb with device_name=iio and connect to the E310 via giga-ethernet, c…
-
The blocking push into the ringbuffer is done with the strand held. If the receiver tries to modify the stream (e.g., to set a memory pool, based on descriptor data) then it can block waiting on the s…