Search found 1 match

by ekawahyu
Tue Nov 16, 2021 5:39 pm
Forum: ESP-IDF
Topic: scanf() don't work in idf monitor
Replies: 7
Views: 9119

Re: scanf() don't work in idf monitor

@axel_hpplt Thank you for posting this solution, and I got a fix for you. Instead of using

Code: Select all

scanf("%9s\n", chr);
, remove the trailing

Code: Select all

scanf("%9s", chr);
and you should be good to go.