Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: KS0108_PCF8574 mbed
menbed/include/menbedButtonHandlerTimespec.h
- Committer:
- GuiTwo
- Date:
- 2012-09-11
- Revision:
- 3:ec80bb6ff5da
- Parent:
- 0:936f1c020120
File content as of revision 3:ec80bb6ff5da:
#ifndef _MENBEDBUTTONHANDLERTIMESPEC_H_
#define _MENBEDBUTTONHANDLERTIMESPEC_H_
#include "mbed.h"
class MenbedButtonHandlerTimespec {
public:
uint32_t scanPeriod_us;
uint32_t debounceDelay_us;
uint32_t longReleaseDelay_us;
uint32_t typematicPeriod_us;
uint32_t typematicX10Delay_us;
uint32_t typematicX10Period_us;
MenbedButtonHandlerTimespec ();
MenbedButtonHandlerTimespec (uint32_t scanPeriod_us,
uint32_t debounceDelay_us,
uint32_t longReleaseDelay_us, uint32_t typematicPeriod_us,
uint32_t typematicX10Delay_us, uint32_t typematicX10Period_us);
bool dummy() {return false;}
};
#endif /* _MENBEDBUTTONHANDLERTIMESPEC_H_ */