-
Notifications
You must be signed in to change notification settings - Fork 0
/
at85_spi.c
118 lines (97 loc) · 2.53 KB
/
at85_spi.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/********************************************************************************
* nrf24l01-ble/at85_spi.c
*
* This file is part of the at85_btle distribution.
* (https://github.com/yjdwbj/at85_btle).
* Copyright (c) 2021 Liu Chun Yang
*
* 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, version 3.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*
********************************************************************************/
#include "at85_spi.h"
void spi_setup()
{
/* set PB1,PB2,PB3 to be output */
DDRB = _BV(SPI_MISO) |_BV(SPI_SCK) | _BV(SPI_CSN); /* 0b00001110 */
USICR = _BV(USIWM0); /* Choosing SPI aka three wire mode, Mode */
/* make SCL low to mode 0 (CPOL=0) */
PORTB &= ~_BV(SPI_SCK);
PORTB &= ~_BV(SPI_MISO);
}
void spi_dosend(uint8_t cmd,uint8_t *buf, uint8_t len)
{
CSN_LOW();
spi_write(cmd);
while(len--)
{
spi_write(*buf++);
}
CSN_HIGH();
}
void spi_onecmd(uint8_t cmd)
{
CSN_LOW();
spi_write(cmd);
CSN_HIGH();
}
void spi_readreg(uint8_t reg,uint8_t *buf,uint8_t len)
{
while(len--)
{
CSN_LOW();
spi_write(reg);
while(USIOIF == 1)
{
*buf++ = USIBR; /* Reading received byte from USIBR buffer register */
USISR |= (1 << USIOIF);
}
CSN_HIGH();
}
}
void spi_write(uint8_t byte)
{
USIDR = byte;
USICR |= (1 << USITC);
USICR |= (1 << USITC)|(1 << USICLK);
USICR |= (1 << USITC);
USICR |= (1 << USITC)|(1 << USICLK);
USICR |= (1 << USITC);
USICR |= (1 << USITC)|(1 << USICLK);
USICR |= (1 << USITC);
USICR |= (1 << USITC)|(1 << USICLK);
USICR |= (1 << USITC);
USICR |= (1 << USITC)|(1 << USICLK);
USICR |= (1 << USITC);
USICR |= (1 << USITC)|(1 << USICLK);
USICR |= (1 << USITC);
USICR |= (1 << USITC)|(1 << USICLK);
USICR |= (1 << USITC);
USICR |= (1 << USITC)|(1 << USICLK);
USISR = 0 ;
}
void spi_sendcmd(uint8_t cmd, uint8_t data)
{
CSN_LOW();
spi_write(cmd);
spi_write(data);
CSN_HIGH();
}
void spi_sendblock(uint8_t *buf,uint8_t length)
{
CSN_LOW();
while(length--)
{
spi_write(*buf++);
}
CSN_HIGH();
}