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.

16 lines
348B

  1. case SSD1963_480:
  2. swap(word, x1, y1);
  3. swap(word, x2, y2);
  4. LCD_Write_COM(0x2a);
  5. LCD_Write_DATA(x1>>8);
  6. LCD_Write_DATA(x1);
  7. LCD_Write_DATA(x2>>8);
  8. LCD_Write_DATA(x2);
  9. LCD_Write_COM(0x2b);
  10. LCD_Write_DATA(y1>>8);
  11. LCD_Write_DATA(y1);
  12. LCD_Write_DATA(y2>>8);
  13. LCD_Write_DATA(y2);
  14. LCD_Write_COM(0x2c);
  15. break;