4 errors
Dependencies: KS0108_PCF8574 mbed
menbed/menbedButtonHandlerTimespec.cpp@3:ec80bb6ff5da, 2012-09-11 (annotated)
- 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?
User | Revision | Line number | New contents of line |
---|---|---|---|
GuiTwo | 0:936f1c020120 | 1 | #include "mbed.h" |
GuiTwo | 0:936f1c020120 | 2 | #include "include/menbedButtonHandlerTimespec.h" |
GuiTwo | 0:936f1c020120 | 3 | |
GuiTwo | 0:936f1c020120 | 4 | MenbedButtonHandlerTimespec::MenbedButtonHandlerTimespec () : |
GuiTwo | 0:936f1c020120 | 5 | scanPeriod_us(10000), debounceDelay_us(45000), |
GuiTwo | 0:936f1c020120 | 6 | longReleaseDelay_us(2500000), typematicPeriod_us(333000), |
GuiTwo | 0:936f1c020120 | 7 | typematicX10Delay_us(2997000), typematicX10Period_us(33000) |
GuiTwo | 0:936f1c020120 | 8 | {} |
GuiTwo | 0:936f1c020120 | 9 | |
GuiTwo | 0:936f1c020120 | 10 | MenbedButtonHandlerTimespec::MenbedButtonHandlerTimespec ( |
GuiTwo | 0:936f1c020120 | 11 | uint32_t scanPeriod_us, |
GuiTwo | 0:936f1c020120 | 12 | uint32_t debounceDelay_us, |
GuiTwo | 0:936f1c020120 | 13 | uint32_t longReleaseDelay_us, uint32_t typematicPeriod_us, |
GuiTwo | 0:936f1c020120 | 14 | uint32_t typematicX10Delay_us, uint32_t typematicX10Period_us) : |
GuiTwo | 0:936f1c020120 | 15 | scanPeriod_us(scanPeriod_us), debounceDelay_us(debounceDelay_us), |
GuiTwo | 0:936f1c020120 | 16 | longReleaseDelay_us(longReleaseDelay_us), |
GuiTwo | 0:936f1c020120 | 17 | typematicPeriod_us(typematicPeriod_us), |
GuiTwo | 0:936f1c020120 | 18 | typematicX10Delay_us(typematicX10Delay_us), |
GuiTwo | 0:936f1c020120 | 19 | typematicX10Period_us(typematicX10Period_us) |
GuiTwo | 0:936f1c020120 | 20 | {} |