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
Out of the box, I can't use rulos' gpio_make_output to get output out of pins 12, 13, 14 on esp32. That's evidently because they're configured to be attached to the JTAG unit at boot:
Should we do this for every call to gpio_make_output? Should we use that macro layer, or dig in a layer? The current code in esp32/core/hardware.h doesn't use similar-looking macros to configure the output enable.
The text was updated successfully, but these errors were encountered:
Out of the box, I can't use rulos'
gpio_make_output
to get output out of pins 12, 13, 14 on esp32. That's evidently because they're configured to be attached to the JTAG unit at boot:https://www.esp32.com/viewtopic.php?t=2687
This extra call solved the problem for me:
Should we do this for every call to
gpio_make_output
? Should we use that macro layer, or dig in a layer? The current code inesp32/core/hardware.h
doesn't use similar-looking macros to configure the output enable.The text was updated successfully, but these errors were encountered: