yangdx2022

Results 3 comments of yangdx2022

this is ulp source ` #include #include "ulp_riscv.h" #include "ulp_riscv_utils.h" #include "ulp_riscv_i2c_ulp_core.h" uint32_t running_cnt = 0; uint8_t data[2]; int main (void) { running_cnt += 1; memset(data, 0x0f, 2); ulp_riscv_i2c_master_set_slave_addr(0x32); ulp_riscv_i2c_master_set_slave_reg_addr(0x0f);...

> Hello @yangdx2022, Thank you for reporting this issue to us. > > I tried to reproduce the problem at my end but I wasn't able to. I had to...

> 您好@yangdx2022,感谢您向我们报告此问题。 > > 我试图在最后重现问题,但我无法做到。我必须进行一些更新才能使代码运行,但我保留了您共享的内容的一般结构。正如预期的那样,它正在为我工作。以下是我所做的更改列表 - > > * 为了方便起见,我将 GPIO 唤醒引脚切换到 GPIO#0,因为在 esp32s3-devkitc 板上有一个连接到 GPIO#0 的按钮。 > * 我没有使用地址0x32的 I2C 传感器,而是使用 BMP180(地址 0x77)并在0xD0处查询芯片 ID 寄存器。这将返回0x55的值,该值符合预期。 > > 通过上述更改,我可以运行代码,我没有看到主 CPU...