You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in cores/arduino/syscalls_sam3.c, the implementation of _exit() includes:
extern void _exit( int status )
{
printf( "Exiting with status %d.\n", status ) ;
for ( ; ; ) ;
}
This causes something like 12k of printf and stdio code to be included in every sketch, and probably doesn't do anything useful since there is no guarantee that the UART has been initialized at all (even assuming that printf() ends up using the skeleton _write() code that is also there...)
The text was updated successfully, but these errors were encountered:
in cores/arduino/syscalls_sam3.c, the implementation of _exit() includes:
This causes something like 12k of printf and stdio code to be included in every sketch, and probably doesn't do anything useful since there is no guarantee that the UART has been initialized at all (even assuming that printf() ends up using the skeleton _write() code that is also there...)
The text was updated successfully, but these errors were encountered: