2011-02-14 17:48:42 +02:00
|
|
|
/*
|
|
|
|
* fw/spi.c - ATmega8 family SPI I/O
|
|
|
|
*
|
2013-03-30 00:14:11 +02:00
|
|
|
* Written 2011, 2013 by Werner Almesberger
|
|
|
|
* Copyright 2011, 2013 Werner Almesberger
|
2011-02-14 17:48:42 +02:00
|
|
|
*
|
|
|
|
* This program 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 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2013-03-30 00:14:11 +02:00
|
|
|
#include <stdbool.h>
|
2011-02-14 04:46:36 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include <avr/io.h>
|
|
|
|
|
|
|
|
#include "board.h"
|
|
|
|
#include "spi.h"
|
|
|
|
|
|
|
|
|
|
|
|
uint8_t spi_io(uint8_t v)
|
|
|
|
{
|
|
|
|
// while (!(UCSR1A & 1 << UDRE1));
|
2015-05-24 15:37:38 +03:00
|
|
|
SPI_DATA = v;
|
|
|
|
SPI_WAIT_DONE();
|
2016-03-18 23:25:24 +02:00
|
|
|
return SPI_DATA;
|
2011-02-14 04:46:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void spi_end(void)
|
|
|
|
{
|
|
|
|
// while (!(UCSR1A & 1 << TXC1));
|
|
|
|
SET(nSS);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-31 01:46:55 +03:00
|
|
|
void spi_recv_block(uint8_t *buf, uint8_t n)
|
|
|
|
{
|
|
|
|
if (!n)
|
|
|
|
return;
|
2015-05-24 15:37:38 +03:00
|
|
|
SPI_DATA = 0;
|
2013-07-31 01:46:55 +03:00
|
|
|
while (--n) {
|
2015-05-24 15:37:38 +03:00
|
|
|
SPI_WAIT_DONE();
|
|
|
|
*buf++ = SPI_DATA;
|
|
|
|
SPI_DATA = 0;
|
2013-07-31 01:46:55 +03:00
|
|
|
}
|
2015-05-24 15:37:38 +03:00
|
|
|
SPI_WAIT_DONE();
|
|
|
|
*buf++ = SPI_DATA;
|
2013-07-31 01:46:55 +03:00
|
|
|
}
|