diff options
| author | Jun Wako <wakojun@gmail.com> | 2014-12-12 14:05:05 +0900 | 
|---|---|---|
| committer | Jun Wako <wakojun@gmail.com> | 2015-01-04 17:21:42 +0900 | 
| commit | 8f1e311cd7624d765901c69e61837db33a51928b (patch) | |
| tree | 641c06cd3043cae76f8198a3fbdf9361c19884c7 /common | |
| parent | 06527bde4f873ffc6eb8e359fb3b150e880b89ba (diff) | |
| download | firmware-8f1e311cd7624d765901c69e61837db33a51928b.tar.gz firmware-8f1e311cd7624d765901c69e61837db33a51928b.tar.bz2 firmware-8f1e311cd7624d765901c69e61837db33a51928b.zip  | |
Ad hoc fix of print and debug for mbed
Diffstat (limited to 'common')
| -rw-r--r-- | common/print.c | 12 | 
1 files changed, 10 insertions, 2 deletions
diff --git a/common/print.c b/common/print.c index c13a29f31..ca94e1e5d 100644 --- a/common/print.c +++ b/common/print.c @@ -22,13 +22,14 @@   * THE SOFTWARE.   */ -#include <avr/io.h> -#include <avr/pgmspace.h> +#include <stdint.h>  #include "print.h"  #ifndef NO_PRINT +#if defined(__AVR__) +  #define sendchar(c)    xputc(c) @@ -37,4 +38,11 @@ void print_set_sendchar(int8_t (*sendchar_func)(uint8_t))      xdev_out(sendchar_func);  } +#elif defined(__arm__) + +// TODO +//void print_set_sendchar(int8_t (*sendchar_func)(uint8_t)) { } + +#endif +  #endif  | 
