Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

drivers: rename st7735 to more generic st77xx #19825

Merged
merged 13 commits into from
Sep 6, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
drivers/st7735: remove buggy initialization, use reset defaults
Instead of using a wrong intialization command sequence for power and frame control, default values after reset are used.
  • Loading branch information
gschorcht committed Aug 8, 2023
commit 12f441ff74d4b1693203ffcf6f72e56fe5a0414e
71 changes: 6 additions & 65 deletions drivers/st7735/st7735.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,23 +41,6 @@
#define ENABLE_DEBUG 0
#include "debug.h"

/* datasheet page 178, table converted to equation.
* gvdd in 1mv increments: 4850 = 4.85V */
static uint8_t _st7735_calc_pwrctl1(uint16_t gvdd)
{
return (gvdd - 2850) / 50;
}

static uint8_t _st7735_calc_vmh(uint16_t vcomh)
{
return (vcomh - 2700) / 25;
}

static uint8_t _st7735_calc_vml(int16_t vcoml)
{
return (vcoml + 2500) / 25;
}

static int _init(lcd_t *dev, const lcd_params_t *params)
{
if (IS_USED(MODULE_ST7789)) {
Expand All @@ -79,56 +62,14 @@ static int _init(lcd_t *dev, const lcd_params_t *params)
/* Display off */
lcd_ll_write_cmd(dev, LCD_CMD_DISPOFF, NULL, 0);

/* PWRCTL1 */
command_params[0] = _st7735_calc_pwrctl1(CONFIG_ST7735_GVDD);
lcd_ll_write_cmd(dev, LCD_CMD_PWCTRL1, command_params, 1);

/* PWCTR2 VGH = 14.7V, VGL = -7.35V */
command_params[0] = 0x01;
command_params[1] = 0x05;
lcd_ll_write_cmd(dev, LCD_CMD_PWCTRL2, command_params, 2);

/* PWCTR3 Opamp current small, Boost frequency */
command_params[0] = 0x02;
command_params[1] = 0x01;
command_params[2] = 0x02;
lcd_ll_write_cmd(dev, LCD_CMD_PWCTRL3, command_params, 3);

/* PWCTR6 */
command_params[0] = 0x02;
command_params[1] = 0x11;
command_params[2] = 0x15;
lcd_ll_write_cmd(dev, LCD_CMD_PWCTRL6, command_params, 3);

/* No display Inversion , Line inversion */
command_params[0] = 0x07;
lcd_ll_write_cmd(dev, LCD_CMD_INVCTR, command_params, 1);

/* VCOMCTL */
command_params[0] = _st7735_calc_vmh(CONFIG_ST7735_VCOMH);
command_params[1] = _st7735_calc_vml(CONFIG_ST7735_VCOML);
lcd_ll_write_cmd(dev, LCD_CMD_VMCTRL1, command_params, 2);

command_params[0] = 0x86;
lcd_ll_write_cmd(dev, LCD_CMD_VMCTRL2, command_params, 1);
/* TODO: instead of using a wrong initialization command sequence for power
* and frame control, default values after reset are used. */

/* Memory access CTL */
command_params[0] = dev->params->rotation;
command_params[0] |= dev->params->rgb ? 0 : LCD_MADCTL_BGR;
lcd_ll_write_cmd(dev, LCD_CMD_MADCTL, command_params, 1);

/* Frame control */
command_params[0] = 0x00;
command_params[1] = 0x18;
lcd_ll_write_cmd(dev, LCD_CMD_FRAMECTL1, command_params, 2);

/* Display function control */
command_params[0] = 0x08;
command_params[1] = 0x82;
/* number of lines, see datasheet p. 166 (DISCTRL::NL) */
command_params[2] = (params->lines >> 3) - 1;
lcd_ll_write_cmd(dev, LCD_CMD_DFUNC, command_params, 3);

/* Pixel format */
command_params[0] = 0x55; /* 16 bit mode */
lcd_ll_write_cmd(dev, LCD_CMD_PIXSET, command_params, 1);
Expand All @@ -139,16 +80,16 @@ static int _init(lcd_t *dev, const lcd_params_t *params)
/* Gamma correction */
{
static const uint8_t gamma_pos[] = {
0x02, 0x1c, 0x07, 0x12, 0x37, 0x32, 0x29, 0x2d,
0x29, 0x25, 0x2B, 0x39, 0x00, 0x01, 0x03, 0x10
0xf0, 0x09, 0x0b, 0x06, 0x04, 0x15, 0x2f,
0x54, 0x42, 0x3c, 0x17, 0x14, 0x18, 0x1b,
};
lcd_ll_write_cmd(dev, LCD_CMD_PGAMCTRL, gamma_pos,
sizeof(gamma_pos));
}
{
static const uint8_t gamma_neg[] = {
0x03, 0x1d, 0x07, 0x06, 0x2E, 0x2C, 0x29, 0x2D,
0x2E, 0x2E, 0x37, 0x3F, 0x00, 0x00, 0x02, 0x10
0xe0, 0x09, 0x0b, 0x06, 0x04, 0x03, 0x2b,
0x43, 0x42, 0x3b, 0x16, 0x14, 0x17, 0x1b
};
lcd_ll_write_cmd(dev, LCD_CMD_NGAMCTRL, gamma_neg,
sizeof(gamma_neg));
Expand Down