spi.h 167 B

1234567
  1. #ifndef __SPI_H
  2. #define __SPI_H
  3. #include "stm32f2xx_spi.h"
  4. void spi_config(void);
  5. uint8_t SPI2_ReadWriteByte(uint8_t txd);
  6. void SpiNSSEnable( uint8_t status );
  7. #endif