2014-06-16 01:33:14 -04:00
|
|
|
#include "mpconfig.h"
|
|
|
|
#include "nlr.h"
|
2014-01-07 12:49:42 -05:00
|
|
|
#include "misc.h"
|
2014-06-16 01:33:14 -04:00
|
|
|
#include "qstr.h"
|
|
|
|
#include "parse.h"
|
|
|
|
#include "obj.h"
|
|
|
|
#include "../stmhal/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;
|
|
|
|
}
|