⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rtt.h.svn-base

📁 RT-Thread是发展中的下一代微内核嵌入式实时操作系统
💻 SVN-BASE
字号:
/* * File      : rtt.h * This file is part of RT-Thread RTOS * COPYRIGHT (C) 2006, RT-Thread Development Team * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rt-thread.com/license/LICENSE. * * Change Logs: * Date           Author       Notes * 2006-07-08     Bernard      the draft interface of microkernel */#ifndef __RTT_H__#define __RTT_H__#include <sys/types.h>/* syscall: syslog */int _rtt_syslog(const char* str);/* syscall: ipc */int _rtt_thread_send  (rt_thread_t to, rt_int32 timeout);int _rtt_thread_recv  (rt_thread_t &from, rt_int32 timeout);int _rtt_thread_reply (rt_thread_t from);/* thread message register */int _rtt_thread_mr_ld (rt_ubase_t n, rt_int32  value);int _rtt_thread_mr_st (rt_ubase_t n, rt_int32 &value);#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -