Search found 6 matches
- Mon Feb 25, 2019 2:05 pm
- Forum: ESP32 Arduino
- Topic: Any software serial library for ESP32 can be used to receive data?
- Replies: 6
- Views: 15440
Re: Any software serial library for ESP32 can be used to receive data?
Thanks. Timing is very critical indeed for softserial. I have not seen any software serial work correct on 115K on any platform.(Uno, ESP8266, mega2560, ESP32 etc). Maybe only for sending. All is depending on how fast the code is working, the system is handling interrupts and the system load. Perso...
- Mon Feb 25, 2019 6:52 am
- Forum: ESP32 Arduino
- Topic: Any software serial library for ESP32 can be used to receive data?
- Replies: 6
- Views: 15440
Re: Any software serial library for ESP32 can be used to receive data?
By modifying the wait time, there has no more receiving issue in your library, I have tested with continue data received for over 1 hour (receiving 50 bytes/sec). But it has problem in sending data, the data is corrupted. However, if I fallback to jdollar's version, it cannot receive data, but there...
- Mon Feb 25, 2019 3:52 am
- Forum: ESP32 Arduino
- Topic: Any software serial library for ESP32 can be used to receive data?
- Replies: 6
- Views: 15440
Re: Any software serial library for ESP32 can be used to receive data?
Try this one https://github.com/paulvha/ESP32 it is based on the Jdollar library but it needed a large number of fixes before it worked. Make sure to read the readme! I just test your library, and it seems that your change on rxRead cause the issue in 115200bps. According to your comment, you have ...
- Mon Feb 25, 2019 1:43 am
- Forum: ESP32 Arduino
- Topic: Any software serial library for ESP32 can be used to receive data?
- Replies: 6
- Views: 15440
Re: Any software serial library for ESP32 can be used to receive data?
Thanks a lot. However, according to the README.md, "It now works OK-is, most of the time. But do not expect it to work above 56K (stretch already !!)", it seems the library is still not stable, and only work for 56K. But I need to connect the device in 115200. I will study how it fix the issue in jd...
- Sat Feb 23, 2019 6:37 pm
- Forum: ESP32 Arduino
- Topic: Any software serial library for ESP32 can be used to receive data?
- Replies: 6
- Views: 15440
Any software serial library for ESP32 can be used to receive data?
I have a project which need to communicate with 5+ serial device, some of them are connected using softwareserial in signal wire mode with esp8266. I'd like to upgrade the project to use esp32 as it can provide more GPIOs, but unfortunately, those softwareserial for esp32 using Arudino framework in ...
- Fri Aug 03, 2018 2:52 am
- Forum: General Discussion
- Topic: Where can I found the openOCD interface file for ESP-Prog?
- Replies: 1
- Views: 5839
Where can I found the openOCD interface file for ESP-Prog?
I just bought the ESP-Prog for debugging the ESP32 sketch. I have follow the step here to config for JTAG Debugging ( http://esp-idf.readthedocs.io/en/latest/api-guides/jtag-debugging/index.html# ) When I go to the step to Run OpenOCD, it need to provide the interface file, I can find some interface...