diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-12-03 09:25:51 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-12-03 09:25:51 +0100 |
commit | ff2c23e32fc4fdf8427b712a056a9c05f44c76af (patch) | |
tree | 59705d57129bc379a7f476c6f23736aa8bdc6ddf /include/arch/esp8266 | |
parent | 463eea4804253970199bd9b705768b8dde83deb7 (diff) |
esp8266: add counter driver
Diffstat (limited to 'include/arch/esp8266')
-rw-r--r-- | include/arch/esp8266/driver/stdout.h | 2 |
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 &)); |