James Waples

Results 103 comments of James Waples

I've reproduce this locally which is good. Looks like `tinybmp` and it's older `nom` dependency is the culprit: ``` memchr v2.3.4 └── nom v6.2.1 └── tinybmp v0.3.1 [dev-dependencies] └── ssd1306...

Looks like the dependency issue is fixed by using `edition = "2021"` in Cargo.toml. I want to do the same with tinybmp anyway, so this would be a good opportunity...

Most likely! The rotation options use segment remap with another option to make the display do the rotation itself. Implementing display flip should be pretty simple using one option or...

Just to clarify, the rotation behaviour is only broken in `TerminalMode`. `GraphicsMode` works as expected.

`TerminalMode` rotation bug moved to #85. This issue will remain open as a tracker for the original flip feature.

I ran into this problem at work and came up with the following solution. I'm not particularly proud of it but it's an ok stopgap until something nicer comes along...

Hey Ralf, I just pushed some changes to this branch. Hopefully that's ok with you. If not, please let me know and I'll fork this PR into a new one....

I've just added horizontal/vertical support for < 8BPP, using [this PR in `ssd1306`](https://github.com/jamwaffles/ssd1306/pull/169) as a test bench. TODO - [ ] Vertical direction for 16BPP and above, mostly for completeness'...

Because I have a `RawFd`, I can use that pretty much directly with `io_uring`. I wrote a quick blocking test which kind of works. The bit I'm stuck on is...

P.s. CI is failing. I don't have much time to look into it right now so I'd appreciate it if you can see if you can fix the issues.