2010-09-30 07:17:01 +02:00
|
|
|
#ifndef PRINT_H__
|
|
|
|
#define PRINT_H__ 1
|
2010-08-10 06:34:06 +02:00
|
|
|
|
2010-10-23 20:27:43 +02:00
|
|
|
#include <stdbool.h>
|
2010-08-10 06:34:06 +02:00
|
|
|
#include <avr/pgmspace.h>
|
2010-09-23 13:23:50 +02:00
|
|
|
#include "usb_debug.h"
|
2010-08-10 06:34:06 +02:00
|
|
|
|
2010-10-23 20:27:43 +02:00
|
|
|
|
|
|
|
bool print_enable;
|
|
|
|
|
2010-08-10 06:34:06 +02: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))
|
|
|
|
#define pchar(c) usb_debug_putchar(c)
|
|
|
|
|
|
|
|
void print_P(const char *s);
|
|
|
|
void phex(unsigned char c);
|
|
|
|
void phex16(unsigned int i);
|
2010-08-22 16:58:37 +02:00
|
|
|
void pbin(unsigned char c);
|
2010-08-23 08:46:24 +02:00
|
|
|
void pbin_reverse(unsigned char c);
|
2010-08-10 06:34:06 +02:00
|
|
|
|
|
|
|
#endif
|