Stefan Kiegerl
/
FuncGen
Function Generator for TINF 2021
include/FuncGenFSST.h
- Committer:
- stkiegerl
- Date:
- 2021-03-09
- Revision:
- 0:464b401734fd
- Child:
- 1:dbd814e65f1d
File content as of revision 0:464b401734fd:
#ifndef FuncGenFSST_h #define FuncGenFSST_h // Amplituden fix auf +/-1 class SignedRampGen { public: float val; // momentaner Ausgangswert private: float _inc; public: SignedRampGen(); // Konstruktor void SetPointsPerPeriod(float aPoints); // bezogen auf Fsample 0..0.5 void SetFrequ(float aFrequ); // Einen Abtastwert berechnen // wird bei z.B. Fsample=100Hz 100x pro sec afgerufen void CalcOneStep(); }; class TriangleGen { public: float val; // momentaner Ausgangswert private: float _inc; int _state; float _phase; public: TriangleGen(); void SetPointsPerPeriod(float aPoints); // bezogen auf Fsample 0..0.5 void SetFrequ(float aFrequ); // Einen Abtastwert berechnen void CalcOneStep(); }; class RectGen { public: float val; // momentaner Ausgangswert private: float _inc; float _phase; float _thrs; public: RectGen(); void SetPointsPerPeriod(float aPoints); void SetFrequ(float aFrequ); // Dauer des ON-Pulses in Prozent ( 0..1 ) void SetPulsWidth(float aPercent) { _thrs=aPercent; // m�glicherweise andere Formel } // Einen Abtastwert berechnen void CalcOneStep(); }; #endif