This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
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-09-23 11:23:50 +00:00
|
|
|
#include "usb_debug.h"
|
2010-08-10 04:34:06 +00:00
|
|
|
|
2010-10-23 18:27:43 +00:00
|
|
|
|
|
|
|
bool print_enable;
|
|
|
|
|
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))
|
|
|
|
#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 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
|