1
6
7
8
9
10
11
12
13
14
15
16
17
18
24
28
29
32
49
50
53
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/* ... */
#pragma once
#include <stdbool.h>
#include <stdint.h>
#include "esp_err.h"
#include "driver/rmt_common.h"
#ifdef __cplusplus
extern "C" {
#endif
/* ... */
typedef struct {
rmt_rx_done_callback_t on_recv_done;
/* ... */
}{ ... } rmt_rx_event_callbacks_t;
/* ... */
typedef struct {
gpio_num_t gpio_num;
rmt_clock_source_t clk_src;
uint32_t resolution_hz;
size_t mem_block_symbols;
/* ... */
int intr_priority;
/* ... */
struct {
uint32_t invert_in: 1;
uint32_t with_dma: 1;
uint32_t io_loop_back: 1;
uint32_t allow_pd: 1;
/* ... */
}{ ... } flags;
}{ ... } rmt_rx_channel_config_t;
/* ... */
typedef struct {
uint32_t signal_range_min_ns;
uint32_t signal_range_max_ns;
struct extra_rmt_receive_flags {
uint32_t en_partial_rx: 1;
/* ... */
}{ ... } flags;
}{ ... } rmt_receive_config_t;
/* ... */
esp_err_t rmt_new_rx_channel(const rmt_rx_channel_config_t *config, rmt_channel_handle_t *ret_chan);
/* ... */
esp_err_t rmt_receive(rmt_channel_handle_t rx_channel, void *buffer, size_t buffer_size, const rmt_receive_config_t *config);
/* ... */
esp_err_t rmt_rx_register_event_callbacks(rmt_channel_handle_t rx_channel, const rmt_rx_event_callbacks_t *cbs, void *user_data);
#ifdef __cplusplus
}{...}
#endif