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.

66 line
1.4KB

  1. #include <stdint.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5. #include <math.h>
  6. #include <sys/time.h>
  7. #include "ik.h"
  8. #include "servo.h"
  9. #include "spi.h"
  10. int get_time();
  11. static bot idle_position = {
  12. {0,0,-130}, // body position
  13. {0,0,0}, // body rotation
  14. { // leg positions
  15. {{ 166, 110, 0},}, // leg 0
  16. {{ 0, 160, 0},}, // leg 1
  17. {{-166, 110, 0},}, // ...
  18. {{-166,-110, 0},},
  19. {{ 0,-160, 0},},
  20. {{ 166,-110, 0},}
  21. }
  22. };
  23. int
  24. main(int argc, char **argv) {
  25. int i,j;
  26. int start_time;
  27. int end_time;
  28. spi_open(0,0);
  29. ik(&idle_position);
  30. for(i=0;i<24;i++) servo_pwm[i]=0;
  31. for(i=0;i<NUM_LEGS;i++) {
  32. printf("leg %d\n",i);
  33. for(j=0;j<3;j++) {
  34. printf(" a[%d]=%.3f (%.3f deg)\n",j,idle_position.leg[i].ik_angle[j],idle_position.leg[i].ik_angle[j]*180/M_PI);
  35. if(!isnan(idle_position.leg[i].ik_angle[j])) {
  36. getchar();
  37. servo_pwm[i*3+j]=(idle_position.leg[i].ik_angle[j]*8.5*1800/M_PI)+servo_offsets[i*3+j];
  38. spi_update_servos();
  39. }
  40. }
  41. }
  42. printf("benchmarking...");
  43. start_time=get_time();
  44. for(i=0;i<1000;i++) {
  45. ik(&idle_position);
  46. }
  47. end_time=get_time();
  48. printf(" %d\n",end_time-start_time);
  49. spi_close();
  50. }
  51. int
  52. get_time() {
  53. struct timeval t;
  54. gettimeofday(&t,NULL);
  55. return (t.tv_sec*1000000+t.tv_usec);
  56. }