From 4152b42fbc9f30c981131106c49cd6a25701be97 Mon Sep 17 00:00:00 2001 From: natetemple Date: Mon, 15 May 2017 14:40:51 -0700 Subject: Examples: Fix ascii typos --- host/examples/twinrx_freq_hopping.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'host/examples/twinrx_freq_hopping.cpp') 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 fft = acsii_art_dft::log_pwr_dft(&buff.front(), buff.size()); + std::vector fft = ascii_art_dft::log_pwr_dft(&buff.front(), buff.size()); ofile.write((char*)&fft[0], (sizeof(float)*fft.size())); } ofile.close(); -- cgit v1.2.3