2010-09-30 05:17:01 +00:00
|
|
|
#ifndef PRINT_H__
|
|
|
|
#define PRINT_H__ 1
|
2010-08-10 04:34:06 +00:00
|
|
|
|
2010-10-23 18:27:43 +00:00
|
|
|
#include <stdbool.h>
|
2010-08-10 04:34:06 +00:00
|
|
|
#include <avr/pgmspace.h>
|
|
|
|
|
2010-10-23 18:27:43 +00:00
|
|
|
|
2011-01-28 15:44:05 +00:00
|
|
|
extern bool print_enable;
|
2010-10-23 18:27:43 +00:00
|
|
|
|
2010-08-10 04:34:06 +00:00
|
|
|
// this macro allows you to write print("some text") and
|
|
|
|
// the string is automatically placed into flash memory :)
|
|
|
|
#define print(s) print_P(PSTR(s))
|
|
|
|
|
|
|
|
void print_P(const char *s);
|
|
|
|
void phex(unsigned char c);
|
|
|
|
void phex16(unsigned int i);
|
2010-08-22 14:58:37 +00:00
|
|
|
void pbin(unsigned char c);
|
2010-08-23 06:46:24 +00:00
|
|
|
void pbin_reverse(unsigned char c);
|
2010-08-10 04:34:06 +00:00
|
|
|
|
|
|
|
#endif
|