diff options
author | tmk <nobody@nowhere> | 2013-03-21 15:44:33 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-03-21 15:44:33 +0900 |
commit | 2b08a150a41e25e87362436b7307bb1be35529f3 (patch) | |
tree | e176fafe0e7723612f7fb34b88105ea892f35404 /common/print.h | |
parent | 8580c8d291a432d5004c46321aa3c1b1626cdadd (diff) | |
parent | b2a19328ad35f51dcc9cef7c4d2801acd143582a (diff) |
Merge branch 'add_build_options'
Diffstat (limited to 'common/print.h')
-rw-r--r-- | common/print.h | 40 |
1 files changed, 29 insertions, 11 deletions
diff --git a/common/print.h b/common/print.h index b22509477f..80858b3bc5 100644 --- a/common/print.h +++ b/common/print.h @@ -30,13 +30,12 @@ #include <avr/pgmspace.h> -// avoid collision with arduino/Print.h -#ifndef __cplusplus // this macro allows you to write print("some text") and // the string is automatically placed into flash memory :) +// TODO: avoid collision with arduino/Print.h +#ifndef __cplusplus #define print(s) print_P(PSTR(s)) #endif - #define println(s) print_P(PSTR(s "\n")) /* for old name */ @@ -49,15 +48,12 @@ #define pbin_reverse(data) print_bin_reverse8(data) #define pbin_reverse16(data) print_bin_reverse16(data) - /* print value utility */ -#define print_val_dec(v) do { print_P(PSTR(#v ": ")); print_dec(v); print_P(PSTR("\n")); } while (0) +#define print_val_dec(v) do { print_P(PSTR(#v ": ")); print_dec(v); print_P(PSTR("\n")); } while (0) #define print_val_decs(v) do { print_P(PSTR(#v ": ")); print_decs(v); print_P(PSTR("\n")); } while (0) - #define print_val_hex8(v) do { print_P(PSTR(#v ": ")); print_hex8(v); print_P(PSTR("\n")); } while (0) #define print_val_hex16(v) do { print_P(PSTR(#v ": ")); print_hex16(v); print_P(PSTR("\n")); } while (0) #define print_val_hex32(v) do { print_P(PSTR(#v ": ")); print_hex32(v); print_P(PSTR("\n")); } while (0) - #define print_val_bin8(v) do { print_P(PSTR(#v ": ")); print_bin8(v); print_P(PSTR("\n")); } while (0) #define print_val_bin16(v) do { print_P(PSTR(#v ": ")); print_bin16(v); print_P(PSTR("\n")); } while (0) #define print_val_bin32(v) do { print_P(PSTR(#v ": ")); print_bin32(v); print_P(PSTR("\n")); } while (0) @@ -67,13 +63,13 @@ +#ifndef NO_PRINT + #ifdef __cplusplus extern "C" { #endif - /* function pointer of sendchar to be used by print utility */ -extern int8_t (*print_sendchar_func)(uint8_t); -extern bool print_enable; +void print_set_sendchar(int8_t (*print_sendchar_func)(uint8_t)); /* print string stored in data memory(SRAM) */ void print_S(const char *s); @@ -100,9 +96,31 @@ void print_bin32(uint32_t data); void print_bin_reverse8(uint8_t data); void print_bin_reverse16(uint16_t data); void print_bin_reverse32(uint32_t data); - #ifdef __cplusplus } #endif +#else + +#define print_set_sendchar(func) +#define print_S(s) +#define print_P(s) +#define print_CRLF() +#define print_dec(data) +#define print_decs(data) +#define print_hex4(data) +#define print_hex8(data) +#define print_hex16(data) +#define print_hex32(data) +#define print_bin4(data) +#define print_bin8(data) +#define print_bin16(data) +#define print_bin32(data) +#define print_bin_reverse8(data) +#define print_bin_reverse16(data) +#define print_bin_reverse32(data) + +#endif + + #endif |