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/>.
|
|
|
|
*/
|
|
|
|
|
2022-06-20 15:40:55 +00:00
|
|
|
|
|
|
|
#include <spi.h>
|
|
|
|
#include <util/delay.h>
|
|
|
|
|
2022-06-20 18:52:29 +00:00
|
|
|
void spi_initialize(spi_t *spi) {
|
|
|
|
set_line_direction(&spi->clock, LINE_OUT);
|
|
|
|
set_line_direction(&spi->data_out, LINE_OUT);
|
|
|
|
set_line_direction(&spi->data_in, LINE_IN);
|
|
|
|
set_line_direction(&spi->chip_select, LINE_OUT);
|
|
|
|
|
|
|
|
set_line(&spi->chip_select);
|
2022-06-20 15:40:55 +00:00
|
|
|
}
|
|
|
|
|
2022-06-20 18:52:29 +00:00
|
|
|
void spi_acquire(spi_t *spi) {
|
|
|
|
clear_line(&spi->chip_select);
|
|
|
|
}
|
2022-06-20 15:40:55 +00:00
|
|
|
|
2022-06-20 18:52:29 +00:00
|
|
|
void spi_release(spi_t *spi) {
|
|
|
|
set_line(&spi->chip_select);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t spi_transfer_byte(spi_t *spi, uint8_t output) {
|
|
|
|
uint8_t input = 0;
|
2022-06-26 16:45:27 +00:00
|
|
|
int input_bit;
|
2022-06-20 15:40:55 +00:00
|
|
|
|
|
|
|
for (int i = 7; i >= 0; i--) {
|
2022-06-20 18:52:29 +00:00
|
|
|
clear_line(&spi->clock);
|
2022-06-20 15:40:55 +00:00
|
|
|
if (output & _BV(i)) {
|
2022-06-20 18:52:29 +00:00
|
|
|
set_line(&spi->data_out);
|
2022-06-20 15:40:55 +00:00
|
|
|
} else {
|
2022-06-20 18:52:29 +00:00
|
|
|
clear_line(&spi->data_out);
|
2022-06-20 15:40:55 +00:00
|
|
|
}
|
|
|
|
_delay_us(10);
|
2022-06-20 18:52:29 +00:00
|
|
|
set_line(&spi->clock);
|
2022-06-26 16:45:27 +00:00
|
|
|
input_bit = read_line(&spi->data_in);
|
|
|
|
input = (input << 1) | input_bit;
|
2022-06-28 00:03:15 +00:00
|
|
|
_delay_us(10);
|
2022-06-20 15:40:55 +00:00
|
|
|
}
|
2022-06-20 18:52:29 +00:00
|
|
|
clear_line(&spi->clock);
|
2022-06-20 15:40:55 +00:00
|
|
|
_delay_us(10);
|
|
|
|
return input;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
void send_bytes(spi_t *line, u8 *byte, size_t length, u8 *input, size_t input_length) {
|
|
|
|
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|