Queue
Queue copied to clipboard
Queue handling library (designed on Arduino)
I had some trouble using the SimpleQueue.ino example script, here's SimplerQueue.ino on the off chance it's useful to anyone: ``` #include typedef struct strRec { char url[300]; char misc1[255]; }...
This PR provides a unit test that (for better or worse) attempts to line-for-line copy the LibTst.ino example. It asserts a variety of conditions related to (over)filling and (over)emptying a...
Hello, I'm considering this library as a dependency for an application. Althought I'd prefer to rely on a library which have unit tests. You can find some links dealing with...
When trying to access the current remaining count or get count for a queue, the getCount() always gives value as 0 and getRemainingCount() always stays at 50. The queue publish...