Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
visus
/
teensy-core-4.1
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
Fix delay when yield longer than 1ms
teensy4-core
PaulStoffregen
hace 9 años
padre
2765de0801
commit
59a7b221fa
Se han
modificado 1 ficheros
con
1 adiciones
y
1 borrados
Dividir vista
Mostrar estadísticas de diff
+1
-1
teensy3/pins_teensy.c
+ 1
- 1
teensy3/pins_teensy.c
Ver fichero
@@ -1100,7 +1100,7 @@ void delay(uint32_t ms)
if (ms > 0) {
while (1) {
if
((micros() - start) >= 1000) {
while
((micros() - start) >= 1000) {
ms--;
if (ms == 0) return;
start += 1000;
Escribir
Vista previa
Cargando…
Cancelar
Guardar