Browse Source

AP_Airspeed: switched to recursive semaphore

this is needed by the SDP3X driver. It is the simplest fix for the
issue
zr-v5.1
Andrew Tridgell 5 years ago
parent
commit
dafd030904
  1. 2
      libraries/AP_Airspeed/AP_Airspeed_Backend.h

2
libraries/AP_Airspeed/AP_Airspeed_Backend.h

@ -46,7 +46,7 @@ protected:
} }
// semaphore for access to shared frontend data // semaphore for access to shared frontend data
HAL_Semaphore sem; HAL_Semaphore_Recursive sem;
float get_airspeed_ratio(void) const { float get_airspeed_ratio(void) const {
return frontend.get_airspeed_ratio(instance); return frontend.get_airspeed_ratio(instance);

Loading…
Cancel
Save