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

Revision:
182:8832d03a2a29
Parent:
167:8aa3fb2a5a31
--- a/TextDisplay.cpp	Fri Aug 02 02:12:26 2019 +0000
+++ b/TextDisplay.cpp	Sat Aug 03 00:26:33 2019 +0000
@@ -22,6 +22,8 @@
 {
     _row = 0;
     _column = 0;
+    _foreground = 0;
+    _background = 0;
     if (name == NULL) {
         _path = NULL;
     } else {
@@ -31,10 +33,10 @@
     }
 }
 
-//TextDisplay::~TextDisplay()
-//{
-//    delete [] _path;
-//}
+TextDisplay::~TextDisplay()
+{
+    delete [] _path;
+}
 
 int TextDisplay::_putc(int value)
 {