Imported Upstream version 3.2.2
[debian/gnuradio] / usrp2 / firmware / apps / test_lsdac.c
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2008 Free Software Foundation, Inc.
4  *
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 <lsdac.h>
20 #include <u2_init.h>
21 #include <nonstdio.h>
22 #include <hal_io.h>
23
24 int
25 main(void)
26 {
27   u2_init();
28
29   puts("\ntest_lsdac");
30
31   unsigned int up_counter = 0;
32   unsigned int dn_counter = 0;
33
34   while(1){
35     unsigned int v;
36     v = up_counter;
37     lsdac_write_rx(0, v << 0);
38     lsdac_write_rx(1, v << 1);
39     lsdac_write_rx(2, v << 2);
40     lsdac_write_rx(3, v << 3);
41
42     v = up_counter;
43     lsdac_write_tx(0, v << 0);
44     lsdac_write_tx(1, v << 1);
45     lsdac_write_tx(2, v << 2);
46     lsdac_write_tx(3, v << 3);
47
48     up_counter++;
49     dn_counter--;
50   }
51 }