Imported Upstream version 3.2.2
[debian/gnuradio] / usrp2 / firmware / apps / test_sd.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
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;
50   unsigned char buf[512];
51
52   u2_init();
53
54   puts("\ntest_sd\n");
55   
56
57   i = sd_init();
58   if(i)
59     puts("Successfully Init'ed Card\n");
60   else
61     puts("FAILED INIT of Card\n");
62
63   i = sd_read_block(2048,buf);
64   if(i) {
65     puts("READ Command accepted\n");
66     for(i=0;i<512;i++)
67       if((i&15) == 15)
68         puthex8_nl(buf[i]);
69       else {
70         puthex8(buf[i]);
71         putchar(' ');
72       }
73   }
74   else
75     puts("READ Command Rejected\n");
76   
77   puts("Done");
78   hal_finish();
79   return 0;
80 }
81