1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- #ifndef KEYBOARD_H
- #define KEYBOARD_H
- #include <stdbool.h>
- #include <stdint.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- typedef struct {
- uint8_t col;
- uint8_t row;
- } keypos_t;
- typedef struct {
- keypos_t key;
- bool pressed;
- uint16_t time;
- } keyevent_t;
- #define KEYEQ(keya, keyb) ((keya).row == (keyb).row && (keya).col == (keyb).col)
- static inline bool IS_NOEVENT(keyevent_t event) { return event.time == 0 || (event.key.row == 255 && event.key.col == 255); }
- static inline bool IS_PRESSED(keyevent_t event) { return (!IS_NOEVENT(event) && event.pressed); }
- static inline bool IS_RELEASED(keyevent_t event) { return (!IS_NOEVENT(event) && !event.pressed); }
- #define TICK (keyevent_t){ \
- .key = (keypos_t){ .row = 255, .col = 255 }, \
- .pressed = false, \
- .time = (timer_read() | 1) \
- }
- void keyboard_setup(void);
- void keyboard_init(void);
- void keyboard_task(void);
- void keyboard_set_leds(uint8_t leds);
- #ifdef __cplusplus
- }
- #endif
- #endif
|