API
 
Loading...
Searching...
No Matches
MCP3008.cpp
Go to the documentation of this file.
1#include "MCP3008.h"
2#include <cstdint>
3#include <lgpio.h>
4#include <stdexcept>
5
6namespace MCP3008Lib {
7
9 const int dev,
10 const int channel,
11 const int baud,
12 const int flags) noexcept :
13 _handle(-1),
14 _dev(dev),
15 _channel(channel),
16 _baud(baud),
17 _flags(flags) {
18}
19
21
22 try {
23 this->disconnect();
24 }
25 catch(...) {
26 //prevent propagation
27 }
28
29}
30
32
33 if(this->_handle >= 0) {
34 return;
35 }
36
37 const auto handle = ::lgSpiOpen(
38 this->_dev,
39 this->_channel,
40 this->_baud,
41 this->_flags);
42
43 if(handle < 0) {
44 throw std::runtime_error("failed to connect spi device");
45 }
46
47 this->_handle = handle;
48
49}
50
52
53 if(this->_handle < 0) {
54 return;
55 }
56
57 if(::lgSpiClose(this->_handle) != 0) {
58 throw std::runtime_error("failed to disconnect spi device");
59 }
60
61 this->_handle = -1;
62
63}
64
65unsigned short MCP3008::read(const std::uint8_t channel, const Mode m) const {
66
67 //control bits
68 //first bit is single or differential mode
69 //next three bits are channel selection
70 //last four bits are ignored
71 const std::uint8_t ctrl =
72 (static_cast<std::uint8_t>(m) << 7) |
73 static_cast<std::uint8_t>((channel & 0b00000111) << 4)
74 ;
75
76 const std::uint8_t byteCount = 3;
77
78 const std::uint8_t txData[byteCount] = {
79 0b00000001, //seven leading zeros and start bit
80 ctrl, //sgl/diff (mode), d2, d1, d0, 4x "don't care" bits
81 0b00000000 //8x "don't care" bits
82 };
83
84 std::uint8_t rxData[byteCount]{0};
85
86 const auto bytesTransferred = ::lgSpiXfer(
87 this->_handle,
88 reinterpret_cast<const char*>(txData),
89 reinterpret_cast<char*>(rxData),
90 byteCount);
91
92 if(bytesTransferred != byteCount) {
93 throw std::runtime_error("spi transfer failed");
94 }
95
96 //first 14 bits are ignored
97 //no need to AND with 0x3ff this way
98 return
99 ((static_cast<unsigned short>(rxData[1]) & 0b00000011) << 8) |
100 (static_cast<unsigned short>(rxData[2]) & 0b11111111);
101
102}
103
104};
virtual ~MCP3008()
Definition MCP3008.cpp:20
unsigned short read(const std::uint8_t channel, const Mode m=Mode::SINGLE) const
Definition MCP3008.cpp:65
MCP3008(const int dev=DEFAULT_SPI_DEV, const int channel=DEFAULT_SPI_CHANNEL, const int baud=DEFAULT_SPI_BAUD, const int flags=DEFAULT_SPI_FLAGS) noexcept
Definition MCP3008.cpp:8