-
Notifications
You must be signed in to change notification settings - Fork 140
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
Frsky D8 SoftwareSerial #69
Comments
It would definitely take some modifications since the library is built around the HardwareSerial interface. SBUS is at a baud rate of 100000, so also not sure if it's feasible to use software serial from a computing standpoint. Maybe it would be better to use the HardwareSerial for SBUS and the software serial to output debug info? |
Thank you for the reply. That is a very good suggestion, and I have also seen it in another SBUS library. But I have also seen SoftwareSerial used for SBUS. If it can be done, it would be great for developing extra functionalities on the bench. |
I am exploring possibilities of using AltSoftSerial library, which apparently can do 100000 baud rate. Could you give me an indication on how to modify the code? Do I have to implement it in the sbus.h file in /src ? |
You'd have to change the HardwareSerial object to the software serial object. It's declared in sbus.h and the methods are used in sbus.cpp. |
I will try, but my coding abilities are pretty limited... |
Hello, thank you for your hard work.
I am trying to set up a D8 protocol receiver with a NANO.
I would like to use SoftwareSerial, so as to debug via USB.
is this possible?
thank you
The text was updated successfully, but these errors were encountered: