blob: e5d6115d7513c7ae2365f1a9d8c09c95ba0d2ea9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "py/obj.h"
#include "../stm32/lcd.h"
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;
}
|