2016-07-14 22:40:11 +02:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Marlin.h"
|
2016-07-30 03:56:26 +02:00
|
|
|
#include "utility.h"
|
2016-07-14 22:40:11 +02:00
|
|
|
#include "temperature.h"
|
|
|
|
|
2016-07-30 03:56:26 +02:00
|
|
|
void safe_delay(millis_t ms) {
|
2016-07-14 22:40:11 +02:00
|
|
|
while (ms > 50) {
|
|
|
|
ms -= 50;
|
|
|
|
delay(50);
|
|
|
|
thermalManager.manage_heater();
|
|
|
|
}
|
|
|
|
delay(ms);
|
2017-04-29 00:36:31 +02:00
|
|
|
thermalManager.manage_heater(); // This keeps us safe if too many small safe_delay() calls are made
|
2016-07-14 22:40:11 +02:00
|
|
|
}
|
2016-08-21 01:05:54 +02:00
|
|
|
|
2017-05-07 03:00:56 +02:00
|
|
|
#if ENABLED(EEPROM_SETTINGS)
|
|
|
|
|
|
|
|
void crc16(uint16_t *crc, const void * const data, uint16_t cnt) {
|
2017-05-11 16:48:16 +02:00
|
|
|
uint8_t *ptr = (uint8_t *)data;
|
|
|
|
while (cnt--) {
|
2017-05-07 03:00:56 +02:00
|
|
|
*crc = (uint16_t)(*crc ^ (uint16_t)(((uint16_t)*ptr++) << 8));
|
2018-04-30 02:10:37 +02:00
|
|
|
for (uint8_t i = 0; i < 8; i++)
|
2017-05-07 03:00:56 +02:00
|
|
|
*crc = (uint16_t)((*crc & 0x8000) ? ((uint16_t)(*crc << 1) ^ 0x1021) : (*crc << 1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // EEPROM_SETTINGS
|
|
|
|
|
2018-02-07 08:14:58 +01:00
|
|
|
#if ENABLED(ULTRA_LCD) || (ENABLED(DEBUG_LEVELING_FEATURE) && (ENABLED(MESH_BED_LEVELING) || (HAS_ABL && !ABL_PLANAR)))
|
2016-08-21 01:05:54 +02:00
|
|
|
|
2017-04-22 20:24:21 +02:00
|
|
|
char conv[8] = { 0 };
|
2016-08-21 01:05:54 +02:00
|
|
|
|
|
|
|
#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, '-'))
|
|
|
|
|
2017-06-14 04:42:40 +02:00
|
|
|
// Convert unsigned int to string 123 format
|
2018-04-30 02:10:37 +02:00
|
|
|
char* i8tostr3(const uint8_t i) {
|
|
|
|
conv[4] = RJDIGIT(i, 100);
|
|
|
|
conv[5] = RJDIGIT(i, 10);
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
2017-06-14 04:42:40 +02:00
|
|
|
return &conv[4];
|
2016-08-21 01:05:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Convert signed int to rj string with 123 or -12 format
|
2018-04-30 02:10:37 +02:00
|
|
|
char* itostr3(int i) {
|
|
|
|
conv[4] = MINUSOR(i, RJDIGIT(i, 100));
|
|
|
|
conv[5] = RJDIGIT(i, 10);
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
2017-04-22 20:24:21 +02:00
|
|
|
return &conv[4];
|
2016-08-21 01:05:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Convert unsigned int to lj string with 123 format
|
2018-04-30 02:10:37 +02:00
|
|
|
char* itostr3left(const int i) {
|
2017-04-22 20:24:21 +02:00
|
|
|
char *str = &conv[6];
|
2018-04-30 02:10:37 +02:00
|
|
|
*str = DIGIMOD(i, 1);
|
|
|
|
if (i >= 10) {
|
|
|
|
*(--str) = DIGIMOD(i, 10);
|
|
|
|
if (i >= 100)
|
|
|
|
*(--str) = DIGIMOD(i, 100);
|
2016-08-21 01:05:54 +02:00
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2016-12-05 15:25:09 +01:00
|
|
|
// Convert signed int to rj string with 1234, _123, -123, _-12, or __-1 format
|
2018-04-30 02:10:37 +02:00
|
|
|
char* itostr4sign(const int i) {
|
|
|
|
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);
|
2016-08-21 01:05:54 +02:00
|
|
|
}
|
|
|
|
else {
|
2018-04-30 02:10:37 +02:00
|
|
|
conv[3] = ' ';
|
|
|
|
conv[4] = ' ';
|
|
|
|
if (ii >= 10) {
|
|
|
|
conv[4] = neg ? '-' : ' ';
|
|
|
|
conv[5] = DIGIMOD(ii, 10);
|
2016-08-21 01:05:54 +02:00
|
|
|
}
|
|
|
|
else {
|
2018-04-30 02:10:37 +02:00
|
|
|
conv[5] = neg ? '-' : ' ';
|
2016-08-21 01:05:54 +02:00
|
|
|
}
|
|
|
|
}
|
2018-04-30 02:10:37 +02:00
|
|
|
conv[6] = DIGIMOD(ii, 1);
|
2017-04-22 20:24:21 +02:00
|
|
|
return &conv[3];
|
2016-08-21 01:05:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Convert unsigned float to string with 1.23 format
|
2018-04-30 02:10:37 +02:00
|
|
|
char* ftostr12ns(const float &f) {
|
|
|
|
const long i = ((f < 0 ? -f : f) * 1000 + 5) / 10;
|
|
|
|
conv[3] = DIGIMOD(i, 100);
|
2017-04-22 20:24:21 +02:00
|
|
|
conv[4] = '.';
|
2018-04-30 02:10:37 +02:00
|
|
|
conv[5] = DIGIMOD(i, 10);
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
2017-04-22 20:24:21 +02:00
|
|
|
return &conv[3];
|
2016-08-21 01:05:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Convert signed float to fixed-length string with 023.45 / -23.45 format
|
2018-05-01 10:59:17 +02:00
|
|
|
char* ftostr52(const float &f) {
|
2018-04-30 02:10:37 +02:00
|
|
|
long i = (f * 1000 + (f < 0 ? -5: 5)) / 10;
|
|
|
|
conv[1] = MINUSOR(i, DIGIMOD(i, 10000));
|
|
|
|
conv[2] = DIGIMOD(i, 1000);
|
|
|
|
conv[3] = DIGIMOD(i, 100);
|
2017-04-22 20:24:21 +02:00
|
|
|
conv[4] = '.';
|
2018-04-30 02:10:37 +02:00
|
|
|
conv[5] = DIGIMOD(i, 10);
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
2017-04-22 20:24:21 +02:00
|
|
|
return &conv[1];
|
2016-08-21 01:05:54 +02:00
|
|
|
}
|
|
|
|
|
2016-12-05 15:58:26 +01: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
|
2018-04-30 02:10:37 +02:00
|
|
|
char* ftostr4sign(const float &f) {
|
|
|
|
const int i = (f * 100 + (f < 0 ? -5: 5)) / 10;
|
|
|
|
if (!WITHIN(i, -99, 999)) return itostr4sign((int)f);
|
|
|
|
const bool neg = i < 0;
|
|
|
|
const int ii = neg ? -i : i;
|
|
|
|
conv[3] = neg ? '-' : (ii >= 100 ? DIGIMOD(ii, 100) : ' ');
|
|
|
|
conv[4] = DIGIMOD(ii, 10);
|
2017-04-22 20:24:21 +02:00
|
|
|
conv[5] = '.';
|
2018-04-30 02:10:37 +02:00
|
|
|
conv[6] = DIGIMOD(ii, 1);
|
2017-04-22 20:24:21 +02:00
|
|
|
return &conv[3];
|
2016-12-01 15:40:57 +01:00
|
|
|
}
|
2016-12-05 15:58:26 +01:00
|
|
|
|
|
|
|
#endif // LCD_DECIMAL_SMALL_XY
|
2016-12-01 15:40:57 +01:00
|
|
|
|
2016-08-21 01:05:54 +02:00
|
|
|
// Convert float to fixed-length string with +123.4 / -123.4 format
|
2018-04-30 02:10:37 +02:00
|
|
|
char* ftostr41sign(const float &f) {
|
|
|
|
int i = (f * 100 + (f < 0 ? -5: 5)) / 10;
|
|
|
|
conv[1] = MINUSOR(i, '+');
|
|
|
|
conv[2] = DIGIMOD(i, 1000);
|
|
|
|
conv[3] = DIGIMOD(i, 100);
|
|
|
|
conv[4] = DIGIMOD(i, 10);
|
2017-04-22 20:24:21 +02:00
|
|
|
conv[5] = '.';
|
2018-04-30 02:10:37 +02:00
|
|
|
conv[6] = DIGIMOD(i, 1);
|
2017-04-22 20:24:21 +02:00
|
|
|
return &conv[1];
|
2016-08-21 01:05:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Convert signed float to string (6 digit) with -1.234 / _0.000 / +1.234 format
|
2018-04-30 02:10:37 +02:00
|
|
|
char* ftostr43sign(const float &f, char plus/*=' '*/) {
|
|
|
|
long i = (f * 10000 + (f < 0 ? -5: 5)) / 10;
|
|
|
|
conv[1] = i ? MINUSOR(i, plus) : ' ';
|
|
|
|
conv[2] = DIGIMOD(i, 1000);
|
2017-04-22 20:24:21 +02:00
|
|
|
conv[3] = '.';
|
2018-04-30 02:10:37 +02:00
|
|
|
conv[4] = DIGIMOD(i, 100);
|
|
|
|
conv[5] = DIGIMOD(i, 10);
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
2017-04-22 20:24:21 +02:00
|
|
|
return &conv[1];
|
2016-08-21 01:05:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Convert unsigned float to rj string with 12345 format
|
2018-04-30 02:10:37 +02:00
|
|
|
char* ftostr5rj(const float &f) {
|
|
|
|
const long i = ((f < 0 ? -f : f) * 10 + 5) / 10;
|
|
|
|
conv[2] = RJDIGIT(i, 10000);
|
|
|
|
conv[3] = RJDIGIT(i, 1000);
|
|
|
|
conv[4] = RJDIGIT(i, 100);
|
|
|
|
conv[5] = RJDIGIT(i, 10);
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
2017-04-22 20:24:21 +02:00
|
|
|
return &conv[2];
|
2016-08-21 01:05:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Convert signed float to string with +1234.5 format
|
2018-04-30 02:10:37 +02:00
|
|
|
char* ftostr51sign(const float &f) {
|
|
|
|
long i = (f * 100 + (f < 0 ? -5: 5)) / 10;
|
|
|
|
conv[0] = MINUSOR(i, '+');
|
|
|
|
conv[1] = DIGIMOD(i, 10000);
|
|
|
|
conv[2] = DIGIMOD(i, 1000);
|
|
|
|
conv[3] = DIGIMOD(i, 100);
|
|
|
|
conv[4] = DIGIMOD(i, 10);
|
2016-08-21 01:05:54 +02:00
|
|
|
conv[5] = '.';
|
2018-04-30 02:10:37 +02:00
|
|
|
conv[6] = DIGIMOD(i, 1);
|
2016-08-21 01:05:54 +02:00
|
|
|
return conv;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert signed float to string with +123.45 format
|
2018-04-30 02:10:37 +02:00
|
|
|
char* ftostr52sign(const float &f) {
|
|
|
|
long i = (f * 1000 + (f < 0 ? -5: 5)) / 10;
|
|
|
|
conv[0] = MINUSOR(i, '+');
|
|
|
|
conv[1] = DIGIMOD(i, 10000);
|
|
|
|
conv[2] = DIGIMOD(i, 1000);
|
|
|
|
conv[3] = DIGIMOD(i, 100);
|
2016-08-21 01:05:54 +02:00
|
|
|
conv[4] = '.';
|
2018-04-30 02:10:37 +02:00
|
|
|
conv[5] = DIGIMOD(i, 10);
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
2016-08-21 01:05:54 +02:00
|
|
|
return conv;
|
|
|
|
}
|
|
|
|
|
2016-12-12 14:35:02 +01:00
|
|
|
// Convert unsigned float to string with 1234.56 format omitting trailing zeros
|
2018-04-30 02:10:37 +02:00
|
|
|
char* ftostr62rj(const float &f) {
|
|
|
|
const long i = ((f < 0 ? -f : f) * 1000 + 5) / 10;
|
|
|
|
conv[0] = RJDIGIT(i, 100000);
|
|
|
|
conv[1] = RJDIGIT(i, 10000);
|
|
|
|
conv[2] = RJDIGIT(i, 1000);
|
|
|
|
conv[3] = DIGIMOD(i, 100);
|
2016-12-12 14:35:02 +01:00
|
|
|
conv[4] = '.';
|
2018-04-30 02:10:37 +02:00
|
|
|
conv[5] = DIGIMOD(i, 10);
|
|
|
|
conv[6] = DIGIMOD(i, 1);
|
2016-11-15 23:01:30 +01:00
|
|
|
return conv;
|
|
|
|
}
|
|
|
|
|
2016-08-21 01:05:54 +02:00
|
|
|
// Convert signed float to space-padded string with -_23.4_ format
|
2018-04-30 02:10:37 +02:00
|
|
|
char* ftostr52sp(const float &f) {
|
|
|
|
long i = (f * 1000 + (f < 0 ? -5: 5)) / 10;
|
2016-08-21 01:05:54 +02:00
|
|
|
uint8_t dig;
|
2018-04-30 02:10:37 +02:00
|
|
|
conv[1] = MINUSOR(i, RJDIGIT(i, 10000));
|
|
|
|
conv[2] = RJDIGIT(i, 1000);
|
|
|
|
conv[3] = DIGIMOD(i, 100);
|
2016-08-21 01:05:54 +02:00
|
|
|
|
2018-04-30 02:10:37 +02:00
|
|
|
if ((dig = i % 10)) { // second digit after decimal point?
|
2017-04-22 20:24:21 +02:00
|
|
|
conv[4] = '.';
|
2018-04-30 02:10:37 +02:00
|
|
|
conv[5] = DIGIMOD(i, 10);
|
2017-04-22 20:24:21 +02:00
|
|
|
conv[6] = DIGIT(dig);
|
2016-08-21 01:05:54 +02:00
|
|
|
}
|
|
|
|
else {
|
2018-04-30 02:10:37 +02:00
|
|
|
if ((dig = (i / 10) % 10)) { // first digit after decimal point?
|
2017-04-22 20:24:21 +02:00
|
|
|
conv[4] = '.';
|
|
|
|
conv[5] = DIGIT(dig);
|
2016-08-21 01:05:54 +02:00
|
|
|
}
|
|
|
|
else // nothing after decimal point
|
2017-04-22 20:24:21 +02:00
|
|
|
conv[4] = conv[5] = ' ';
|
|
|
|
conv[6] = ' ';
|
2016-08-21 01:05:54 +02:00
|
|
|
}
|
2017-04-22 20:24:21 +02:00
|
|
|
return &conv[1];
|
2016-08-21 01:05:54 +02:00
|
|
|
}
|
|
|
|
|
2018-02-07 08:14:58 +01:00
|
|
|
#endif // ULTRA_LCD || (DEBUG_LEVELING_FEATURE && (MESH_BED_LEVELING || (HAS_ABL && !ABL_PLANAR)))
|