Tom Burdick
Tom Burdick
When calling the hook function outside of the spin lock the timer may come along and subsequently call the hook function again before it completes from the first call on...
websocket is new and coming, it would be fantastic to see websocket support in ibrowse.
when using vimerl compared to the erlang syntax highlighter that comes with vim edoc strings like @doc are no longer highlighted
I mistakenly put public rather than private key as the key argument and got a confusing segfault in place of a nice error message. @marc-hb mentioned this should probably be...
I created a similiar ticket for rust-csv, it would be nice to have a csv deserializer that can take advantage of csv headers to match up with struct members.
Currently not-awesome, a lack of a rust bootloader using image signing with dfu support. Perhaps re-using mcuboot is the right thing to do.
I suppose its a big ask, but can the build.rs build ecal when its not found perhaps for the target arch? The work I do today targets armv7, aarch64, and...
It would be much nicer to simply work with the .zip file Ex: ``` rust let gtfs = GTFS::from_zip("gtfs.zip").unwrap(); for agency in gtfs.agencies() { println!("{:?}", agency); } for stop in...
When multiple probes are present rather than erroring out allow for a user to input a probe to use from a list of available probes. Example shell scenario ``` sh...
DMA channels can be viewed as a pool of resources in some instances. When using struct dma_context the default channel request/release use an atomic bit flag to indicate channel availability...