-
Notifications
You must be signed in to change notification settings - Fork 1k
va_start & va_end are not defined #240
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I think you could simply include stdio.h here: Arduino_Core_STM32/cores/arduino/wiring.h Line 23 in bad5b56
Edit: seems not enough. Anyway, i think solution should be to include properly stdarg.h. |
I've made some test/search
But it seems not directly include in other core, it is present in So I think, I should not add it directly in |
if add my implementaion in wiring_privat.h it doesn't work. P.S. im on vacation in paris until weekend, so i'm not available... |
Hi @Adminius , |
we use in our KONNEKTING Library a Debug Class, that uses this to functions. You can complie a DemoSketch with KDEBUG enabled to test it |
va_start & va_end was not defined To have them defined include wiring_private.h Fix stm32duino#240 Signed-off-by: Frederic Pillon <[email protected]>
Remove workarounf for va_start and va_end not defined See: stm32duino/Arduino_Core_STM32#240 Fix: stm32duino/Arduino_Core_STM32#253 Signed-off-by: Frederic Pillon <[email protected]>
Remove workaround for va_start and va_end not defined Include wiring_private.h See: stm32duino/Arduino_Core_STM32#240 Fix: stm32duino/Arduino_Core_STM32#253 Signed-off-by: Frederic Pillon <[email protected]>
Hi @fpistm Issue can be closed. |
Of course ;) |
Remove workaround for va_start and va_end not defined Include wiring_private.h See: stm32duino/Arduino_Core_STM32#240 Fix: stm32duino/Arduino_Core_STM32#253 Signed-off-by: Frederic Pillon <[email protected]>
va_start & va_end was not defined To have them defined include wiring_private.h Fix stm32duino#240 Signed-off-by: Frederic Pillon <[email protected]>
i'm missing this two functions:
va_start
va_end
i had success with this workaround:
in which file i can make PR? :)
The text was updated successfully, but these errors were encountered: