new app to test the ram
[debian/gnuradio] / usrp2 / firmware / apps / test_ram.c
1 /*
2  * Copyright 2007 Free Software Foundation, Inc.
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include <stdio.h>
19 #include <stdint.h>
20 #include <u2_init.h>            /* FIXME */
21 #include <sd.h>
22 #include <string.h>
23 #include <hal_io.h>
24 #include <nonstdio.h>
25 #include <hal_uart.h>
26
27 #define ASSERT_TRUE(x) \
28   do { \
29     if (!(x)){ \
30       printf("ASSERT_TRUE failed on line %d\n", __LINE__); \
31       nerrors++; \
32     } \
33   } while(0)
34
35 #define ASSERT_FALSE(x) \
36   do { \
37     if (x){ \
38       printf("ASSERT_FALSE failed on line %d\n", __LINE__); \
39       nerrors++; \
40     } \
41   } while(0)
42
43
44 #define BUFSIZE 128
45
46 int
47 main(void)
48 {
49   int i,j,k;
50   unsigned char buf[512];
51
52   u2_init();
53   //hal_uart_init();
54   //puts("\ntest_ram\n");
55   
56   output_regs->ram_page = 0;
57
58   //puts("r[0]=DEADBEEF\n");
59   extram[0] = 0xDEADBEEF;
60   extram[1] = 0xF00D1234;
61   extram[7] = 0x76543210;
62   puts("RD\n");
63   i = extram[0];
64   k = extram[1];
65   j = extram[7];
66   //puts("r0=");
67   
68   puthex32_nl(i);
69   puthex32_nl(k);
70   puthex32_nl(j);
71   puts("Done");
72   hal_finish();
73   return 0;
74 }
75