minor fixes
This commit is contained in:
parent
6a6fdcf289
commit
1cf7dd0876
3 changed files with 33 additions and 24 deletions
|
@ -12,6 +12,7 @@
|
|||
#include "esp_log.h"
|
||||
#include "soc/ledc_periph.h" // to invert LEDC output on IDF version < v4.3
|
||||
#include "soc/gpio_sig_map.h"
|
||||
#include "esp_idf_version.h"
|
||||
|
||||
typedef struct {
|
||||
bool pwm_control; // true: LEDC is used, false: GPIO is used
|
||||
|
@ -50,7 +51,7 @@ disp_backlight_h disp_backlight_new(const disp_backlight_config_t *config)
|
|||
};
|
||||
const ledc_timer_config_t LCD_backlight_timer = {
|
||||
.speed_mode = LEDC_LOW_SPEED_MODE,
|
||||
#ifdef ESP_IDF_VERSION_MAJOR >=5
|
||||
#if ESP_IDF_VERSION_MAJOR >= 5
|
||||
.duty_resolution = LEDC_TIMER_10_BIT,
|
||||
#else
|
||||
.bit_num = LEDC_TIMER_10_BIT,
|
||||
|
@ -61,10 +62,10 @@ disp_backlight_h disp_backlight_new(const disp_backlight_config_t *config)
|
|||
|
||||
ESP_ERROR_CHECK(ledc_timer_config(&LCD_backlight_timer));
|
||||
ESP_ERROR_CHECK(ledc_channel_config(&LCD_backlight_channel));
|
||||
#ifdef ESP_IDF_VERSION_MAJOR >=5
|
||||
esp_rom_gpio_connect_out_signal(config->gpio_num, ledc_periph_signal[LEDC_LOW_SPEED_MODE].sig_out0_idx + config->channel_idx, config->output_invert,0);
|
||||
#if ESP_IDF_VERSION_MAJOR >= 5
|
||||
esp_rom_gpio_connect_out_signal(config->gpio_num, ledc_periph_signal[LEDC_LOW_SPEED_MODE].sig_out0_idx + config->channel_idx, config->output_invert,0);
|
||||
#else
|
||||
gpio_matrix_out(config->gpio_num, ledc_periph_signal[LEDC_LOW_SPEED_MODE].sig_out0_idx + config->channel_idx, config->output_invert, 0);
|
||||
gpio_matrix_out(config->gpio_num, ledc_periph_signal[LEDC_LOW_SPEED_MODE].sig_out0_idx + config->channel_idx, config->output_invert, 0);
|
||||
#endif
|
||||
}
|
||||
else
|
||||
|
@ -72,7 +73,7 @@ disp_backlight_h disp_backlight_new(const disp_backlight_config_t *config)
|
|||
// Configure GPIO for output
|
||||
bckl_dev->index = config->gpio_num;
|
||||
|
||||
#ifdef ESP_IDF_VERSION_MAJOR >=5
|
||||
#if ESP_IDF_VERSION_MAJOR >= 5
|
||||
esp_rom_gpio_connect_out_signal(config->gpio_num, SIG_GPIO_OUT_IDX, config->output_invert, false);
|
||||
esp_rom_gpio_pad_select_gpio(config->gpio_num);
|
||||
ESP_ERROR_CHECK(gpio_set_direction(config->gpio_num, GPIO_MODE_OUTPUT));
|
||||
|
|
|
@ -58,7 +58,7 @@ void ili9488_init(void)
|
|||
lcd_init_cmd_t ili_init_cmds[]={
|
||||
{ILI9488_CMD_SLEEP_OUT, {0x00}, 0x80},
|
||||
{ILI9488_CMD_POSITIVE_GAMMA_CORRECTION, {0x0F, 0x1F, 0x1C, 0x0C, 0x0F, 0x08, 0x48, 0x98, 0x37, 0x0A, 0x13, 0x04, 0x11, 0x0D, 0x00}, 15},
|
||||
{ILI9488_CMD_NEGATIVE_GAMMA_CORRECTION, {0x0F, 0x32, 0x2E, 0x0B, 0x0D, 0x05, 0x47, 0x75, 0x37, 0x06, 0x10, 0x03, 0x24, 0x20, 0x00}, 15}
|
||||
{ILI9488_CMD_NEGATIVE_GAMMA_CORRECTION, {0x0F, 0x32, 0x2E, 0x0B, 0x0D, 0x05, 0x47, 0x75, 0x37, 0x06, 0x10, 0x03, 0x24, 0x20, 0x00}, 15},
|
||||
{ILI9488_CMD_POWER_CONTROL_1, {0x17, 0x15}, 2},
|
||||
{ILI9488_CMD_POWER_CONTROL_2, {0x41}, 1},
|
||||
{ILI9488_CMD_POWER_CONTROL_NORMAL_3, {0x44}, 1},
|
||||
|
@ -78,7 +78,7 @@ void ili9488_init(void)
|
|||
};
|
||||
|
||||
//Initialize non-SPI GPIOs
|
||||
#ifdef ESP_IDF_VERSION_MAJOR >= 5
|
||||
#if ESP_IDF_VERSION_MAJOR >= 5
|
||||
esp_rom_gpio_pad_select_gpio(ILI9488_DC);
|
||||
#else
|
||||
gpio_pad_select_gpio(ILI9488_DC);
|
||||
|
@ -86,7 +86,7 @@ void ili9488_init(void)
|
|||
gpio_set_direction(ILI9488_DC, GPIO_MODE_OUTPUT);
|
||||
|
||||
#if ILI9488_USE_RST
|
||||
#ifdef ESP_IDF_VERSION_MAJOR >= 5
|
||||
#if ESP_IDF_VERSION_MAJOR >= 5
|
||||
esp_rom_gpio_pad_select_gpio(ILI9488_RST);
|
||||
#else
|
||||
gpio_pad_select_gpio(ILI9488_RST);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue