Allow manually setting the preferred transport to `ZMK_TRANSPORT_NONE` with the `&out` behavior to prevent the keyboard from sending any output.
10 lines
No EOL
158 B
C
10 lines
No EOL
158 B
C
/*
|
|
* Copyright (c) 2020 The ZMK Contributors
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#define OUT_TOG 0
|
|
#define OUT_USB 1
|
|
#define OUT_BLE 2
|
|
#define OUT_NONE 3 |