We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PHY init data is only 128 bytes so using an entire sector is not optimal. We could refactor to include the data as a BLOB in each ROM.
esp-idf does exactly this - see https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/partition-tables.html, although the CONFIG_ESP_PHY_INIT_DATA_IN_PARTITION can be enabled to use a partition.
CONFIG_ESP_PHY_INIT_DATA_IN_PARTITION
Advantages:
phy_init
Disadvantages:
The text was updated successfully, but these errors were encountered:
See also https://sming.readthedocs.io/en/latest/information/tips-n-tricks.html#reading-vcc-on-esp8266 which would be affected.
Sorry, something went wrong.
No branches or pull requests
PHY init data is only 128 bytes so using an entire sector is not optimal. We could refactor to include the data as a BLOB in each ROM.
esp-idf does exactly this - see https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/partition-tables.html,
although the
CONFIG_ESP_PHY_INIT_DATA_IN_PARTITION
can be enabled to use a partition.Advantages:
phy_init
Disadvantages:
The text was updated successfully, but these errors were encountered: