Explorar el Código

Disable printf format warnings - too pedantic

main
PaulStoffregen hace 4 años
padre
commit
ba177b0d22
Se han modificado 2 ficheros con 6 adiciones y 2 borrados
  1. +3
    -1
      teensy3/Print.h
  2. +3
    -1
      teensy4/Print.h

+ 3
- 1
teensy3/Print.h Ver fichero

@@ -102,7 +102,9 @@ class Print
size_t println(const Printable &obj) { return obj.printTo(*this) + println(); }
int getWriteError() { return write_error; }
void clearWriteError() { setWriteError(0); }
int printf(const char *format, ...) __attribute__ ((format (printf, 2, 3)));
// format warnings are too pedantic - disable until newer toolchain offers better...
// https://forum.pjrc.com/threads/62473?p=256873&viewfull=1#post256873
int printf(const char *format, ...) /*__attribute__ ((format (printf, 2, 3)))*/;
int printf(const __FlashStringHelper *format, ...);
protected:
void setWriteError(int err = 1) { write_error = err; }

+ 3
- 1
teensy4/Print.h Ver fichero

@@ -102,7 +102,9 @@ class Print
size_t println(const Printable &obj) { return obj.printTo(*this) + println(); }
int getWriteError() { return write_error; }
void clearWriteError() { setWriteError(0); }
int printf(const char *format, ...) __attribute__ ((format (printf, 2, 3)));
// format warnings are too pedantic - disable until newer toolchain offers better...
// https://forum.pjrc.com/threads/62473?p=256873&viewfull=1#post256873
int printf(const char *format, ...) /*__attribute__ ((format (printf, 2, 3)))*/;
int printf(const __FlashStringHelper *format, ...);
protected:
void setWriteError(int err = 1) { write_error = err; }

Cargando…
Cancelar
Guardar