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.

145 lines
3.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,-30}, // 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. load_calibration("/etc/calibration.bin");
  39. spi_open(0,33000000);
  40. tcgetattr(0,&t);
  41. t.c_lflag&=~(ICANON|ECHO);
  42. tcsetattr(0,TCSANOW,&t);
  43. flags_stdio=fcntl(0, F_GETFL,0);
  44. flags_stdio|=O_NONBLOCK;
  45. fcntl(0, F_SETFL,flags_stdio);
  46. sequencer_init();
  47. sequencer_move_body(0,100,&startup_vector);
  48. wp.step_direction.x=0;
  49. wp.step_direction.y=0;
  50. wp.step_direction.z=0;
  51. wp.step_rotation=0;
  52. wp.step_duration=25;
  53. wp.step_height=20;
  54. sequencer_walk(&wp);
  55. while(!quit) {
  56. if(read(0,&c,1)==1) {
  57. switch(c) {
  58. case 27:
  59. quit=1;
  60. break;
  61. case 'w': wp.step_direction.x+=5; break;
  62. case 's': wp.step_direction.x-=5; break;
  63. case 'a': wp.step_direction.y+=5; break;
  64. case 'd': wp.step_direction.y-=5; break;
  65. case 'q': wp.step_rotation-=1.0*M_PI/180.0; break;
  66. case 'e': wp.step_rotation+=1.0*M_PI/180.0; break;
  67. case 'x': wp.step_direction.x=0; wp.step_direction.y=0; wp.step_rotation=0; break;
  68. case 'r': v.x=0; v.y=0; v.z=-10; sequencer_move_body(0,10,&v); break;
  69. case 'f': v.x=0; v.y=0; v.z=10; sequencer_move_body(0,10,&v); break;
  70. }
  71. printf("x: %f y: %f h: %f d: %i rot: %f\n",wp.step_direction.x, wp.step_direction.y, wp.step_height, wp.step_duration, wp.step_rotation);
  72. }
  73. t_frame_start=get_time();
  74. sequencer_run_frame(&idle_position);
  75. ik(&idle_position);
  76. t_frame_end=get_time();
  77. if(t_frame_end-t_frame_start>20000) {
  78. printf("frame %d slack %d\n",frame,t_frame_end-t_frame_start);
  79. }
  80. while(t_frame_end<t_frame_start+20000) t_frame_end=get_time();
  81. ik_to_servos(&idle_position);
  82. frame++;
  83. }
  84. spi_close();
  85. flags_stdio=fcntl(0, F_GETFL,0); flags_stdio&=~(O_NONBLOCK); fcntl(0,
  86. F_SETFL,flags_stdio);
  87. tcgetattr(0,&t);
  88. t.c_lflag|=(ICANON|ECHO|ECHOE|ISIG);
  89. tcsetattr(0,TCSANOW,&t);
  90. return 0;
  91. }
  92. void
  93. ik_to_servos(bot *b) {
  94. int i,j;
  95. for(i=0;i<NUM_LEGS;i++) {
  96. for(j=0;j<3;j++) {
  97. if(!isnan(b->leg[i].ik_angle[j])) {
  98. servo_pwm[i*3+j]=b->leg[i].ik_angle[j]*8.5*1800.0/M_PI+servo_offsets[i*3+j];
  99. }
  100. }
  101. }
  102. spi_update_servos();
  103. }
  104. int
  105. get_time() {
  106. struct timeval t;
  107. gettimeofday(&t,NULL);
  108. return (t.tv_sec*1000000+t.tv_usec);
  109. }