From 3009e9d0d00eca271829ae94ebc0ed957ffb849a Mon Sep 17 00:00:00 2001 From: Martin Preuss Date: Sat, 17 Jan 2026 17:16:40 +0100 Subject: [PATCH] TODO: RLE implemented. --- avr/modules/lcd2/gui2/TODO | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/avr/modules/lcd2/gui2/TODO b/avr/modules/lcd2/gui2/TODO index 8984959..213729b 100644 --- a/avr/modules/lcd2/gui2/TODO +++ b/avr/modules/lcd2/gui2/TODO @@ -1,27 +1,4 @@ -- RLL encode images: - - 1 cntrl byte - - bit 7=0: bits 0-6=number of normal bytes following - - bit 7=1: bits 0-6=number of repeats, in this case the repeated byte follows - -- encoding: - - buffer - - bytesInBuffer - - loop - - startOfRepetitionWithMoreThan2Bytes? - - yes: - - add buffer to result with preceeding CNTRL byte - - reset buffer - - add CNTRL for repetition - - add repetition byte - - no: - - add current byte to buffer - - buffer contains 127 bytes? - - yes: - - add buffer to result with preceeding CNTRL byte - - reset buffer - - - new classes: - button - move touch code there