4 errors

Dependencies:   KS0108_PCF8574 mbed

Committer:
GuiTwo
Date:
Tue Sep 11 10:21:10 2012 +0000
Revision:
3:ec80bb6ff5da
Parent:
0:936f1c020120
4 errors on vector .cc

Who changed what in which revision?

UserRevisionLine numberNew contents of line
GuiTwo 0:936f1c020120 1 #ifndef _MENBEDBUTTONHANDLERTIMESPEC_H_
GuiTwo 0:936f1c020120 2 #define _MENBEDBUTTONHANDLERTIMESPEC_H_
GuiTwo 0:936f1c020120 3
GuiTwo 0:936f1c020120 4 #include "mbed.h"
GuiTwo 0:936f1c020120 5
GuiTwo 0:936f1c020120 6 class MenbedButtonHandlerTimespec {
GuiTwo 0:936f1c020120 7 public:
GuiTwo 0:936f1c020120 8 uint32_t scanPeriod_us;
GuiTwo 0:936f1c020120 9 uint32_t debounceDelay_us;
GuiTwo 0:936f1c020120 10 uint32_t longReleaseDelay_us;
GuiTwo 0:936f1c020120 11 uint32_t typematicPeriod_us;
GuiTwo 0:936f1c020120 12 uint32_t typematicX10Delay_us;
GuiTwo 0:936f1c020120 13 uint32_t typematicX10Period_us;
GuiTwo 0:936f1c020120 14
GuiTwo 0:936f1c020120 15 MenbedButtonHandlerTimespec ();
GuiTwo 0:936f1c020120 16 MenbedButtonHandlerTimespec (uint32_t scanPeriod_us,
GuiTwo 0:936f1c020120 17 uint32_t debounceDelay_us,
GuiTwo 0:936f1c020120 18 uint32_t longReleaseDelay_us, uint32_t typematicPeriod_us,
GuiTwo 0:936f1c020120 19 uint32_t typematicX10Delay_us, uint32_t typematicX10Period_us);
GuiTwo 0:936f1c020120 20
GuiTwo 0:936f1c020120 21 bool dummy() {return false;}
GuiTwo 0:936f1c020120 22 };
GuiTwo 0:936f1c020120 23
GuiTwo 0:936f1c020120 24 #endif /* _MENBEDBUTTONHANDLERTIMESPEC_H_ */