3fe2acc2d1
* 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.
19 lines
No EOL
328 B
C
19 lines
No EOL
328 B
C
/*
|
|
* Copyright (c) 2020 The ZMK Contributors
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <zephyr.h>
|
|
#include <usb/usb_device.h>
|
|
|
|
#include <zmk/event_manager.h>
|
|
#include <zmk/usb.h>
|
|
|
|
struct zmk_usb_conn_state_changed {
|
|
enum zmk_usb_conn_state conn_state;
|
|
};
|
|
|
|
ZMK_EVENT_DECLARE(zmk_usb_conn_state_changed); |