mirror of https://github.com/ArduPilot/ardupilot
ArduCopter: fixed HIL build caused by optical flow semaphore changes
This commit is contained in:
parent
61dd405910
commit
ad431d2f25
|
@ -307,9 +307,9 @@ AP_Compass_HIL compass; // never used
|
|||
AP_Baro_BMP085_HIL barometer;
|
||||
#ifdef OPTFLOW_ENABLED
|
||||
#if CONFIG_APM_HARDWARE == APM_HARDWARE_APM2
|
||||
AP_OpticalFlow_ADNS3080 optflow(&spi3_semaphore,OPTFLOW_CS_PIN);
|
||||
AP_OpticalFlow_ADNS3080 optflow(OPTFLOW_CS_PIN);
|
||||
#else
|
||||
AP_OpticalFlow_ADNS3080 optflow(NULL,OPTFLOW_CS_PIN);
|
||||
AP_OpticalFlow_ADNS3080 optflow(OPTFLOW_CS_PIN);
|
||||
#endif
|
||||
#endif
|
||||
#ifdef DESKTOP_BUILD
|
||||
|
|
Loading…
Reference in New Issue