SD-card log fields improvement (warning counter & last code) #3162
This commit is contained in:
parent
5745dfbf05
commit
4d6e94645f
|
@ -34,6 +34,11 @@ public:
|
||||||
return m_value / (float)mult;
|
return m_value / (float)mult;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Postfix increment operator
|
||||||
|
T operator ++(int) {
|
||||||
|
return (m_value / (float)mult) + 1;
|
||||||
|
}
|
||||||
|
|
||||||
constexpr const char* getFirstByteAddr() const {
|
constexpr const char* getFirstByteAddr() const {
|
||||||
return &m_firstByte;
|
return &m_firstByte;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue