12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #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(PROTOCOL_CHIBIOS)
- #elif defined(__arm__)
- #endif
- #endif
|