vista
lfbb
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
vista
-
Reference Views - header-only library (view vector as a map)
See also https://github.com/breese/vista/blob/develop/doc/map_view.adoc
lfbb
- A lock-free ring-buffer with contiguous reservations (2019)
-
OpenPicoRTOS: 'cause the world DEFINITELY needs another RTOS !
If you're interested in how to do that you can check out a library of mine: https://github.com/DNedic/lfbb (although you don't need to bother with memory ordering if you don't want, you can just use the sequential consistency model).
-
How do you handle data coupling between RTOS tasks?
You might be interested to take a look at this if efficiency is one of your goals: https://github.com/DNedic/lfbb
-
Library for generic ringbuffer that can be filled via DMA?
I have exactly what you are looking for https://github.com/DNedic/lfbb
-
Best practices on loosely coupling the high-level modules on a sensor-packager-transmitter embedded c device.
I don't see a reason SensorCollector should send a flag when there is enough data to send, the circular buffer object should be able to tell you when there is enough data to send and it should not be coupled to your specific applicaton. For situations where you want the data to always be contigous and need a general purpose circular buffer, you can take a look at a library i wrote: https://github.com/DNedic/lfbb
- LFBB – A Lock Free Bipartite Buffer Library Written in Standard C11
-
Best practice for preventing data collisions between ISR and non ISR code without turning off interrupts? (FreeRTOS)
If you need something more advanced, check this out: https://github.com/DNedic/lfbb
- A Lock Free Bipartite Buffer Library Written in Standard C11
- Lock Free Bipartite Buffer Library Written in Standard C11
- A Lock Free Bipartite Buffer library written in standard C11
What are some alternatives?
ringbuf - An STL-like ring buffer for C++11.
Vitis-Tutorials - Vitis In-Depth Tutorials
slot_map - A slot map is a high-performance associative container with persistent unique 32/64 bit keys to access stored values.
fifo_map - a FIFO-ordered associative container for C++
span-lite - span lite - A C++20-like span for C++98, C++11 and later in a single-file header-only library
nanoprintf - The smallest public printf implementation for its feature set.
lockfree - A collection of lock-free data structures written in standard C++11
lwrb - Lightweight generic ring buffer manager library
ring-span-lite - ring-span lite - A C++yy-like ring_span type for C++98, C++11 and later in a single-file header-only library
OpenPicoRTOS - Very small, safe, lightning fast, yet portable preemptive RTOS with SMP support
muon - GPU based Electron on a diet
Ring-Buffer - A simple ring buffer (circular buffer) designed for embedded systems.