Searched refs:rmt_driver_channels (Results 1 – 1 of 1) sorted by relevance
/hal_espressif-3.4.0/components/driver/ |
D | rmt.c | 66 uint8_t rmt_driver_channels; // Bitmask of installed drivers' channels member 107 .rmt_driver_channels = 0, 716 …ESP_RETURN_ON_FALSE(rmt_contex.rmt_driver_channels == 0, ESP_FAIL, TAG, "RMT driver installed, can… in rmt_isr_register() 951 …ESP_RETURN_ON_FALSE(rmt_contex.rmt_driver_channels & BIT(channel), ESP_ERR_INVALID_STATE, TAG, "No… in rmt_driver_uninstall() 976 rmt_contex.rmt_driver_channels &= ~BIT(channel); in rmt_driver_uninstall() 977 if (rmt_contex.rmt_driver_channels == 0) { in rmt_driver_uninstall() 1020 …ESP_RETURN_ON_FALSE((rmt_contex.rmt_driver_channels & BIT(channel)) == 0, ESP_ERR_INVALID_STATE, T… in rmt_driver_install() 1091 if (rmt_contex.rmt_driver_channels == 0) { in rmt_driver_install() 1096 rmt_contex.rmt_driver_channels |= BIT(channel); in rmt_driver_install()
|