AP_HAL_Linux: Add support for SPIDevice_MS5611

This commit is contained in:
Víctor Mayoral Vilches 2014-05-05 18:16:25 +02:00 committed by Andrew Tridgell
parent 1c07985518
commit 3354fa9fc8

View File

@ -128,6 +128,8 @@ AP_HAL::SPIDeviceDriver* LinuxSPIDeviceManager::device(enum AP_HAL::SPIDevice de
return &_device_cs1;
case AP_HAL::SPIDevice_MPU9250:
return &_device_cs1;
case AP_HAL::SPIDevice_MS5611:
return &_device_cs1;
}
return NULL;
}