mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-07-16 03:29:52 -04:00
Add FM class default constructor.
For classes that configure FM demodulation at runtime.
This commit is contained in:
parent
4910bacfa2
commit
4ee0385530
1 changed files with 6 additions and 0 deletions
|
@ -37,6 +37,12 @@ public:
|
||||||
|
|
||||||
class FM {
|
class FM {
|
||||||
public:
|
public:
|
||||||
|
constexpr FM(
|
||||||
|
) : z_ { 0 },
|
||||||
|
k { 0 }
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* angle: -pi to pi. output range: -32768 to 32767.
|
* angle: -pi to pi. output range: -32768 to 32767.
|
||||||
* Maximum delta-theta (output of atan2) at maximum deviation frequency:
|
* Maximum delta-theta (output of atan2) at maximum deviation frequency:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue