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.

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