123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #include <stdint.h>
- #include "print.h"
- #ifndef NO_PRINT
- #if defined(__AVR__)
- #define sendchar(c) xputc(c)
- void print_set_sendchar(int8_t (*sendchar_func)(uint8_t))
- {
- xdev_out(sendchar_func);
- }
- #elif defined(__arm__)
- #endif
- #endif
|