You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
379 B
C
17 lines
379 B
C
#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
|