diff options
author | Josh Blum <josh@joshknows.com> | 2010-12-10 18:57:17 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-12-11 18:43:48 -0800 |
commit | 096405b9291d1d3b3ac37d9768232cca43a37db6 (patch) | |
tree | 48d18abe87ffec517a76e2fd3fad3c4f5aa92201 /firmware/microblaze/usrp2 | |
parent | e53662172430ba055f6b60d74c142995aa24deaf (diff) | |
download | uhd-096405b9291d1d3b3ac37d9768232cca43a37db6.tar.gz uhd-096405b9291d1d3b3ac37d9768232cca43a37db6.tar.bz2 uhd-096405b9291d1d3b3ac37d9768232cca43a37db6.zip |
packet_router: added control register to set the udp control port
Diffstat (limited to 'firmware/microblaze/usrp2')
-rw-r--r-- | firmware/microblaze/usrp2/memory_map.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/microblaze/usrp2/memory_map.h b/firmware/microblaze/usrp2/memory_map.h index 09aef643e..23d96389f 100644 --- a/firmware/microblaze/usrp2/memory_map.h +++ b/firmware/microblaze/usrp2/memory_map.h @@ -248,7 +248,8 @@ hwconfig_wishbone_divisor(void) typedef struct { volatile uint32_t misc_ctrl; volatile uint32_t ip_addr; - volatile uint32_t udp_ports; //dsp0 (low 16) dsp1 (high 16) + volatile uint32_t ctrl_ports; //ctrl (low 16) other (high 16) + volatile uint32_t data_ports; //dsp0 (low 16) dsp1 (high 16) volatile uint32_t cpu_out_ctrl; volatile uint32_t cpu_inp_ctrl; } buffer_pool_ctrl_t; |