This commit is contained in:
Charles J. Cliffe 2014-11-22 23:38:37 -05:00
parent 0e2984ab18
commit ac20bc1e84
2 changed files with 1 additions and 9 deletions

View File

@ -103,14 +103,6 @@ void AppFrame::OnNewWindow(wxCommandEvent& WXUNUSED(event)) {
}
void AppFrame::OnThread(wxCommandEvent& event) {
SDRThreadIQData *iqData;
std::vector<signed char> *new_uc_buffer;
std::vector<float> *new_float_buffer;
std::string asdf("beep");
// SDR IQ -> Demodulator
event.Skip();
}

View File

@ -75,7 +75,7 @@ public:
DemodulatorType demodType;
DemodulatorThreadParameters() :
audioInputQueue(NULL), inputRate(SRATE), inputResampleRate(200000), demodResampleRate(100000), audioSampleRate(48000), filterFrequency(
audioInputQueue(NULL), inputRate(SRATE), inputResampleRate(200000), demodResampleRate(100000), audioSampleRate(AUDIO_FREQUENCY), filterFrequency(
32000), demodType(DEMOD_TYPE_WFM) {
}