summaryrefslogtreecommitdiffstatshomepage
path: root/teensy/lcd.c
blob: 5b991aac779ef3eb2c1d29eddb840c08803dac11 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "mpconfig.h"
#include "nlr.h"
#include "misc.h"
#include "qstr.h"
#include "parse.h"
#include "obj.h"
#include "../stmhal/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;
}