mirror of https://github.com/ArduPilot/ardupilot
uncrustify libraries/AP_IMU/examples/IMU_Oilpan_test/IMU_Oilpan_test.pde
This commit is contained in:
parent
8e00b6d0a9
commit
849c492a5d
|
@ -22,41 +22,41 @@
|
||||||
FastSerialPort(Serial, 0);
|
FastSerialPort(Serial, 0);
|
||||||
|
|
||||||
Arduino_Mega_ISR_Registry isr_registry;
|
Arduino_Mega_ISR_Registry isr_registry;
|
||||||
AP_TimerProcess adc_scheduler;
|
AP_TimerProcess adc_scheduler;
|
||||||
|
|
||||||
AP_ADC_ADS7844 adc;
|
AP_ADC_ADS7844 adc;
|
||||||
AP_InertialSensor_Oilpan oilpan_ins(&adc);
|
AP_InertialSensor_Oilpan oilpan_ins(&adc);
|
||||||
AP_IMU_INS imu(&oilpan_ins,0);
|
AP_IMU_INS imu(&oilpan_ins,0);
|
||||||
|
|
||||||
static void flash_leds(bool on)
|
static void flash_leds(bool on)
|
||||||
{
|
{
|
||||||
digitalWrite(A_LED_PIN, on?LED_OFF:LED_ON);
|
digitalWrite(A_LED_PIN, on ? LED_OFF : LED_ON);
|
||||||
digitalWrite(C_LED_PIN, on?LED_ON:LED_OFF);
|
digitalWrite(C_LED_PIN, on ? LED_ON : LED_OFF);
|
||||||
}
|
}
|
||||||
|
|
||||||
void setup(void)
|
void setup(void)
|
||||||
{
|
{
|
||||||
Serial.begin(115200);
|
Serial.begin(115200);
|
||||||
Serial.println("Doing IMU startup...");
|
Serial.println("Doing IMU startup...");
|
||||||
|
|
||||||
isr_registry.init();
|
isr_registry.init();
|
||||||
adc_scheduler.init(&isr_registry);
|
adc_scheduler.init(&isr_registry);
|
||||||
|
|
||||||
/* Should also call ins.init and adc.init */
|
/* Should also call ins.init and adc.init */
|
||||||
imu.init(IMU::COLD_START, delay, flash_leds, &adc_scheduler);
|
imu.init(IMU::COLD_START, delay, flash_leds, &adc_scheduler);
|
||||||
imu.init_accel(delay, flash_leds);
|
imu.init_accel(delay, flash_leds);
|
||||||
}
|
}
|
||||||
|
|
||||||
void loop(void)
|
void loop(void)
|
||||||
{
|
{
|
||||||
Vector3f accel;
|
Vector3f accel;
|
||||||
Vector3f gyro;
|
Vector3f gyro;
|
||||||
|
|
||||||
delay(1000);
|
delay(1000);
|
||||||
imu.update();
|
imu.update();
|
||||||
accel = imu.get_accel();
|
accel = imu.get_accel();
|
||||||
gyro = imu.get_gyro();
|
gyro = imu.get_gyro();
|
||||||
|
|
||||||
Serial.printf("AX: %4.4f AY: %4.4f AZ: %4.4f GX: %4.4f GY: %4.4f GZ: %4.4f\n",
|
Serial.printf("AX: %4.4f AY: %4.4f AZ: %4.4f GX: %4.4f GY: %4.4f GZ: %4.4f\n",
|
||||||
accel.x, accel.y, accel.z, gyro.x, gyro.y, gyro.z);
|
accel.x, accel.y, accel.z, gyro.x, gyro.y, gyro.z);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue