A tool for generating SVD files for the ESP32, ESP32-C3, and ESP8266. Uses esp-idf for the ESP32/ESP32-C3 and ESP8266_RTOS_SDK for the ESP8266.
This tool is required because official SVD files are not available for these devices at this time. The generated SVD files are used for generating the esp32 and esp8266 peripheral access crates using svd2rust.
Clone the repository, esp-idf, and ESP8266_RTOS_SDK. Move into the directory and build the application.
$ git clone --recursive https://github.com/MabezDev/idf2svd
$ cd idf2svd/ && cargo build
$ cargo run esp32
$ cargo run esp32c3
This will create either esp32.svd
or esp32c3.svd
in the base project directory.
It is necessary to have java
, make
, qpdf
, and wget
installed on your system and available on PATH
. These can generally be installed via your operating system's package manager.
$ # `make` only needs to be run once upon checking out the repository. It
$ # takes care of downloading some additional tools and resources for
$ # generating the ESP8266 SVD.
$ make
$ cargo run esp8266
This will create the file esp8266.svd
in the base project directory.
Licensed under either of:
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.