diff options
author | Josh Blum <josh@joshknows.com> | 2011-01-07 14:53:22 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-01-07 14:53:22 -0800 |
commit | 4ca01c6dbeb253162e64a13f69ce981fc0b8b9bd (patch) | |
tree | 7402313cfb3b814cd778443371673b8fe169ffff /firmware/zpu | |
parent | 64263e44bf074448751eb7b2a144a6096adb6a6a (diff) | |
download | uhd-4ca01c6dbeb253162e64a13f69ce981fc0b8b9bd.tar.gz uhd-4ca01c6dbeb253162e64a13f69ce981fc0b8b9bd.tar.bz2 uhd-4ca01c6dbeb253162e64a13f69ce981fc0b8b9bd.zip |
usrp-n2xx: remapped the front panel LEDs for firmware
Diffstat (limited to 'firmware/zpu')
-rw-r--r-- | firmware/zpu/usrp2p/memory_map.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/firmware/zpu/usrp2p/memory_map.h b/firmware/zpu/usrp2p/memory_map.h index e043bed8a..36d8ac9f2 100644 --- a/firmware/zpu/usrp2p/memory_map.h +++ b/firmware/zpu/usrp2p/memory_map.h @@ -267,11 +267,11 @@ typedef struct { // crazy order that matches the labels on the case -#define LED_A (1 << 2) -#define LED_B (1 << 0) -#define LED_E (1 << 3) -#define LED_D (1 << 1) -#define LED_C (1 << 4) +#define LED_A (1 << 4) +#define LED_B (1 << 1) +#define LED_E (1 << 2) +#define LED_D (1 << 0) +#define LED_C (1 << 3) // LED_F // controlled by CPLD #define LED_RJ45 (1 << 5) |