Skip to content

Commit

Permalink
[board] avaota-a1 add lcd error info
Browse files Browse the repository at this point in the history
  • Loading branch information
YuzukiTsuru committed Apr 6, 2024
1 parent 6fd8b27 commit 9ae9e91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion board/avaota-a1/extlinux_boot/spi_lcd.c
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ void LCD_ShowChar(uint16_t x, uint16_t y, uint8_t num, uint16_t fc, uint16_t bc,
}

void LCD_ShowString(uint16_t x, uint16_t y, const uint8_t *p, uint16_t fc, uint16_t bc, uint8_t sizey) {
printk(LOG_LEVEL_INFO, "LCD: Show String: \"%s\"\n", p);
printk(LOG_LEVEL_DEBUG, "LCD: Show String: \"%s\"\n", p);
while (*p != '\0') {
LCD_ShowChar(x, y, *p, fc, bc, sizey);
x += sizey / 2;
Expand Down

0 comments on commit 9ae9e91

Please sign in to comment.