avr/spi/spi.c

55 lines
1.7 KiB
C
Raw Permalink Normal View History

2022-06-26 16:45:27 +00:00
/*
Copyright 2022, Savanni D'Gerinel <savanni@luminescent-dreams.com>
This file is part of Savanni's AVR library.
Lumeto is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
Lumeto is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with Lumeto. If not, see <https://www.gnu.org/licenses/>.
*/
#include <util/delay.h>
2022-07-13 03:48:51 +00:00
#include "spi.h"
void spi_initialize(spi_t *spi) {
2022-07-13 02:42:42 +00:00
dio_set_direction(&spi->clock, LINE_OUT);
dio_set_direction(&spi->data_out, LINE_OUT);
dio_set_direction(&spi->data_in, LINE_IN);
dio_set_direction(&spi->chip_select, LINE_OUT);
2022-07-13 02:42:42 +00:00
dio_set(&spi->chip_select, 1);
}
void spi_acquire(spi_t *spi) {
2022-07-13 02:42:42 +00:00
dio_set(&spi->chip_select, 0);
}
void spi_release(spi_t *spi) {
2022-07-13 02:42:42 +00:00
dio_set(&spi->chip_select, 1);
}
uint8_t spi_transceive(spi_t *spi, uint8_t output) {
uint8_t input = 0;
2022-06-26 16:45:27 +00:00
int input_bit;
for (int i = 7; i >= 0; i--) {
2022-07-13 02:42:42 +00:00
dio_set(&spi->clock, 0);
if (output & _BV(i)) {
2022-07-13 02:42:42 +00:00
dio_set(&spi->data_out, 1);
} else {
2022-07-13 02:42:42 +00:00
dio_set(&spi->data_out, 0);
}
_delay_us(10);
2022-07-13 02:42:42 +00:00
dio_set(&spi->clock, 1);
input_bit = dio_read(&spi->data_in);
2022-06-26 16:45:27 +00:00
input = (input << 1) | input_bit;
_delay_us(10);
}
2022-07-13 02:42:42 +00:00
dio_set(&spi->clock, 0);
_delay_us(10);
return input;
}