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.

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. }