amiro-os / test / periphery-lld / TLC5947_v1 / aos_test_TLC5947.c @ 0b989911
History | View | Annotate | Download (8.804 KB)
1 | e545e620 | Thomas Schöpping | /*
|
---|---|---|---|
2 | AMiRo-OS is an operating system designed for the Autonomous Mini Robot (AMiRo) platform.
|
||
3 | 84f0ce9e | Thomas Schöpping | Copyright (C) 2016..2019 Thomas Schöpping et al.
|
4 | e545e620 | Thomas Schöpping | |
5 | This program is free software: you can redistribute it and/or modify
|
||
6 | it under the terms of the GNU General Public License as published by
|
||
7 | the Free Software Foundation, either version 3 of the License, or
|
||
8 | (at your option) any later version.
|
||
9 | |||
10 | This program is distributed in the hope that it will be useful,
|
||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
13 | GNU General Public License for more details.
|
||
14 | |||
15 | You should have received a copy of the GNU General Public License
|
||
16 | along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
17 | */
|
||
18 | |||
19 | ddf34c3d | Thomas Schöpping | #include <amiroos.h> |
20 | 4c72a54c | Thomas Schöpping | #include <aos_test_TLC5947.h> |
21 | e545e620 | Thomas Schöpping | |
22 | 4c72a54c | Thomas Schöpping | #if (AMIROOS_CFG_TESTS_ENABLE == true) || defined(__DOXYGEN__) |
23 | e545e620 | Thomas Schöpping | |
24 | #include <string.h> |
||
25 | 3940ba8a | Thomas Schöpping | |
26 | f3ac1c96 | Thomas Schöpping | /******************************************************************************/
|
27 | /* LOCAL DEFINITIONS */
|
||
28 | /******************************************************************************/
|
||
29 | |||
30 | /******************************************************************************/
|
||
31 | /* EXPORTED VARIABLES */
|
||
32 | /******************************************************************************/
|
||
33 | |||
34 | /******************************************************************************/
|
||
35 | /* LOCAL TYPES */
|
||
36 | /******************************************************************************/
|
||
37 | |||
38 | /******************************************************************************/
|
||
39 | /* LOCAL VARIABLES */
|
||
40 | /******************************************************************************/
|
||
41 | |||
42 | /******************************************************************************/
|
||
43 | /* LOCAL FUNCTIONS */
|
||
44 | /******************************************************************************/
|
||
45 | |||
46 | /******************************************************************************/
|
||
47 | /* EXPORTED FUNCTIONS */
|
||
48 | /******************************************************************************/
|
||
49 | e545e620 | Thomas Schöpping | |
50 | /**
|
||
51 | 4c72a54c | Thomas Schöpping | * @brief TLC9547 test function
|
52 | e545e620 | Thomas Schöpping | *
|
53 | * @param[in] stream Stream for input/output.
|
||
54 | 4c72a54c | Thomas Schöpping | * @param[in] test Test object.
|
55 | e545e620 | Thomas Schöpping | *
|
56 | 4c72a54c | Thomas Schöpping | * @return Test result value.
|
57 | e545e620 | Thomas Schöpping | */
|
58 | 4c72a54c | Thomas Schöpping | aos_testresult_t aosTestTlc5947Func(BaseSequentialStream *stream, const aos_test_t *test)
|
59 | e545e620 | Thomas Schöpping | { |
60 | 4c72a54c | Thomas Schöpping | aosDbgCheck(test->data != NULL && ((aos_test_tlc5947data_t*)test->data)->driver != NULL); |
61 | e545e620 | Thomas Schöpping | |
62 | // local variables
|
||
63 | 4c72a54c | Thomas Schöpping | aos_testresult_t result = {0, 0}; |
64 | b23ca7cc | Thomas Schöpping | int32_t status; |
65 | e545e620 | Thomas Schöpping | tlc5947_lld_blank_t blank; |
66 | tlc5947_lld_buffer_t buffer; |
||
67 | |||
68 | chprintf(stream, "reading blank pin...\n");
|
||
69 | 4c72a54c | Thomas Schöpping | status = tlc5947_lld_getBlank(((aos_test_tlc5947data_t*)test->data)->driver, &blank); |
70 | e545e620 | Thomas Schöpping | if (status == APAL_STATUS_OK) {
|
71 | 4c72a54c | Thomas Schöpping | aosTestPassedMsg(stream, &result, "blank is %s\n", (blank == TLC5947_LLD_BLANK_ENABLE) ? "enabled" : "disabled"); |
72 | e545e620 | Thomas Schöpping | } else {
|
73 | 4c72a54c | Thomas Schöpping | aosTestFailedMsg(stream, &result, "0x%08X\n", status);
|
74 | e545e620 | Thomas Schöpping | } |
75 | |||
76 | // enabling/disabling blank pin
|
||
77 | for (uint8_t i = 0; i < 2; ++i) { |
||
78 | blank = (blank == TLC5947_LLD_BLANK_ENABLE) ? TLC5947_LLD_BLANK_DISABLE : TLC5947_LLD_BLANK_ENABLE; |
||
79 | tlc5947_lld_blank_t blank_after = (blank == TLC5947_LLD_BLANK_ENABLE) ? TLC5947_LLD_BLANK_DISABLE : TLC5947_LLD_BLANK_ENABLE; |
||
80 | chprintf(stream, "%s blank pin...\n", (blank == TLC5947_LLD_BLANK_ENABLE) ? "enabling" : "disabling"); |
||
81 | 4c72a54c | Thomas Schöpping | status = tlc5947_lld_setBlank(((aos_test_tlc5947data_t*)test->data)->driver, blank); |
82 | status |= tlc5947_lld_getBlank(((aos_test_tlc5947data_t*)test->data)->driver, &blank_after); |
||
83 | e545e620 | Thomas Schöpping | if (status == APAL_STATUS_OK && blank_after == blank) {
|
84 | 4c72a54c | Thomas Schöpping | aosTestPassed(stream, &result); |
85 | e545e620 | Thomas Schöpping | } else {
|
86 | 4c72a54c | Thomas Schöpping | aosTestFailedMsg(stream, &result, "0x%08X\n", status);
|
87 | e545e620 | Thomas Schöpping | } |
88 | } |
||
89 | |||
90 | chprintf(stream, "setting all black and dimming white...\n");
|
||
91 | 4c72a54c | Thomas Schöpping | status = tlc5947_lld_setBlank(((aos_test_tlc5947data_t*)test->data)->driver, TLC5947_LLD_BLANK_ENABLE); |
92 | e545e620 | Thomas Schöpping | memset(buffer.data, 0, TLC5947_LLD_BUFFER_SIZE);
|
93 | 4c72a54c | Thomas Schöpping | status |= tlc5947_lld_write(((aos_test_tlc5947data_t*)test->data)->driver, &buffer); |
94 | status |= tlc5947_lld_update(((aos_test_tlc5947data_t*)test->data)->driver); |
||
95 | status |= tlc5947_lld_setBlank(((aos_test_tlc5947data_t*)test->data)->driver, TLC5947_LLD_BLANK_DISABLE); |
||
96 | e545e620 | Thomas Schöpping | for (uint8_t bit = 0; bit < TLC5947_LLD_PWM_RESOLUTION_BITS; ++bit) { |
97 | for (uint8_t channel = 0; channel < TLC5947_LLD_NUM_CHANNELS; ++channel) { |
||
98 | tlc5947_lld_setBuffer(&buffer, channel, (1 << (bit+1)) - 1); |
||
99 | } |
||
100 | 4c72a54c | Thomas Schöpping | status |= tlc5947_lld_write(((aos_test_tlc5947data_t*)test->data)->driver, &buffer); |
101 | status |= tlc5947_lld_update(((aos_test_tlc5947data_t*)test->data)->driver); |
||
102 | e545e620 | Thomas Schöpping | aosThdMSleep(100);
|
103 | } |
||
104 | 3106e8cc | Thomas Schöpping | if (status == APAL_STATUS_OK || status == APAL_STATUS_WARNING) {
|
105 | 4c72a54c | Thomas Schöpping | aosTestPassed(stream, &result); |
106 | e545e620 | Thomas Schöpping | } else {
|
107 | 4c72a54c | Thomas Schöpping | aosTestFailedMsg(stream, &result, "0x%08X\n", status);
|
108 | e545e620 | Thomas Schöpping | } |
109 | |||
110 | chprintf(stream, "NOT dimming black again...\n");
|
||
111 | status = APAL_STATUS_OK; |
||
112 | for (uint8_t bit = TLC5947_LLD_PWM_RESOLUTION_BITS; bit > 0; --bit) { |
||
113 | for (uint8_t channel = 0; channel < TLC5947_LLD_NUM_CHANNELS; ++channel) { |
||
114 | tlc5947_lld_setBuffer(&buffer, channel, (1 << bit) - 1); |
||
115 | } |
||
116 | 4c72a54c | Thomas Schöpping | status |= tlc5947_lld_setBlank(((aos_test_tlc5947data_t*)test->data)->driver, TLC5947_LLD_BLANK_ENABLE); |
117 | status |= tlc5947_lld_write(((aos_test_tlc5947data_t*)test->data)->driver, &buffer); |
||
118 | status |= tlc5947_lld_setBlank(((aos_test_tlc5947data_t*)test->data)->driver, TLC5947_LLD_BLANK_ENABLE); |
||
119 | e545e620 | Thomas Schöpping | // Grayscale data is not updated this time (tlc5947_lld_update() not called).
|
120 | // TODO: For some reason the PWMs are updated nevertheless.
|
||
121 | aosThdMSleep(100);
|
||
122 | } |
||
123 | 4c72a54c | Thomas Schöpping | status |= tlc5947_lld_setBlank(((aos_test_tlc5947data_t*)test->data)->driver, TLC5947_LLD_BLANK_ENABLE); |
124 | 3106e8cc | Thomas Schöpping | if (status == APAL_STATUS_OK || status == APAL_STATUS_WARNING) {
|
125 | 4c72a54c | Thomas Schöpping | aosTestPassed(stream, &result); |
126 | e545e620 | Thomas Schöpping | } else {
|
127 | 4c72a54c | Thomas Schöpping | aosTestFailedMsg(stream, &result, "0x%08X\n", status);
|
128 | e545e620 | Thomas Schöpping | } |
129 | |||
130 | chprintf(stream, "setting each channel incrementally...\n");
|
||
131 | status = APAL_STATUS_OK; |
||
132 | memset(buffer.data, 0, TLC5947_LLD_BUFFER_SIZE);
|
||
133 | 4c72a54c | Thomas Schöpping | status |= tlc5947_lld_write(((aos_test_tlc5947data_t*)test->data)->driver, &buffer); |
134 | status |= tlc5947_lld_update(((aos_test_tlc5947data_t*)test->data)->driver); |
||
135 | status |= tlc5947_lld_setBlank(((aos_test_tlc5947data_t*)test->data)->driver, TLC5947_LLD_BLANK_DISABLE); |
||
136 | e545e620 | Thomas Schöpping | for (uint8_t channel = 0; channel < TLC5947_LLD_NUM_CHANNELS; ++channel) { |
137 | uint16_t value = 0x0000u;
|
||
138 | for (uint8_t byte = 0; byte < 3; ++byte) { |
||
139 | switch (byte) {
|
||
140 | case 0: |
||
141 | value |= 0x00Fu;
|
||
142 | break;
|
||
143 | case 1: |
||
144 | value |= 0x0F0u;
|
||
145 | break;
|
||
146 | case 2: |
||
147 | value |= 0xF00u;
|
||
148 | break;
|
||
149 | } |
||
150 | tlc5947_lld_setBuffer(&buffer, channel, value); |
||
151 | 4c72a54c | Thomas Schöpping | status |= tlc5947_lld_write(((aos_test_tlc5947data_t*)test->data)->driver, &buffer); |
152 | status |= tlc5947_lld_update(((aos_test_tlc5947data_t*)test->data)->driver); |
||
153 | c930aa01 | Thomas Schöpping | aosThdSleep(10.0f / TLC5947_LLD_NUM_CHANNELS / 3.0f); |
154 | e545e620 | Thomas Schöpping | tlc5947_lld_setBuffer(&buffer, channel, 0);
|
155 | } |
||
156 | } |
||
157 | 3106e8cc | Thomas Schöpping | if (status == APAL_STATUS_OK || status == APAL_STATUS_WARNING) {
|
158 | 4c72a54c | Thomas Schöpping | aosTestPassed(stream, &result); |
159 | e545e620 | Thomas Schöpping | } else {
|
160 | 4c72a54c | Thomas Schöpping | aosTestFailedMsg(stream, &result, "0x%08X\n", status);
|
161 | e545e620 | Thomas Schöpping | } |
162 | |||
163 | chprintf(stream, "setting one color after another...\n");
|
||
164 | status = APAL_STATUS_OK; |
||
165 | c930aa01 | Thomas Schöpping | for (uint8_t color = 0; color < 3; ++color) { |
166 | e545e620 | Thomas Schöpping | for (uint8_t channel = color; channel < TLC5947_LLD_NUM_CHANNELS; channel += 3) { |
167 | const uint16_t val = 0xAF5u; // some deterministic value with high entropy |
||
168 | tlc5947_lld_setBuffer(&buffer, channel, val); |
||
169 | 4c72a54c | Thomas Schöpping | status |= tlc5947_lld_write(((aos_test_tlc5947data_t*)test->data)->driver, &buffer); |
170 | status |= tlc5947_lld_update(((aos_test_tlc5947data_t*)test->data)->driver); |
||
171 | c930aa01 | Thomas Schöpping | status |= (tlc5947_lld_getBuffer(&buffer, channel) != val) ? ((int32_t)1 << 30) : 0; |
172 | e545e620 | Thomas Schöpping | if (status != APAL_STATUS_OK) {
|
173 | break;
|
||
174 | } else {
|
||
175 | c930aa01 | Thomas Schöpping | aosThdSleep(10.0f / TLC5947_LLD_NUM_CHANNELS / 3.0f); |
176 | e545e620 | Thomas Schöpping | } |
177 | } |
||
178 | for (uint8_t channel = 0; channel < TLC5947_LLD_NUM_CHANNELS; ++channel) { |
||
179 | tlc5947_lld_setBuffer(&buffer, channel, 0);
|
||
180 | } |
||
181 | } |
||
182 | 3106e8cc | Thomas Schöpping | if (status == APAL_STATUS_OK || status == APAL_STATUS_WARNING) {
|
183 | 4c72a54c | Thomas Schöpping | aosTestPassed(stream, &result); |
184 | e545e620 | Thomas Schöpping | } else {
|
185 | 4c72a54c | Thomas Schöpping | aosTestFailedMsg(stream, &result, "0x%08X\n", status);
|
186 | e545e620 | Thomas Schöpping | } |
187 | |||
188 | // turn LEDs off
|
||
189 | 4c72a54c | Thomas Schöpping | tlc5947_lld_setBlank(((aos_test_tlc5947data_t*)test->data)->driver, TLC5947_LLD_BLANK_ENABLE); |
190 | e545e620 | Thomas Schöpping | memset(buffer.data, 0, TLC5947_LLD_BUFFER_SIZE);
|
191 | 4c72a54c | Thomas Schöpping | tlc5947_lld_write(((aos_test_tlc5947data_t*)test->data)->driver, &buffer); |
192 | tlc5947_lld_update(((aos_test_tlc5947data_t*)test->data)->driver); |
||
193 | e545e620 | Thomas Schöpping | |
194 | 4c72a54c | Thomas Schöpping | aosTestInfoMsg(stream, "driver object memory footprint: %u bytes\n", sizeof(TLC5947Driver)); |
195 | e545e620 | Thomas Schöpping | |
196 | return result;
|
||
197 | } |
||
198 | |||
199 | 4c72a54c | Thomas Schöpping | #endif /* (AMIROOS_CFG_TESTS_ENABLE == true) */ |