dect
/
libdect
Archived
13
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
libdect/include/dect/keypad.h

16 lines
487 B
C

#ifndef _LIBDECT_DECT_KEYPAD
#define _LIBDECT_DECT_KEYPAD
extern struct dect_keypad_buffer *
dect_keypad_buffer_init(const struct dect_handle *dh, uint8_t timeout,
void (*complete)(struct dect_handle *, void *data,
struct dect_ie_keypad *keypad),
void *priv);
extern void dect_keypad_append(struct dect_handle *dh,
struct dect_keypad_buffer *buf,
const struct dect_ie_keypad *keypad,
bool sending_complete);
#endif /* _LIBDECT_DECT_KEYPAD */