|
|
@ -129,29 +129,22 @@ void safe_delay(millis_t ms) {
|
|
|
|
return conv;
|
|
|
|
return conv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Convert float to rj string with 1234, _123, -123, _-12, 12.3, _1.2, or -1.2 format
|
|
|
|
#if ENABLED(LCD_DECIMAL_SMALL_XY)
|
|
|
|
char *ftostr4sign(const float& fx) {
|
|
|
|
|
|
|
|
int x = fx * 10, xx = abs(x);
|
|
|
|
// Convert float to rj string with 1234, _123, -123, _-12, 12.3, _1.2, or -1.2 format
|
|
|
|
bool ispos = x >= 0,
|
|
|
|
char *ftostr4sign(const float& fx) {
|
|
|
|
isten = xx >= 100,
|
|
|
|
int x = fx * 10;
|
|
|
|
ishun = xx >= 1000;
|
|
|
|
if (x <= -100 || x >= 1000) return itostr4sign((int)fx);
|
|
|
|
if (!isten || (ispos && !ishun)) {
|
|
|
|
int xx = abs(x);
|
|
|
|
// 12.3, _1.2, -1.2
|
|
|
|
conv[0] = x < 0 ? '-' : (xx >= 100 ? DIGIMOD(xx, 100) : ' ');
|
|
|
|
conv[0] = ispos ? (isten ? DIGIMOD(xx, 100) : ' ') : '-';
|
|
|
|
|
|
|
|
conv[1] = DIGIMOD(xx, 10);
|
|
|
|
conv[1] = DIGIMOD(xx, 10);
|
|
|
|
conv[2] = '.';
|
|
|
|
conv[2] = '.';
|
|
|
|
conv[3] = DIGIMOD(xx, 1);
|
|
|
|
conv[3] = DIGIMOD(xx, 1);
|
|
|
|
|
|
|
|
conv[4] = '\0';
|
|
|
|
|
|
|
|
return conv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
|
|
|
|
// 1234, _123, -123, _-12
|
|
|
|
#endif // LCD_DECIMAL_SMALL_XY
|
|
|
|
conv[0] = ispos ? (xx >= 10000 ? DIGIMOD(xx, 10000) : ' ') : (ishun ? '-' : ' ');
|
|
|
|
|
|
|
|
conv[1] = ishun ? DIGIMOD(xx, 1000) : '-';
|
|
|
|
|
|
|
|
conv[2] = DIGIMOD(xx, 100);
|
|
|
|
|
|
|
|
conv[3] = DIGIMOD(xx, 10);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
conv[4] = '\0';
|
|
|
|
|
|
|
|
return conv;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Convert float to fixed-length string with +123.4 / -123.4 format
|
|
|
|
// Convert float to fixed-length string with +123.4 / -123.4 format
|
|
|
|
char* ftostr41sign(const float& x) {
|
|
|
|
char* ftostr41sign(const float& x) {
|
|
|
|