mirror of
https://github.com/zmkfirmware/zmk.git
synced 2026-04-04 12:25:17 -05:00
refactor(core): Extra event payloads to own types, refactor API.
* Make it easier to use *just* event payloads by defining the data, and then having event manager macros generate "wrapper structs" * Improve is_*/cast_* APIs to hide details of full event struct. * Create `zmk_event_t` typedef to pass to event handlers. * Bring event names inline w/ consistent `zmk_` prefix.
This commit is contained in:
@@ -12,9 +12,8 @@
|
||||
#include <zmk/event_manager.h>
|
||||
#include <zmk/usb.h>
|
||||
|
||||
struct usb_conn_state_changed {
|
||||
struct zmk_event_header header;
|
||||
struct zmk_usb_conn_state_changed {
|
||||
enum zmk_usb_conn_state conn_state;
|
||||
};
|
||||
|
||||
ZMK_EVENT_DECLARE(usb_conn_state_changed);
|
||||
ZMK_EVENT_DECLARE(zmk_usb_conn_state_changed);
|
||||
Reference in New Issue
Block a user