Home
last modified time | relevance | path

Searched refs:channels (Results 1 – 25 of 79) sorted by relevance

1234

/hal_espressif-2.7.6/components/soc/esp32/
Dpcnt_periph.c23 .channels = {
35 .channels = {
47 .channels = {
59 .channels = {
71 .channels = {
83 .channels = {
95 .channels = {
107 .channels = {
Dsigmadelta_periph.c19 .channels = {
Drmt_periph.c22 .channels = {
/hal_espressif-2.7.6/docs/en/hw-reference/
Dchip-series-comparison.rst68 - Two 12-bit, 18 channels
69 - Two 13-bit, 20 channels
70 - Two 12-bit SAR ADCs, at most 6 channels
72 - Two 8-bit channels
73 - Two 8-bit channels
118 - General-purpose, 3 TX channels, 3 RX channels
120 - 8 channels
121 - 4 channels :sup:`1`, can be configured to TX/RX channels
122 - 4 channels :sup:`2`, 2 TX channels, 2 RX channels
124 - 8 channels
[all …]
/hal_espressif-2.7.6/components/soc/esp32s3/
Dpcnt_periph.c23 .channels = {
35 .channels = {
47 .channels = {
59 .channels = {
Dsigmadelta_periph.c19 .channels = {
Drmt_periph.c21 .channels = {
/hal_espressif-2.7.6/components/soc/esp32s2/
Dpcnt_periph.c23 .channels = {
35 .channels = {
47 .channels = {
59 .channels = {
Dsigmadelta_periph.c19 .channels = {
Drmt_periph.c21 .channels = {
/hal_espressif-2.7.6/components/hal/esp32s2/
Dusbh_hal.c205 if (hal->channels.num_allocd == USBH_HAL_NUM_CHAN) { in usbh_hal_chan_alloc()
210 if (hal->channels.hdls[i] == NULL) { in usbh_hal_chan_alloc()
211 hal->channels.hdls[i] = chan_obj; in usbh_hal_chan_alloc()
213 hal->channels.num_allocd++; in usbh_hal_chan_alloc()
241 hal->channels.hdls[chan_obj->flags.chan_idx] = NULL; in usbh_hal_chan_free()
242 hal->channels.num_allocd--; in usbh_hal_chan_free()
243 assert(hal->channels.num_allocd >= 0); in usbh_hal_chan_free()
336 hal->channels.chan_pend_intrs_msk = usbh_ll_get_chan_intrs_msk(hal->dev); in usbh_hal_decode_intr()
345 int chan_num = __builtin_ffs(hal->channels.chan_pend_intrs_msk); in usbh_hal_get_chan_pending_intr()
347 …hal->channels.chan_pend_intrs_msk &= ~(1 << (chan_num - 1)); //Clear the pending bit for that… in usbh_hal_get_chan_pending_intr()
[all …]
/hal_espressif-2.7.6/examples/bluetooth/esp_ble_mesh/common_components/light_driver/
DREADME.md5 * ledc timer which is used to control the pwm channels of light
14 …nction to make some of channels to blink in appointed period. Note that if any channel works in bl…
18 * regist the light channels according the channel number by iot_light_channel_regist()
22 > If any channel(s) work(s) in blink mode, all the other channels would be turned off. iot_light_bl…
/hal_espressif-2.7.6/docs/en/api-reference/peripherals/
Ddac.rst10 {IDF_TARGET_NAME} has two 8-bit DAC (digital to analog converter) channels, connected to {IDF_TARGE…
14 The DAC driver allows these channels to be set to arbitrary voltages.
18 …The DAC channels can also be driven with DMA-style written sample data by the digital controller, …
22 …The DAC channels can also be driven with DMA-style written sample data by the digital controller, …
Dtouch_element.rst45 {IDF_TARGET_NAME} integrates one touch sensor peripheral with several physical channels.
49 - 14 physical capacitive touch channels
51 …d lower threshold interrupt, measure one channel finish and measure all channels finish interrupt,…
61 - 10 physical capacitive touch channels
67 The channels are located as follows:
99 **Touch channel** Touch sensor channels inside the touch sensor peripheral
179 Touch slider consumes several channels(at least three channels) of touch sensor, the more channels
191 …ouch matrix button consumes several channels(at least 2 + 2 = 4 channels), it gives a solution to …
Dsigmadelta.rst7 … second-order sigma-delta modulation module. This driver configures the channels of the sigma-delt…
14 …There are eight independent sigma-delta modulation channels identified with :cpp:type:`sigmadelta_…
18 …There are four independent sigma-delta modulation channels identified with :cpp:type:`sigmadelta_c…
Dledc.rst10 It has {IDF_TARGET_LEDC_CHAN_NUM} channels which can generate independent waveforms that can be use…
14channels are divided into two groups of 8 channels each. One group of LEDC channels operates in hi…
29 …ps. Note that unlike ESP32, {IDF_TARGET_NAME} only supports configuring channels in "low speed" mo…
88 …All the timers and channels in the {IDF_TARGET_NAME}'s LED PWM Controller only support low speed m…
/hal_espressif-2.7.6/components/soc/esp32c3/
Dsigmadelta_periph.c19 .channels = {
Drmt_periph.c21 .channels = {
/hal_espressif-2.7.6/components/soc/include/soc/
Dsigmadelta_periph.h29 } channels[SOC_SIGMADELTA_CHANNEL_NUM]; member
Drmt_periph.h30 } channels[SOC_RMT_CHANNELS_NUM]; member
Dpcnt_periph.h32 } channels[SOC_PCNT_UNIT_CHANNEL_NUM]; member
/hal_espressif-2.7.6/components/bt/host/bluedroid/external/sbc/encoder/include/
Dsbc_if.h33 int SBC_init(int pcm_sample_freq, int channels, int bits_per_sample);
/hal_espressif-2.7.6/examples/wifi/fast_scan/
DREADME.md7 * fast scan: in this mode, scan finishes right after a matching AP is detected, even if channels ar…
9 * all channel scan: scan will end only after all channels are scanned; the Wi-Fi driver will store …
/hal_espressif-2.7.6/examples/wifi/wifi_easy_connect/dpp-enrollee/main/
DKconfig.projbuild6 DPP Bootstrapping listen channels separated by commas.
/hal_espressif-2.7.6/components/bt/host/bluedroid/api/
Desp_gap_bt_api.c378 esp_err_t esp_bt_gap_set_afh_channels(esp_bt_gap_afh_channels channels) in esp_bt_gap_set_afh_channels() argument
391 memcpy(&arg.set_afh_channels.channels, channels, ESP_BT_GAP_AFH_CHANNELS_LEN); in esp_bt_gap_set_afh_channels()
392 arg.set_afh_channels.channels[ESP_BT_GAP_AFH_CHANNELS_LEN -1] &= 0x7F; in esp_bt_gap_set_afh_channels()

1234