diff options
author | Josh Blum <josh@joshknows.com> | 2012-01-24 08:27:48 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2012-01-24 08:27:48 -0800 |
commit | d2e4354f7842d7adbdb11367cd8e98af6e463c14 (patch) | |
tree | 8a23d370d2768b9d1363230d00797326d7a7c5dd /firmware/zpu/lib | |
parent | b8e41cbbc9666a9758d0f9f3a57272530716935a (diff) | |
download | uhd-d2e4354f7842d7adbdb11367cd8e98af6e463c14.tar.gz uhd-d2e4354f7842d7adbdb11367cd8e98af6e463c14.tar.bz2 uhd-d2e4354f7842d7adbdb11367cd8e98af6e463c14.zip |
usrp2: firmware should reset dsp on icmp pkt
1) This should kill any streaming,
the previous calls would just stop continuous streaming
2) The breaks were changed to returns
to avoid reprogramming the framer.
Diffstat (limited to 'firmware/zpu/lib')
-rw-r--r-- | firmware/zpu/lib/memory_map.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/firmware/zpu/lib/memory_map.h b/firmware/zpu/lib/memory_map.h index 75727bb23..84298d3c1 100644 --- a/firmware/zpu/lib/memory_map.h +++ b/firmware/zpu/lib/memory_map.h @@ -302,6 +302,7 @@ typedef struct { volatile uint32_t cmd; // {now, chain, num_samples(30) volatile uint32_t time_secs; volatile uint32_t time_ticks; + volatile uint32_t clear; } sr_rx_ctrl_t; #define sr_rx_ctrl0 ((sr_rx_ctrl_t *) _SR_ADDR(SR_RX_CTRL0)) |