AP_Radio: correct for recent semaphore bool/void changes

This commit is contained in:
Peter Barker 2020-02-27 20:03:47 +11:00 committed by Randy Mackay
parent a32e54ea17
commit 12f7337030

View File

@ -373,7 +373,8 @@ public:
Radio_Beken(AP_HAL::OwnPtr<AP_HAL::SPIDevice> _dev);
bool lock_bus(void)
{
return dev->get_semaphore()->take_blocking();
dev->get_semaphore()->take_blocking();
return true;
}
void unlock_bus(void)
{