We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6d9dff commit e95199cCopy full SHA for e95199c
src/PF1550.cpp
@@ -33,8 +33,9 @@
33
******************************************************************************/
34
35
PF1550::PF1550(PF1550_IO & io)
36
-: _control(io),
37
- _debug(NULL)
+: _control(io)
+, _initialized(false)
38
+, _debug(NULL)
39
{
40
41
}
src/PF1550.h
@@ -100,7 +100,7 @@ class PF1550
100
101
private:
102
PF1550_Control _control;
103
- volatile bool _initialized;
+ bool _initialized;
104
Stream* _debug;
105
};
106
0 commit comments