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.

cppm.h 232B

12345678910111213141516171819
  1. /*
  2. * Combined-PPM signal generator
  3. */
  4. #ifndef _CPPM_H
  5. #define _CPPM_H
  6. #include <stdint.h>
  7. #define CPPM_PORT PORTB
  8. #define CPPM_DDR DDRB
  9. #define CPPM_PIN PB5
  10. extern volatile uint16_t cppmData[8];
  11. void cppmInit(void);
  12. #endif