Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: epd1in54.cpp
- Revision:
- 3:e4399b5ceb4b
- Parent:
- 2:d7fc318a1528
- Child:
- 6:469fb6b0d26d
diff -r d7fc318a1528 -r e4399b5ceb4b epd1in54.cpp --- a/epd1in54.cpp Tue Mar 27 17:36:34 2018 +0000 +++ b/epd1in54.cpp Tue Mar 27 17:59:56 2018 +0000 @@ -188,7 +188,7 @@ SendCommand(WRITE_RAM); /* send the image data */ for (int i = 0; i < this->width / 8 * this->height; i++) { - SendData(pgm_read_byte(&image_buffer[i])); + //SendData(pgm_read_byte(&image_buffer[i])); SendData(*(&image_buffer[i])); } }