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.
Fork of BSP_DISCO_F469NI by
Revision 1:9e4eb47092ed, committed 2016-05-30
- Comitter:
- bcostm
- Date:
- Mon May 30 11:09:05 2016 +0000
- Parent:
- 0:0002c86c2220
- Child:
- 2:123b894b49dd
- Commit message:
- Fix issue with LCD in Portrait mode
Changed in this revision
| stm32469i_discovery/stm32469i_discovery_lcd.c | Show annotated file Show diff for this revision Revisions of this file |
--- a/stm32469i_discovery/stm32469i_discovery_lcd.c Fri Dec 18 07:32:01 2015 +0000
+++ b/stm32469i_discovery/stm32469i_discovery_lcd.c Mon May 30 11:09:05 2016 +0000
@@ -256,14 +256,14 @@
*/
if(orientation == LCD_ORIENTATION_PORTRAIT)
{
- VSA = OTM8009A_480X800_VSYNC; /* 12 */
- VBP = OTM8009A_480X800_VBP; /* 12 */
- VFP = OTM8009A_480X800_VFP; /* 12 */
- HSA = OTM8009A_480X800_HSYNC; /* 120 */
- HBP = OTM8009A_480X800_HBP; /* 120 */
- HFP = OTM8009A_480X800_HFP; /* 120 */
+ VSA = OTM8009A_480X800_HSYNC;
+ VBP = OTM8009A_480X800_HBP;
+ VFP = OTM8009A_480X800_HFP;
+ HSA = OTM8009A_480X800_VSYNC;
+ HBP = OTM8009A_480X800_VBP;
+ HFP = OTM8009A_480X800_VFP;
lcd_x_size = OTM8009A_480X800_WIDTH; /* 480 */
- lcd_y_size = OTM8009A_480X800_HEIGHT; /* 800 */
+ lcd_y_size = OTM8009A_480X800_HEIGHT; /* 800 */
}
else
{
