Browse Source

AP_GPS: fixed uBlox Debug() macro

mission-4.1.18
Andrew Tridgell 12 years ago
parent
commit
3f6eb87f23
  1. 2
      libraries/AP_GPS/AP_GPS_UBLOX.cpp

2
libraries/AP_GPS/AP_GPS_UBLOX.cpp

@ -17,7 +17,7 @@ @@ -17,7 +17,7 @@
extern const AP_HAL::HAL& hal;
#if UBLOX_DEBUGGING
# define Debug(fmt, args ...) do {hal.console->printf("%s:%d: " fmt "\n", __FUNCTION__, __LINE__, ## args); delay(0); } while(0)
# define Debug(fmt, args ...) do {hal.console->printf("%s:%d: " fmt "\n", __FUNCTION__, __LINE__, ## args); hal.scheduler->delay(1); } while(0)
#else
# define Debug(fmt, args ...)
#endif

Loading…
Cancel
Save