Update misc.c

This commit is contained in:
rehius 2023-05-22 10:28:40 +00:00 committed by GitHub
parent 21dcad79d5
commit 559d480abc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

9
misc.c
View file

@ -73,8 +73,11 @@ void halt_with_error(uint32_t err, uint32_t bits)
pio_set_sm_mask_enabled(pio1, 0xF, false);
set_sys_clock_khz(48000, true);
vreg_set_voltage(VREG_VOLTAGE_0_95);
put_pixel(0);
sleep_ms(PAUSE_BEFORE);
if (bits != 1)
{
put_pixel(0);
sleep_ms(PAUSE_BEFORE);
}
for(int j = 0; j < CODE_REPEATS; j++)
{
for(int i = 0; i < bits; i++)
@ -149,4 +152,4 @@ void reset_cpu() {
gpio_deinit(PIN_RST);
gpio_disable_pulls(PIN_RST);
gpio_disable_input_output(PIN_RST);
}
}