summaryrefslogtreecommitdiff
path: root/print.h
blob: 77290520e9dc048e41819f944c549fdfcd41ca62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef PRINT_H__
#define PRINT_H__ 1

#include <stdbool.h>
#include <avr/pgmspace.h>
#include "usb_debug.h"


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);
void phex16(unsigned int i);
void pbin(unsigned char c);
void pbin_reverse(unsigned char c);

#endif