Archived
1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
controller/print.h
Jacob Alexander de0e8f8540 Significant progress made.
- Only need to decode a bunch more of the matrix to get the proper key assignments
- All of the infrastructure is in place for decoding like matrices for the teensy
2011-03-09 22:49:34 -08:00

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