We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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: 1.8.5 (Windows 10), Board: "Arduino Nano, ATmega328"
F:\Downloads\nRF24-Esk8-Remote-master (1)\nRF24-Esk8-Remote-master\receiver\receiver.ino: In function 'void setup()':
receiver:29: error: 'SERIALIO' was not declared in this scope
SERIALIO.begin(115200);
^
exit status 1 'SERIALIO' was not declared in this scope
This report would have more information with "Show verbose output during compilation" option enabled in File -> Preferences.
The text was updated successfully, but these errors were encountered:
You can solve this issue by defining SERIALIO (solved by Deakbannok on esk8 forum). Change your code to:
#define SERIALIO Serial void setup(){ SetSerialPort(&SERIALIO); SERIALIO.begin(115200);
Or you can use development branch instead of master branch that doesn't have this issue.
Sorry, something went wrong.
No branches or pull requests
Arduino: 1.8.5 (Windows 10), Board: "Arduino Nano, ATmega328"
F:\Downloads\nRF24-Esk8-Remote-master (1)\nRF24-Esk8-Remote-master\receiver\receiver.ino: In function 'void setup()':
receiver:29: error: 'SERIALIO' was not declared in this scope
SERIALIO.begin(115200);
^
exit status 1
'SERIALIO' was not declared in this scope
This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.
The text was updated successfully, but these errors were encountered: