This is the David Smart RA8875 Library with mods for working with FRDM-K64F

Revision:
191:0fad2e45e196
Parent:
190:3132b7dfad82
Child:
193:74f80834d59d
diff -r 3132b7dfad82 -r 0fad2e45e196 RA8875.h
--- a/RA8875.h	Sat Sep 21 17:30:00 2019 +0000
+++ b/RA8875.h	Fri Oct 11 20:53:08 2019 +0000
@@ -1805,6 +1805,12 @@
     RetCode_t SetTextFont(font_t font = ISO8859_1);
 
 
+    /// Gets the display orientation
+    /// 
+    /// @returns the basic display orientationas an @ref orientation_t value.
+    ///
+    orientation_t GetOrientation();
+
     /// Sets the display orientation.
     ///
     /// @note This command does not let you "merge" text onto an existing
@@ -1815,6 +1821,10 @@
     ///
     /// @note This command only operates on the RA8875 internal fonts.
     ///
+    /// @note more sophisticated control of drawings with rotated text may
+    ///       be achieved by direct control of the registers. See the RA8875
+    ///       datasheet.
+    ///
     /// @code
     ///     lcd.cls();
     ///     lcd.SetOrientation(RA8875::normal);