Imported Upstream version 3.2.2
[debian/gnuradio] / usrp2 / firmware / apps / set_hw_rev.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 #include <u2_init.h>
19 #include <nonstdio.h>
20 #include <i2c.h>
21 #include <usrp2_i2c_addr.h>
22
23 #define HW_REV_MAJOR 0
24 #define HW_REV_MINOR 3
25
26 int
27 main(void)
28 {
29   u2_init();
30
31   putstr("\nset_hw_rev\n");
32
33   bool ok = true;
34   unsigned char maj = HW_REV_MAJOR;
35   unsigned char min = HW_REV_MINOR;
36   ok = eeprom_write(I2C_ADDR_MBOARD, MBOARD_REV_MSB, &maj, 1);
37   ok &= eeprom_write(I2C_ADDR_MBOARD, MBOARD_REV_LSB, &min, 1);
38
39   if (ok)
40     printf("OK: set h/w rev to %d.%d\n", HW_REV_MAJOR, HW_REV_MINOR);
41   else
42     printf("FAILED to set h/w rev to %d.%d\n", HW_REV_MAJOR, HW_REV_MINOR);
43
44   return 0;
45 }