diff options
author | Josh Blum <josh@joshknows.com> | 2010-03-15 17:00:57 +0000 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-03-15 17:00:57 +0000 |
commit | 5de235715b36ef9a98ea418832a5382cbf25d4d6 (patch) | |
tree | c079b23308422680b731b44861b29f99f2b5ed2b /host | |
parent | 1bfb556262d12740c71e68a2a071e6e67ed2b3e7 (diff) | |
parent | f6582b27c129aac9ea6991a6a5c7e1f5a17cd7a6 (diff) | |
download | uhd-5de235715b36ef9a98ea418832a5382cbf25d4d6.tar.gz uhd-5de235715b36ef9a98ea418832a5382cbf25d4d6.tar.bz2 uhd-5de235715b36ef9a98ea418832a5382cbf25d4d6.zip |
Merge branch 'u1e_uhd' of git@ettus.sourcerepo.com:ettus/uhd into u1e_uhd
Diffstat (limited to 'host')
-rwxr-xr-x | host/apps/omap_debug/set_debug_pins.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/host/apps/omap_debug/set_debug_pins.py b/host/apps/omap_debug/set_debug_pins.py index d67cc3e58..20071db6b 100755 --- a/host/apps/omap_debug/set_debug_pins.py +++ b/host/apps/omap_debug/set_debug_pins.py @@ -3,12 +3,12 @@ import os # Memory Map -misc_base = 0 -uart_base = 1 -spi_base = 2 -i2c_base = 3 -gpio_base = 4 -settings_base = 5 +misc_base = 0 << 7 +uart_base = 1 << 7 +spi_base = 2 << 7 +i2c_base = 3 << 7 +gpio_base = 4 << 7 +settings_base = 5 << 7 # GPIO offset gpio_pins = 0 |