-
Notifications
You must be signed in to change notification settings - Fork 98
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
screen resolution #27
Comments
Hello, Have a look at file So you can try changing Line 321, modify like this for a 4/3 monitor:
or like that for a 16/9 monitor:
|
thanks for your reply, sorry my english |
size_t get_fb_size(void)
{
size_t size = 0;
#if defined(CONFIG_THREE_FB_BUFFER)
size = ((H_VD)*(V_VD)<<2)* 3; //three buffer
#else
size = ((H_VD)*(V_VD)<<2)<<1; //two buffer
#endif
return ALIGN(size,SZ_1M);
}
This worked on my Lapdock. |
thank you for your commitment and dedication, |
This is strange, but I've had some kernels (RK3188 and RK3066) that were 1080P detect the lower resolution and adjust (although blinking) and some just show "out of range" on the lapdock. When I compile for 480P it actually works at 480P. Can you try another device like a 720P or 1080P TV and see what it comes up as? |
thanks for your reply, |
I bought a Lapdock On Mon, Apr 7, 2014 at 2:43 PM, Daniel [email protected] wrote:
Steven P. Goldsmith |
this is perfect! |
The screen, keyboard and mouse pad work on MK808 and MK802IV (should For Pi: http://www.instructables.com/id/The-Raspberry-Pi-Lapdock-Connection On Mon, Apr 7, 2014 at 7:27 PM, Daniel [email protected] wrote:
Steven P. Goldsmith |
I'm trying to change the resolution to 480p through marvin the script, you think this is possible? I have a monitor that works with that resolution but does not support the upper.
The text was updated successfully, but these errors were encountered: