mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-09-24 14:58:30 -04:00
Add some baseband constructors.
Some of them I think I took out earlier...
This commit is contained in:
parent
add6171410
commit
111a5f10c0
4 changed files with 36 additions and 4 deletions
|
@ -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 }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue