BrushlessPower / SBUS2-Telemetry

Arduino Library for SBUS and SBUS2 with Futaba Telemetry
GNU General Public License v3.0
84 stars 23 forks source link

[Feature Request] Compatible with Teensy? #28

Open paulopilot opened 3 years ago

paulopilot commented 3 years ago

Does Is there any planning for compatibility with Teensy?

BrushlessPower commented 3 years ago

short Answer: There are no Plans for Teensy.

long Answer: If someone would present some more or less working code for Teensy, i could test it and make it working. But i just have a Teensy 3.2 for testing. And i think you can't use the Arduino functions. You will have to code "Bare Metal". And I'am not sure if the different Teensy Versions are compatible to every version.

But in General it should be possible. Teensy have inverted hardware uart and there are some librarys for SBUS. First Step would be to use Interrupt driven Serial for receiving SBUS Packets All existing SBUS Librarys use Serial.available() -> And this will not work.