kopia lustrzana https://github.com/micropython/micropython
15 wiersze
213 B
C
15 wiersze
213 B
C
|
#include "misc.h"
|
||
|
#include "../stm/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;
|
||
|
}
|