您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

134 行
3.4KB

  1. #include <termios.h>
  2. #include <stdint.h>
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <string.h>
  6. #include <math.h>
  7. #include <sys/time.h>
  8. #include <fcntl.h>
  9. #include <servo.h>
  10. #include <ik.h>
  11. #include <spi.h>
  12. int servo_power[NUM_SERVOS];
  13. int
  14. main(int argc, char **argv) {
  15. int fd;
  16. int i,j,l,s;
  17. int frame;
  18. uint32_t time;
  19. char c;
  20. uint16_t pwm;
  21. struct termios t;
  22. int step=1;
  23. printf("welcome.\n");
  24. spi_open(0,33000000);
  25. for(i=0;i<NUM_SERVOS;i++) { servo_pwm[i]=0; servo_power[i]=0; }
  26. spi_update_servos();
  27. load_calibration("calibration.bin");
  28. tcgetattr(0,&t);
  29. t.c_lflag&=~(ICANON|ECHO|ECHOE|ISIG);
  30. tcsetattr(0,TCSANOW,&t);
  31. l=0;
  32. do {
  33. printf("\f");
  34. for(i=0;i<NUM_SERVOS;i++) {
  35. if(!(i%3)) {
  36. printf("\n");
  37. if((i/3)==l) {
  38. if(servo_power[i]) {
  39. printf("!> ");
  40. } else {
  41. printf(" > ");
  42. }
  43. } else {
  44. if(servo_power[i]) {
  45. printf("! ");
  46. } else {
  47. printf(" ");
  48. }
  49. }
  50. }
  51. printf("%04x (%d) ",servo_offsets[i],servo_offsets[i]);
  52. }
  53. printf("\n\nazsxdc: move servo\n+-: select leg(%d)\n[]: increase/decrease step size (%d)\np: power on/off leg\n12: save min/max value\nw: dump\nf: save to calibration.bin\nq: quit\n> ",l,step);
  54. c=getchar();
  55. printf("%c (%02x)\n",c,c);
  56. switch(c) {
  57. case 'a':
  58. servo_offsets[l*3]+=step;
  59. break;
  60. case 'z':
  61. servo_offsets[l*3]-=step;
  62. break;
  63. case 's':
  64. servo_offsets[l*3+1]+=step;
  65. break;
  66. case 'x':
  67. servo_offsets[l*3+1]-=step;
  68. break;
  69. case 'd':
  70. servo_offsets[l*3+2]+=step;
  71. break;
  72. case 'c':
  73. servo_offsets[l*3+2]-=step;
  74. break;
  75. case '+':
  76. if((l+1)<NUM_LEGS) l++;
  77. break;
  78. case '-':
  79. if(l>0) l--;
  80. break;
  81. case '[':
  82. if(step>=10) step/=10;
  83. break;
  84. case ']':
  85. step*=10;
  86. break;
  87. case 'w':
  88. printf("/* Servo current values */\n\nuint16_t servo_base[]= {");
  89. for(i=0;i<NUM_SERVOS;i++) {
  90. if(!(i%3)) printf("\n");
  91. printf(" 0x%04x,",servo_pwm[i]);
  92. }
  93. printf("\n};\n\n");
  94. printf("/* press any key */\n");
  95. getchar();
  96. break;
  97. case 'f':
  98. unlink("calibration.bin.bak");
  99. rename("calibration.bin","calibration.bin.bak");
  100. fd=open("calibration.bin",O_WRONLY|O_CREAT|O_TRUNC);
  101. write(fd,servo_offsets,sizeof(servo_offsets));
  102. close(fd);
  103. break;
  104. case 'p':
  105. if(!servo_power[l*3]) {
  106. for(i=0;i<3;i++) servo_power[l*3+i]=1;
  107. } else {
  108. for(i=0;i<3;i++) servo_power[l*3+i]=0;
  109. }
  110. }
  111. for(i=0;i<NUM_SERVOS;i++) {
  112. servo_pwm[i]=servo_power[i]*servo_offsets[i];
  113. }
  114. spi_update_servos();
  115. } while(c!='q');
  116. spi_close();
  117. tcgetattr(0,&t);
  118. t.c_lflag|=(ICANON|ECHO|ECHOE|ISIG);
  119. tcsetattr(0,TCSANOW,&t);
  120. }