| 1 |
198 |
zero_gravi |
// #################################################################################################
|
| 2 |
|
|
// # < Custom Functions Unit Test Program > #
|
| 3 |
|
|
// # ********************************************************************************************* #
|
| 4 |
|
|
// # BSD 3-Clause License #
|
| 5 |
|
|
// # #
|
| 6 |
|
|
// # Copyright (c) 2020, Stephan Nolting. All rights reserved. #
|
| 7 |
|
|
// # #
|
| 8 |
|
|
// # Redistribution and use in source and binary forms, with or without modification, are #
|
| 9 |
|
|
// # permitted provided that the following conditions are met: #
|
| 10 |
|
|
// # #
|
| 11 |
|
|
// # 1. Redistributions of source code must retain the above copyright notice, this list of #
|
| 12 |
|
|
// # conditions and the following disclaimer. #
|
| 13 |
|
|
// # #
|
| 14 |
|
|
// # 2. Redistributions in binary form must reproduce the above copyright notice, this list of #
|
| 15 |
|
|
// # conditions and the following disclaimer in the documentation and/or other materials #
|
| 16 |
|
|
// # provided with the distribution. #
|
| 17 |
|
|
// # #
|
| 18 |
|
|
// # 3. Neither the name of the copyright holder nor the names of its contributors may be used to #
|
| 19 |
|
|
// # endorse or promote products derived from this software without specific prior written #
|
| 20 |
|
|
// # permission. #
|
| 21 |
|
|
// # #
|
| 22 |
|
|
// # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS #
|
| 23 |
|
|
// # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF #
|
| 24 |
|
|
// # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE #
|
| 25 |
|
|
// # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, #
|
| 26 |
|
|
// # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE #
|
| 27 |
|
|
// # GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED #
|
| 28 |
|
|
// # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING #
|
| 29 |
|
|
// # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED #
|
| 30 |
|
|
// # OF THE POSSIBILITY OF SUCH DAMAGE. #
|
| 31 |
|
|
// # ********************************************************************************************* #
|
| 32 |
|
|
// # The NEO430 Processor - https://github.com/stnolting/neo430 #
|
| 33 |
|
|
// #################################################################################################
|
| 34 |
|
|
|
| 35 |
|
|
|
| 36 |
|
|
// Libraries
|
| 37 |
|
|
#include <stdint.h>
|
| 38 |
|
|
#include <neo430.h>
|
| 39 |
|
|
|
| 40 |
|
|
// Configuration
|
| 41 |
|
|
#define BAUD_RATE 19200
|
| 42 |
|
|
|
| 43 |
|
|
// Prototypes
|
| 44 |
|
|
void verify16(char *s, uint16_t a, uint16_t b);
|
| 45 |
|
|
|
| 46 |
|
|
|
| 47 |
|
|
/* ------------------------------------------------------------
|
| 48 |
|
|
* INFO Main function
|
| 49 |
|
|
* ------------------------------------------------------------ */
|
| 50 |
|
|
int main(void) {
|
| 51 |
|
|
|
| 52 |
|
|
// setup UART
|
| 53 |
|
|
neo430_uart_setup(BAUD_RATE);
|
| 54 |
|
|
|
| 55 |
|
|
// intro text
|
| 56 |
|
|
neo430_uart_br_print("\nCustom Functions Unit (CFU) test program\n");
|
| 57 |
|
|
|
| 58 |
|
|
// check if CFU present
|
| 59 |
|
|
if (!(SYS_FEATURES & (1<<SYS_CFU_EN))) {
|
| 60 |
|
|
neo430_uart_br_print("Error! No CFU synthesized!");
|
| 61 |
|
|
return 1;
|
| 62 |
|
|
}
|
| 63 |
|
|
|
| 64 |
|
|
// wait for user to start
|
| 65 |
|
|
neo430_uart_br_print("Press any key to start.\n\n");
|
| 66 |
|
|
while (neo430_uart_char_received() == 0);
|
| 67 |
|
|
|
| 68 |
|
|
// initialize test vectors
|
| 69 |
|
|
uint8_t i;
|
| 70 |
|
|
uint16_t test_data16[16];
|
| 71 |
|
|
for (i=0; i<8; i++)
|
| 72 |
|
|
test_data16[i] = i*1728 + 913;
|
| 73 |
|
|
|
| 74 |
|
|
|
| 75 |
|
|
neo430_uart_br_print("Testing read/write accesses...\n");
|
| 76 |
|
|
|
| 77 |
|
|
CFU_REG0 = test_data16[0];
|
| 78 |
|
|
verify16("CFU_REG0", CFU_REG0, test_data16[0]);
|
| 79 |
|
|
|
| 80 |
|
|
CFU_REG1 = test_data16[1];
|
| 81 |
|
|
verify16("CFU_REG1", CFU_REG1, test_data16[1]);
|
| 82 |
|
|
|
| 83 |
|
|
CFU_REG2 = test_data16[2];
|
| 84 |
|
|
verify16("CFU_REG2", CFU_REG2, test_data16[2]);
|
| 85 |
|
|
|
| 86 |
|
|
CFU_REG3 = test_data16[3];
|
| 87 |
|
|
verify16("CFU_REG3", CFU_REG3, test_data16[3]);
|
| 88 |
|
|
|
| 89 |
|
|
CFU_REG4 = test_data16[4];
|
| 90 |
|
|
verify16("CFU_REG4", CFU_REG4, test_data16[4]);
|
| 91 |
|
|
|
| 92 |
|
|
CFU_REG5 = test_data16[5];
|
| 93 |
|
|
verify16("CFU_REG5", CFU_REG5, test_data16[5]);
|
| 94 |
|
|
|
| 95 |
|
|
CFU_REG6 = test_data16[6];
|
| 96 |
|
|
verify16("CFU_REG6", CFU_REG6, test_data16[6]);
|
| 97 |
|
|
|
| 98 |
|
|
CFU_REG7 = test_data16[7];
|
| 99 |
|
|
verify16("CFU_REG7", CFU_REG7, test_data16[7]);
|
| 100 |
|
|
|
| 101 |
|
|
return 0;
|
| 102 |
|
|
}
|
| 103 |
|
|
|
| 104 |
|
|
|
| 105 |
|
|
/* ------------------------------------------------------------
|
| 106 |
|
|
* INFO Verify 16-bit transfer
|
| 107 |
|
|
* ------------------------------------------------------------ */
|
| 108 |
|
|
void verify16(char *s, uint16_t a, uint16_t b) {
|
| 109 |
|
|
|
| 110 |
|
|
neo430_uart_br_print("Checking ");
|
| 111 |
|
|
neo430_uart_br_print(s);
|
| 112 |
|
|
neo430_uart_br_print(" - expected: 0x");
|
| 113 |
|
|
neo430_uart_print_hex_word(b);
|
| 114 |
|
|
neo430_uart_br_print(", received: 0x");
|
| 115 |
|
|
neo430_uart_print_hex_word(a);
|
| 116 |
|
|
|
| 117 |
|
|
if (a == b)
|
| 118 |
|
|
neo430_uart_br_print(" - OK\n");
|
| 119 |
|
|
else
|
| 120 |
|
|
neo430_uart_br_print(" - FAILED\n");
|
| 121 |
|
|
}
|
| 122 |
|
|
|