You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
n the device "u8g_dev_st7920_128x64" the current code is:
[code]
u8g_WriteByte(u8g, dev, 0x080 | y ); /* y pos */
u8g_WriteByte(u8g, dev, 0x080 ); /* set x pos to 0*/
[/code]
this must be changed to:
[code]
if ( y < 32 )
{
u8g_WriteByte(u8g, dev, 0x080 | y ); /* y pos */
u8g_WriteByte(u8g, dev, 0x080 ); /* set x pos to 0*/
}
else
{
u8g_WriteByte(u8g, dev, 0x080 | (y-32) ); /* y pos */
u8g_WriteByte(u8g, dev, 0x080 | 4); /* set x pos to 64*/
}
[/code]
Original issue reported on code.google.com by olikr...@gmail.com on 24 Jan 2012 at 11:46
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
olikr...@gmail.com
on 24 Jan 2012 at 11:46The text was updated successfully, but these errors were encountered: