Skip to content

Commit

Permalink
Merge pull request #60 from YuzukiHD/dev
Browse files Browse the repository at this point in the history
[board] avaota-a1 add lcd error info
  • Loading branch information
YuzukiTsuru committed Apr 6, 2024
2 parents 0182e4c + 9ae9e91 commit a0bef1e
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 a0bef1e

Please sign in to comment.