Skip to content

Commit

Permalink
decrease ramp up
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Wilson committed Sep 23, 2024
1 parent 4cd50c9 commit 0b0881d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/asic/bm1370.c
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
}

Expand Down

0 comments on commit 0b0881d

Please sign in to comment.