Naze32 clone with Frysky receiver
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rx.h 120B

123456789101112
  1. /*
  2. * FrSky RX 2-way protocol
  3. */
  4. #ifndef _RX_H
  5. #define _RX_H
  6. void rxInit(void);
  7. void rxReceivePacket(void);
  8. #endif