diff options
Diffstat (limited to 'app/include/zmk/events/ble_active_profile_changed.h')
-rw-r--r-- | app/include/zmk/events/ble_active_profile_changed.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/app/include/zmk/events/ble_active_profile_changed.h b/app/include/zmk/events/ble_active_profile_changed.h new file mode 100644 index 0000000..fa16126 --- /dev/null +++ b/app/include/zmk/events/ble_active_profile_changed.h @@ -0,0 +1,21 @@ +/* + * Copyright (c) 2020 The ZMK Contributors + * + * SPDX-License-Identifier: MIT + */ + +#pragma once + +#include <zephyr.h> +#include <zmk/event_manager.h> +#include <device.h> + +#include <zmk/ble/profile.h> + +struct ble_active_profile_changed { + struct zmk_event_header header; + uint8_t index; + struct zmk_ble_profile *profile; +}; + +ZMK_EVENT_DECLARE(ble_active_profile_changed); |