diff --git a/components/asic/bm1370.c b/components/asic/bm1370.c index 00838aa74..bdf2c1a7f 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(25)); + vTaskDelay(pdMS_TO_TICKS(10)); } }