mirror of https://github.com/ArduPilot/ardupilot
AP_ADSB: use have_serial when detecting
avoid find_serial() as it changes port options
This commit is contained in:
parent
47590a55ff
commit
0da0f6dd37
|
@ -45,7 +45,7 @@
|
||||||
// detect if any port is configured as Sagetech
|
// detect if any port is configured as Sagetech
|
||||||
bool AP_ADSB_Sagetech::detect()
|
bool AP_ADSB_Sagetech::detect()
|
||||||
{
|
{
|
||||||
return (AP::serialmanager().find_serial(AP_SerialManager::SerialProtocol_ADSB, 0) != nullptr);
|
return AP::serialmanager().have_serial(AP_SerialManager::SerialProtocol_ADSB, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Init, called once after class is constructed
|
// Init, called once after class is constructed
|
||||||
|
|
|
@ -45,7 +45,7 @@ extern const AP_HAL::HAL &hal;
|
||||||
// detect if any port is configured as uAvionix_UCP
|
// detect if any port is configured as uAvionix_UCP
|
||||||
bool AP_ADSB_uAvionix_UCP::detect()
|
bool AP_ADSB_uAvionix_UCP::detect()
|
||||||
{
|
{
|
||||||
return (AP::serialmanager().find_serial(AP_SerialManager::SerialProtocol_ADSB, 0) != nullptr);
|
return AP::serialmanager().have_serial(AP_SerialManager::SerialProtocol_ADSB, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue