SD-card log fields improvement (warning counter & last code) #3162
This commit is contained in:
parent
a5e17ba0d6
commit
5afda5f2cc
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue