summaryrefslogtreecommitdiff
path: root/print.h
blob: 1de618fbaabacb46d4fe2d0691d09ecd2ca108ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef print_h__
#define print_h__

#include <avr/pgmspace.h>
#include "usb_keyboard_debug.h"

// 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);

#endif