summaryrefslogtreecommitdiff
path: root/loragw_hal/test/test_loragw_spi.c
diff options
context:
space:
mode:
Diffstat (limited to 'loragw_hal/test/test_loragw_spi.c')
-rw-r--r--loragw_hal/test/test_loragw_spi.c66
1 files changed, 33 insertions, 33 deletions
diff --git a/loragw_hal/test/test_loragw_spi.c b/loragw_hal/test/test_loragw_spi.c
index 76dbeef..c5ab45b 100644
--- a/loragw_hal/test/test_loragw_spi.c
+++ b/loragw_hal/test/test_loragw_spi.c
@@ -1,14 +1,14 @@
/*
- / _____) _ | |
-( (____ _____ ____ _| |_ _____ ____| |__
+ / _____) _ | |
+( (____ _____ ____ _| |_ _____ ____| |__
\____ \| ___ | (_ _) ___ |/ ___) _ \
_____) ) ____| | | || |_| ____( (___| | | |
(______/|_____)_|_|_| \__)_____)\____)_| |_|
©2013 Semtech-Cycleo
Description:
- Minimum test program for the loragw_spi 'library'
- Use logic analyser to check the results.
+ Minimum test program for the loragw_spi 'library'
+ Use logic analyser to check the results.
*/
@@ -35,35 +35,35 @@ Description:
int main(int argc, char **argv)
{
- int i;
- int spi_device;
- uint8_t data;
- uint8_t dataout[BURST_TEST_SIZE];
- uint8_t datain[BURST_TEST_SIZE];
-
- for (i = 0; i < BURST_TEST_SIZE; ++i) {
- dataout[i] = 0x30 + (i % 10); /* ASCCI code for 0 -> 9 */
- datain[i] = 0x23; /* garbage data, to be overwritten by received data */
- }
-
- printf("Beginning of test for loragw_spi.c\n");
- lgw_spi_open(&spi_device);
-
- /* normal R/W test */
- lgw_spi_w(spi_device, 0xAA, 0x96);
- lgw_spi_r(spi_device, 0x55, &data);
-
- /* burst R/W test */
- lgw_spi_wb(spi_device, 0x55, dataout, ARRAY_SIZE(dataout));
- lgw_spi_rb(spi_device, 0x55, datain, ARRAY_SIZE(datain));
-
- /* display results */
- printf("data received: %d\n",data);
-
- lgw_spi_close(spi_device);
- printf("End of test for loragw_spi.c\n");
-
- return 0;
+ int i;
+ int spi_device;
+ uint8_t data;
+ uint8_t dataout[BURST_TEST_SIZE];
+ uint8_t datain[BURST_TEST_SIZE];
+
+ for (i = 0; i < BURST_TEST_SIZE; ++i) {
+ dataout[i] = 0x30 + (i % 10); /* ASCCI code for 0 -> 9 */
+ datain[i] = 0x23; /* garbage data, to be overwritten by received data */
+ }
+
+ printf("Beginning of test for loragw_spi.c\n");
+ lgw_spi_open(&spi_device);
+
+ /* normal R/W test */
+ lgw_spi_w(spi_device, 0xAA, 0x96);
+ lgw_spi_r(spi_device, 0x55, &data);
+
+ /* burst R/W test */
+ lgw_spi_wb(spi_device, 0x55, dataout, ARRAY_SIZE(dataout));
+ lgw_spi_rb(spi_device, 0x55, datain, ARRAY_SIZE(datain));
+
+ /* display results */
+ printf("data received: %d\n",data);
+
+ lgw_spi_close(spi_device);
+ printf("End of test for loragw_spi.c\n");
+
+ return 0;
}
/* --- EOF ------------------------------------------------------------------ */