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.

37 lines
475B

  1. #include <unistd.h>
  2. #include <stdlib.h>
  3. #include <stdint.h>
  4. #include <stdio.h>
  5. #include <string.h>
  6. #include <fcntl.h>
  7. #include "spi.h"
  8. #include "servo.h"
  9. void
  10. spi_open(uint8_t mode, uint32_t speed) {
  11. }
  12. void
  13. spi_close() {
  14. }
  15. void
  16. spi_update_servos() {
  17. int fd;
  18. fd=open("/tmp/servodata",O_WRONLY|O_CREAT,0700);
  19. if(fd!=-1) {
  20. write(fd,servo_pwm,sizeof(servo_pwm));
  21. close(fd);
  22. }
  23. }
  24. void
  25. spi_set_led(uint8_t led) {
  26. }
  27. void
  28. spi_set_laser(uint8_t led) {
  29. }