From ff2c23e32fc4fdf8427b712a056a9c05f44c76af Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Mon, 3 Dec 2018 09:25:51 +0100 Subject: esp8266: add counter driver --- include/arch/esp8266/driver/stdout.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/arch/esp8266') 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 &)); -- cgit v1.2.3