Index: targets/taranis/lcd_driver.cpp =================================================================== --- targets/taranis/lcd_driver.cpp (revision 2600) +++ targets/taranis/lcd_driver.cpp (working copy) @@ -16,11 +16,11 @@ static void LCD_Init() { + AspiCmd(0x2b); //Panel loading set ,Internal VLCD. AspiCmd(0x25); //Temperature compensation curve definition: 0x25 = -0.05%/oC - AspiCmd(0x2b); //Panel loading set ,Internal VLCD. AspiCmd(0xEA); //set bias=1/10 :Command table NO.27 AspiCmd(0x81); //Set Vop - AspiCmd(50); //0--255 + AspiCmd(35); //0--255 AspiCmd(0xA6); //inverse display off AspiCmd(0xD1); //SET RGB:Command table NO.21 .SET RGB or BGR. D1=RGB AspiCmd(0xD5); //set color mode 4K and 12bits :Command table NO.22 @@ -47,11 +47,11 @@ } static void LCD_Init1() { + AspiCmd(0x2b); //Panel loading set ,Internal VLCD. AspiCmd(0x25); //Temperature compensation curve definition: 0x25 = -0.05%/oC - AspiCmd(0x2b); //Panel loading set ,Internal VLCD. AspiCmd(0xEA); //set bias=1/10 :Command table NO.27 AspiCmd(0x81); //Set Vop - AspiCmd(50); //0--255 + AspiCmd(35); //0--255 AspiCmd(0xA6); //inverse display off AspiCmd(0xD1); //SET RGB:Command table NO.21 .SET RGB or BGR. D1=RGB AspiCmd(0xD5); //set color mode 4K and 12bits :Command table NO.22
FAI 15766