diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2003-10-17 15:36:42 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2003-10-17 15:36:42 +0000 |
| commit | d63d2c3c6cbbd574dda4f8b00ebe6c661735edd5 (patch) | |
| tree | 84d0cacfd0b6c1241c236c7860f7cbd7f26901bb /lib/driver/rfmod.h | |
| download | enigma2-d63d2c3c6cbbd574dda4f8b00ebe6c661735edd5.tar.gz enigma2-d63d2c3c6cbbd574dda4f8b00ebe6c661735edd5.zip | |
import of enigma2
Diffstat (limited to 'lib/driver/rfmod.h')
| -rw-r--r-- | lib/driver/rfmod.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/lib/driver/rfmod.h b/lib/driver/rfmod.h new file mode 100644 index 00000000..e3acc47d --- /dev/null +++ b/lib/driver/rfmod.h @@ -0,0 +1,33 @@ +#ifdef ENABLE_RFMOD + +#ifndef __erfmod_h +#define __erfmod_h + +#include <lib/base/ebase.h> + +class eRFmod: public Object +{ + static eRFmod *instance; + + int rfmodfd; + int channel,soundsubcarrier,soundenable,finetune; + +public: + eRFmod(); + ~eRFmod(); + + void init(); + + static eRFmod *getInstance(); + + int save(); + + int setChannel(int channel); + int setSoundSubCarrier(int val); + int setSoundEnable(int val); + int setFinetune(int val); + int setTestPattern(int val); +}; +#endif + +#endif // ENABLE_RFMOD |
