diff options
author | Josh Blum <josh@joshknows.com> | 2010-11-08 17:22:37 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-11-08 17:22:37 -0800 |
commit | 81c9f77306dc82f250bfb2871b8bd7db67a40085 (patch) | |
tree | b1f1ec0a6feb4d66aaa35be97ffa795b122b3673 /firmware/microblaze/lib | |
parent | 374f6ff05e66d10830a7567d2d793de2bf77c06b (diff) | |
download | uhd-81c9f77306dc82f250bfb2871b8bd7db67a40085.tar.gz uhd-81c9f77306dc82f250bfb2871b8bd7db67a40085.tar.bz2 uhd-81c9f77306dc82f250bfb2871b8bd7db67a40085.zip |
usrp2: implemented clear state for RX and TX control, and zero sample command support
Diffstat (limited to 'firmware/microblaze/lib')
-rw-r--r-- | firmware/microblaze/lib/net_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/microblaze/lib/net_common.c b/firmware/microblaze/lib/net_common.c index 0a085db3a..6305408d6 100644 --- a/firmware/microblaze/lib/net_common.c +++ b/firmware/microblaze/lib/net_common.c @@ -298,7 +298,7 @@ handle_icmp_packet(struct ip_addr src, struct ip_addr dst, sr_tx_ctrl->cyc_per_up = 0; //the end continuous streaming command - sr_rx_ctrl->cmd = (1 << 31) | 1; //one sample, asap + sr_rx_ctrl->cmd = 1 << 31; //no samples now sr_rx_ctrl->time_secs = 0; sr_rx_ctrl->time_ticks = 0; //latch the command |