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.
Revision 4:d65b0a5d58f0, committed 2017-07-15
- Comitter:
- kkado
- Date:
- Sat Jul 15 04:41:23 2017 +0000
- Parent:
- 3:7dd40c4c2ef3
- Commit message:
- Fixed length of vlines (one too short)
Changed in this revision
SSD1351.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r 7dd40c4c2ef3 -r d65b0a5d58f0 SSD1351.cpp --- a/SSD1351.cpp Mon Jul 03 08:24:52 2017 +0000 +++ b/SSD1351.cpp Sat Jul 15 04:41:23 2017 +0000 @@ -305,7 +305,7 @@ ys = y-127; } if(y+length < 0){ - ye = -(y+length); + ye = -(y+length+1); } else if(y+length > 127){ ye = y+length-127;