Zoey Riordan

Results 11 issues of Zoey Riordan

This is a heavy WIP PR to redo the underlying transformation system. Currently the branch has test failure for the flif_logo, some features were regressed and performance hasn't improved. I'll...

This speeds us up by about another 6%. Looking at the profiling data we're spending pretty much all of our time in the RAC

This is a tracking issue for recording the progress of transformation decoding - [x] ChannelCompact - [x] YCoCg - [x] PermutePlanes - [x] Bounds - [ ] PaletteAlpha - [...

enhancement

I have the following layout: ```rust #[derive(Default, NwgUi)] pub struct MainWindow { #[nwg_control(size: (600, 350), title: "Many UI")] #[nwg_events(OnInit: [MainWindow::init], OnResize: [MainWindow::size])] window: nwg::Window, #[nwg_layout(parent: window)] layout: nwg::DynLayout, #[nwg_control(size: (600,...

With RTIC 1.0 if you use `embedded_time` on your `Monotonic` impl any call to `task::spawn_after(...)` has to put a `.into()` after the time type. ```rust task::spawn_after(Milliseconds(250).into()) ``` This is because...

It appears the math is wrong for the timeout in `UarteWithIdle` on the NRF. It attempts to calculate the time for 40bits of idle but it ends up about half...

The `CreatePipe` method should output `SafeFileHandle`s intead of `SafeObjectHandle`s. By outputting `SafeFileHandle` directly it makes it easier to wrap these up in `FileReader` and `FileWriter` classes.

I ran into this bug when trying to test streaming files as chunks of `Vec`. My program would often panic because `FrameBuf` would run out of capacity. Backtrace: http://pastebin.com/6G0n2WmP Location...