SD-card log fields improvement (warning counter & last code) #3162

This commit is contained in:
Andrey 2021-09-05 07:25:52 -04:00
parent a5e17ba0d6
commit 5afda5f2cc
1 changed files with 5 additions and 0 deletions

View File

@ -34,6 +34,11 @@ public:
return m_value / (float)mult;
}
// Postfix increment operator
T operator ++(int) {
return (m_value / (float)mult) + 1;
}
constexpr const char* getFirstByteAddr() const {
return &m_firstByte;
}