Test for STM32F4

Dependents:   Nucleo_SSD1331

Fork of ssd1331 by Paul Staron

Files at this revision

API Documentation at this revision

Comitter:
kkado
Date:
Wed Aug 02 22:13:02 2017 +0000
Parent:
5:4385fd242db0
Commit message:
Initial commit

Changed in this revision

ssd1331.cpp Show annotated file Show diff for this revision Revisions of this file
diff -r 4385fd242db0 -r 86b4d9647da6 ssd1331.cpp
--- 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);