1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-08-29 01:00:00 +02:00

Fixed minor bug

This commit is contained in:
Stefan de Bruijn
2021-08-03 10:30:34 +02:00
parent 169818e31e
commit 600d9dbf22

View File

@@ -124,8 +124,8 @@ public:
return _detail->_index;
}
inline IRAM_ATTR void write(bool value) const { _detail->write(value); }
inline void synchronousWrite(bool value) const { _detail->synchronousWrite(value); }
inline void IRAM_ATTR write(bool value) const { _detail->write(value); }
inline void IRAM_ATTR synchronousWrite(bool value) const { _detail->synchronousWrite(value); }
inline bool read() const { return _detail->read() != 0; }