mirror of
https://github.com/micropython/micropython.git
synced 2024-07-26 18:26:56 +01:00
15 lines
217 B
C
15 lines
217 B
C
#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;
|
|
}
|