public static enum MPU6050.GyroClockSource extends java.lang.Enum<MPU6050.GyroClockSource>
CLK_SEL | Clock Source --------+-------------------------------------- 0 | Internal oscillator 1 | PLL with X Gyro reference 2 | PLL with Y Gyro reference 3 | PLL with Z Gyro reference 4 | PLL with external 32.768kHz reference 5 | PLL with external 19.2MHz reference 6 | Reserved 7 | Stops the clock and keeps the timing generator in reset
| Enum Constant and Description |
|---|
INTERNAL
Internal oscillator
|
PLL_EXT19M
PLL with external 19.2MHz reference
|
PLL_EXT32K
PLL with external 32.768kHz reference
|
PLL_XGYRO
PLL with X Gyro reference
|
PLL_YGYRO
PLL with Y Gyro reference
|
PLL_ZGYRO
PLL with Z Gyro reference
|
RESERVED
Reserved
|
RESET
Stops the clock and keeps the timing generator in reset
|
| Modifier and Type | Method and Description |
|---|---|
static MPU6050.GyroClockSource |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MPU6050.GyroClockSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MPU6050.GyroClockSource INTERNAL
public static final MPU6050.GyroClockSource PLL_XGYRO
public static final MPU6050.GyroClockSource PLL_YGYRO
public static final MPU6050.GyroClockSource PLL_ZGYRO
public static final MPU6050.GyroClockSource PLL_EXT32K
public static final MPU6050.GyroClockSource PLL_EXT19M
public static final MPU6050.GyroClockSource RESERVED
public static final MPU6050.GyroClockSource RESET
public static MPU6050.GyroClockSource[] values()
for (MPU6050.GyroClockSource c : MPU6050.GyroClockSource.values()) System.out.println(c);
public static MPU6050.GyroClockSource valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null