summaryrefslogtreecommitdiffstatshomepage
path: root/extmod/modframebuf.c
Commit message (Collapse)AuthorAge
* extmod/framebuf: Add the xstep!=0 case to scroll() method.Radomir Dopieralski2016-09-05
| | | | | | | Adds horizontal scrolling. Right now, I'm just leaving the margins created by the scrolling as they were -- so they will repeat the edge of the framebuf. This is fast, and the user can always fill the margins themselves.
* extmod/modframebuf: Include font from stmhal directory explicitly.Damien George2016-09-04
| | | | | So that users of framebuf don't need to have stmhal directory in their path. (Eventually the font can be moved elsewhere.)
* extmod/modframebuf: Fix fill and scroll when height not divisible by 8.Radomir Dopieralski2016-09-02
| | | | | | | There was a bug in `framebuf1_fill` function, that makes it leave a few lines unfilled at the bottom if the height is not divisible by 8. A similar bug is fixed in the scroll method.
* extmod/modframebuf: Fix pixel accessor to return a 1-bit result.Damien George2016-08-27
|
* extmod: Add initial framebuf module.Damien George2016-04-12