summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2018-12-03 09:25:51 +0100
committerDaniel Friesel <derf@finalrewind.org>2018-12-03 09:25:51 +0100
commitff2c23e32fc4fdf8427b712a056a9c05f44c76af (patch)
tree59705d57129bc379a7f476c6f23736aa8bdc6ddf /include
parent463eea4804253970199bd9b705768b8dde83deb7 (diff)
esp8266: add counter driver
Diffstat (limited to 'include')
-rw-r--r--include/arch/esp8266/driver/stdout.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/arch/esp8266/driver/stdout.h b/include/arch/esp8266/driver/stdout.h
index 95135ad..8d366d8 100644
--- a/include/arch/esp8266/driver/stdout.h
+++ b/include/arch/esp8266/driver/stdout.h
@@ -27,6 +27,8 @@ class StandardOutput {
StandardOutput & operator<<(long number);
StandardOutput & operator<<(unsigned long long number);
StandardOutput & operator<<(long long number);
+ StandardOutput & operator<<(float number);
+ StandardOutput & operator<<(double number);
StandardOutput & operator<<(void *pointer);
StandardOutput & operator<<(const char *text);
StandardOutput & operator<<(StandardOutput & (*fun) (StandardOutput &));