aboutsummaryrefslogtreecommitdiffstats
path: root/firmware/zpu/usrp2p/udp_fw_update.c
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2012-01-24 08:38:36 -0800
committerJosh Blum <josh@joshknows.com>2012-01-24 08:38:36 -0800
commitcbeb4305b59d4b9370bfa7c6f5da7597f9de8045 (patch)
treee381a0561473d2971d78d30f7562d88aac3bb0b1 /firmware/zpu/usrp2p/udp_fw_update.c
parentd2e4354f7842d7adbdb11367cd8e98af6e463c14 (diff)
downloaduhd-cbeb4305b59d4b9370bfa7c6f5da7597f9de8045.tar.gz
uhd-cbeb4305b59d4b9370bfa7c6f5da7597f9de8045.tar.bz2
uhd-cbeb4305b59d4b9370bfa7c6f5da7597f9de8045.zip
usrp2: same change but to fw updater
Diffstat (limited to 'firmware/zpu/usrp2p/udp_fw_update.c')
-rw-r--r--firmware/zpu/usrp2p/udp_fw_update.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/firmware/zpu/usrp2p/udp_fw_update.c b/firmware/zpu/usrp2p/udp_fw_update.c
index 793011651..5689388a8 100644
--- a/firmware/zpu/usrp2p/udp_fw_update.c
+++ b/firmware/zpu/usrp2p/udp_fw_update.c
@@ -67,12 +67,8 @@ void handle_udp_fw_update_packet(struct socket_address src, struct socket_addres
update_data_out.id = USRP2_FW_UPDATE_ID_OHAI_OMG;
memcpy(&update_data_out.data.ip_addr, (void *)get_ip_addr(), sizeof(struct ip_addr));
//this is to stop streaming for the folks who think updating while streaming is a good idea
- sr_rx_ctrl0->cmd = 1 << 31 | 1 << 28; //no samples now
- sr_rx_ctrl0->time_secs = 0;
- sr_rx_ctrl0->time_ticks = 0; //latch the command
- sr_rx_ctrl1->cmd = 1 << 31 | 1 << 28; //no samples now
- sr_rx_ctrl1->time_secs = 0;
- sr_rx_ctrl1->time_ticks = 0; //latch the command
+ sr_rx_ctrl0->clear = 1;
+ sr_rx_ctrl1->clear = 1;
sr_tx_ctrl->cyc_per_up = 0;
break;