uncrustify libraries/AP_GPS/GPS.cpp

This commit is contained in:
uncrustify 2012-08-16 23:19:44 -07:00 committed by Pat Hickey
parent c5451b0e9b
commit cdaf2f923d
1 changed files with 29 additions and 29 deletions

View File

@ -5,10 +5,10 @@
#define GPS_DEBUGGING 0
#if GPS_DEBUGGING
#include <FastSerial.h>
# define Debug(fmt, args...) do {Serial.printf("%s:%d: " fmt "\n", __FUNCTION__, __LINE__ , ##args); delay(0); } while(0)
#include <FastSerial.h>
# define Debug(fmt, args ...) do {Serial.printf("%s:%d: " fmt "\n", __FUNCTION__, __LINE__, ## args); delay(0); } while(0)
#else
# define Debug(fmt, args...)
# define Debug(fmt, args ...)
#endif
#include <AP_Common.h>