aboutsummaryrefslogtreecommitdiff
path: root/print.h
diff options
context:
space:
mode:
Diffstat (limited to 'print.h')
-rw-r--r--print.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/print.h b/print.h
index edc540fab..686fa89ac 100644
--- a/print.h
+++ b/print.h
@@ -24,6 +24,7 @@
24#ifndef PRINT_H__ 24#ifndef PRINT_H__
25#define PRINT_H__ 1 25#define PRINT_H__ 1
26 26
27#include <stdint.h>
27#include <stdbool.h> 28#include <stdbool.h>
28#include <avr/pgmspace.h> 29#include <avr/pgmspace.h>
29 30
@@ -34,6 +35,7 @@ extern bool print_enable;
34// the string is automatically placed into flash memory :) 35// the string is automatically placed into flash memory :)
35#define print(s) print_P(PSTR(s)) 36#define print(s) print_P(PSTR(s))
36 37
38void print_S(const char *s);
37void print_P(const char *s); 39void print_P(const char *s);
38void phex(unsigned char c); 40void phex(unsigned char c);
39void phex16(unsigned int i); 41void phex16(unsigned int i);