summaryrefslogtreecommitdiffstatshomepage
path: root/teensy/lcd.c
blob: cc3f52bad5d7379ecb87994560b6e57dd521851c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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;
}