diff options
author | tmk <nobody@nowhere> | 2011-09-17 22:39:50 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2011-09-17 23:53:18 +0900 |
commit | e67c988824f5ec0c965beb412f8ee5953dfd3c8c (patch) | |
tree | 190543f5bddfd31a326234aad91a0a995e55863a /print.h | |
parent | b703de7b298f8463bf4654fa3730ba1958a7fa9e (diff) |
Added Bulegiga iWRAP support into HHKB.(Bluetooth)
Diffstat (limited to 'print.h')
-rw-r--r-- | print.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -24,6 +24,7 @@ #ifndef PRINT_H__ #define PRINT_H__ 1 +#include <stdint.h> #include <stdbool.h> #include <avr/pgmspace.h> @@ -34,6 +35,7 @@ extern bool print_enable; // the string is automatically placed into flash memory :) #define print(s) print_P(PSTR(s)) +void print_S(const char *s); void print_P(const char *s); void phex(unsigned char c); void phex16(unsigned int i); |