Skip to content

Commit

Permalink
fix crashes on ESP32-S3
Browse files Browse the repository at this point in the history
  • Loading branch information
corrados committed Aug 12, 2024
1 parent 067e09a commit c9d51d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hardware.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ void Edrumulus_hardware::setup(const int conf_Fs,

// create task pinned to core 0 for creating the timer interrupt so that the
// timer function is not running in our working core 1
xTaskCreatePinnedToCore(start_timer_core0_task, "start_timer_core0_task", 1000, this, 1, NULL, 0);
xTaskCreatePinnedToCore(start_timer_core0_task, "start_timer_core0_task", 1200, this, 1, NULL, 0);
}

void Edrumulus_hardware::setup_timer()
Expand Down

0 comments on commit c9d51d5

Please sign in to comment.