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

11 行
192B

  1. #include <servo.h>
  2. #include "spi.h"
  3. int
  4. main(int argc, char **argv) {
  5. int i;
  6. spi_open(0,33000000);
  7. for(i=0;i<NUM_SERVOS;i++) servo_pwm[i]=0;
  8. spi_update_servos();
  9. spi_close();
  10. }