aboutsummaryrefslogtreecommitdiffstats
path: root/host/examples/twinrx_freq_hopping.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/examples/twinrx_freq_hopping.cpp')
-rw-r--r--host/examples/twinrx_freq_hopping.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/examples/twinrx_freq_hopping.cpp b/host/examples/twinrx_freq_hopping.cpp
index 6d7018912..878129d92 100644
--- a/host/examples/twinrx_freq_hopping.cpp
+++ b/host/examples/twinrx_freq_hopping.cpp
@@ -101,7 +101,7 @@ static void write_fft_to_file(const std::string &fft_path) {
std::cout << "Calculating FFTs (this may take a while)... " << std::flush;
std::ofstream ofile(fft_path.c_str(), std::ios::binary);
BOOST_FOREACH(const recv_buff_t &buff, buffs) {
- std::vector<float> fft = acsii_art_dft::log_pwr_dft(&buff.front(), buff.size());
+ std::vector<float> fft = ascii_art_dft::log_pwr_dft(&buff.front(), buff.size());
ofile.write((char*)&fft[0], (sizeof(float)*fft.size()));
}
ofile.close();