2015-01-01 16:13:30 -05:00
|
|
|
#include "py/obj.h"
|
2017-09-06 00:09:13 -04:00
|
|
|
#include "../stm32/lcd.h"
|
2014-01-07 12:49:42 -05:00
|
|
|
|
|
|
|
void lcd_init(void) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void lcd_print_str(const char *str) {
|
|
|
|
(void)str;
|
|
|
|
}
|
|
|
|
|
|
|
|
void lcd_print_strn(const char *str, unsigned int len) {
|
|
|
|
(void)str;
|
|
|
|
(void)len;
|
|
|
|
}
|