A library with drivers for different peripherals on the LPC4088 QuickStart Board or related add-on boards.

Dependencies:   FATFileSystem

Dependents:   LPC4088test LPC4088test_ledonly LPC4088test_deleteall LPC4088_RAMtest ... more

Revision:
5:3290d7b766d5
Parent:
4:b32cf4ef45c5
Child:
12:15597e45eea0
--- a/AR1021.h	Fri Oct 18 12:48:58 2013 +0200
+++ b/AR1021.h	Fri Oct 18 10:57:50 2013 +0000
@@ -28,11 +28,11 @@
     AR1021(PinName mosi, PinName miso, PinName sck, PinName cs, PinName siq);
 
 
-    bool init(uint16_t width, uint16_t height);
-    bool read(touchCoordinate_t &coord);
-    bool calibrateStart();
-    bool getNextCalibratePoint(uint16_t* x, uint16_t* y);
-    bool waitForCalibratePoint(bool* morePoints, uint32_t timeout);
+    virtual bool init(uint16_t width, uint16_t height);
+    virtual bool read(touchCoordinate_t &coord);
+    virtual bool calibrateStart();
+    virtual bool getNextCalibratePoint(uint16_t* x, uint16_t* y);
+    virtual bool waitForCalibratePoint(bool* morePoints, uint32_t timeout);
 
 private: