blob: e79b7d5acb1fc6d4e0120e0f90031ca067d70039 [file] [log] [blame]
Damien Georgeb68d98d2015-01-01 21:13:30 +00001#include "py/obj.h"
Dave Hylands4f1b7fe2014-06-15 22:33:14 -07002#include "../stmhal/lcd.h"
Dave Hylands9b7b9472014-01-07 09:49:42 -08003
4void lcd_init(void) {
5}
6
7void lcd_print_str(const char *str) {
8 (void)str;
9}
10
11void lcd_print_strn(const char *str, unsigned int len) {
12 (void)str;
13 (void)len;
14}