diff --git a/colorspace.c b/colorspace.c index 1200878..36a5124 100644 --- a/colorspace.c +++ b/colorspace.c @@ -11,7 +11,7 @@ * Converts the given 8 pixel in 1-Bit monochrome to 16-Bit RGB (5/6/5) color * stored in the given array of 16 bytes. * - * @param grey 8 pixel in 1-Bit monochrome + * @param mono 8 pixel in 1-Bit monochrome * @param rgb 8 pixel in 16-Bit RGB (5/6/5) color */ static void mono1ToRGB16(uint8_t mono, uint8_t *rgb) { diff --git a/tft.c b/tft.c index bcc2f2c..7293e2e 100644 --- a/tft.c +++ b/tft.c @@ -113,6 +113,8 @@ } void initDisplay(void) { + _delay_ms(10); + // Hardware reset hwReset();