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.

79 lines
1.3KB

  1. #include <unistd.h>
  2. #include <math.h>
  3. #include <stdio.h>
  4. #include <fcntl.h>
  5. #include <termios.h>
  6. #include <sys/time.h>
  7. #include "servo.h"
  8. #include "spi.h"
  9. #include "ik.h"
  10. #include "dynamic_sequencer.h"
  11. void ik_to_servos(bot *);
  12. int get_time();
  13. static bot idle_position = {
  14. {0,0,0}, // world position
  15. {0,0,0}, // world orientation
  16. {0,0,-20}, // body position
  17. {0,0,0}, // body orientation
  18. { // leg positions
  19. {{ 166, 110, 0},}, // leg 0
  20. {{ 0, 160, 0},}, // leg 1
  21. {{-166, 110, 0},}, // ...
  22. {{-166,-110, 0},},
  23. {{ 0,-160, 0},},
  24. {{ 166,-110, 0},}
  25. }
  26. };
  27. int
  28. main(int argc, char **argv) {
  29. struct termios t;
  30. int flags_stdio;
  31. vector3d startup_vector={0,0,-100};
  32. vector3d v;
  33. sequencer_walk_parameters wp;
  34. int quit=0;
  35. int frame=0;
  36. int t_frame_start, t_frame_end;
  37. char c;
  38. int rotmove;
  39. load_calibration("/etc/calibration.bin");
  40. spi_open(0,33000000);
  41. ik(&idle_position);
  42. ik_to_servos(&idle_position);
  43. spi_close();
  44. return 0;
  45. }
  46. void
  47. ik_to_servos(bot *b) {
  48. int i,j;
  49. for(i=0;i<NUM_LEGS;i++) {
  50. for(j=0;j<3;j++) {
  51. if(!isnan(b->leg[i].ik_angle[j])) {
  52. servo_pwm[i*3+j]=b->leg[i].ik_angle[j]*8.5*1800.0/M_PI+servo_offsets[i*3+j];
  53. }
  54. }
  55. }
  56. spi_update_servos();
  57. }