Naze32 clone with Frysky receiver
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

main.c 162B

12345678910111213141516
  1. /*
  2. * main() method
  3. */
  4. #include "spi.h"
  5. #include "timer.h"
  6. #include "rx.h"
  7. void main(void) {
  8. timerInit();
  9. spiInit();
  10. rxInit();
  11. for(;;) { }
  12. }