mtkernel_3/kernel/sysdepend/iote_rza2m/sys_msg.h | bare source | permlink (0.01 seconds) |
1: /* 2: *---------------------------------------------------------------------- 3: * micro T-Kernel 3.00.05 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/11. 10: * 11: *---------------------------------------------------------------------- 12: */ 13: 14: /* 15: * sys_msg.h (RZ/A2M IoT-Engine) 16: * Hardware-Dependent System message 17: */ 18: 19: #ifndef _SYSDEPEND_TARGET_SYSMSG_ 20: #define _SYSDEPEND_TARGET_SYSMSG_ 21: 22: #include <tm/tmonitor.h> 23: 24: #if (USE_SYSTEM_MESSAGE && USE_TMONITOR) 25: #define SYSTEM_MESSAGE(s) tm_putstring((UB*)s) 26: #else 27: #define SYSTEM_MESSAGE(s) 28: #endif /* USE_SYSTEM_MESSAGE && USE_TMONITOR */ 29: 30: #endif /* _SYSDEPEND_TARGET_SYSMSG_ */