-
Notifications
You must be signed in to change notification settings - Fork 1
/
Spi.cpp
121 lines (93 loc) · 2.52 KB
/
Spi.cpp
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
119
/*
* File: Spi.cpp
* Author: philippe SIMIER Lycée Touchard Le Mans
*
* Created on 7 juillet 2024, 16:29
*
* Une classe SPI utilisée dans les applications où un Raspberry Pi
* doit communiquer avec des périphériques externes utilisant l'interface SPI.
*
*/
#include "Spi.h"
/**
* @brief Le constructeur configure les paramètres nécessaires pour la communication SPI,
* comme le canal à utiliser et la vitesse de l'horloge.
* Il ouvre le périphérique SPI correspondant
* /dev/spidev0.0 pour le canal 0
*
* @param channel
* @param speed
*/
Spi::Spi(int channel, int speed) :
channel(channel),
speed(speed)
{
if (wiringPiSetupGpio() == -1) {
throw std::runtime_error("Exception Spi wiringPiSetupGpio");
}
if ((channel = wiringPiSPISetup(channel, speed)) < 0) {
throw std::runtime_error("Exception Spi wiringPiSPISetup");
}
}
Spi::~Spi() {
}
/**
* @brief méthode pour lire un registre
* @param reg l'adresse du registre
* @return la valeur lue dans le registre
*/
int8_t Spi::read_reg(int8_t reg) {
int ret;
unsigned char data[2];
data[0] = reg & 0x7F; // Bit whr positionné à 0 pour accés en écriture
data[1] = 0x00;
ret = wiringPiSPIDataRW(channel, data, 2);
if (ret == -1)
throw std::runtime_error("Exception Spi read_byte");
return data[1];
}
/**
*
* @param reg l'adresse du registre
* @param byte
* @return
*/
int Spi::write_reg(int8_t reg, int8_t value) {
int ret;
unsigned char data[2];
data[0] = reg | 0x80; // Bit whr positionné à 1 pour accés en écriture
data[1] = value;
ret = wiringPiSPIDataRW(channel, data, 2);
return ret;
}
/**
*
* @param reg adresse de base du fifo
* @param buff un pointeur vers un buffer
* @param size la taille des données
* @return le nombre d'octets lus
*/
int Spi::read_fifo(int8_t reg, int8_t *buff, int8_t size) {
int ret;
char unsigned data[257] = {0};
memset(buff, '\0', size);
data[0] = reg;
ret = wiringPiSPIDataRW(channel, data, size + 1);
memcpy(buff, &data[1], ret - 1);
return ret;
}
/**
*
* @param reg addresse de base du fifo
* @param buff un pointeur sur un buffer
* @param size la taille des datas à écrire
* @return le nombre de d'octets écrits
*/
int Spi::write_fifo(int8_t reg, int8_t *buff, int8_t size) {
int ret;
char unsigned data[257] = {0};
data[0] = (reg | 0x80);
memcpy(&data[1], buff, size);
ret = wiringPiSPIDataRW(channel, data, size + 1);
return ret;
}