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
add nullptr check
teensy4-core
Frank
hace 6 años
padre
e23d64999b
commit
1badfa2ccd
Ninguna cuenta vinculada a la dirección de correo electrónico del committer
Se han
modificado 1 ficheros
con
1 adiciones
y
0 borrados
Dividir vista
Mostrar estadísticas de diff
+1
-0
teensy3/Print.cpp
+ 1
- 0
teensy3/Print.cpp
Ver fichero
@@ -39,6 +39,7 @@
size_t Print::write(const uint8_t *buffer, size_t size)
{
if (buffer == nullptr) return 0;
size_t count = 0;
while (size--) count += write(*buffer++);
return count;
Escribir
Vista previa
Cargando…
Cancelar
Guardar