2e464a53c2
The switching between different AP_HAL was happening by giving different definitions of AP_HAL_BOARD_DRIVER, and the programs would use it to instantiate. A program or library code would have to explicitly include (and depend) on the concrete implementation of the HAL, even when using it only via interface. The proposed change move this dependency to be link time. There is a AP_HAL::get_HAL() function that is used by the client code. Each implementation of HAL provides its own definition of this function, returning the appropriate concrete instance. Since this replaces the job of AP_HAL_BOARD_DRIVER, the definition was removed. The static variables for PX4 and VRBRAIN were named differently to avoid shadowing the extern symbol 'hal'.
193 lines
5.1 KiB
C++
193 lines
5.1 KiB
C++
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
//
|
|
// Simple test for the AP_InertialSensor driver.
|
|
//
|
|
|
|
#include <stdarg.h>
|
|
#include <AP_Common/AP_Common.h>
|
|
#include <AP_Progmem/AP_Progmem.h>
|
|
#include <AP_HAL/AP_HAL.h>
|
|
#include <AP_HAL_AVR/AP_HAL_AVR.h>
|
|
#include <AP_HAL_SITL/AP_HAL_SITL.h>
|
|
#include <AP_HAL_Linux/AP_HAL_Linux.h>
|
|
#include <AP_HAL_FLYMAPLE/AP_HAL_FLYMAPLE.h>
|
|
#include <AP_HAL_PX4/AP_HAL_PX4.h>
|
|
#include <AP_HAL_Empty/AP_HAL_Empty.h>
|
|
#include <AP_Math/AP_Math.h>
|
|
#include <AP_Param/AP_Param.h>
|
|
#include <StorageManager/StorageManager.h>
|
|
#include <AP_ADC/AP_ADC.h>
|
|
#include <AP_InertialSensor/AP_InertialSensor.h>
|
|
#include <AP_Notify/AP_Notify.h>
|
|
#include <AP_GPS/AP_GPS.h>
|
|
#include <AP_Baro/AP_Baro.h>
|
|
#include <Filter/Filter.h>
|
|
#include <DataFlash/DataFlash.h>
|
|
#include <GCS_MAVLink/GCS_MAVLink.h>
|
|
#include <AP_Mission/AP_Mission.h>
|
|
#include <StorageManager/StorageManager.h>
|
|
#include <AP_Terrain/AP_Terrain.h>
|
|
#include <AP_AHRS/AP_AHRS.h>
|
|
#include <AP_Airspeed/AP_Airspeed.h>
|
|
#include <AP_Vehicle/AP_Vehicle.h>
|
|
#include <AP_ADC_AnalogSource/AP_ADC_AnalogSource.h>
|
|
#include <AP_Compass/AP_Compass.h>
|
|
#include <AP_Declination/AP_Declination.h>
|
|
#include <AP_NavEKF/AP_NavEKF.h>
|
|
#include <AP_HAL_Linux/AP_HAL_Linux.h>
|
|
#include <AP_Rally/AP_Rally.h>
|
|
#include <AP_Scheduler/AP_Scheduler.h>
|
|
#include <AP_BattMonitor/AP_BattMonitor.h>
|
|
#include <AP_RangeFinder/AP_RangeFinder.h>
|
|
|
|
const AP_HAL::HAL& hal = AP_HAL::get_HAL();
|
|
|
|
AP_InertialSensor ins;
|
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_APM1
|
|
AP_ADC_ADS7844 apm1_adc;
|
|
#endif
|
|
|
|
static void display_offsets_and_scaling();
|
|
static void run_test();
|
|
static void run_calibration();
|
|
|
|
void setup(void)
|
|
{
|
|
hal.console->println("AP_InertialSensor startup...");
|
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_APM2
|
|
// we need to stop the barometer from holding the SPI bus
|
|
hal.gpio->pinMode(40, HAL_GPIO_OUTPUT);
|
|
hal.gpio->write(40, 1);
|
|
#endif
|
|
|
|
ins.init(AP_InertialSensor::RATE_100HZ);
|
|
|
|
// display initial values
|
|
display_offsets_and_scaling();
|
|
hal.console->println("Complete. Reading:");
|
|
}
|
|
|
|
void loop(void)
|
|
{
|
|
int16_t user_input;
|
|
|
|
hal.console->println();
|
|
hal.console->println_P(PSTR(
|
|
"Menu:\r\n"
|
|
" c) calibrate accelerometers\r\n"
|
|
" d) display offsets and scaling\r\n"
|
|
" l) level (capture offsets from level)\r\n"
|
|
" t) test\r\n"
|
|
" r) reboot"));
|
|
|
|
// wait for user input
|
|
while( !hal.console->available() ) {
|
|
hal.scheduler->delay(20);
|
|
}
|
|
|
|
// read in user input
|
|
while( hal.console->available() ) {
|
|
user_input = hal.console->read();
|
|
|
|
if( user_input == 'c' || user_input == 'C' ) {
|
|
run_calibration();
|
|
display_offsets_and_scaling();
|
|
}
|
|
|
|
if( user_input == 'd' || user_input == 'D' ) {
|
|
display_offsets_and_scaling();
|
|
}
|
|
|
|
if( user_input == 't' || user_input == 'T' ) {
|
|
run_test();
|
|
}
|
|
|
|
if( user_input == 'r' || user_input == 'R' ) {
|
|
hal.scheduler->reboot(false);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void run_calibration()
|
|
{
|
|
float roll_trim, pitch_trim;
|
|
// clear off any other characters (like line feeds,etc)
|
|
while( hal.console->available() ) {
|
|
hal.console->read();
|
|
}
|
|
|
|
|
|
AP_InertialSensor_UserInteractStream interact(hal.console);
|
|
ins.calibrate_accel(&interact, roll_trim, pitch_trim);
|
|
}
|
|
|
|
static void display_offsets_and_scaling()
|
|
{
|
|
Vector3f accel_offsets = ins.get_accel_offsets();
|
|
Vector3f accel_scale = ins.get_accel_scale();
|
|
Vector3f gyro_offsets = ins.get_gyro_offsets();
|
|
|
|
// display results
|
|
hal.console->printf_P(
|
|
PSTR("\nAccel Offsets X:%10.8f \t Y:%10.8f \t Z:%10.8f\n"),
|
|
accel_offsets.x,
|
|
accel_offsets.y,
|
|
accel_offsets.z);
|
|
hal.console->printf_P(
|
|
PSTR("Accel Scale X:%10.8f \t Y:%10.8f \t Z:%10.8f\n"),
|
|
accel_scale.x,
|
|
accel_scale.y,
|
|
accel_scale.z);
|
|
hal.console->printf_P(
|
|
PSTR("Gyro Offsets X:%10.8f \t Y:%10.8f \t Z:%10.8f\n"),
|
|
gyro_offsets.x,
|
|
gyro_offsets.y,
|
|
gyro_offsets.z);
|
|
}
|
|
|
|
static void run_test()
|
|
{
|
|
Vector3f accel;
|
|
Vector3f gyro;
|
|
float length;
|
|
uint8_t counter = 0;
|
|
|
|
// flush any user input
|
|
while( hal.console->available() ) {
|
|
hal.console->read();
|
|
}
|
|
|
|
// clear out any existing samples from ins
|
|
ins.update();
|
|
|
|
// loop as long as user does not press a key
|
|
while( !hal.console->available() ) {
|
|
|
|
// wait until we have a sample
|
|
ins.wait_for_sample();
|
|
|
|
// read samples from ins
|
|
ins.update();
|
|
accel = ins.get_accel();
|
|
gyro = ins.get_gyro();
|
|
|
|
length = accel.length();
|
|
|
|
if (counter++ % 50 == 0) {
|
|
// display results
|
|
hal.console->printf_P(PSTR("Accel X:%4.2f \t Y:%4.2f \t Z:%4.2f \t len:%4.2f \t Gyro X:%4.2f \t Y:%4.2f \t Z:%4.2f\n"),
|
|
accel.x, accel.y, accel.z, length, gyro.x, gyro.y, gyro.z);
|
|
}
|
|
}
|
|
|
|
// clear user input
|
|
while( hal.console->available() ) {
|
|
hal.console->read();
|
|
}
|
|
}
|
|
|
|
AP_HAL_MAIN();
|