Replies: 1 comment 2 replies
-
Your board is a single core version of the ESP32. Our code is designed for typical, dual-core ESP32s. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello!
I'm having trouble running your miner on a board ESP32-C3-32S-2M.
At first there were problems with the "sha/sha_parallel_engine.h" library, but they were relatively easily solved by updating the Arduino base. The sketch now compiles without errors. But during operation, the board constantly reboots with a message
Accordingly, the board receives fewer tasks. I think this is not normal. I tried to edit the code and set
WDT_TIMEOUT 10800
- this solves the problem and the board stops rebooting, but is this code change correct? Also changingesp_task_wdt_init(WDT_TIMEOUT, true)
to esp_task_wdt_init(WDT_TIMEOUT, false) solves the problem. But I'm also not sure if it's correct. Tell me how to correct your code for normal work with my board?Beta Was this translation helpful? Give feedback.
All reactions