2 * Copyright © 2013 Keith Packard <keithp@keithp.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
19 #ifndef _AO_DEBOUNCE_H_
20 #define _AO_DEBOUNCE_H_
23 struct ao_debounce *next;
25 /* time that pin value must be stable before accepting */
28 /* last value reported to app; don't report it twice */
31 /* current value received from pins */
34 /* current count of intervals pin value has been stable */
37 /* This pin is running */
40 /* Get the current pin value */
41 uint8_t (*_get)(struct ao_debounce *debounce);
43 /* The stable value has changed */
44 void (*_set)(struct ao_debounce *debounce, uint8_t value);
48 ao_debounce_config(struct ao_debounce *debounce,
49 uint8_t (*_get)(struct ao_debounce *debounce),
50 void (*_set)(struct ao_debounce *debounce, uint8_t value),
54 debounce->hold = hold;
55 debounce->value = 0xff;
56 debounce->current = 0xff;
58 debounce->running = 0;
59 debounce->_get = _get;
60 debounce->_set = _set;
64 _ao_debounce_start(struct ao_debounce *debounce);
67 _ao_debounce_stop(struct ao_debounce *debounce);
70 ao_debounce_init(void);
73 ao_debounce_dump(void);
75 #endif /* _AO_DEBOUNCE_H_ */