diff options
author | Dave Hylands <dhylands@gmail.com> | 2014-02-03 21:11:48 -0800 |
---|---|---|
committer | Dave Hylands <dhylands@gmail.com> | 2014-02-03 23:26:05 -0800 |
commit | 1570a96cad0b886f21a07eb13c3377a0f79abc1e (patch) | |
tree | 420ffc243157eb5b3d06b7e00ca0f7215fbd071a /stm/lcd.c | |
parent | 00c0b8a989ae54f4466d15b78a2e8729baf441ef (diff) |
Initial support for Netduino
This also fixes up the IRQ for the PYBOARD4 USERSW
although I was unable to test that functionality.
Diffstat (limited to 'stm/lcd.c')
-rw-r--r-- | stm/lcd.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -4,6 +4,9 @@ #include "nlr.h" #include "misc.h" #include "mpconfig.h" + +#if MICROPY_HW_HAS_LCD + #include "qstr.h" #include "parse.h" #include "obj.h" @@ -378,3 +381,5 @@ void lcd_print_strn(const char *str, unsigned int len) { sys_tick_delay_ms(50); } } + +#endif // MICROPY_HW_HAS_LCD |