You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the timer callbacks,register a timer callback function's formal parameter: AP_HAL_MEMBERPROC(&AP_Baro_MS5611::_update)
need to be change into: FUNCTOR_BIND_MEMBER(&AP_Baro_MS5611::_update, void) or FUNCTOR_BIND(<instance>, &AP_Baro_MS5611::_update, void) for specific instance.
The text was updated successfully, but these errors were encountered:
In the timer callbacks,register a timer callback function's formal parameter:
AP_HAL_MEMBERPROC(&AP_Baro_MS5611::_update)
need to be change into:
FUNCTOR_BIND_MEMBER(&AP_Baro_MS5611::_update, void)
orFUNCTOR_BIND(<instance>, &AP_Baro_MS5611::_update, void)
for specific instance.The text was updated successfully, but these errors were encountered: