Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of RA8875 by
Diff: RA8875.cpp
- Revision:
- 87:ee2240581aa7
- Parent:
- 86:e86b355940f4
- Child:
- 89:04575562c961
--- a/RA8875.cpp Sat Jan 17 20:59:51 2015 +0000 +++ b/RA8875.cpp Mon Jan 19 13:32:56 2015 +0000 @@ -938,6 +938,16 @@ } +RetCode_t RA8875::pixel(point_t p, color_t color) +{ + return pixel(p.x, p.y, color); +} + +RetCode_t RA8875::pixel(point_t p) +{ + return pixel(p.x, p.y); +} + RetCode_t RA8875::pixel(loc_t x, loc_t y, color_t color) { RetCode_t ret;