- add state changed text

- adjust band width

git-svn-id: http://moon:8086/svn/software/trunk/projects/GnuRadio@393 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2019-01-08 18:08:36 +00:00
parent 972e8d1582
commit 3f42be1d5d
2 changed files with 6 additions and 2 deletions
+2 -2
View File
@@ -1031,7 +1031,7 @@
</param>
<param>
<key>cutoff_freq</key>
<value>0.5*dsp_rate/2</value>
<value>0.25*dsp_rate/2</value>
</param>
<param>
<key>decim</key>
@@ -1079,7 +1079,7 @@
</param>
<param>
<key>width</key>
<value>0.5*dsp_rate/2/10</value>
<value>0.25*dsp_rate/2/10</value>
</param>
<param>
<key>win</key>
+4
View File
@@ -142,6 +142,10 @@ int preamble_sync_impl::general_work (int noutput_items, gr_vector_int &ninput_i
out[j++] = m_word;
break;
}
if (m_state != m_stateNext)
{
fprintf(stderr, "State changed\n");
}
m_state = m_stateNext;
}