Explorar el Código

clock halved - halve blink wait count

teensy4-core
Defragster hace 5 años
padre
commit
bf3329ab08
Ninguna cuenta vinculada a la dirección de correo electrónico del committer
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      teensy4/startup.c

+ 2
- 2
teensy4/startup.c Ver fichero

@@ -353,10 +353,10 @@ void HardFault_HandlerC(unsigned int *hardfault_args) {
{
GPIO2_DR_SET = (1 << 3); //digitalWrite(13, HIGH);
// digitalWrite(13, HIGH);
for (nn = 0; nn < 2000000; nn++) ;
for (nn = 0; nn < 2000000/2; nn++) ;
GPIO2_DR_CLEAR = (1 << 3); //digitalWrite(13, LOW);
// digitalWrite(13, LOW);
for (nn = 0; nn < 18000000; nn++) ;
for (nn = 0; nn < 18000000/2; nn++) ;
}
}


Cargando…
Cancelar
Guardar