@@ -28,7 +28,6 @@ Inspiration Sources:
28
28
#include < freertos/task.h>
29
29
#include < esp_types.h>
30
30
#include < esp_log.h>
31
- #include < driver/dac.h>
32
31
#include < soc/rtc.h>
33
32
#include < soc/periph_defs.h>
34
33
#include < soc/i2s_struct.h>
@@ -49,6 +48,16 @@ Inspiration Sources:
49
48
#else
50
49
#include < driver/i2s.h>
51
50
#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
+
52
61
#if __has_include(<esp_private/periph_ctrl.h>)
53
62
// ESP-IDF v5
54
63
#include < esp_private/periph_ctrl.h>
@@ -1921,6 +1930,14 @@ namespace lgfx
1921
1930
deinit ();
1922
1931
}
1923
1932
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
+
1924
1941
void Panel_CVBS::deinit (void )
1925
1942
{
1926
1943
if (_started)
@@ -1946,25 +1963,21 @@ namespace lgfx
1946
1963
I2S0.out_link .start = 0 ;
1947
1964
I2S0.conf .tx_start = 0 ;
1948
1965
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
1949
1971
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
1962
1975
periph_module_disable (PERIPH_I2S0_MODULE);
1963
1976
1964
1977
#if defined ( LGFX_I2S_STD_ENABLED )
1965
- rtc_clk_apll_enable (false );
1978
+ rtc_clk_apll_enable (false );
1966
1979
#else
1967
- rtc_clk_apll_enable (false ,0 ,0 ,0 ,1 );
1980
+ rtc_clk_apll_enable (false ,0 ,0 ,0 ,1 );
1968
1981
#endif
1969
1982
1970
1983
// printf("dmabuf: %08x free\n", internal.dma_desc[0].buf);
@@ -1993,22 +2006,40 @@ namespace lgfx
1993
2006
{
1994
2007
return true ;
1995
2008
}
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)
2000
2010
{
2001
- default :
2002
2011
ESP_LOGE (TAG, " DAC output gpio error: G%d ... Select G25 or G26." , _config_detail.pin_dac );
2003
2012
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 ;
2010
2013
}
2014
+ _started = true ;
2011
2015
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
2012
2043
if (_config_detail.signal_type >= config_detail_t ::signal_type_t ::signal_type_max)
2013
2044
{
2014
2045
_config_detail.signal_type = (config_detail_t ::signal_type_t )0 ;
0 commit comments