2019-06-11 12:58:43 +02:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 15:00:57 +01:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2019-06-11 12:58:43 +02:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2019-06-11 12:58:43 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2020-07-23 05:20:14 +02:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2019-06-11 12:58:43 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "numtostr.h"
|
2019-09-14 10:05:10 +02:00
|
|
|
|
|
|
|
#include "../inc/MarlinConfigPre.h"
|
2019-06-11 12:58:43 +02:00
|
|
|
#include "../core/utility.h"
|
|
|
|
|
|
|
|
char conv[8] = { 0 };
|
|
|
|
|
|
|
|
#define DIGIT(n) ('0' + (n))
|
|
|
|
#define DIGIMOD(n, f) DIGIT((n)/(f) % 10)
|
|
|
|
#define RJDIGIT(n, f) ((n) >= (f) ? DIGIMOD(n, f) : ' ')
|
|
|
|
#define MINUSOR(n, alt) (n >= 0 ? (alt) : (n = -n, '-'))
|
2020-07-14 02:59:32 +02:00
|
|
|
#define INTFLOAT(V,N) (((V) * 10 * pow(10, N) + ((V) < 0 ? -5: 5)) / 10) // pow10?
|
|
|
|
#define UINTFLOAT(V,N) INTFLOAT((V) < 0 ? -(V) : (V), N)
|
2019-06-11 12:58:43 +02:00
|
|
|
|
2020-12-24 05:50:24 +01:00
|
|
|
// Format uint8_t (0-100) as rj string with 123% / _12% / __1% format
|
|
|
|
const char* pcttostrpctrj(const uint8_t i) {
|
|
|
|
conv[3] = RJDIGIT(i, 100);
|
|
|
|
conv[4] = RJDIGIT(i, 10);
|
|
|
|
conv[5] = DIGIMOD(i, 1);
|
2019-06-11 12:58:43 +02:00
|
|
|
conv[6] = '%';
|
|
|
|
return &conv[3];
|
|
|
|
}
|
|
|
|
|
2020-12-24 05:50:24 +01:00
|
|
|
// Convert uint8_t (0-255) to a percentage, format as above
|
|
|
|
const char* ui8tostr4pctrj(const uint8_t i) {
|
|
|
|
return pcttostrpctrj(ui8_to_percent(i));
|
|
|
|
}
|
|
|
|
|
2019-06-11 12:58:43 +02:00
|
|
|
// Convert unsigned 8bit int to string 123 format
|
2020-03-09 01:42:18 +01:00
|
|
|
const char* ui8tostr3rj(const uint8_t i) {
|
2019-06-11 12:58:43 +02:00
|
|
|
conv[4] = RJDIGIT(i, 100);
|
|
|
|
conv[5] = RJDIGIT(i, 10);
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
|
|
|
return &conv[4];
|
|
|
|
}
|
|
|
|
|
2020-09-29 01:53:40 +02:00
|
|
|
// Convert uint8_t to string with 12 format
|
|
|
|
const char* ui8tostr2(const uint8_t i) {
|
|
|
|
conv[5] = DIGIMOD(i, 10);
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
|
|
|
return &conv[5];
|
|
|
|
}
|
|
|
|
|
2019-06-11 12:58:43 +02:00
|
|
|
// Convert signed 8bit int to rj string with 123 or -12 format
|
2020-03-09 01:42:18 +01:00
|
|
|
const char* i8tostr3rj(const int8_t x) {
|
2019-06-11 12:58:43 +02:00
|
|
|
int xx = x;
|
|
|
|
conv[4] = MINUSOR(xx, RJDIGIT(xx, 100));
|
|
|
|
conv[5] = RJDIGIT(xx, 10);
|
|
|
|
conv[6] = DIGIMOD(xx, 1);
|
|
|
|
return &conv[4];
|
|
|
|
}
|
|
|
|
|
2019-10-11 04:03:33 +02:00
|
|
|
#if HAS_PRINT_PROGRESS_PERMYRIAD
|
|
|
|
// Convert unsigned 16-bit permyriad to percent with 100 / 23 / 23.4 / 3.45 format
|
|
|
|
const char* permyriadtostr4(const uint16_t xx) {
|
|
|
|
if (xx >= 10000)
|
|
|
|
return "100";
|
|
|
|
else if (xx >= 1000) {
|
|
|
|
conv[3] = DIGIMOD(xx, 1000);
|
|
|
|
conv[4] = DIGIMOD(xx, 100);
|
|
|
|
conv[5] = '.';
|
|
|
|
conv[6] = DIGIMOD(xx, 10);
|
|
|
|
return &conv[3];
|
|
|
|
}
|
|
|
|
else if (xx % 100 == 0) {
|
|
|
|
conv[4] = ' ';
|
|
|
|
conv[5] = RJDIGIT(xx, 1000);
|
|
|
|
conv[6] = DIGIMOD(xx, 100);
|
|
|
|
return &conv[4];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
conv[3] = DIGIMOD(xx, 100);
|
|
|
|
conv[4] = '.';
|
|
|
|
conv[5] = DIGIMOD(xx, 10);
|
|
|
|
conv[6] = RJDIGIT(xx, 1);
|
|
|
|
return &conv[3];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-06-28 06:06:49 +02:00
|
|
|
// Convert unsigned 16bit int to string 12345 format
|
2020-03-09 01:42:18 +01:00
|
|
|
const char* ui16tostr5rj(const uint16_t xx) {
|
2019-06-28 06:06:49 +02:00
|
|
|
conv[2] = RJDIGIT(xx, 10000);
|
|
|
|
conv[3] = RJDIGIT(xx, 1000);
|
2019-06-11 12:58:43 +02:00
|
|
|
conv[4] = RJDIGIT(xx, 100);
|
|
|
|
conv[5] = RJDIGIT(xx, 10);
|
|
|
|
conv[6] = DIGIMOD(xx, 1);
|
2019-06-28 06:06:49 +02:00
|
|
|
return &conv[2];
|
2019-06-11 12:58:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Convert unsigned 16bit int to string 1234 format
|
2020-03-09 01:42:18 +01:00
|
|
|
const char* ui16tostr4rj(const uint16_t xx) {
|
2019-06-11 12:58:43 +02:00
|
|
|
conv[3] = RJDIGIT(xx, 1000);
|
|
|
|
conv[4] = RJDIGIT(xx, 100);
|
|
|
|
conv[5] = RJDIGIT(xx, 10);
|
|
|
|
conv[6] = DIGIMOD(xx, 1);
|
|
|
|
return &conv[3];
|
|
|
|
}
|
|
|
|
|
2019-06-28 06:06:49 +02:00
|
|
|
// Convert unsigned 16bit int to string 123 format
|
2020-03-09 01:42:18 +01:00
|
|
|
const char* ui16tostr3rj(const uint16_t xx) {
|
2019-06-28 06:06:49 +02:00
|
|
|
conv[4] = RJDIGIT(xx, 100);
|
|
|
|
conv[5] = RJDIGIT(xx, 10);
|
|
|
|
conv[6] = DIGIMOD(xx, 1);
|
|
|
|
return &conv[4];
|
|
|
|
}
|
|
|
|
|
2019-06-11 12:58:43 +02:00
|
|
|
// Convert signed 16bit int to rj string with 123 or -12 format
|
2020-03-09 01:42:18 +01:00
|
|
|
const char* i16tostr3rj(const int16_t x) {
|
2019-06-11 12:58:43 +02:00
|
|
|
int xx = x;
|
|
|
|
conv[4] = MINUSOR(xx, RJDIGIT(xx, 100));
|
|
|
|
conv[5] = RJDIGIT(xx, 10);
|
|
|
|
conv[6] = DIGIMOD(xx, 1);
|
|
|
|
return &conv[4];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert unsigned 16bit int to lj string with 123 format
|
2019-10-11 04:03:33 +02:00
|
|
|
const char* i16tostr3left(const int16_t i) {
|
2019-06-11 12:58:43 +02:00
|
|
|
char *str = &conv[6];
|
|
|
|
*str = DIGIMOD(i, 1);
|
|
|
|
if (i >= 10) {
|
|
|
|
*(--str) = DIGIMOD(i, 10);
|
|
|
|
if (i >= 100)
|
|
|
|
*(--str) = DIGIMOD(i, 100);
|
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert signed 16bit int to rj string with 1234, _123, -123, _-12, or __-1 format
|
2020-03-09 01:42:18 +01:00
|
|
|
const char* i16tostr4signrj(const int16_t i) {
|
2019-06-11 12:58:43 +02:00
|
|
|
const bool neg = i < 0;
|
|
|
|
const int ii = neg ? -i : i;
|
|
|
|
if (i >= 1000) {
|
|
|
|
conv[3] = DIGIMOD(ii, 1000);
|
|
|
|
conv[4] = DIGIMOD(ii, 100);
|
|
|
|
conv[5] = DIGIMOD(ii, 10);
|
|
|
|
}
|
|
|
|
else if (ii >= 100) {
|
|
|
|
conv[3] = neg ? '-' : ' ';
|
|
|
|
conv[4] = DIGIMOD(ii, 100);
|
|
|
|
conv[5] = DIGIMOD(ii, 10);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
conv[3] = ' ';
|
|
|
|
conv[4] = ' ';
|
|
|
|
if (ii >= 10) {
|
|
|
|
conv[4] = neg ? '-' : ' ';
|
|
|
|
conv[5] = DIGIMOD(ii, 10);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
conv[5] = neg ? '-' : ' ';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
conv[6] = DIGIMOD(ii, 1);
|
|
|
|
return &conv[3];
|
|
|
|
}
|
|
|
|
|
2021-03-29 08:41:56 +02:00
|
|
|
// Convert unsigned float to string with 1.1 format
|
|
|
|
const char* ftostr11ns(const float &f) {
|
|
|
|
const long i = UINTFLOAT(f, 1);
|
|
|
|
conv[4] = DIGIMOD(i, 10);
|
|
|
|
conv[5] = '.';
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
|
|
|
return &conv[4];
|
|
|
|
}
|
|
|
|
|
2019-06-11 12:58:43 +02:00
|
|
|
// Convert unsigned float to string with 1.23 format
|
2019-10-11 04:03:33 +02:00
|
|
|
const char* ftostr12ns(const float &f) {
|
2020-07-14 02:59:32 +02:00
|
|
|
const long i = UINTFLOAT(f, 2);
|
2019-06-11 12:58:43 +02:00
|
|
|
conv[3] = DIGIMOD(i, 100);
|
|
|
|
conv[4] = '.';
|
|
|
|
conv[5] = DIGIMOD(i, 10);
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
|
|
|
return &conv[3];
|
|
|
|
}
|
|
|
|
|
2020-06-18 22:23:03 +02:00
|
|
|
// Convert unsigned float to string with 12.3 format
|
|
|
|
const char* ftostr31ns(const float &f) {
|
2020-07-14 02:59:32 +02:00
|
|
|
const long i = UINTFLOAT(f, 1);
|
2020-06-18 22:23:03 +02:00
|
|
|
conv[3] = DIGIMOD(i, 100);
|
|
|
|
conv[4] = DIGIMOD(i, 10);
|
|
|
|
conv[5] = '.';
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
|
|
|
return &conv[3];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert unsigned float to string with 123.4 format
|
|
|
|
const char* ftostr41ns(const float &f) {
|
2020-07-14 02:59:32 +02:00
|
|
|
const long i = UINTFLOAT(f, 1);
|
2020-06-18 22:23:03 +02:00
|
|
|
conv[2] = DIGIMOD(i, 1000);
|
|
|
|
conv[3] = DIGIMOD(i, 100);
|
|
|
|
conv[4] = DIGIMOD(i, 10);
|
|
|
|
conv[5] = '.';
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
|
|
|
return &conv[2];
|
|
|
|
}
|
|
|
|
|
2020-03-17 21:12:52 +01:00
|
|
|
// Convert signed float to fixed-length string with 12.34 / _2.34 / -2.34 or -23.45 / 123.45 format
|
2019-10-11 04:03:33 +02:00
|
|
|
const char* ftostr42_52(const float &f) {
|
2020-03-17 21:12:52 +01:00
|
|
|
if (f <= -10 || f >= 100) return ftostr52(f); // -23.45 / 123.45
|
2020-07-14 02:59:32 +02:00
|
|
|
long i = INTFLOAT(f, 2);
|
2019-06-11 12:58:43 +02:00
|
|
|
conv[2] = (f >= 0 && f < 10) ? ' ' : MINUSOR(i, DIGIMOD(i, 1000));
|
|
|
|
conv[3] = DIGIMOD(i, 100);
|
|
|
|
conv[4] = '.';
|
|
|
|
conv[5] = DIGIMOD(i, 10);
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
|
|
|
return &conv[2];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert signed float to fixed-length string with 023.45 / -23.45 format
|
2019-10-11 04:03:33 +02:00
|
|
|
const char* ftostr52(const float &f) {
|
2020-07-14 02:59:32 +02:00
|
|
|
long i = INTFLOAT(f, 2);
|
2019-06-11 12:58:43 +02:00
|
|
|
conv[1] = MINUSOR(i, DIGIMOD(i, 10000));
|
|
|
|
conv[2] = DIGIMOD(i, 1000);
|
|
|
|
conv[3] = DIGIMOD(i, 100);
|
|
|
|
conv[4] = '.';
|
|
|
|
conv[5] = DIGIMOD(i, 10);
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
|
|
|
return &conv[1];
|
|
|
|
}
|
|
|
|
|
2020-03-17 21:12:52 +01:00
|
|
|
// Convert signed float to fixed-length string with 12.345 / _2.345 / -2.345 or -23.45 / 123.45 format
|
|
|
|
const char* ftostr53_63(const float &f) {
|
|
|
|
if (f <= -10 || f >= 100) return ftostr63(f); // -23.456 / 123.456
|
2020-07-14 02:59:32 +02:00
|
|
|
long i = INTFLOAT(f, 3);
|
2020-03-09 01:42:18 +01:00
|
|
|
conv[1] = (f >= 0 && f < 10) ? ' ' : MINUSOR(i, DIGIMOD(i, 10000));
|
|
|
|
conv[2] = DIGIMOD(i, 1000);
|
|
|
|
conv[3] = '.';
|
|
|
|
conv[4] = DIGIMOD(i, 100);
|
|
|
|
conv[5] = DIGIMOD(i, 10);
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
|
|
|
return &conv[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert signed float to fixed-length string with 023.456 / -23.456 format
|
2020-03-17 21:12:52 +01:00
|
|
|
const char* ftostr63(const float &f) {
|
2020-07-14 02:59:32 +02:00
|
|
|
long i = INTFLOAT(f, 3);
|
2020-03-09 01:42:18 +01:00
|
|
|
conv[0] = MINUSOR(i, DIGIMOD(i, 100000));
|
|
|
|
conv[1] = DIGIMOD(i, 10000);
|
|
|
|
conv[2] = DIGIMOD(i, 1000);
|
|
|
|
conv[3] = '.';
|
|
|
|
conv[4] = DIGIMOD(i, 100);
|
|
|
|
conv[5] = DIGIMOD(i, 10);
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
|
|
|
return &conv[0];
|
|
|
|
}
|
|
|
|
|
2019-06-11 12:58:43 +02:00
|
|
|
#if ENABLED(LCD_DECIMAL_SMALL_XY)
|
|
|
|
|
|
|
|
// Convert float to rj string with 1234, _123, -123, _-12, 12.3, _1.2, or -1.2 format
|
2019-10-11 15:45:15 +02:00
|
|
|
const char* ftostr4sign(const float &f) {
|
2020-07-14 02:59:32 +02:00
|
|
|
const int i = INTFLOAT(f, 1);
|
2020-03-09 01:42:18 +01:00
|
|
|
if (!WITHIN(i, -99, 999)) return i16tostr4signrj((int)f);
|
2019-06-11 12:58:43 +02:00
|
|
|
const bool neg = i < 0;
|
|
|
|
const int ii = neg ? -i : i;
|
|
|
|
conv[3] = neg ? '-' : (ii >= 100 ? DIGIMOD(ii, 100) : ' ');
|
|
|
|
conv[4] = DIGIMOD(ii, 10);
|
|
|
|
conv[5] = '.';
|
|
|
|
conv[6] = DIGIMOD(ii, 1);
|
|
|
|
return &conv[3];
|
|
|
|
}
|
|
|
|
|
2019-09-14 10:05:10 +02:00
|
|
|
#endif
|
2019-06-11 12:58:43 +02:00
|
|
|
|
2020-07-14 02:59:32 +02:00
|
|
|
// Convert float to fixed-length string with +12.3 / -12.3 format
|
|
|
|
const char* ftostr31sign(const float &f) {
|
|
|
|
int i = INTFLOAT(f, 1);
|
|
|
|
conv[2] = MINUSOR(i, '+');
|
|
|
|
conv[3] = DIGIMOD(i, 100);
|
|
|
|
conv[4] = DIGIMOD(i, 10);
|
|
|
|
conv[5] = '.';
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
|
|
|
return &conv[2];
|
|
|
|
}
|
|
|
|
|
2019-06-11 12:58:43 +02:00
|
|
|
// Convert float to fixed-length string with +123.4 / -123.4 format
|
2019-10-11 04:03:33 +02:00
|
|
|
const char* ftostr41sign(const float &f) {
|
2020-07-14 02:59:32 +02:00
|
|
|
int i = INTFLOAT(f, 1);
|
2019-06-11 12:58:43 +02:00
|
|
|
conv[1] = MINUSOR(i, '+');
|
|
|
|
conv[2] = DIGIMOD(i, 1000);
|
|
|
|
conv[3] = DIGIMOD(i, 100);
|
|
|
|
conv[4] = DIGIMOD(i, 10);
|
|
|
|
conv[5] = '.';
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
|
|
|
return &conv[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert signed float to string (6 digit) with -1.234 / _0.000 / +1.234 format
|
2019-10-11 04:03:33 +02:00
|
|
|
const char* ftostr43sign(const float &f, char plus/*=' '*/) {
|
2020-07-14 02:59:32 +02:00
|
|
|
long i = INTFLOAT(f, 3);
|
2019-06-11 12:58:43 +02:00
|
|
|
conv[1] = i ? MINUSOR(i, plus) : ' ';
|
|
|
|
conv[2] = DIGIMOD(i, 1000);
|
|
|
|
conv[3] = '.';
|
|
|
|
conv[4] = DIGIMOD(i, 100);
|
|
|
|
conv[5] = DIGIMOD(i, 10);
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
|
|
|
return &conv[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert signed float to string (5 digit) with -1.2345 / _0.0000 / +1.2345 format
|
2019-10-11 04:03:33 +02:00
|
|
|
const char* ftostr54sign(const float &f, char plus/*=' '*/) {
|
2020-07-14 02:59:32 +02:00
|
|
|
long i = INTFLOAT(f, 4);
|
2019-06-11 12:58:43 +02:00
|
|
|
conv[0] = i ? MINUSOR(i, plus) : ' ';
|
|
|
|
conv[1] = DIGIMOD(i, 10000);
|
|
|
|
conv[2] = '.';
|
|
|
|
conv[3] = DIGIMOD(i, 1000);
|
|
|
|
conv[4] = DIGIMOD(i, 100);
|
|
|
|
conv[5] = DIGIMOD(i, 10);
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
|
|
|
return &conv[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert unsigned float to rj string with 12345 format
|
2019-10-11 04:03:33 +02:00
|
|
|
const char* ftostr5rj(const float &f) {
|
2020-07-14 02:59:32 +02:00
|
|
|
const long i = UINTFLOAT(f, 0);
|
2020-03-09 01:42:18 +01:00
|
|
|
return ui16tostr5rj(i);
|
2019-06-11 12:58:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Convert signed float to string with +1234.5 format
|
2019-10-11 04:03:33 +02:00
|
|
|
const char* ftostr51sign(const float &f) {
|
2020-07-14 02:59:32 +02:00
|
|
|
long i = INTFLOAT(f, 1);
|
2019-06-11 12:58:43 +02:00
|
|
|
conv[0] = MINUSOR(i, '+');
|
|
|
|
conv[1] = DIGIMOD(i, 10000);
|
|
|
|
conv[2] = DIGIMOD(i, 1000);
|
|
|
|
conv[3] = DIGIMOD(i, 100);
|
|
|
|
conv[4] = DIGIMOD(i, 10);
|
|
|
|
conv[5] = '.';
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
|
|
|
return conv;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert signed float to string with +123.45 format
|
2019-10-11 04:03:33 +02:00
|
|
|
const char* ftostr52sign(const float &f) {
|
2020-07-14 02:59:32 +02:00
|
|
|
long i = INTFLOAT(f, 2);
|
2019-06-11 12:58:43 +02:00
|
|
|
conv[0] = MINUSOR(i, '+');
|
|
|
|
conv[1] = DIGIMOD(i, 10000);
|
|
|
|
conv[2] = DIGIMOD(i, 1000);
|
|
|
|
conv[3] = DIGIMOD(i, 100);
|
|
|
|
conv[4] = '.';
|
|
|
|
conv[5] = DIGIMOD(i, 10);
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
|
|
|
return conv;
|
|
|
|
}
|
|
|
|
|
2020-03-17 21:12:52 +01:00
|
|
|
// Convert signed float to string with +12.345 format
|
|
|
|
const char* ftostr53sign(const float &f) {
|
2020-07-14 02:59:32 +02:00
|
|
|
long i = INTFLOAT(f, 3);
|
2020-03-17 21:12:52 +01:00
|
|
|
conv[0] = MINUSOR(i, '+');
|
|
|
|
conv[1] = DIGIMOD(i, 10000);
|
|
|
|
conv[2] = DIGIMOD(i, 1000);
|
|
|
|
conv[3] = '.';
|
|
|
|
conv[4] = DIGIMOD(i, 100);
|
|
|
|
conv[5] = DIGIMOD(i, 10);
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
|
|
|
return conv;
|
|
|
|
}
|
|
|
|
|
2020-03-09 01:42:18 +01:00
|
|
|
// Convert unsigned float to string with ____4.5, __34.5, _234.5, 1234.5 format
|
2019-10-11 04:03:33 +02:00
|
|
|
const char* ftostr51rj(const float &f) {
|
2020-07-14 02:59:32 +02:00
|
|
|
const long i = UINTFLOAT(f, 1);
|
2019-06-11 12:58:43 +02:00
|
|
|
conv[0] = ' ';
|
|
|
|
conv[1] = RJDIGIT(i, 10000);
|
|
|
|
conv[2] = RJDIGIT(i, 1000);
|
|
|
|
conv[3] = RJDIGIT(i, 100);
|
|
|
|
conv[4] = DIGIMOD(i, 10);
|
|
|
|
conv[5] = '.';
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
|
|
|
return conv;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert signed float to space-padded string with -_23.4_ format
|
2019-10-11 04:03:33 +02:00
|
|
|
const char* ftostr52sp(const float &f) {
|
2020-07-14 02:59:32 +02:00
|
|
|
long i = INTFLOAT(f, 2);
|
2019-06-11 12:58:43 +02:00
|
|
|
uint8_t dig;
|
|
|
|
conv[0] = MINUSOR(i, ' ');
|
|
|
|
conv[1] = RJDIGIT(i, 10000);
|
|
|
|
conv[2] = RJDIGIT(i, 1000);
|
|
|
|
conv[3] = DIGIMOD(i, 100);
|
|
|
|
|
|
|
|
if ((dig = i % 10)) { // second digit after decimal point?
|
|
|
|
conv[4] = '.';
|
|
|
|
conv[5] = DIGIMOD(i, 10);
|
|
|
|
conv[6] = DIGIT(dig);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if ((dig = (i / 10) % 10)) { // first digit after decimal point?
|
|
|
|
conv[4] = '.';
|
|
|
|
conv[5] = DIGIT(dig);
|
|
|
|
}
|
|
|
|
else // nothing after decimal point
|
|
|
|
conv[4] = conv[5] = ' ';
|
|
|
|
conv[6] = ' ';
|
|
|
|
}
|
|
|
|
return conv;
|
|
|
|
}
|