1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #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
|