Page 2 of 2

Re: Arduino IDe upload verbose parameters

Posted: Fri May 08, 2020 11:17 am
by stevestrong
Update: my previous try with setbuf was combined with fprintf(stderr, ....)

Now I tried setbuf with printf and it seems to work!

I inserted

Code: Select all

setbuf(stdout, NULL);
before the first printf and it did the job.

Thanks @stas2z !

Re: Arduino IDe upload verbose parameters

Posted: Fri May 08, 2020 11:22 am
by stas2z
Nice, ive had similar issue with (its funny but) my own uploader for my custom bl, but as im using vscode i was not sure it will work with arduino ide also