/* * Copyright (c) 2020 The ZMK Contributors * * SPDX-License-Identifier: MIT */ #pragma once #include #include enum zmk_endpoint { ZMK_ENDPOINT_USB, ZMK_ENDPOINT_BLE, }; int zmk_endpoints_select(enum zmk_endpoint endpoint); int zmk_endpoints_toggle(); int zmk_endpoints_send_report(u8_t usage_report);