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.h
- Revision:
- 33:b6b710758ab3
- Parent:
- 32:0e4f2ae512e2
- Child:
- 37:f19b7e7449dc
--- a/RA8875.h Tue Jan 21 03:28:36 2014 +0000 +++ b/RA8875.h Wed Jan 22 03:50:55 2014 +0000 @@ -140,7 +140,7 @@ /// This is a high level command, and may invoke several primitives. /// /// @param command is the command to write. - /// @data is optional data to be written to the command register + /// @param data is optional data to be written to the command register /// and only occurs if the data is in the range [0 - 0xFF]. /// @returns success/failure code. @see RetCode_t. /// @@ -692,7 +692,7 @@ /// @param fillit defines whether the circle is filled or not. /// @returns success/failure code. @see RetCode_t. /// - RetCode_t ellipse(unsigned int x, unsigned int y, unsigned int radius1, unsigned int radius1, + RetCode_t ellipse(unsigned int x, unsigned int y, unsigned int radius1, unsigned int radius2, color_t color, fill_t fillit = NOFILL); /// Draw a filled Ellipse using the specified color @@ -708,7 +708,7 @@ /// @param fillit defines whether the circle is filled or not. /// @returns success/failure code. @see RetCode_t. /// - RetCode_t fillellipse(unsigned int x, unsigned int y, unsigned int radius1, unsigned int radius1, + RetCode_t fillellipse(unsigned int x, unsigned int y, unsigned int radius1, unsigned int radius2, color_t color, fill_t fillit = FILL); /// Draw an Ellipse @@ -722,7 +722,7 @@ /// @param fillit defines whether the circle is filled or not. /// @returns success/failure code. @see RetCode_t. /// - RetCode_t ellipse(unsigned int x, unsigned int y, unsigned int radius1, unsigned int radius1, fill_t fillit = NOFILL); + RetCode_t ellipse(unsigned int x, unsigned int y, unsigned int radius1, unsigned int radius2, fill_t fillit = NOFILL); /// Control display power ///