-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Which SoftwareSerial is intended to be used? #20
Comments
Here is what I did to make it work: #if defined(ARDUINO_ARCH_SAMD) || defined(ARDUINO_ARCH_ESP32) || defined(ESP32) and it mt_serial.cpp #ifdef MT_SOFTWARESERIAL_SUPPORTED void mt_serial_init(int8_t rx_pin, int8_t tx_pin, uint32_t baud) { mt_serial_mode = true; |
Also was experiencing this issue. This did not work for me, and instead resulted in a cascade of errors:
My search for a fix continues 🚢 |
I also cannot compile this. I am getting this error - Is this because the nano doesn't have enough RAM? /usr/lib/gcc/avr/7.3.0/../../../avr/bin/ld: address 0x800c6f of /tmp/arduino_build_945720/protosendrec.ino.elf section exit status 1 |
I cannot compile this code because it is asking for SoftwareSerial, and I do not know which one you have chosen to use. Or should I set the following flag: MT_SOFTWARESERIAL_SUPPORTED to turn it off, since I am on an ESP32?
The text was updated successfully, but these errors were encountered: