-
Notifications
You must be signed in to change notification settings - Fork 323
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
Arduino Giga Problem #111
Comments
Full Error List is here : C:\Users\softw\OneDrive\Documents\Arduino\libraries\SoftwareSerial\SoftwareSerial.cpp:362:2: error: #error This version of SoftwareSerial supports only 20, 16 and 8MHz processors exit status 1 Compilation error: exit status 1 |
Hello, I saw that you had found a solution to connect and exchange values between a Nextion display and a GIGA R1 Wifi arduin. Would it be possible to have a short explanation of how it works? Thank you in advance. |
Hi @Canttax , Yes, I solved the problem. No one typed anything or advised a solution. After I wrote this help message, I found the solution. First of all, just use UART communication ports. There are 4 couples of UART port. (You can find ports and explanations on original documents. Please check Arduino Giga webpage.) For your second question, no. I don't use any library. I just used message sending / reading on UART. For clue, don't forget EOF endings 3 times on Serial2.print. (ie : Serial2.print("0x00");Serial2.print("0x00");Serial2.print("0x00");) I could not share any codes because I used this for a customer project. Good luck 👍🏻 |
Hi All,
Hi all, we try to develop a project by using Arduino Giga R1 WiFi. According to our project, we needed to add a screen Nextion (NX8048P050-011). According to tutorials, we have some options for this as using Nextion.h and just SoftwareSerial.h. Our problem is while we download and include your library, we have an error like this : #error This version of SoftwareSerial supports only 20, 16 and 8MHz processors
How can we solve this problem ? Or you can advice another solution and/or library ?
The text was updated successfully, but these errors were encountered: