No Description
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 221B

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