PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
313B

  1. case HX8352A:
  2. LCD_Write_COM_DATA(0x02,x1>>8);
  3. LCD_Write_COM_DATA(0x03,x1);
  4. LCD_Write_COM_DATA(0x04,x2>>8);
  5. LCD_Write_COM_DATA(0x05,x2);
  6. LCD_Write_COM_DATA(0x06,y1>>8);
  7. LCD_Write_COM_DATA(0x07,y1);
  8. LCD_Write_COM_DATA(0x08,y2>>8);
  9. LCD_Write_COM_DATA(0x09,y2);
  10. LCD_Write_COM(0x22);
  11. break;