-
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
display driver changes in ev3dev-2.0.0 kernel #2
Comments
Does this affect the FatCat display as well? Is the display still a FB; if it is, then it's just a matter of changing the byte representation in the backend. Otherwise, can you post a link to the driver documentation (probably post anyway). |
If only affects EV3. Technically, the driver is a DRM driver, so there other ways to use it, but I don't know anything about it. The fbdev device is still there as a compatibility layer.
|
Great! That makes it easy. I try to get to this in the next couple of days. |
Is there a reason for not making the same change for the bb kernel as well? Other than time/priority. |
The EVB uses a totally different display, so this has no effect on it. |
@hansodenthal I think you probably want to communicate that to the ev3dev.org project. This is the Go bindings for the EV3. |
In ev3dev-stretch, we are now using the mainline kernel driver for the display on the EV3. Unfortunately, this driver does not have support for monochrome. The video memory now uses a 32 bit per pixel layout (XRGB) instead of the one bit per pixel packed format. The plus side is that the screen is actually two bit per pixel grayscale, so we can actually use that feature now, but it means the current hard-coded LCD code is now broken.
The text was updated successfully, but these errors were encountered: