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.
36 lines
585 B
36 lines
585 B
2 years ago
|
#include <avr/io.h>
|
||
|
#include <stdint.h>
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
#include "iopins.h"
|
||
|
#include "spi.h"
|
||
|
|
||
|
bool spi_inited = false;
|
||
|
|
||
|
/** Init SPI (for SD card communication) */
|
||
|
void spi_init()
|
||
|
{
|
||
|
if (spi_inited) return;
|
||
|
spi_inited = true;
|
||
|
|
||
|
// Pin configuration
|
||
|
as_output(PIN_SS);
|
||
|
as_output(PIN_MOSI);
|
||
|
as_output(PIN_SCK);
|
||
|
as_input_pu(PIN_MISO);
|
||
|
|
||
|
// Enable SPI, master, clock = F_CPU/128
|
||
|
SPCR = _BV(SPE) | _BV(MSTR) | _BV(SPR0) | _BV(SPR1);
|
||
|
}
|
||
|
|
||
|
|
||
|
/** Write a byte to SPI. Returns received byte. */
|
||
|
uint8_t spi_write(uint8_t b)
|
||
|
{
|
||
|
SPDR = b;
|
||
|
while (!(SPSR & _BV(SPIF)));
|
||
|
|
||
|
return SPDR;
|
||
|
}
|
||
|
|