You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Love what you've done with v4.1.0, and there's so much there now that I'm still digesting it all!
I built the Arduino_RDMSensor example, and from Device Info on my Botex RDM tool I see that there is one sensor (the Sub-Dev count is 0) but it does not give me the option to read the sensor.
Then I put the call to rdm_sensor_definition_add into an if statement with a println, and sure enough that call is returning false.
Is something awry in the example, or in that function?
The text was updated successfully, but these errors were encountered:
The error is coming from the test "sensor_defs[definition->num].num != 0xff", but if I comment that out, the ESP32 keeps resetting with these messages:
Guru Meditation Error: Core 1 panic'ed (Unhandled debug exception).
Debug exception reason: Stack canary watchpoint triggered (loopTask)
In rdm_register_sensor_definition, the first_time_func_called flag is false the first time this is called and so the loop that sets the sensor definition number to unused (sensor_defs[i].num = 0xff;) did not run.
Love what you've done with v4.1.0, and there's so much there now that I'm still digesting it all!
I built the Arduino_RDMSensor example, and from Device Info on my Botex RDM tool I see that there is one sensor (the Sub-Dev count is 0) but it does not give me the option to read the sensor.
Then I put the call to rdm_sensor_definition_add into an if statement with a println, and sure enough that call is returning false.
Is something awry in the example, or in that function?
The text was updated successfully, but these errors were encountered: