Fetch HW entropy source from SD

This commit is contained in:
Mark Qvist 2019-02-07 13:16:42 +01:00
parent 85626c40a8
commit 0e24b54657
7 changed files with 249 additions and 22 deletions

View file

@ -52,4 +52,15 @@ void update_led_status(void) {
} else {
led_status_ticks++;
}
}
void LED_indicate_error_crypto(void) {
while (true) {
LED_COM_ON();
LED_STATUS_OFF();
delay_ms(500);
LED_COM_OFF();
LED_STATUS_ON();
delay_ms(500);
}
}