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
The following code when implemented in esp-idf works fine but doesn't in CPY.
esp-idf
CPY
Code Reference: TinyUF2 docs.
(void) esp_reset_reason(); esp_reset_reason_set_hint(0x11F2);
I am working on adding reset-to-uf2 bootloader from cpy.
esp_reset_reason_set_hint()
RTC_RESET_CAUSE_REG
esp_restart()
sdkconfig
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The following code when implemented in
esp-idf
works fine but doesn't inCPY
.Code Reference: TinyUF2 docs.
I am working on adding reset-to-uf2 bootloader from cpy.
esp_reset_reason_set_hint()
setsRTC_RESET_CAUSE_REG
which is used by TinyUF2 to determine if reset-to-uf2 was requested.RTC_RESET_CAUSE_REG
is successfully set and is persistent afteresp_restart()
is called.sdkconfig
for both cpy and idf are similar.The text was updated successfully, but these errors were encountered: