mirror of https://github.com/ArduPilot/ardupilot
SITL: stop cygwin from trying to create FIFOs
some users find the error message annoying
This commit is contained in:
parent
4053b4a57f
commit
ab723a6fd4
|
@ -32,7 +32,7 @@ param set SERIAL5_PROTOCOL 5
|
|||
#if HAL_SIM_GPS_ENABLED
|
||||
|
||||
#ifndef HAL_SIM_GPS_EXTERNAL_FIFO_ENABLED
|
||||
#define HAL_SIM_GPS_EXTERNAL_FIFO_ENABLED (CONFIG_HAL_BOARD == HAL_BOARD_SITL)
|
||||
#define HAL_SIM_GPS_EXTERNAL_FIFO_ENABLED (CONFIG_HAL_BOARD == HAL_BOARD_SITL) && !defined(CYGWIN_BUILD)
|
||||
#endif
|
||||
|
||||
#ifndef AP_SIM_GPS_FILE_ENABLED
|
||||
|
|
Loading…
Reference in New Issue