diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-27 15:54:44 -0800 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-27 15:54:44 -0800 |
commit | c674f02d5c1deca3ed75763fb6261da5edb9ecbd (patch) | |
tree | efb04acc4282e689737b9da5f3e2b8a2f59c13cf /stm/printf.c | |
parent | c7aa9fcae571a442a50c90409396788dd0b28c24 (diff) | |
parent | 8d3b0a9f74c39f5876b74a5829bddf0c0588276b (diff) | |
download | micropython-c674f02d5c1deca3ed75763fb6261da5edb9ecbd.tar.gz micropython-c674f02d5c1deca3ed75763fb6261da5edb9ecbd.zip |
Merge pull request #231 from iabdalkader/master
Fix implicit double conversion warning
Diffstat (limited to 'stm/printf.c')
-rw-r--r-- | stm/printf.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/stm/printf.c b/stm/printf.c index 82b168d1c4..2669a55344 100644 --- a/stm/printf.c +++ b/stm/printf.c @@ -6,6 +6,7 @@ #include "misc.h" #include "systick.h" #include "mpconfig.h" +#include "mpconfigport.h" #include "qstr.h" #include "obj.h" #include "lcd.h" @@ -247,7 +248,9 @@ void stdout_print_strn(void *data, const char *str, unsigned int len) { any = true; } if (!any) { +#if MICROPY_HW_HAS_LCD lcd_print_strn(str, len); +#endif } } |