2020-08-29 04:15:16 +10:00
|
|
|
/*
|
2020-10-13 04:03:10 +11:00
|
|
|
* Copyright (c) 2020 The ZMK Contributors
|
2020-08-29 04:15:16 +10:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*/
|
|
|
|
|
2020-09-14 12:53:24 +10:00
|
|
|
#define BT_CLR_CMD 0
|
|
|
|
#define BT_NXT_CMD 1
|
|
|
|
#define BT_PRV_CMD 2
|
|
|
|
#define BT_SEL_CMD 3
|
2020-09-09 13:26:00 +10:00
|
|
|
// #define BT_FULL_RESET_CMD 4
|
2020-08-29 04:15:16 +10:00
|
|
|
|
2020-09-02 13:22:30 +10:00
|
|
|
/*
|
|
|
|
Note: Some future commands will include additional parameters, so we
|
|
|
|
defines these aliases up front.
|
|
|
|
*/
|
|
|
|
|
2020-09-14 12:53:24 +10:00
|
|
|
#define BT_CLR BT_CLR_CMD 0
|
|
|
|
#define BT_NXT BT_NXT_CMD 0
|
|
|
|
#define BT_PRV BT_PRV_CMD 0
|
2020-10-02 16:09:38 +10:00
|
|
|
#define BT_SEL BT_SEL_CMD
|