Forked to make it possible to include this lib in a multi target setting

Fork of SLCD by Erik -

Files at this revision

API Documentation at this revision

Comitter:
larsgk
Date:
Sat Jan 14 00:07:49 2017 +0000
Parent:
10:ef2b3b7f1b01
Commit message:
Use KL46Z flag to use this lib in multi target scenario

Changed in this revision

SLCD.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/SLCD.cpp	Sun Mar 23 19:55:14 2014 +0000
+++ b/SLCD.cpp	Sat Jan 14 00:07:49 2017 +0000
@@ -1,6 +1,8 @@
 #include "SLCD.h"
 #include "LCDconfig.h"
 
+#if defined(TARGET_KL46Z)            
+
 
 const uint8_t WF_ORDERING_TABLE[ ] = {
     CHAR1a,   // LCD81 --- Pin:5  LCDnAddress=51
@@ -293,3 +295,5 @@
     LCD->GCR &= ~LCD_GCR_LCDSTP_MASK;
     LCD->GCR |= (!enable) << LCD_GCR_LCDSTP_SHIFT;
 }
+
+#endif
\ No newline at end of file