aboutsummaryrefslogtreecommitdiff
path: root/src/core/Print.h
diff options
context:
space:
mode:
authorAtsushi Saitoh <lynxeyed@xj9.so-net.ne.jp>2012-03-26 01:52:22 +0900
committerAtsushi Saitoh <lynxeyed@xj9.so-net.ne.jp>2012-03-26 01:52:22 +0900
commit5fb12bfe7be80bda23edbb51057332cda61b7657 (patch)
treec292645b518508e74d992a14ad6fd5bf8828f3d6 /src/core/Print.h
parent70026dd0fafb340dc6b9522324c880c9fc427b62 (diff)
fixed delayMicroseconds error
Diffstat (limited to 'src/core/Print.h')
-rwxr-xr-x[-rw-r--r--]src/core/Print.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/Print.h b/src/core/Print.h
index 3c83abe..91a7482 100644..100755
--- a/src/core/Print.h
+++ b/src/core/Print.h
@@ -32,9 +32,12 @@ public:
void write(const char *s,int length);
void write(const char *s) { return write((const char *)s, strlen(s)); }
- virtual void println(void);
+ void print(const char c);
void print(const char *s);
void print(int val, RADIX_FORMAT format);
+
+ virtual void println(void);
+ void println(const char c);
void println(const char *s);
void println(int val, RADIX_FORMAT format);
};