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 IDE
Arduino Nano 33 IoT
Compatibility Table
With the debug flag enabled. I get the following when calling crsf.begin()
[Serial Receiver | INFO]: Initialising... [Compatibility Table | DEBUG]: Board is Incompatible device incompatible. Incompatible device [Serial Receiver | ERROR]: Devboard is not compatible.
Expected crsf to begin.
Issue can be reproduced with the channels example.
Attempting to log the name that it is comparing against shows the name as empty.
bool CompatibilityTable::isDevboardCompatible(const char *name) { // Debug. // Serial.print("[Compatibility Table | DEBUG]: Board is "); if (strcmp(name, deviceNames[DEVBOARD_IS_INCOMPATIBLE]) == 0) { // Debug. Serial.println("incompatible."); Serial.println(name); return false; } else { // Debug. // Serial.println("compatible."); return true; } // return strcmp(name, deviceNames[DEVBOARD_IS_INCOMPATIBLE]) != 0 ? true : false; }
The text was updated successfully, but these errors were encountered:
Added below to compatibility table and got past initialization.
#elif USB_PID == 0x8057 device.type.devboard = DEVBOARD_ARDUINO_NANO_33_IOT;
Sorry, something went wrong.
ZZ-Cat
Successfully merging a pull request may close this issue.
Is there an existing issue for this bug?
What development environment are you using?
Arduino IDE
What board are you using?
Arduino Nano 33 IoT
What part of CRSF for Arduino is this bug related to?
Compatibility Table
Current behaviour
With the debug flag enabled. I get the following when calling crsf.begin()
Expected behaviour
Expected crsf to begin.
Steps to reproduce
Issue can be reproduced with the channels example.
Additional information
Attempting to log the name that it is comparing against shows the name as empty.
The text was updated successfully, but these errors were encountered: