Skip to content

Commit 56c8768

Browse files
committed
tweak for ESP-IDF v5.4.x
1 parent 39fd9ae commit 56c8768

File tree

3 files changed

+66
-35
lines changed

3 files changed

+66
-35
lines changed

src/lgfx/v1/misc/colortype.hpp

+3
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ namespace lgfx
2929
{
3030
inline namespace v1
3131
{
32+
# pragma GCC diagnostic push
33+
# pragma GCC diagnostic ignored "-Warray-bounds"
3234
//----------------------------------------------------------------------------
3335

3436
#if defined ( _MSVC_LANG )
@@ -947,6 +949,7 @@ namespace lgfx
947949
//----------------------------------------------------------------------------
948950
#undef LGFX_INLINE
949951

952+
# pragma GCC diagnostic pop
950953
}
951954
}
952955

src/lgfx/v1/platforms/esp32/Panel_CVBS.cpp

+57-26
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ Inspiration Sources:
2828
#include <freertos/task.h>
2929
#include <esp_types.h>
3030
#include <esp_log.h>
31-
#include <driver/dac.h>
3231
#include <soc/rtc.h>
3332
#include <soc/periph_defs.h>
3433
#include <soc/i2s_struct.h>
@@ -49,6 +48,16 @@ Inspiration Sources:
4948
#else
5049
#include <driver/i2s.h>
5150
#endif
51+
52+
#if __has_include (<hal/dac_ll.h>)
53+
#include <hal/dac_types.h>
54+
#include <hal/dac_ll.h>
55+
#include <driver/rtc_io.h>
56+
#else
57+
#include <driver/dac.h>
58+
#endif
59+
60+
5261
#if __has_include(<esp_private/periph_ctrl.h>)
5362
// ESP-IDF v5
5463
#include <esp_private/periph_ctrl.h>
@@ -1921,6 +1930,14 @@ namespace lgfx
19211930
deinit();
19221931
}
19231932

1933+
static dac_channel_t _get_dacchannel(int pin) {
1934+
#if defined ( LGFX_I2S_STD_ENABLED )
1935+
return (pin == 25) ? DAC_CHAN_0 : DAC_CHAN_1;
1936+
#else
1937+
return (pin == 25) ? DAC_CHANNEL_1 : DAC_CHANNEL_2;
1938+
#endif
1939+
}
1940+
19241941
void Panel_CVBS::deinit(void)
19251942
{
19261943
if (_started)
@@ -1946,25 +1963,21 @@ namespace lgfx
19461963
I2S0.out_link.start = 0;
19471964
I2S0.conf.tx_start = 0;
19481965

1966+
#if __has_include (<hal/dac_ll.h>)
1967+
dac_ll_digi_enable_dma(false);
1968+
auto ch = _get_dacchannel(_config_detail.pin_dac);
1969+
dac_ll_power_down(ch);
1970+
#else
19491971
dac_i2s_disable();
1950-
switch (_config_detail.pin_dac)
1951-
{
1952-
default:
1953-
break;
1954-
case 25:
1955-
dac_output_disable(DAC_CHANNEL_1); // for GPIO 25
1956-
break;
1957-
case 26:
1958-
dac_output_disable(DAC_CHANNEL_2); // for GPIO 26
1959-
break;
1960-
}
1961-
1972+
auto ch = _get_dacchannel(_config_detail.pin_dac);
1973+
dac_output_disable(ch);
1974+
#endif
19621975
periph_module_disable(PERIPH_I2S0_MODULE);
19631976

19641977
#if defined ( LGFX_I2S_STD_ENABLED )
1965-
rtc_clk_apll_enable(false);
1978+
rtc_clk_apll_enable(false);
19661979
#else
1967-
rtc_clk_apll_enable(false,0,0,0,1);
1980+
rtc_clk_apll_enable(false,0,0,0,1);
19681981
#endif
19691982

19701983
// printf("dmabuf: %08x free\n", internal.dma_desc[0].buf);
@@ -1993,22 +2006,40 @@ namespace lgfx
19932006
{
19942007
return true;
19952008
}
1996-
_started = true;
1997-
1998-
dac_i2s_enable();
1999-
switch (_config_detail.pin_dac)
2009+
if (_config_detail.pin_dac != GPIO_NUM_25 && _config_detail.pin_dac != GPIO_NUM_26)
20002010
{
2001-
default:
20022011
ESP_LOGE(TAG, "DAC output gpio error: G%d ... Select G25 or G26.", _config_detail.pin_dac);
20032012
return false;
2004-
case 25:
2005-
dac_output_enable(DAC_CHANNEL_1); // for GPIO 25
2006-
break;
2007-
case 26:
2008-
dac_output_enable(DAC_CHANNEL_2); // for GPIO 26
2009-
break;
20102013
}
2014+
_started = true;
20112015

2016+
#if __has_include (<hal/dac_ll.h>)
2017+
{ static constexpr const gpio_num_t gpio_table[2] = { GPIO_NUM_25, GPIO_NUM_26 }; // for ESP32 (not ESP32S2, s2=gpio17,gpio18)
2018+
for (int i = 0; i < 2; ++i)
2019+
{
2020+
if (_config_detail.pin_dac != gpio_table[i]) { continue; }
2021+
auto gpio_num = gpio_table[i];
2022+
rtc_gpio_init(gpio_num);
2023+
rtc_gpio_set_direction(gpio_num, RTC_GPIO_MODE_DISABLED);
2024+
rtc_gpio_pullup_dis(gpio_num);
2025+
rtc_gpio_pulldown_dis(gpio_num);
2026+
2027+
auto channel = _get_dacchannel(gpio_num);
2028+
dac_ll_power_on(channel);
2029+
}
2030+
dac_ll_rtc_sync_by_adc(false);
2031+
dac_ll_digi_enable_dma(true);
2032+
2033+
I2S0.conf2.lcd_en = true;
2034+
I2S0.conf.tx_right_first = false;
2035+
I2S0.conf.tx_msb_shift = 0;
2036+
I2S0.conf.tx_short_sync = 0;
2037+
}
2038+
#else
2039+
dac_i2s_enable();
2040+
auto ch = _get_dacchannel(_config_detail.pin_dac);
2041+
dac_output_enable(ch);
2042+
#endif
20122043
if (_config_detail.signal_type >= config_detail_t::signal_type_t::signal_type_max)
20132044
{
20142045
_config_detail.signal_type = (config_detail_t::signal_type_t)0;

src/lgfx/v1/platforms/esp32/common.cpp

+6-9
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,13 @@ Original Source:
3535
#include <soc/soc.h>
3636
#include <soc/i2c_reg.h>
3737
#include <soc/i2c_struct.h>
38-
#if (ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 3, 0))
39-
//#include <soc/syscon_reg.h>
40-
#if __has_include(<soc/syscon_reg.h>)
41-
#include <soc/syscon_reg.h>
42-
#endif
43-
#else
44-
#if __has_include (<soc/apb_ctrl_reg.h>)
45-
#include <soc/apb_ctrl_reg.h>
46-
#endif
38+
39+
#if __has_include(<soc/syscon_reg.h>)
40+
#include <soc/syscon_reg.h>
41+
#elif __has_include (<soc/apb_ctrl_reg.h>)
42+
#include <soc/apb_ctrl_reg.h>
4743
#endif
44+
4845
#include <soc/efuse_reg.h>
4946

5047
#include <esp_log.h>

0 commit comments

Comments
 (0)