James Munns

Results 157 issues of James Munns

I don't mind this being a personal repo/project, but might be better suited to live somewhere else, like github.com/rust-community. CC @badboy, do you think this could have a home there?...

We should have more complete examples for common use cases, including (at least): * How to use with RTFM * How to use in bare metal CC #54 / @justacec

help wanted
good first issue
docs

Now that we are running on GitHub Actions, I can remove most of the features in bbqtest.

It would be nice to use atomic types smaller than `usize` for tracking variables. This could be a significant size savings for buffers like `BBBuffer` (18 bytes vs 6 bytes...

enhancement
help wanted

Allow for the time-disjoint splitting of producer and consumer, allowing one context to take only the item it needs. Something like: ```rust static BUF: BBBuffer = BBBuffer( ConstBBBuffer::new() ); fn...

enhancement

Often you want to commit a grant (read or write), then immediately get the next grant, if possible. We should add an interface that lets you do that in one...

enhancement

In the 0.4.x release train, I would like to add some new ways to allow for more granular control of grants. The following are currently planned: ## Regular grants *...

enhancement

It would be good to have a heap allocated version of BBBuffer, that would automatically be dropped when the Producer and Consumer (and all grants) have been dropped. This should...

enhancement
help wanted