micropython/teensy/lcd.c
Dave Hylands 9b7b947b01 Updated teensy to use common code from stm directory.
Updated mconfigport.h to enable GC
2014-01-08 00:29:44 -08:00

15 lines
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;
}