Naze32 clone with Frysky receiver
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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