blob: 2fee7e76104f2c1813f490ab2fa0a13ffb156d72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/* -*- c++ -*- */
/*
* Copyright 2009 Free Software Foundation, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <usrp2/usrp2.h>
#include <iostream>
#include <cstdio>
int
main(int argc, char **argv)
{
usrp2::usrp2::sptr u2 = usrp2::usrp2::make("eth0");
// Set io_tx[15] as FPGA output
u2->set_gpio_ddr(usrp2::GPIO_TX_BANK, 0x8000, 0x8000);
// Set io_tx[15] under host sofware control
u2->set_gpio_sels(usrp2::GPIO_TX_BANK, "s...............");
// Write pins
uint16_t v = 0x8765;
u2->write_gpio(usrp2::GPIO_TX_BANK, v, 0x8000);
// Read back
v = 0;
u2->read_gpio(usrp2::GPIO_TX_BANK, &v);
printf("TX GPIO read: %04X\n", v);
return 0;
}
|