blob: 31e0a576c0fcd5c32f6d66caa4ca46cbc44b66ad [file] [log] [blame]
Luigi Santivetti69972f92019-11-12 22:55:40 +00001/*
2 print.h - Functions for formatting output strings
3 Part of Grbl
4
5 Copyright (c) 2011-2016 Sungeun K. Jeon for Gnea Research LLC
6 Copyright (c) 2009-2011 Simen Svale Skogsrud
7
8 Grbl is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
12
13 Grbl is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with Grbl. If not, see <http://www.gnu.org/licenses/>.
20*/
21
22#ifndef print_h
23#define print_h
24
25
26void printString(const char *s);
27
28void printPgmString(const char *s);
29
30void printInteger(long n);
31
32void print_uint32_base10(uint32_t n);
33
34// Prints an uint8 variable in base 10.
35void print_uint8_base10(uint8_t n);
36
37// Prints an uint8 variable in base 2 with desired number of desired digits.
38void print_uint8_base2_ndigit(uint8_t n, uint8_t digits);
39
40void printFloat(float n, uint8_t decimal_places);
41
42// Floating value printing handlers for special variables types used in Grbl.
43// - CoordValue: Handles all position or coordinate values in inches or mm reporting.
44// - RateValue: Handles feed rate and current velocity in inches or mm reporting.
45void printFloat_CoordValue(float n);
46void printFloat_RateValue(float n);
47
48// Debug tool to print free memory in bytes at the called point. Not used otherwise.
49void printFreeMemory();
50
51#endif