view print.h @ 6:9df636be6feb

Keyboard functionally working with very very good debouncing. - defaultMap needs to be adjusted - Modifiers are not yet accounted for when sending keypresses - keypad needs to be added (detect,debounce, and send)
author Jacob Alexander <triplehaata@gmail.com>
date Wed, 16 Mar 2011 22:43:33 -0700
parents c3b2eaa4a89d
children 85bc68be98df
line wrap: on
line source

#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);
void pint8(unsigned char c);

#endif