mtkernel_3/config/config_tm.h | bare source | permlink (0.02 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: * config_tm.h 16: * T-Monitor Configuration Definition 17: */ 18: 19: #ifndef __TM_CONFIG_H__ 20: #define __TM_CONFIG_H__ 21: 22: /*---------------------------------------------------------------------- */ 23: /* Select a communication port 24: * Select the communication port used by T-Monitor. 25: * 1: Valid 0: Invalid (Only one of them is valid) 26: */ 27: #define TM_COM_SERIAL_DEV (1) /* Use serial communication device */ 28: #define TM_COM_NO_DEV (0) /* Do not use communication port */ 29: 30: /*---------------------------------------------------------------------- */ 31: /* tm_printf() call setting 32: * 1: Valid 0: Invalid 33: */ 34: #define USE_TM_PRINTF (1) /* Use tm_printf() & tm_sprintf() calls */ 35: #define TM_OUTBUF_SZ (0) /* Output Buffer size in stack */ 36: 37: #endif /* __TM_CONFIG_H__ */