2018-10-24 18:17:58 +00:00
|
|
|
/* -*- c++ -*- */
|
2020-02-19 13:11:45 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2020 hcab14@gmail.com.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
2018-10-24 18:17:58 +00:00
|
|
|
*/
|
|
|
|
|
2020-02-19 13:11:45 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
2018-10-24 18:17:58 +00:00
|
|
|
|
|
|
|
#include <digitalhf/adaptive_dfe.h>
|
2020-02-19 13:11:45 +00:00
|
|
|
#include <gnuradio/attributes.h>
|
|
|
|
#include <boost/test/unit_test.hpp>
|
2018-10-24 18:17:58 +00:00
|
|
|
|
|
|
|
namespace gr {
|
|
|
|
namespace digitalhf {
|
|
|
|
|
2020-02-19 13:11:45 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(test_adaptive_dfe_t1)
|
2018-10-24 18:17:58 +00:00
|
|
|
{
|
|
|
|
// Put test here
|
|
|
|
}
|
|
|
|
|
|
|
|
} /* namespace digitalhf */
|
|
|
|
} /* namespace gr */
|