36 lines
1.1 KiB
C
36 lines
1.1 KiB
C
/*
|
|
print.h - Functions for formatting output strings
|
|
*/
|
|
/**
|
|
* Part of Grbl interpreter modified to work with Adafruit Motor Driver V2
|
|
* File modified by Catalin Vasiliu
|
|
* email <vasiliu.catalin.mihai@gmail.com>
|
|
*
|
|
*
|
|
*
|
|
* Original license:***********************************************************
|
|
* Copyright (c) 2009-2011 Simen Svale Skogsrud
|
|
* Copyright (c) 2011 Sungeun K. Jeon
|
|
*
|
|
* Grbl 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.
|
|
*
|
|
* Grbl 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.
|
|
*/
|
|
|
|
#ifndef g_print_h
|
|
#define g_print_h
|
|
|
|
void printString(const char *s);
|
|
void printPgmString(const char *s);
|
|
void printInteger(long n);
|
|
void printIntegerInBase(unsigned long n, unsigned long base);
|
|
void printFloat(double n);
|
|
|
|
#endif
|