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.

40 lines
851B

  1. #include "servo.h"
  2. #include <string.h>
  3. #include <stdio.h>
  4. #include <fcntl.h>
  5. #define NUM_SERVOS 24
  6. uint32_t servo_pwm[NUM_SERVOS]={};
  7. uint32_t servo_offsets[NUM_SERVOS]={
  8. 0x432b, 0x3311, 0x2a88,
  9. 0x3311, 0x2f77, 0x28b5,
  10. 0x225d, 0x31bd, 0x2bed,
  11. 0x3cf6, 0x322b, 0x3c65,
  12. 0x344b, 0x2d96, 0x2ed1,
  13. 0x279c, 0x2ffa, 0x39df,
  14. 0x0000, 0x0000, 0x0000,
  15. 0x0000, 0x0000, 0x0000,
  16. };
  17. void
  18. load_calibration(char *filename) {
  19. unsigned int load_buffer[NUM_SERVOS];
  20. int bytes_read;
  21. int fd;
  22. fd=open(filename,O_RDONLY);
  23. if(fd!=-1) {
  24. bytes_read=read(fd,load_buffer,sizeof(load_buffer));
  25. if(bytes_read==sizeof(load_buffer)) {
  26. memcpy(servo_offsets,load_buffer,sizeof(load_buffer));
  27. } else {
  28. printf("load_calibration(%s): short read\n",filename);
  29. }
  30. close(fd);
  31. } else {
  32. perror(filename);
  33. }
  34. }