You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
313 B
15 lines
313 B
/* |
|
* Copyright (c) 2020 The ZMK Contributors |
|
* |
|
* SPDX-License-Identifier: MIT |
|
*/ |
|
|
|
#pragma once |
|
|
|
#include <zmk/endpoints_types.h> |
|
|
|
int zmk_endpoints_select(enum zmk_endpoint endpoint); |
|
int zmk_endpoints_toggle(); |
|
enum zmk_endpoint zmk_endpoints_selected(); |
|
|
|
int zmk_endpoints_send_report(uint16_t usage_page);
|
|
|