diff options
author | Pete Johanson <[email protected]> | 2021-01-18 00:35:56 -0500 |
---|---|---|
committer | Pete Johanson <[email protected]> | 2021-01-20 07:06:11 -0500 |
commit | 3fe2acc2d191006fa6309191ee99b2e4e249ed08 (patch) | |
tree | 4994508fdc58daee4629c671e07e689b6332bd32 /app/src/endpoints.c | |
parent | 003db892adadb7b760f43411d7154fe60bf3556d (diff) | |
download | zmk-3fe2acc2d191006fa6309191ee99b2e4e249ed08.tar.gz zmk-3fe2acc2d191006fa6309191ee99b2e4e249ed08.zip |
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.
Diffstat (limited to 'app/src/endpoints.c')
-rw-r--r-- | app/src/endpoints.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/src/endpoints.c b/app/src/endpoints.c index feff7996d4..93dfb81768 100644 --- a/app/src/endpoints.c +++ b/app/src/endpoints.c @@ -245,17 +245,17 @@ static void update_current_endpoint() { } } -static int endpoint_listener(const struct zmk_event_header *eh) { +static int endpoint_listener(const zmk_event_t *eh) { update_current_endpoint(); return 0; } ZMK_LISTENER(endpoint_listener, endpoint_listener); #if IS_ENABLED(CONFIG_ZMK_USB) -ZMK_SUBSCRIPTION(endpoint_listener, usb_conn_state_changed); +ZMK_SUBSCRIPTION(endpoint_listener, zmk_usb_conn_state_changed); #endif #if IS_ENABLED(CONFIG_ZMK_BLE) -ZMK_SUBSCRIPTION(endpoint_listener, ble_active_profile_changed); +ZMK_SUBSCRIPTION(endpoint_listener, zmk_ble_active_profile_changed); #endif SYS_INIT(zmk_endpoints_init, APPLICATION, CONFIG_APPLICATION_INIT_PRIORITY); |