설명 없음
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.

spi.h 248B

123456789
  1. #ifndef SPI_H
  2. #define SPI_H
  3. void Initialize_SPI(void);
  4. void SPI_Start_Transmission(volatile uint8_t *port, uint8_t pinNumber);
  5. uint8_t SPI_Transfer_Byte(uint8_t byte);
  6. void SPI_Stop_Transmission(volatile uint8_t *port, uint8_t pinNumber);
  7. #endif