Skip to content
Snippets Groups Projects
Commit 99b9b490 authored by Robert Abel's avatar Robert Abel Committed by Miguel Ojeda
Browse files

auxdisplay: charlcd: fix two-line command ^[[LN not marked as processed

parent 9629ccca
No related branches found
No related tags found
No related merge requests found
...@@ -363,6 +363,7 @@ static inline int handle_lcd_special_code(struct charlcd *lcd) ...@@ -363,6 +363,7 @@ static inline int handle_lcd_special_code(struct charlcd *lcd)
break; break;
case 'N': /* Two Lines */ case 'N': /* Two Lines */
priv->flags |= LCD_FLAG_N; priv->flags |= LCD_FLAG_N;
processed = 1;
break; break;
case 'l': /* Shift Cursor Left */ case 'l': /* Shift Cursor Left */
if (priv->addr.x > 0) { if (priv->addr.x > 0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment