Advertisement
teplofizik

spi.h

Jun 1st, 2013
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.26 KB | None | 0 0
  1. //
  2. // SPI
  3. //
  4.  
  5. #include <stdint.h>
  6. #include <stdbool.h>
  7.  
  8. #ifndef _SPI_H
  9. #define _SPI_H
  10.  
  11.     // Инициализация модуля SPI
  12.     void spi_Init(void);
  13.  
  14.     // Отправить байт по SPI
  15.     uint8_t spi_Send(uint8_t Data);
  16.  
  17. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement