Naze32 clone with Frysky receiver
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

cppm.cpp 347B

123456789101112131415161718192021222324
  1. /*
  2. * Combined-PPM signal generator
  3. */
  4. #include <stdint.h>
  5. extern "C" {
  6. #include "cppm.h"
  7. #define CHANNELS 8
  8. volatile uint16_t cppmData[CHANNELS] = { 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500 };
  9. void cppmInit(void) {
  10. }
  11. void cppmCopy(uint16_t *data) {
  12. for (int i = 0; i < CHANNELS; i++) {
  13. cppmData[i] = data[i];
  14. }
  15. }
  16. }