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.

190 lines
4.9KB

  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. void ik_to_servos(bot *);
  11. int get_time();
  12. int ad_fd;
  13. static bot idle_position = {
  14. {0,0,-20}, // body position
  15. {0,0,0}, // body rotation
  16. { // leg positions
  17. {{ 166, 130, 0},}, // leg 0
  18. {{ 0, 180, 0},}, // leg 1
  19. {{-166, 130, 0},}, // ...
  20. {{-166,-130, 0},},
  21. {{ 0,-180, 0},},
  22. {{ 166,-130, 0},}
  23. }
  24. };
  25. int
  26. main(int argc, char **argv) {
  27. struct termios t;
  28. int flags_stdio;
  29. int quit=0;
  30. int frame=0;
  31. int t_frame_start, t_frame_end;
  32. int dump_fd;
  33. char c;
  34. int i, int_z;
  35. int leg;
  36. unsigned char adbuffer[12];
  37. unsigned char ad_max[6]={0,0,0,0,0,0};
  38. unsigned char ad_min[6]={255,255,255,255,255,255};
  39. load_calibration("calibration.bin");
  40. spi_open(0,33000000);
  41. ad_fd=open("/dev/ttyS2",O_RDWR);
  42. if(ad_fd<0) {
  43. printf("can't open /dev/ttyS2.");
  44. exit(2);
  45. }
  46. tcgetattr(0,&t);
  47. t.c_lflag&=~(ICANON|ECHO);
  48. tcsetattr(0,TCSANOW,&t);
  49. tcgetattr(ad_fd,&t);
  50. t.c_lflag&=~(ICANON|ECHO);
  51. tcsetattr(ad_fd,TCSANOW,&t);
  52. flags_stdio=fcntl(0, F_GETFL,0);
  53. flags_stdio|=O_NONBLOCK;
  54. fcntl(0, F_SETFL,flags_stdio);
  55. leg=0;
  56. while(!quit) {
  57. write(ad_fd,&c,1);
  58. read(ad_fd,&adbuffer,12);
  59. printf("\f");
  60. printf(" val rval min max avg diff z\n");
  61. for(i=0;i<6;i++) {
  62. printf("%d: %3d %3d %3d %3d %3d %3d %3.2f\n",adbuffer[2*i],adbuffer[2*i+1],adbuffer[2*i+1]-ad_min[i],ad_min[i], ad_max[i],(ad_min[i]+ad_max[i])/2,ad_max[i]-ad_min[i],idle_position.leg[i].position.z);
  63. if(ad_min[i]>adbuffer[2*i+1]) ad_min[i]=adbuffer[2*i+1];
  64. if(ad_max[i]<adbuffer[2*i+1]) ad_max[i]=adbuffer[2*i+1];
  65. }
  66. printf("\nleg (+/-): %d\nd: dump to ad.bin\n",leg);
  67. if(read(0,&c,1)==1) {
  68. switch(c) {
  69. case 27:
  70. case 'q':
  71. quit=1;
  72. break;
  73. case 'a':
  74. idle_position.leg[leg].position.z++;
  75. break;
  76. case 'z':
  77. idle_position.leg[leg].position.z--;
  78. break;
  79. case '+':
  80. if(leg<5) leg++;
  81. break;
  82. case '-':
  83. if(leg>0) leg--;
  84. break;
  85. case 'r':
  86. for(i=0;i<6;i++) {
  87. for(int_z=0;int_z<20;int_z++) {
  88. idle_position.leg[i].position.z=int_z;
  89. t_frame_start=get_time();
  90. ik(&idle_position);
  91. t_frame_end=get_time();
  92. while(t_frame_end<t_frame_start+50000) t_frame_end=get_time();
  93. ik_to_servos(&idle_position);
  94. write(ad_fd,&c,1);
  95. read(ad_fd,&adbuffer,12);
  96. if(ad_min[i]>adbuffer[2*i+1]) ad_min[i]=adbuffer[2*i+1];
  97. if(ad_max[i]<adbuffer[2*i+1]) ad_max[i]=adbuffer[2*i+1];
  98. }
  99. for(int_z=20;int_z>0;int_z--) {
  100. idle_position.leg[i].position.z=int_z;
  101. t_frame_start=get_time();
  102. ik(&idle_position);
  103. t_frame_end=get_time();
  104. while(t_frame_end<t_frame_start+50000) t_frame_end=get_time();
  105. ik_to_servos(&idle_position);
  106. write(ad_fd,&c,1);
  107. read(ad_fd,&adbuffer,12);
  108. if(ad_min[i]>adbuffer[2*i+1]) ad_min[i]=adbuffer[2*i+1];
  109. if(ad_max[i]<adbuffer[2*i+1]) ad_max[i]=adbuffer[2*i+1];
  110. }
  111. }
  112. case 'd':
  113. dump_fd=open("ad.bin",O_WRONLY|O_CREAT|O_TRUNC);
  114. if(dump_fd>=0) {
  115. write(dump_fd,ad_min,sizeof(ad_min));
  116. write(dump_fd,ad_max,sizeof(ad_max));
  117. }
  118. }
  119. }
  120. t_frame_start=get_time();
  121. ik(&idle_position);
  122. t_frame_end=get_time();
  123. if(t_frame_end-t_frame_start>20000) {
  124. printf("frame %d slack %d\n",frame,t_frame_end-t_frame_start);
  125. }
  126. while(t_frame_end<t_frame_start+20000) t_frame_end=get_time();
  127. ik_to_servos(&idle_position);
  128. frame++;
  129. }
  130. close(ad_fd);
  131. spi_close();
  132. flags_stdio=fcntl(0, F_GETFL,0); flags_stdio&=~(O_NONBLOCK); fcntl(0,
  133. F_SETFL,flags_stdio);
  134. tcgetattr(0,&t);
  135. t.c_lflag|=(ICANON|ECHO|ECHOE|ISIG);
  136. tcsetattr(0,TCSANOW,&t);
  137. return 0;
  138. }
  139. void
  140. ik_to_servos(bot *b) {
  141. int i,j;
  142. for(i=0;i<NUM_LEGS;i++) {
  143. for(j=0;j<3;j++) {
  144. if(!isnan(b->leg[i].ik_angle[j])) {
  145. servo_pwm[i*3+j]=b->leg[i].ik_angle[j]*8.5*1800.0/M_PI+servo_offsets[i*3+j];
  146. }
  147. }
  148. }
  149. spi_update_servos();
  150. }
  151. int
  152. get_time() {
  153. struct timeval t;
  154. gettimeofday(&t,NULL);
  155. return (t.tv_sec*1000000+t.tv_usec);
  156. }