Explorar el Código

Fix digitalRead() while pin is output mode

teensy4-core
PaulStoffregen hace 6 años
padre
commit
66b0de6c15
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      teensy4/digital.c

+ 1
- 1
teensy4/digital.c Ver fichero

@@ -116,6 +116,6 @@ void pinMode(uint8_t pin, uint8_t mode)
*(p->pad) = IOMUXC_PAD_HYS;
}
}
*(p->mux) = 5;
*(p->mux) = 5 | 0x10;
}


Cargando…
Cancelar
Guardar