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
{{ message }}
This repository has been archived by the owner on Nov 26, 2021. It is now read-only.
I got a query from someone about blinking thier onboard LED (which for them was GPIO13). GPIO13 does not default to GPIO function, and has to be changed to function 3 in the IO_MUX. It seems idf2svd doesn't parse this peripheral. I've updated master with some more logging, heres the extra output:
The following files contained no parsable information:
[
"esp-idf/components/soc/esp32/include/soc/wdev_reg.h",
"esp-idf/components/soc/esp32/include/soc/io_mux_reg.h",
"esp-idf/components/soc/esp32/include/soc/nrx_reg.h",
"esp-idf/components/soc/esp32/include/soc/fe_reg.h",
"esp-idf/components/soc/esp32/include/soc/bb_reg.h"
]
io_mux is a pretty crucial peripheral to have, the rest I'm not so sure about. As this doesn't follow the documentation format, we'll likely have to add custom parsing logic for this file.
might do the job, these values come from the list in 4.10 to find the IO_MUX name of pin13, page 59 to get the adress of the register & finally page 71, the MCU_SEL bitfield
The text was updated successfully, but these errors were encountered:
I got a query from someone about blinking thier onboard LED (which for them was GPIO13). GPIO13 does not default to GPIO function, and has to be changed to function 3 in the IO_MUX. It seems idf2svd doesn't parse this peripheral. I've updated master with some more logging, heres the extra output:
io_mux
is a pretty crucial peripheral to have, the rest I'm not so sure about. As this doesn't follow the documentation format, we'll likely have to add custom parsing logic for this file.Edit: FYI, reposting from matrix:
mabez:
might do the job, these values come from the list in 4.10 to find the IO_MUX name of pin13, page 59 to get the adress of the register & finally page 71, the MCU_SEL bitfield
The text was updated successfully, but these errors were encountered: