Bugfix on Test Report 12.01.2012

This commit is contained in:
Domenico La Fauci 2012-01-30 00:07:39 +01:00
parent 97177fe51a
commit b61427ddc8
1 changed files with 5 additions and 0 deletions

View File

@ -39,6 +39,11 @@
Serial.print(x,16);Serial.print(",");Serial.println(y,16); \
}while (0);
#define INFO(format, args...) do { \
char buf[250]; \
sprintf(buf, format, args); \
Serial.println(buf); \
} while(0);
#else
#define INFO1(x) do {} while(0);