diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-09-14 09:46:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-14 09:46:35 -0400 |
commit | 9110335142813c60c4ae3572444d4f954c41ef14 (patch) | |
tree | d8f758f8d87e7e8f7bb7e2f39a8de2f0a3158e34 /app/include/zmk/split | |
parent | 2c38947d1dcde236c27aba0c29042e4b610ee5d8 (diff) | |
parent | 191a2d755ad4761bd04a30a113e05119ad7aa61e (diff) |
Merge pull request #183 from petejohanson/ops/clang-format-checks
Standardize code formatting using clang-format w/ LLVM style
Diffstat (limited to 'app/include/zmk/split')
-rw-r--r-- | app/include/zmk/split/bluetooth/uuid.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/app/include/zmk/split/bluetooth/uuid.h b/app/include/zmk/split/bluetooth/uuid.h index 59f2f71..a8dfbf6 100644 --- a/app/include/zmk/split/bluetooth/uuid.h +++ b/app/include/zmk/split/bluetooth/uuid.h @@ -3,10 +3,9 @@ #include <bluetooth/uuid.h> #ifndef BT_UUID_NUM_OF_DIGITALS -#define BT_UUID_NUM_OF_DIGITALS BT_UUID_DECLARE_16(0x2909) +#define BT_UUID_NUM_OF_DIGITALS BT_UUID_DECLARE_16(0x2909) #endif -#define ZMK_BT_SPLIT_UUID(num) BT_UUID_128_ENCODE(num, 0x0096, 0x7107, 0xc967, 0xc5cfb1c2482a) +#define ZMK_BT_SPLIT_UUID(num) BT_UUID_128_ENCODE(num, 0x0096, 0x7107, 0xc967, 0xc5cfb1c2482a) #define ZMK_SPLIT_BT_SERVICE_UUID ZMK_BT_SPLIT_UUID(0x00000000) #define ZMK_SPLIT_BT_CHAR_POSITION_STATE_UUID ZMK_BT_SPLIT_UUID(0x00000001) - |