Update to latest IDF master.

This commit is contained in:
Johny Mattsson 2021-08-24 09:59:31 +10:00
parent ba74e770a6
commit 8e5ce49d19
2 changed files with 3 additions and 1 deletions

View File

@ -106,6 +106,8 @@ static void ws2812_isr(void *arg)
ws2812_chain_t *chain = &(ws2812_chains[channel]); ws2812_chain_t *chain = &(ws2812_chains[channel]);
#if defined(CONFIG_IDF_TARGET_ESP32) || defined(CONFIG_IDF_TARGET_ESP32S2) #if defined(CONFIG_IDF_TARGET_ESP32) || defined(CONFIG_IDF_TARGET_ESP32S2)
uint32_t data_sub_len = RMT.tx_lim_ch[channel].limit/8; uint32_t data_sub_len = RMT.tx_lim_ch[channel].limit/8;
#elif defined(CONFIG_IDF_TARGET_ESP32S3)
uint32_t data_sub_len = RMT.chn_tx_lim[channel].tx_lim_chn/8;
#else #else
uint32_t data_sub_len = RMT.tx_lim[channel].limit/8; uint32_t data_sub_len = RMT.tx_lim[channel].limit/8;
#endif #endif

@ -1 +1 @@
Subproject commit 8e3e65a47b7d9b5dc4f52eb56660a748fda1884e Subproject commit a20df743f1c51e6d65b021ed2ffd3081a2feec64