|
@@ -0,0 +1,117 @@
|
|
1
|
+/*
|
|
2
|
+ * Author: Yevgeniy Kiveisha <yevgeniy.kiveisha@intel.com>
|
|
3
|
+ * Copyright (c) 2014 Intel Corporation.
|
|
4
|
+ *
|
|
5
|
+ * Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
+ * a copy of this software and associated documentation files (the
|
|
7
|
+ * "Software"), to deal in the Software without restriction, including
|
|
8
|
+ * without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
+ * distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
+ * permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
+ * the following conditions:
|
|
12
|
+ *
|
|
13
|
+ * The above copyright notice and this permission notice shall be
|
|
14
|
+ * included in all copies or substantial portions of the Software.
|
|
15
|
+ *
|
|
16
|
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
|
+ * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
|
+ * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
+ * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
23
|
+ */
|
|
24
|
+
|
|
25
|
+#include <iostream>
|
|
26
|
+#include <unistd.h>
|
|
27
|
+#include <stdlib.h>
|
|
28
|
+
|
|
29
|
+#include "max5487.h"
|
|
30
|
+
|
|
31
|
+using namespace upm;
|
|
32
|
+
|
|
33
|
+struct MAX5487Exception : public std::exception {
|
|
34
|
+ std::string message;
|
|
35
|
+ MAX5487Exception (std::string msg) : message (msg) { }
|
|
36
|
+ ~MAX5487Exception () throw () { }
|
|
37
|
+ const char* what() const throw () { return message.c_str(); }
|
|
38
|
+};
|
|
39
|
+
|
|
40
|
+MAX5487::MAX5487 (int csn) {
|
|
41
|
+ mraa_result_t error = MRAA_SUCCESS;
|
|
42
|
+ m_name = "MAX5487";
|
|
43
|
+
|
|
44
|
+ m_csnPinCtx = mraa_gpio_init (csn);
|
|
45
|
+ if (m_csnPinCtx == NULL) {
|
|
46
|
+ throw MAX5487Exception ("GPIO failed to initilize");
|
|
47
|
+ }
|
|
48
|
+
|
|
49
|
+ error = mraa_gpio_dir (m_csnPinCtx, MRAA_GPIO_OUT);
|
|
50
|
+ if (error != MRAA_SUCCESS) {
|
|
51
|
+ throw MAX5487Exception ("GPIO failed to initilize");
|
|
52
|
+ }
|
|
53
|
+
|
|
54
|
+ m_spi = mraa_spi_init (0);
|
|
55
|
+ if (m_spi == NULL) {
|
|
56
|
+ throw MAX5487Exception ("SPI failed to initilize");
|
|
57
|
+ }
|
|
58
|
+
|
|
59
|
+ CSOff ();
|
|
60
|
+}
|
|
61
|
+
|
|
62
|
+MAX5487::~MAX5487() {
|
|
63
|
+ mraa_result_t error = MRAA_SUCCESS;
|
|
64
|
+
|
|
65
|
+ error = mraa_spi_stop(m_spi);
|
|
66
|
+ if (error != MRAA_SUCCESS) {
|
|
67
|
+ mraa_result_print(error);
|
|
68
|
+ }
|
|
69
|
+ error = mraa_gpio_close (m_csnPinCtx);
|
|
70
|
+ if (error != MRAA_SUCCESS) {
|
|
71
|
+ mraa_result_print(error);
|
|
72
|
+ }
|
|
73
|
+}
|
|
74
|
+
|
|
75
|
+void
|
|
76
|
+MAX5487::setWiperA (uint8_t wiper) {
|
|
77
|
+ uint8_t data[2] = { 0x00, 0x00};
|
|
78
|
+
|
|
79
|
+ CSOn ();
|
|
80
|
+
|
|
81
|
+ data[0] = R_WR_WIPER_A;
|
|
82
|
+ data[1] = wiper;
|
|
83
|
+
|
|
84
|
+ uint8_t* retData = mraa_spi_write_buf(m_spi, data, 2);
|
|
85
|
+
|
|
86
|
+ CSOff ();
|
|
87
|
+}
|
|
88
|
+
|
|
89
|
+void
|
|
90
|
+MAX5487::setWiperB (uint8_t wiper) {
|
|
91
|
+ uint8_t data[2] = { 0x00, 0x00};
|
|
92
|
+
|
|
93
|
+ CSOn ();
|
|
94
|
+
|
|
95
|
+ data[0] = R_WR_WIPER_B;
|
|
96
|
+ data[1] = wiper;
|
|
97
|
+
|
|
98
|
+ uint8_t* retData = mraa_spi_write_buf(m_spi, data, 2);
|
|
99
|
+
|
|
100
|
+ CSOff ();
|
|
101
|
+}
|
|
102
|
+
|
|
103
|
+/*
|
|
104
|
+ * **************
|
|
105
|
+ * private area
|
|
106
|
+ * **************
|
|
107
|
+ */
|
|
108
|
+
|
|
109
|
+mraa_result_t
|
|
110
|
+MAX5487::CSOn () {
|
|
111
|
+ return mraa_gpio_write (m_csnPinCtx, LOW);
|
|
112
|
+}
|
|
113
|
+
|
|
114
|
+mraa_result_t
|
|
115
|
+MAX5487::CSOff () {
|
|
116
|
+ return mraa_gpio_write (m_csnPinCtx, HIGH);
|
|
117
|
+}
|