mirror of
https://github.com/zmkfirmware/zmk.git
synced 2026-03-20 04:55:20 -05:00
fix(hog): use OR instead of AND for bitmap
This commit is contained in:
committed by
Pete Johanson
parent
db4bbbf9eb
commit
212a05feb3
@@ -37,7 +37,7 @@ struct hids_report {
|
||||
static struct hids_info info = {
|
||||
.version = 0x0000,
|
||||
.code = 0x00,
|
||||
.flags = HIDS_NORMALLY_CONNECTABLE & HIDS_REMOTE_WAKE,
|
||||
.flags = HIDS_NORMALLY_CONNECTABLE | HIDS_REMOTE_WAKE,
|
||||
};
|
||||
|
||||
enum {
|
||||
|
||||
Reference in New Issue
Block a user