increasing delay to 100ms again

This commit is contained in:
Benjamin Wilson 2024-09-22 21:18:58 -04:00
parent 0b0881d025
commit 7b5e3ef2eb

View File

@ -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(100));
}
}