-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Drop OLED flip for TS80P #27
Conversation
Not able to test as my ST-Link isn't detected anymore. Will report back as soon as the |
@Ralim I tried it with the corresponding line removed for the The current issue is that all content shown on the OLED display is mirrored along the vertical center of the screen, so to read the text you need to read the letters from right to left, while each letter is reversed. I think the issue is the removal of these lines that you deleted in commit 628fc98: #ifdef OLED_FLIP
0x80, 0xA1, /*Set Segment remap to backwards*/
#else
0x80, 0xA0, /*Set Segment remap to normal*/
#endif Just a guess though. 😊 |
Hmm, those lines were pulled to the header and should be the same. |
@Ralim |
@Ralim thanks in advance |
@Ralim |
@Ralim |
@discip |
Thank you so much! 👍It finally works! |
fixes #23