lcd.c 217 B

1234567891011121314
  1. #include "py/obj.h"
  2. #include "../stm32/lcd.h"
  3. void lcd_init(void) {
  4. }
  5. void lcd_print_str(const char *str) {
  6. (void)str;
  7. }
  8. void lcd_print_strn(const char *str, unsigned int len) {
  9. (void)str;
  10. (void)len;
  11. }