Test for STM32F4

Dependents:   Nucleo_SSD1331

Fork of ssd1331 by Paul Staron

Revision:
6:86b4d9647da6
Parent:
5:4385fd242db0
--- a/ssd1331.cpp	Sun May 29 17:59:51 2016 +0000
+++ b/ssd1331.cpp	Wed Aug 02 22:13:02 2017 +0000
@@ -535,7 +535,7 @@
     // obtain file size:
     fseek (Image , 0 , SEEK_END);
     fileSize = ftell (Image)-start_data;
-    rewind (Image);
+    //rewind (Image);
     
     // allocate memory to contain the whole file:
     buffer = (char*) malloc (sizeof(char)*fileSize/2);