diff options
author | Matt Ettus <matt@ettus.com> | 2010-03-08 16:13:06 -0800 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-03-08 16:13:06 -0800 |
commit | e273ea92d83d46ca350ac07e3d836a4d99b106c2 (patch) | |
tree | 4fdf1a5b5f726834c4148d9fb5df8cc0717d72dc /host/apps/omap_debug | |
parent | 3cd7bc9be6420623eb7803e490b39ecc75d83ed9 (diff) | |
download | uhd-e273ea92d83d46ca350ac07e3d836a4d99b106c2.tar.gz uhd-e273ea92d83d46ca350ac07e3d836a4d99b106c2.tar.bz2 uhd-e273ea92d83d46ca350ac07e3d836a4d99b106c2.zip |
proper flags bits
Diffstat (limited to 'host/apps/omap_debug')
-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 |