2021-10-17 00:40:37 +00:00
|
|
|
#include "../include/spi.h"
|
|
|
|
|
|
|
|
void ENC_SPI_Select(unsigned char truefalse) {
|
|
|
|
spi_chip_select(!truefalse); // If it's true, select 0 (the ENC), if false, select 1 (i.e. deselect the ENC)
|
|
|
|
}
|
|
|
|
|
2021-10-30 01:04:31 +00:00
|
|
|
void ENC_SPI_SendBuf(unsigned char *master2slave, unsigned char *slave2master, unsigned short bufferSize) {
|
2021-10-17 00:40:37 +00:00
|
|
|
spi_chip_select(0);
|
2021-10-30 01:04:31 +00:00
|
|
|
spi_send_recv(master2slave, slave2master, bufferSize);
|
2021-10-17 00:40:37 +00:00
|
|
|
spi_chip_select(1); // De-select the ENC
|
|
|
|
}
|
|
|
|
|
|
|
|
void ENC_SPI_Send(unsigned char command) {
|
|
|
|
spi_chip_select(0);
|
|
|
|
spi_send(&command, 1);
|
|
|
|
spi_chip_select(1); // De-select the ENC
|
|
|
|
}
|
|
|
|
|
|
|
|
void ENC_SPI_SendWithoutSelection(unsigned char command) {
|
|
|
|
spi_send(&command, 1);
|
|
|
|
}
|