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.

160 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. 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,j, 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. unsigned char ad;
  40. load_calibration("calibration.bin");
  41. spi_open(0,33000000);
  42. ad_fd=open("/dev/ttyS2",O_RDWR);
  43. if(ad_fd<0) {
  44. printf("can't open /dev/ttyS2.");
  45. exit(2);
  46. }
  47. tcgetattr(0,&t);
  48. t.c_lflag&=~(ICANON|ECHO);
  49. tcsetattr(0,TCSANOW,&t);
  50. tcgetattr(ad_fd,&t);
  51. t.c_lflag&=~(ICANON|ECHO);
  52. tcsetattr(ad_fd,TCSANOW,&t);
  53. flags_stdio=fcntl(0, F_GETFL,0);
  54. flags_stdio|=O_NONBLOCK;
  55. fcntl(0, F_SETFL,flags_stdio);
  56. ik(&idle_position);
  57. ik_to_servos(&idle_position);
  58. for(j=0;j<200;j++) {
  59. write(ad_fd,&c,1);
  60. read(ad_fd,&adbuffer,12);
  61. for(i=0;i<6;i++) {
  62. if(i==adbuffer[2*i]) {
  63. if(adbuffer[2*i+1]>10) {
  64. if(ad_min[i]>adbuffer[2*i+1]) ad_min[i]=(adbuffer[2*i+1]+ad_min[i])/2;
  65. }
  66. }
  67. }
  68. }
  69. leg=0;
  70. while(!quit) {
  71. t_frame_start=get_time();
  72. write(ad_fd,&c,1);
  73. read(ad_fd,&adbuffer,12);
  74. for(i=0;i<6;i++) {
  75. if(i==adbuffer[2*i]) {
  76. ad=adbuffer[2*i+1];
  77. if((ad-ad_min[i])<10) {
  78. if(idle_position.leg[i].position.z<100) idle_position.leg[i].position.z+=1;
  79. } else if((ad-ad_min[i])>20) {
  80. if(idle_position.leg[i].position.z>0) idle_position.leg[i].position.z-=1;
  81. }
  82. }
  83. }
  84. if(read(0,&c,1)==1) {
  85. switch(c) {
  86. case 27:
  87. case 'q':
  88. quit=1;
  89. break;
  90. }
  91. }
  92. ik(&idle_position);
  93. t_frame_end=get_time();
  94. if(t_frame_end-t_frame_start>20000) {
  95. printf("frame %d slack %d\n",frame,t_frame_end-t_frame_start);
  96. }
  97. while(t_frame_end<t_frame_start+20000) t_frame_end=get_time();
  98. ik_to_servos(&idle_position);
  99. frame++;
  100. }
  101. close(ad_fd);
  102. spi_close();
  103. flags_stdio=fcntl(0, F_GETFL,0); flags_stdio&=~(O_NONBLOCK); fcntl(0,
  104. F_SETFL,flags_stdio);
  105. tcgetattr(0,&t);
  106. t.c_lflag|=(ICANON|ECHO|ECHOE|ISIG);
  107. tcsetattr(0,TCSANOW,&t);
  108. return 0;
  109. }
  110. void
  111. ik_to_servos(bot *b) {
  112. int i,j;
  113. for(i=0;i<NUM_LEGS;i++) {
  114. for(j=0;j<3;j++) {
  115. if(!isnan(b->leg[i].ik_angle[j])) {
  116. servo_pwm[i*3+j]=b->leg[i].ik_angle[j]*8.5*1800.0/M_PI+servo_offsets[i*3+j];
  117. }
  118. }
  119. }
  120. spi_update_servos();
  121. }
  122. int
  123. get_time() {
  124. struct timeval t;
  125. gettimeofday(&t,NULL);
  126. return (t.tv_sec*1000000+t.tv_usec);
  127. }