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; version 2 of the License.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
18 #ifndef _AO_DEBOUNCE_H_
19 #define _AO_DEBOUNCE_H_
22 struct ao_debounce *next;
24 /* time that pin value must be stable before accepting */
27 /* last value reported to app; don't report it twice */
30 /* current value received from pins */
33 /* current count of intervals pin value has been stable */
36 /* This pin is running */
39 /* Get the current pin value */
40 uint8_t (*_get)(struct ao_debounce *debounce);
42 /* The stable value has changed */
43 void (*_set)(struct ao_debounce *debounce, uint8_t value);
47 ao_debounce_config(struct ao_debounce *debounce,
48 uint8_t (*_get)(struct ao_debounce *debounce),
49 void (*_set)(struct ao_debounce *debounce, uint8_t value),
53 debounce->hold = hold;
54 debounce->value = 0xff;
55 debounce->current = 0xff;
57 debounce->running = 0;
58 debounce->_get = _get;
59 debounce->_set = _set;
63 _ao_debounce_start(struct ao_debounce *debounce);
66 _ao_debounce_stop(struct ao_debounce *debounce);
69 ao_debounce_init(void);
72 ao_debounce_dump(void);
74 #endif /* _AO_DEBOUNCE_H_ */