From bd336867a64d9a22dbbee3fd4fae28c0b894260c Mon Sep 17 00:00:00 2001 From: Simen Svale Skogsrud Date: Sun, 5 Jun 2011 20:58:21 +0200 Subject: [PATCH] changed default fp decimal places to 3 --- print.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/print.c b/print.c index 23e8ae3..05524a3 100644 --- a/print.c +++ b/print.c @@ -26,7 +26,9 @@ #include #include "serial.h" -#define DECIMAL_PLACES 4 +#ifndef DECIMAL_PLACES +#define DECIMAL_PLACES 3 +#endif void printString(const char *s) {