Damien George | b68d98d | 2015-01-01 21:13:30 +0000 | [diff] [blame] | 1 | #include "py/obj.h" |
Dave Hylands | 4f1b7fe | 2014-06-15 22:33:14 -0700 | [diff] [blame] | 2 | #include "../stmhal/lcd.h" |
Dave Hylands | 9b7b947 | 2014-01-07 09:49:42 -0800 | [diff] [blame] | 3 | |
4 | void lcd_init(void) { | ||||
5 | } | ||||
6 | |||||
7 | void lcd_print_str(const char *str) { | ||||
8 | (void)str; | ||||
9 | } | ||||
10 | |||||
11 | void lcd_print_strn(const char *str, unsigned int len) { | ||||
12 | (void)str; | ||||
13 | (void)len; | ||||
14 | } |