summaryrefslogtreecommitdiff
path: root/tests/extmod/framebuf16.py
AgeCommit message (Collapse)Author
2017-06-10tests: Convert remaining "sys.exit()" to "raise SystemExit".Paul Sokolovsky
2016-12-13tests/extmod: Improve modframebuf test coverage.Rami Ali
2016-12-01extmod/modframebuf: Make FrameBuffer handle 16bit depth.Radomir Dopieralski
Rename FrameBuffer1 into FrameBuffer and make it handle different bit depths via a method table that has getpixel and setpixel. Currently supported formats are MVLSB (monochrome, vertical, LSB) and RGB565. Also add blit() and fill_rect() methods.