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.

45 lines
788B

  1. #ifndef LICKS_SPI_H
  2. #define LICKS_SPI_H
  3. #include <stdint.h>
  4. #define SPI_IDLE 0x00
  5. #define SPI_WAIT 0x01
  6. #define SPI_BUSY 0x02
  7. #define SPI_DONE 0x03
  8. #define SPI_ERR 0x04
  9. #define CMD_NOP 0x00
  10. #define CMD_CONTINUE 0x01
  11. #define CMD_FINISH 0x02
  12. #define CMD_CLEAR 0x8A
  13. #define CMD_SET_SERVOS 0x10
  14. #define CMD_SET_LED 0x11
  15. #define CMD_SET_LASER 0x12
  16. #define CMD_GET_SERVOS 0x20
  17. extern void spi_open(uint8_t, uint32_t);
  18. extern void spi_update_servos();
  19. extern void set_led(uint8_t);
  20. extern void set_laser(uint8_t);
  21. extern void spi_close();
  22. struct spi_message {
  23. uint8_t cmd;
  24. uint8_t length;
  25. uint8_t checksum;
  26. uint8_t data[255];
  27. };
  28. struct spi_result {
  29. uint8_t status;
  30. uint8_t length;
  31. uint8_t checksum;
  32. uint8_t data[255];
  33. };
  34. #endif