Test for STM32F4
Fork of ssd1331 by
Revision 6:86b4d9647da6, committed 2017-08-02
- 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 |
--- 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);
Kevin Kadooka
