-
Hi folks - I'm working on a university project where the plan is to guide a glider to a landing zone using visual guidance only (no gps). We have a Matek F411-wing for control. What I am hoping to do is have the F411 keep the plane stable while a raspberry pi works out the relative co-ordinates and flight path to the targeted landing point. The landing point will be a big "fiducial marker" (like a simple QR code). My question is - could I grab some thoughts about the easiest way to send control inputs into the F411? My first thought was for the raspberry pi to create GPS-type data based on where it thinks it is, and just pretend to be a GPS sensor. Another way might be to have the raspberry pi pretend to be an RC receiver and send in commands up/down/left/right commands. All thoughts appreciated. Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 5 replies
-
... just to clarify, the raspberry pi is onboard the glider along with the F411 |
Beta Was this translation helpful? Give feedback.
-
Following up my own answer - NMEA sentences from raspberry pi over serial to UART1 looks like it might be feasible. |
Beta Was this translation helpful? Give feedback.
-
Faking a GPS would be doable, but also super difficult. You can send RC channels to the Flight Controller over any supported serial protocol (like SBUS). But it would be easier if you do it over MSP, because with a single serial connection you can send RC channel values and fetch flight information from INAV... And it would keep one free UART for a real receiver. |
Beta Was this translation helpful? Give feedback.
-
Thank you very much to @jasonleekennedy and @danarrib for their input. I am marking this as answered. |
Beta Was this translation helpful? Give feedback.
Thank you very much to @jasonleekennedy and @danarrib for their input. I am marking this as answered.