mtkernel_3/lib/libtm/libtm.h | bare source | permlink (0.01 seconds) |
1: /* 2: *---------------------------------------------------------------------- 3: * micro T-Kernel 3.00.04 4: * 5: * Copyright (C) 2006-2021 by Ken Sakamura. 6: * This software is distributed under the T-License 2.2. 7: *---------------------------------------------------------------------- 8: * 9: * Released by TRON Forum(http://www.tron.org) at 2021/05/17. 10: * 11: *---------------------------------------------------------------------- 12: */ 13: 14: /* 15: * libtm.h 16: * T-Monitor compatible calls library 17: */ 18: 19: #include <config_tm.h> 20: 21: #define CHR_CR (0x0D) /* Carriage Return */ 22: #define CHR_ETX (0x03) /* End of TeXt */ 23: #define CHR_LF (0x0A) /* Line Feed */ 24: 25: IMPORT void tm_com_init(void); 26: 27: IMPORT void tm_snd_dat( const UB* buf, INT size ); 28: IMPORT void tm_rcv_dat( UB* buf, INT size ); 29: