amiro-os / unittests / periphery-lld / src / ut_alld_tlc5947.c @ f3ac1c96
History | View | Annotate | Download (8.211 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 | #include <ut_alld_tlc5947.h> |
||
| 20 | |||
| 21 | #if ((AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_TLC5947)) || defined(__DOXYGEN__) |
||
| 22 | |||
| 23 | #include <aos_debug.h> |
||
| 24 | #include <chprintf.h> |
||
| 25 | #include <alld_tlc5947.h> |
||
| 26 | #include <string.h> |
||
| 27 | #include <aos_thread.h> |
||
| 28 | f3ac1c96 | Thomas Schöpping | /******************************************************************************/
|
| 29 | /* LOCAL DEFINITIONS */
|
||
| 30 | /******************************************************************************/
|
||
| 31 | |||
| 32 | /******************************************************************************/
|
||
| 33 | /* EXPORTED VARIABLES */
|
||
| 34 | /******************************************************************************/
|
||
| 35 | |||
| 36 | /******************************************************************************/
|
||
| 37 | /* LOCAL TYPES */
|
||
| 38 | /******************************************************************************/
|
||
| 39 | |||
| 40 | /******************************************************************************/
|
||
| 41 | /* LOCAL VARIABLES */
|
||
| 42 | /******************************************************************************/
|
||
| 43 | |||
| 44 | /******************************************************************************/
|
||
| 45 | /* LOCAL FUNCTIONS */
|
||
| 46 | /******************************************************************************/
|
||
| 47 | |||
| 48 | /******************************************************************************/
|
||
| 49 | /* EXPORTED FUNCTIONS */
|
||
| 50 | /******************************************************************************/
|
||
| 51 | e545e620 | Thomas Schöpping | |
| 52 | /**
|
||
| 53 | * @brief TLC9547 unit test function
|
||
| 54 | *
|
||
| 55 | * @param[in] stream Stream for input/output.
|
||
| 56 | * @param[in] ut Unit test object.
|
||
| 57 | *
|
||
| 58 | * @return Unit test result value.
|
||
| 59 | */
|
||
| 60 | aos_utresult_t utAlldTlc5947Func(BaseSequentialStream *stream, aos_unittest_t *ut) |
||
| 61 | {
|
||
| 62 | aosDbgCheck(ut->data != NULL);
|
||
| 63 | |||
| 64 | // local variables
|
||
| 65 | aos_utresult_t result = {0, 0};
|
||
| 66 | uint32_t status = 0;
|
||
| 67 | tlc5947_lld_blank_t blank; |
||
| 68 | tlc5947_lld_buffer_t buffer; |
||
| 69 | |||
| 70 | chprintf(stream, "reading blank pin...\n");
|
||
| 71 | status = tlc5947_lld_getBlank((TLC5947Driver*)ut->data, &blank); |
||
| 72 | if (status == APAL_STATUS_OK) {
|
||
| 73 | aosUtPassedMsg(stream, &result, "blank is %s\n", (blank == TLC5947_LLD_BLANK_ENABLE) ? "enabled" : "disabled"); |
||
| 74 | } else {
|
||
| 75 | aosUtFailedMsg(stream, &result, "0x%08X\n", status);
|
||
| 76 | } |
||
| 77 | |||
| 78 | // enabling/disabling blank pin
|
||
| 79 | for (uint8_t i = 0; i < 2; ++i) { |
||
| 80 | blank = (blank == TLC5947_LLD_BLANK_ENABLE) ? TLC5947_LLD_BLANK_DISABLE : TLC5947_LLD_BLANK_ENABLE; |
||
| 81 | tlc5947_lld_blank_t blank_after = (blank == TLC5947_LLD_BLANK_ENABLE) ? TLC5947_LLD_BLANK_DISABLE : TLC5947_LLD_BLANK_ENABLE; |
||
| 82 | chprintf(stream, "%s blank pin...\n", (blank == TLC5947_LLD_BLANK_ENABLE) ? "enabling" : "disabling"); |
||
| 83 | status = tlc5947_lld_setBlank((TLC5947Driver*)ut->data, blank); |
||
| 84 | status |= tlc5947_lld_getBlank((TLC5947Driver*)ut->data, &blank_after); |
||
| 85 | if (status == APAL_STATUS_OK && blank_after == blank) {
|
||
| 86 | aosUtPassed(stream, &result); |
||
| 87 | } else {
|
||
| 88 | aosUtFailedMsg(stream, &result, "0x%08X\n", status);
|
||
| 89 | } |
||
| 90 | } |
||
| 91 | |||
| 92 | chprintf(stream, "setting all black and dimming white...\n");
|
||
| 93 | status = tlc5947_lld_setBlank((TLC5947Driver*)ut->data, TLC5947_LLD_BLANK_ENABLE); |
||
| 94 | memset(buffer.data, 0, TLC5947_LLD_BUFFER_SIZE);
|
||
| 95 | status |= tlc5947_lld_write((TLC5947Driver*)ut->data, &buffer); |
||
| 96 | status |= tlc5947_lld_update((TLC5947Driver*)ut->data); |
||
| 97 | status |= tlc5947_lld_setBlank((TLC5947Driver*)ut->data, TLC5947_LLD_BLANK_DISABLE); |
||
| 98 | for (uint8_t bit = 0; bit < TLC5947_LLD_PWM_RESOLUTION_BITS; ++bit) { |
||
| 99 | for (uint8_t channel = 0; channel < TLC5947_LLD_NUM_CHANNELS; ++channel) { |
||
| 100 | tlc5947_lld_setBuffer(&buffer, channel, (1 << (bit+1)) - 1); |
||
| 101 | } |
||
| 102 | status |= tlc5947_lld_write((TLC5947Driver*)ut->data, &buffer); |
||
| 103 | status |= tlc5947_lld_update((TLC5947Driver*)ut->data); |
||
| 104 | aosThdMSleep(100);
|
||
| 105 | } |
||
| 106 | if (status == APAL_STATUS_OK) {
|
||
| 107 | aosUtPassed(stream, &result); |
||
| 108 | } else {
|
||
| 109 | aosUtFailedMsg(stream, &result, "0x%08X\n", status);
|
||
| 110 | } |
||
| 111 | |||
| 112 | chprintf(stream, "NOT dimming black again...\n");
|
||
| 113 | status = APAL_STATUS_OK; |
||
| 114 | for (uint8_t bit = TLC5947_LLD_PWM_RESOLUTION_BITS; bit > 0; --bit) { |
||
| 115 | for (uint8_t channel = 0; channel < TLC5947_LLD_NUM_CHANNELS; ++channel) { |
||
| 116 | tlc5947_lld_setBuffer(&buffer, channel, (1 << bit) - 1); |
||
| 117 | } |
||
| 118 | status |= tlc5947_lld_setBlank((TLC5947Driver*)ut->data, TLC5947_LLD_BLANK_ENABLE); |
||
| 119 | status |= tlc5947_lld_write((TLC5947Driver*)ut->data, &buffer); |
||
| 120 | status |= tlc5947_lld_setBlank((TLC5947Driver*)ut->data, TLC5947_LLD_BLANK_ENABLE); |
||
| 121 | // Grayscale data is not updated this time (tlc5947_lld_update() not called).
|
||
| 122 | // TODO: For some reason the PWMs are updated nevertheless.
|
||
| 123 | aosThdMSleep(100);
|
||
| 124 | } |
||
| 125 | status |= tlc5947_lld_setBlank((TLC5947Driver*)ut->data, TLC5947_LLD_BLANK_ENABLE); |
||
| 126 | if (status == APAL_STATUS_OK) {
|
||
| 127 | aosUtPassed(stream, &result); |
||
| 128 | } else {
|
||
| 129 | aosUtFailedMsg(stream, &result, "0x%08X\n", status);
|
||
| 130 | } |
||
| 131 | |||
| 132 | chprintf(stream, "setting each channel incrementally...\n");
|
||
| 133 | status = APAL_STATUS_OK; |
||
| 134 | memset(buffer.data, 0, TLC5947_LLD_BUFFER_SIZE);
|
||
| 135 | status |= tlc5947_lld_write((TLC5947Driver*)ut->data, &buffer); |
||
| 136 | status |= tlc5947_lld_update((TLC5947Driver*)ut->data); |
||
| 137 | status |= tlc5947_lld_setBlank((TLC5947Driver*)ut->data, TLC5947_LLD_BLANK_DISABLE); |
||
| 138 | for (uint8_t channel = 0; channel < TLC5947_LLD_NUM_CHANNELS; ++channel) { |
||
| 139 | uint16_t value = 0x0000u;
|
||
| 140 | for (uint8_t byte = 0; byte < 3; ++byte) { |
||
| 141 | switch (byte) {
|
||
| 142 | case 0: |
||
| 143 | value |= 0x00Fu;
|
||
| 144 | break;
|
||
| 145 | case 1: |
||
| 146 | value |= 0x0F0u;
|
||
| 147 | break;
|
||
| 148 | case 2: |
||
| 149 | value |= 0xF00u;
|
||
| 150 | break;
|
||
| 151 | } |
||
| 152 | tlc5947_lld_setBuffer(&buffer, channel, value); |
||
| 153 | status |= tlc5947_lld_write((TLC5947Driver*)ut->data, &buffer); |
||
| 154 | status |= tlc5947_lld_update((TLC5947Driver*)ut->data); |
||
| 155 | aosThdSleep(1.0f / 3.0f); |
||
| 156 | tlc5947_lld_setBuffer(&buffer, channel, 0);
|
||
| 157 | } |
||
| 158 | } |
||
| 159 | if (status == APAL_STATUS_OK) {
|
||
| 160 | aosUtPassed(stream, &result); |
||
| 161 | } else {
|
||
| 162 | aosUtFailedMsg(stream, &result, "0x%08X\n", status);
|
||
| 163 | } |
||
| 164 | |||
| 165 | chprintf(stream, "setting one color after another...\n");
|
||
| 166 | status = APAL_STATUS_OK; |
||
| 167 | for (int8_t color = 0; color < 3; ++color) { |
||
| 168 | for (uint8_t channel = color; channel < TLC5947_LLD_NUM_CHANNELS; channel += 3) { |
||
| 169 | const uint16_t val = 0xAF5u; // some deterministic value with high entropy |
||
| 170 | tlc5947_lld_setBuffer(&buffer, channel, val); |
||
| 171 | status |= tlc5947_lld_write((TLC5947Driver*)ut->data, &buffer); |
||
| 172 | status |= tlc5947_lld_update((TLC5947Driver*)ut->data); |
||
| 173 | status |= (tlc5947_lld_getBuffer(&buffer, channel) != val) ? (1 << 31) : 0; |
||
| 174 | if (status != APAL_STATUS_OK) {
|
||
| 175 | break;
|
||
| 176 | } else {
|
||
| 177 | aosThdSleep(1.0f / 8.0f); |
||
| 178 | } |
||
| 179 | } |
||
| 180 | for (uint8_t channel = 0; channel < TLC5947_LLD_NUM_CHANNELS; ++channel) { |
||
| 181 | tlc5947_lld_setBuffer(&buffer, channel, 0);
|
||
| 182 | } |
||
| 183 | } |
||
| 184 | if (status == APAL_STATUS_OK) {
|
||
| 185 | aosUtPassed(stream, &result); |
||
| 186 | } else {
|
||
| 187 | aosUtFailedMsg(stream, &result, "0x%08X\n", status);
|
||
| 188 | } |
||
| 189 | |||
| 190 | // turn LEDs off
|
||
| 191 | tlc5947_lld_setBlank((TLC5947Driver*)ut->data, TLC5947_LLD_BLANK_ENABLE); |
||
| 192 | memset(buffer.data, 0, TLC5947_LLD_BUFFER_SIZE);
|
||
| 193 | tlc5947_lld_write((TLC5947Driver*)ut->data, &buffer); |
||
| 194 | tlc5947_lld_update((TLC5947Driver*)ut->data); |
||
| 195 | |||
| 196 | aosUtInfoMsg(stream, "driver object memory footprint: %u bytes\n", sizeof(TLC5947Driver)); |
||
| 197 | |||
| 198 | return result;
|
||
| 199 | } |
||
| 200 | |||
| 201 | #endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_TLC5947) */ |