Clear spectrum FIFO when streaming is stopped.

This commit is contained in:
Jared Boone 2016-01-10 11:00:09 -08:00
parent 62e5ec1dbb
commit 136ba895ef
2 changed files with 5 additions and 0 deletions

View file

@ -42,6 +42,10 @@ public:
_in = _out = 0;
}
void reset_in() {
_in = _out;
}
void reset_out() {
_out = _in;
}