summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-05-09 17:15:32 +0000
committerQMK Bot <hello@qmk.fm>2021-05-09 17:15:32 +0000
commitad1244e2cf0df975073eaac1343d74241bbf934b (patch)
treef173d3186ef555a5173a4ea8e2c0d9f72d934063 /drivers
parent62c3e3d11f6956b34966a320cb6897195a2428be (diff)
parent6c5e94061c05c94a2404d4edcca4882cdfca844e (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'drivers')
-rw-r--r--drivers/haptic/haptic.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/haptic/haptic.h b/drivers/haptic/haptic.h
index 9223ad1c81..ba8e0d20be 100644
--- a/drivers/haptic/haptic.h
+++ b/drivers/haptic/haptic.h
@@ -34,13 +34,13 @@
typedef union {
uint32_t raw;
struct {
- bool enable : 1;
- uint8_t feedback : 2;
- uint8_t mode : 7;
- bool buzz : 1;
- uint8_t dwell : 7;
- bool cont : 1;
- uint8_t amplitude : 8;
+ bool enable : 1;
+ uint8_t feedback : 2;
+ uint8_t mode : 7;
+ bool buzz : 1;
+ uint8_t dwell : 7;
+ bool cont : 1;
+ uint8_t amplitude : 8;
uint8_t reserved : 5;
};
} haptic_config_t;