summaryrefslogtreecommitdiff
path: root/usrp/host/apps/burn-db-eeprom
diff options
context:
space:
mode:
authorJohnathan Corgan2009-10-06 17:50:59 -0700
committerJohnathan Corgan2009-10-06 17:50:59 -0700
commit69caa7dce5a58b39614b1aba99c2dd71b38af322 (patch)
tree7573d9e00e30b540be1a27af892412fca528235f /usrp/host/apps/burn-db-eeprom
parentbf0bbd9daf5360b5d1fb5f36dcb968d6bcd0fd60 (diff)
downloadgnuradio-69caa7dce5a58b39614b1aba99c2dd71b38af322.tar.gz
gnuradio-69caa7dce5a58b39614b1aba99c2dd71b38af322.tar.bz2
gnuradio-69caa7dce5a58b39614b1aba99c2dd71b38af322.zip
Clean up for work-in-progress
Copyright updates Trailing whitespace cleanup Move private headers out of install Use standard include guards Code cleanup
Diffstat (limited to 'usrp/host/apps/burn-db-eeprom')
-rwxr-xr-xusrp/host/apps/burn-db-eeprom18
1 files changed, 9 insertions, 9 deletions
diff --git a/usrp/host/apps/burn-db-eeprom b/usrp/host/apps/burn-db-eeprom
index 195c4e897..7ff1e9736 100755
--- a/usrp/host/apps/burn-db-eeprom
+++ b/usrp/host/apps/burn-db-eeprom
@@ -1,24 +1,24 @@
#!/usr/bin/env python
#
-# Copyright 2005,2007 Free Software Foundation, Inc.
-#
+# Copyright 2005,2007,2009 Free Software Foundation, Inc.
+#
# This file is part of GNU Radio
-#
+#
# GNU Radio 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, or (at your option)
# any later version.
-#
+#
# GNU Radio 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 GNU Radio; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street,
# Boston, MA 02110-1301, USA.
-#
+#
from usrpm.usrp_prims import *
from optparse import OptionParser
@@ -105,11 +105,11 @@ def init_eeprom(u, slot_name, force, dbid, oe):
if not e:
print "%s: no d'board, skipped" % (slot_name,)
return True
-
+
if not force and (sum (map (ord, e)) & 0xff) == 0 and ord (e[0]) == 0xDB:
print "%s: already initialized, skipped" % (slot_name,)
return True
-
+
if not write_dboard_eeprom (u, i2c_addr, dbid, oe):
print "%s: failed to write d'board EEPROM" % (slot_name,)
return False
@@ -169,4 +169,4 @@ and at least one side using -A and/or -B."""
if __name__ == "__main__":
main ()
-
+