our current experimental Neutrino branch

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@27 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
mrcolor
2009-12-08 11:05:11 +00:00
commit bc5bd4154e
876 changed files with 193775 additions and 0 deletions

23
src/driver/rfmod.h Normal file
View File

@@ -0,0 +1,23 @@
#ifndef __erfmod_h
#define __erfmod_h
class RFmod
{
int channel,soundsubcarrier,soundenable,finetune,standby;
public:
RFmod();
~RFmod();
int rfmodfd;
void init();
int setChannel(int channel);
int setSoundSubCarrier(int val);
int setSoundEnable(int val);
int setStandby(int val);
int setFinetune(int val);
int setTestPattern(int val);
};
#endif