Add some baseband constructors.

Some of them I think I took out earlier...
This commit is contained in:
Jared Boone
2015-11-10 14:04:50 -08:00
parent add6171410
commit 111a5f10c0
4 changed files with 36 additions and 4 deletions

View File

@@ -116,6 +116,16 @@ private:
template<typename ErrorFilter>
class ClockRecovery {
public:
ClockRecovery(
const float sampling_rate,
const float symbol_rate,
ErrorFilter error_filter,
std::function<void(const float)> symbol_handler
) : symbol_handler { symbol_handler }
{
configure(sampling_rate, symbol_rate, error_filter);
}
ClockRecovery(
std::function<void(const float)> symbol_handler
) : symbol_handler { symbol_handler }