add initial files from teensy's usb_keyboard_debug.
This commit is contained in:
commit
ac3134ffeb
6 changed files with 1782 additions and 0 deletions
16
print.h
Normal file
16
print.h
Normal file
|
@ -0,0 +1,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
|
Loading…
Add table
Add a link
Reference in a new issue