Updated the ViewLink structure in order to be able to iterate backward

This commit is contained in:
anschrammh 2020-01-20 08:20:23 +01:00
parent 723132a082
commit e699b462f9

View File

@ -48,7 +48,7 @@ typedef struct viewLink{
boolean (*viewLogicFunction)(Adafruit_SSD1306&, void*);
void *pData;
const int UID;
struct viewLink *next;
struct viewLink *next, *previous;
} ViewLink, *ViewLinkedList;
char *addChar(char *pointer, const char character);