Poll() refactoring, PWM fix, Hum preparation

This commit is contained in:
Климов Андрей Николаевич
2022-04-15 00:05:44 +03:00
parent b3af9865c7
commit 4c80f435e5
21 changed files with 76 additions and 66 deletions

View File

@@ -9,7 +9,7 @@ class abstractCh {
public:
abstractCh(){};
virtual ~abstractCh(){};
virtual int Poll(short cause) = 0;
virtual int Poll(short cause) {return 0;}
virtual int Setup() =0; //Should initialize hardware and reserve resources
virtual int Anounce () {return 0;};
virtual int Stop() {return 0;}; //Should free resources