Hi all,
I have a question regarding my ESP32S3 FSM ULP program. This one here works, when I periodically read out address 130 in the Arduino code I can see the counter increasing
const ulp_insn_t ulp_prog[] = {
M_LABEL(0),
I_MOVI(R1, 130),
I_LD(R0, R1, 0),
I_ADDI(R0, R0, 1),
I_ST(R0, R1, 0 ...