i'm missing this two functions: - `va_start` - `va_end` i had success with this workaround: > `if defined(ARDUINO_ARCH_STM32) > #include <stdarg.h> > #define va_start(v,l) __builtin_va_start(v,l) > #define va_end(v) __builtin_va_end(v) > #endif in which file i can make PR? :)