mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-23 08:15:30 +03:00
Brackets safety for some BIT defines
This commit is contained in:
parent
196baa4e87
commit
59e487f2e9
1 changed files with 3 additions and 3 deletions
|
@ -20,9 +20,9 @@
|
|||
#define ICM20608G_WHO_AM_I_CONST (0xAF)
|
||||
|
||||
#define MPU6500_BIT_RESET (0x80)
|
||||
#define MPU6500_BIT_INT_ANYRD_2CLEAR 1 << 4
|
||||
#define MPU6500_BIT_BYPASS_EN 1 << 0
|
||||
#define MPU6500_BIT_I2C_IF_DIS 1 << 4
|
||||
#define MPU6500_BIT_INT_ANYRD_2CLEAR (1 << 4)
|
||||
#define MPU6500_BIT_BYPASS_EN (1 << 0)
|
||||
#define MPU6500_BIT_I2C_IF_DIS (1 << 4)
|
||||
#define MPU6500_BIT_RAW_RDY_EN (0x01)
|
||||
|
||||
#pragma once
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue