Hi !
The third parameter of my function, which is an unsigned int, always gets the value of 0 when the function is called, although I passed another value to it.
void writeGraphicToLCD(char *byte, unsigned char transform, unsigned int blocksize)
writeGraphicToLCD(testBlock2, NONE, 8);
I am pulling the hair of my head trying to figure why it is doing this.