1
0
Fork 0
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:
blckmn 2016-08-13 16:48:07 +10:00
parent 196baa4e87
commit 59e487f2e9

View file

@ -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