/hal_espressif-3.6.0/components/soc/esp32s3/include/soc/ |
D | soc_ulp.h | 32 #define READ_RTC_REG(rtc_reg, low_bit, bit_width) \ argument 33 REG_RD (((rtc_reg) - DR_REG_RTCCNTL_BASE) / 4), ((low_bit) + (bit_width) - 1), (low_bit) 36 #define WRITE_RTC_REG(rtc_reg, low_bit, bit_width, value) \ argument 37 …REG_WR (((rtc_reg) - DR_REG_RTCCNTL_BASE) / 4), ((low_bit) + (bit_width) - 1), (low_bit), ((value)…
|
/hal_espressif-3.6.0/components/soc/esp32s2/include/soc/ |
D | soc_ulp.h | 32 #define READ_RTC_REG(rtc_reg, low_bit, bit_width) \ argument 33 REG_RD (((rtc_reg) - DR_REG_RTCCNTL_BASE) / 4), ((low_bit) + (bit_width) - 1), (low_bit) 36 #define WRITE_RTC_REG(rtc_reg, low_bit, bit_width, value) \ argument 37 …REG_WR (((rtc_reg) - DR_REG_RTCCNTL_BASE) / 4), ((low_bit) + (bit_width) - 1), (low_bit), ((value)…
|
/hal_espressif-3.6.0/components/soc/esp32/include/soc/ |
D | soc_ulp.h | 32 #define READ_RTC_REG(rtc_reg, low_bit, bit_width) \ argument 33 REG_RD (((rtc_reg) - DR_REG_RTCCNTL_BASE) / 4), ((low_bit) + (bit_width) - 1), (low_bit) 36 #define WRITE_RTC_REG(rtc_reg, low_bit, bit_width, value) \ argument 37 …REG_WR (((rtc_reg) - DR_REG_RTCCNTL_BASE) / 4), ((low_bit) + (bit_width) - 1), (low_bit), ((value)…
|
/hal_espressif-3.6.0/components/ulp/include/esp32/ |
D | ulp.h | 347 #define I_WR_REG(reg, low_bit, high_bit, val) {.wr_reg = {\ argument 351 .low = low_bit, \ 361 #define I_RD_REG(reg, low_bit, high_bit) {.rd_reg = {\ argument 365 .low = low_bit, \ 1018 #define I_I2C_RW(sub_addr, val, low_bit, high_bit, slave_sel, rw_bit) { .i2c = {\ argument 1021 .low_bits = low_bit, \
|
/hal_espressif-3.6.0/components/ulp/include/esp32s3/ |
D | ulp.h | 314 #define I_WR_REG(reg, low_bit, high_bit, val) {.wr_reg = {\ argument 318 .low = low_bit, \ 328 #define I_RD_REG(reg, low_bit, high_bit) {.rd_reg = {\ argument 332 .low = low_bit, \
|
/hal_espressif-3.6.0/components/ulp/include/esp32s2/ |
D | ulp.h | 313 #define I_WR_REG(reg, low_bit, high_bit, val) {.wr_reg = {\ argument 317 .low = low_bit, \ 327 #define I_RD_REG(reg, low_bit, high_bit) {.rd_reg = {\ argument 331 .low = low_bit, \
|
/hal_espressif-3.6.0/docs/en/api-guides/ |
D | ulp_instruction_set.rst | 907 READ_RTC_REG(rtc_reg, low_bit, bit_width) 908 Read up to 16 bits from rtc_reg[low_bit + bit_width - 1 : low_bit] into R0. For example:: 925 WRITE_RTC_REG(rtc_reg, low_bit, bit_width, value) 926 …Write immediate value into rtc_reg[low_bit + bit_width - 1 : low_bit], bit_width <= 8. For example…
|
D | ulps2_instruction_set.rst | 1066 READ_RTC_REG(rtc_reg, low_bit, bit_width) 1067 Read up to 16 bits from rtc_reg[low_bit + bit_width - 1 : low_bit] into R0. For example:: 1084 WRITE_RTC_REG(rtc_reg, low_bit, bit_width, value) 1085 …Write immediate value into rtc_reg[low_bit + bit_width - 1 : low_bit], bit_width <= 8. For example…
|