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 5745dfbf05
commit 4d6e94645f
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;
}