From a94bf8e95ea9256546543c9e7b87f37812a87359 Mon Sep 17 00:00:00 2001 From: Benjamin Wilson Date: Sat, 21 Sep 2024 15:12:22 -0400 Subject: [PATCH] increase ramp_up delay --- components/asic/bm1370.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/asic/bm1370.c b/components/asic/bm1370.c index bdf2c1a7..00838aa7 100644 --- a/components/asic/bm1370.c +++ b/components/asic/bm1370.c @@ -191,7 +191,7 @@ static void do_frequency_ramp_up(float target_frequency) { float next_step = fminf(step, target_frequency - current); current += next_step; BM1370_send_hash_frequency(-1, current, 0.001); - vTaskDelay(pdMS_TO_TICKS(10)); + vTaskDelay(pdMS_TO_TICKS(25)); } }