1
0
Fork 0

added PS/2 to USB converter use V-USB as protocol stack

This commit is contained in:
tmk 2011-01-29 00:44:05 +09:00
parent c07408a447
commit 4f5f1a53d4
40 changed files with 10003 additions and 18 deletions

View file

@ -3,15 +3,13 @@
#include <stdbool.h>
#include <avr/pgmspace.h>
#include "usb_debug.h"
bool print_enable;
extern bool print_enable;
// 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);