Browse Source

fix(hog): use OR instead of AND for bitmap

xmkb
Xudong Zheng 3 years ago committed by Pete Johanson
parent
commit
212a05feb3
  1. 2
      app/src/hog.c

2
app/src/hog.c

@ -37,7 +37,7 @@ struct hids_report { @@ -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 {

Loading…
Cancel
Save