Page 1 of 1

idf v4 + eclipse + plugin -> baudrate setting

Posted: Mon May 04, 2020 8:17 pm
by schmalzz
Hi,

i'm going to make me familiar with esp32 and eclipse as my favourite IDE. I have tried many examples and everything works good thus far. One unusual thing i have noticed: In the first experiments was the baud rate always 115200 bits, but now it has changed:

Code: Select all

esptool.py -p COM4 -b 460800 --before default_reset --after hard_reset write_flash --flash_mode dio --flash_freq 40m --flash_size 2MB 0x8000 partition_table/partition-table.bin 0x1000 bootloader/bootloader.bin 0x10000 app-template.bin
Sometimes this leads to communication problems with the board: "...communication error ....". With that situation i have to repeat that process again (also twice oder threetimes...).

Where can i find the appropriate settings for the baud rate? I can't see this anyway :idea:

Thanks!

Re: idf v4 + eclipse + plugin -> baudrate setting

Posted: Tue May 12, 2020 7:05 am
by ESP_kondalkolipaka
Hi @schmalaz

You can modify the default baud rate using the launch configuration dialog. Check this here https://github.com/espressif/idf-eclips ... figuration

For example, here is the attachment for your reference.
Screenshot 2020-05-12 at 12.33.11 PM.png
Screenshot 2020-05-12 at 12.33.11 PM.png (183.12 KiB) Viewed 5229 times

I hope this helps, but please let me know if you need anything else

Re: idf v4 + eclipse + plugin -> baudrate setting

Posted: Sat May 23, 2020 2:08 pm
by schmalzz
Hi kondalkolipaka,

just saw and tested -> works!! :)

Thank you very much !