sheaivey / rx5808-pro-diversity

DIY project to create your own 5.8ghz FPV diversity basestation - based off the rx5808 receiver module. Project includes basic Arduino Nano implementation to advanced custom PCB board and introduction to digital switches 4066 chip.
http://www.laforgefpv.com
MIT License
608 stars 260 forks source link

Use fast horiz/vert line drawing functions #103

Closed Knifa closed 7 years ago

Knifa commented 7 years ago

Adafruit provides a bunch of functions for drawing straight (horizontal/vertical) lines quickly vs. the normal line function. This PR changes all the line draws to use them.

Not sure of the exact speed up this provides but drawLine(...) does it pixel by pixel whereas these do it in blocks.

sheaivey commented 7 years ago

Looks good.