feat(endpoints): rename behavior to outputs

"Outputs" is probably easier for most people to understand than "endpoints".
This commit is contained in:
Joel Spadin
2020-10-27 13:49:28 -05:00
parent 600bba25f0
commit 2fe1fbb526
11 changed files with 96 additions and 96 deletions

View File

@@ -1,13 +0,0 @@
/*
* Copyright (c) 2020 The ZMK Contributors
*
* SPDX-License-Identifier: MIT
*/
#define ENDPOINT_TOGGLE_CMD 0
#define ENDPOINT_USB_CMD 1
#define ENDPOINT_BLE_CMD 2
#define END_TOG ENDPOINT_TOGGLE_CMD
#define END_USB ENDPOINT_USB_CMD
#define END_BLE ENDPOINT_BLE_CMD

View File

@@ -0,0 +1,13 @@
/*
* Copyright (c) 2020 The ZMK Contributors
*
* SPDX-License-Identifier: MIT
*/
#define OUTPUT_TOGGLE_CMD 0
#define OUTPUT_USB_CMD 1
#define OUTPUT_BLE_CMD 2
#define OUT_TOG OUTPUT_TOGGLE_CMD
#define OUT_USB OUTPUT_USB_CMD
#define OUT_BLE OUTPUT_BLE_CMD