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.

148 lines
3.6KB

  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=30;
  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. // wp.step_height=fmax(10,2*sqrt(wp.step_direction.x*wp.step_direction.x+wp.step_direction.y*wp.step_direction.y));
  72. wp.step_duration=fmax(30,2*sqrt(wp.step_direction.x*wp.step_direction.x+wp.step_direction.y*wp.step_direction.y));
  73. 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);
  74. }
  75. sequencer_run_frame(&idle_position);
  76. t_frame_start=get_time();
  77. ik(&idle_position);
  78. t_frame_end=get_time();
  79. printf("t: %d\n",t_frame_end-t_frame_start);
  80. if(t_frame_end-t_frame_start>20000) {
  81. printf("frame %d slack %d\n",frame,t_frame_end-t_frame_start);
  82. }
  83. while(t_frame_end<t_frame_start+20000) t_frame_end=get_time();
  84. ik_to_servos(&idle_position);
  85. frame++;
  86. }
  87. spi_close();
  88. flags_stdio=fcntl(0, F_GETFL,0); flags_stdio&=~(O_NONBLOCK); fcntl(0,
  89. F_SETFL,flags_stdio);
  90. tcgetattr(0,&t);
  91. t.c_lflag|=(ICANON|ECHO|ECHOE|ISIG);
  92. tcsetattr(0,TCSANOW,&t);
  93. return 0;
  94. }
  95. void
  96. ik_to_servos(bot *b) {
  97. int i,j;
  98. for(i=0;i<NUM_LEGS;i++) {
  99. for(j=0;j<3;j++) {
  100. if(!isnan(b->leg[i].ik_angle[j])) {
  101. servo_pwm[i*3+j]=b->leg[i].ik_angle[j]*8.5*1800.0/M_PI+servo_offsets[i*3+j];
  102. }
  103. }
  104. }
  105. spi_update_servos();
  106. }
  107. int
  108. get_time() {
  109. struct timeval t;
  110. gettimeofday(&t,NULL);
  111. return (t.tv_sec*1000000+t.tv_usec);
  112. }