diff --git a/src/PF1550.cpp b/src/PF1550.cpp index 0174f06..fd1ca7c 100644 --- a/src/PF1550.cpp +++ b/src/PF1550.cpp @@ -33,8 +33,9 @@ ******************************************************************************/ PF1550::PF1550(PF1550_IO & io) -: _control(io), - _debug(NULL) +: _control(io) +, _initialized(false) +, _debug(NULL) { } diff --git a/src/PF1550.h b/src/PF1550.h index 295546c..0e6430e 100644 --- a/src/PF1550.h +++ b/src/PF1550.h @@ -100,7 +100,7 @@ class PF1550 private: PF1550_Control _control; - volatile bool _initialized; + bool _initialized; Stream* _debug; };