mirror of
https://github.com/bdring/Grbl_Esp32.git
synced 2025-08-30 09:39:49 +02:00
Fixed minor bug
This commit is contained in:
@@ -124,8 +124,8 @@ public:
|
|||||||
return _detail->_index;
|
return _detail->_index;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline IRAM_ATTR void write(bool value) const { _detail->write(value); }
|
inline void IRAM_ATTR write(bool value) const { _detail->write(value); }
|
||||||
inline void synchronousWrite(bool value) const { _detail->synchronousWrite(value); }
|
inline void IRAM_ATTR synchronousWrite(bool value) const { _detail->synchronousWrite(value); }
|
||||||
|
|
||||||
inline bool read() const { return _detail->read() != 0; }
|
inline bool read() const { return _detail->read() != 0; }
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user