KSM edits to RA8875

Dependents:   Liz_Test_Code

Revision:
103:7e0464ca6c5c
Parent:
101:e0aad446094a
Child:
105:4f116006ba1f
--- a/RA8875.cpp	Sat Jan 23 16:58:54 2016 +0000
+++ b/RA8875.cpp	Sun Feb 07 23:18:01 2016 +0000
@@ -628,6 +628,10 @@
         return 8;
 }
 
+RetCode_t RA8875::SetTextCursor(point_t p)
+{
+    return SetTextCursor(p.x, p.y);
+}
 
 RetCode_t RA8875::SetTextCursor(loc_t x, loc_t y)
 {
@@ -639,6 +643,14 @@
     return noerror;
 }
 
+point_t RA8875::GetTextCursor(void)
+{
+    point_t p;
+    
+    p.x = GetTextCursor_X();
+    p.y = GetTextCursor_Y();
+    return p;
+}
 
 loc_t RA8875::GetTextCursor_Y(void)
 {