mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-08-06 15:15:15 +08:00
feature(i2s): add i2s driver
This commit is contained in:
@ -85,8 +85,8 @@ typedef volatile struct {
|
||||
} int_ena;
|
||||
union {
|
||||
struct {
|
||||
uint32_t take_data: 1;
|
||||
uint32_t put_data: 1;
|
||||
uint32_t rx_take_data: 1;
|
||||
uint32_t tx_put_data: 1;
|
||||
uint32_t rx_wfull: 1;
|
||||
uint32_t rx_rempty: 1;
|
||||
uint32_t tx_wfull: 1;
|
||||
@ -137,7 +137,7 @@ typedef volatile struct {
|
||||
} conf_chan;
|
||||
} i2s_struct_t;
|
||||
|
||||
extern volatile i2s_struct_t I2S;
|
||||
extern volatile i2s_struct_t I2S0;
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
@ -340,7 +340,7 @@ typedef struct {
|
||||
uint32_t host_conf_w5;
|
||||
} slc_struct_t;
|
||||
|
||||
extern volatile slc_struct_t SLC;
|
||||
extern volatile slc_struct_t SLC0;
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
Reference in New Issue
Block a user