Advertisement
Guest User

Untitled

a guest
Apr 29th, 2010
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. void lcd_blit_mono(const unsigned char *data, int x, int by, int width,
  2. int bheight, int stride)
  3. {
  4. if (lcd_initialized)
  5. {
  6. while (bheight--)
  7. {
  8. lcd_write_command(LCD_SET_PAGE | (by & 0xf));
  9. lcd_write_command_e(LCD_SET_COLUMN | ((x >> 4) & 0xf), x & 0xf);
  10.  
  11. lcd_mono_data(data, width);
  12. data += stride;
  13. by++;
  14. }
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement