drivers/lcd: Added support for ST7789 controller based on ST7735

Signed-off-by: Michal Lenc <lencmich@fel.cvut.cz>
This commit is contained in:
Michal Lenc
2020-12-22 18:55:19 +01:00
committed by Alan Carvalho de Assis
parent 1502693f93
commit b11bfefff5
5 changed files with 818 additions and 0 deletions
+19
View File
@@ -590,6 +590,25 @@ if LCD_ST7735
endif # LCD_ST7735
config LCD_ST7789
bool "Sitronix ST7789 TFT Controller"
default n
if LCD_ST7789
config LCD_ST7789_BPP
int "Bit Per Pixel (12 or 16)"
default 16
config LCD_ST7789_SPIMODE
int "SPI Mode"
default 0
config LCD_ST7789_FREQUENCY
int "SPI Frequency"
default 1000000
endif # LCD_ST7789
config LCD_PCD8544
bool "Nokia 5110 LCD Display (Philips PCD8544)"
default n
+4
View File
@@ -140,6 +140,10 @@ ifeq ($(CONFIG_LCD_ST7735),y)
CSRCS += st7735.c
endif
ifeq ($(CONFIG_LCD_ST7789),y)
CSRCS += st7789.c
endif
endif # CONFIG_LCD
ifeq ($(CONFIG_SLCD),y)
File diff suppressed because it is too large Load Diff
+53
View File
@@ -0,0 +1,53 @@
/**************************************************************************************
* drivers/lcd/st7789.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
**************************************************************************************/
#ifndef __DRIVERS_LCD_ST7789_H
#define __DRIVERS_LCD_ST7789_H
/**************************************************************************************
* Included Files
**************************************************************************************/
/**************************************************************************************
* Pre-processor Definitions
**************************************************************************************/
#define ST7789_NOP 0x00 /* No Operation */
#define ST7789_SWRESET 0x01 /* Software Reset */
#define ST7789_RDDID 0x04 /* Read Display ID */
#define ST7789_RDDST 0x09 /* Read Display Status */
#define ST7789_RDDPM 0x0a /* Read Display Power */
#define ST7789_SLPIN 0x10 /* Sleep In & Booster Off */
#define ST7789_SLPOUT 0x11 /* Sleep Out & Booster On */
#define ST7789_PTLON 0x12 /* Partial Mode On */
#define ST7789_NORON 0x13 /* Partial Mode Off */
#define ST7789_INVOFF 0x20 /* Display Inversion Off */
#define ST7789_INVON 0x21 /* Display Inversion On */
#define ST7789_DISPOFF 0x28 /* Display Off */
#define ST7789_DISPON 0x29 /* Display On */
#define ST7789_CASET 0x2a /* Column Address Set */
#define ST7789_RASET 0x2b /* Row Address Set */
#define ST7789_RAMWR 0x2c /* Memory Write */
#define ST7789_RAMRD 0x2e /* Memory Read */
#define ST7789_IDMOFF 0x38 /* Idle Mode Off */
#define ST7789_IDMON 0x39 /* Idle Mode On */
#define ST7789_COLMOD 0x3a /* Interface Pixel Format */
#endif /* __DRIVERS_LCD_ST7789_H */
+72
View File
@@ -0,0 +1,72 @@
/****************************************************************************
* include/nuttx/lcd/st7789.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
#ifndef __INCLUDE_NUTTX_ST7789_H
#define __INCLUDE_NUTTX_ST7789_H
/****************************************************************************
* Included Files
****************************************************************************/
#include <stdbool.h>
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
/****************************************************************************
* Public Types
****************************************************************************/
/****************************************************************************
* Public Data
****************************************************************************/
#ifdef __cplusplus
extern "C"
{
#endif
/****************************************************************************
* Public Function Prototypes
****************************************************************************/
/****************************************************************************
* Name: st7789_initialize
*
* Description:
* Initialize the ST7789 video hardware. The initial state of the
* LCD is fully initialized, display memory cleared, and the LCD ready
* to use, but with the power setting at 0 (full off == sleep mode).
*
* Returned Value:
*
* On success, this function returns a reference to the LCD object for
* the specified LCD. NULL is returned on any failure.
*
****************************************************************************/
FAR struct lcd_dev_s *st7789_lcdinitialize(FAR struct spi_dev_s *spi);
#ifdef __cplusplus
}
#endif
#endif /* __INCLUDE_NUTTX_ST7789_H */