From 5e4ca454436a0f1f1763e7e948fa62e4c980a27d Mon Sep 17 00:00:00 2001 From: Martin Preuss Date: Thu, 5 Sep 2024 23:41:48 +0200 Subject: [PATCH] avr: updated display message. --- avr/modules/lcd/main.asm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/avr/modules/lcd/main.asm b/avr/modules/lcd/main.asm index 6671db3..f07d2f8 100644 --- a/avr/modules/lcd/main.asm +++ b/avr/modules/lcd/main.asm @@ -18,6 +18,8 @@ ; - when writing a byte to a position (e.g. page 0, column 0) ; - writing to chip RAM is done in columns ; +; text_xpos=(xpos*8), meaning max 16 chars per text line +; ; Page 0: col 0 col 1 ... col 127 ; Row 0(LSB) 0/0 1/0 ... 127/0 ; Row 1 0/1 1/1 ... 127/1 @@ -650,7 +652,7 @@ lcdInitCommandsBegin: ; 28 bytes .db LCD_MODE_MULTICMD, 0xa8, ((LCD_PAGE_COUNT*8)-1), 0x8d, 0x14, 0xaf, 0xa1, 0xc8 lcdInitCommandsEnd: -lcdHelloMsg: .db "AqHOME 2023", 0 +lcdHelloMsg: .db "AqHOME 2024", 0 ; font taken from Tiny4kOLED (https://github.com/datacute/Tiny4kOLED/tree/master/src) by Stephen Denne (MIT license),