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

📄 support.h

📁 开放源码的嵌入式开发环境
💻 H
字号:
/** * @file rtems/rtems/support.h *//* *  This include file contains information about support functions for *  the RTEMS API. * *  COPYRIGHT (c) 1989-1999. *  On-Line Applications Research Corporation (OAR). * *  The license and distribution terms for this file may be *  found in the file LICENSE in this distribution or at *  http://www.rtems.com/license/LICENSE. * *  $Id: support.h,v 1.17 2005/01/28 05:00:20 ralf Exp $ */#ifndef _RTEMS_RTEMS_SUPPORT_H#define _RTEMS_RTEMS_SUPPORT_H#ifdef __cplusplusextern "C" {#endif#include <rtems/rtems/types.h>/* *  rtems_build_name * *  DESCRIPTION: * *  This function returns an object name composed of the four characters *  C1, C2, C3, and C4. * *  NOTE: * *  This must be implemented as a macro for use in Configuration Tables. * */#define rtems_build_name( _C1, _C2, _C3, _C4 ) \  ( (uint32_t  )(_C1) << 24 | (uint32_t  )(_C2) << 16 | (uint32_t  )(_C3) << 8 | (uint32_t  )(_C4) )/* *  rtems_get_class * *  DESCRIPTION: * *  This function returns the class portion of the ID. * */#define rtems_get_class( _id ) \  _Objects_Get_class( _id )/* *  rtems_get_node * *  DESCRIPTION: * *  This function returns the node portion of the ID. * */#define rtems_get_node( _id ) \  _Objects_Get_node( _id )/* *  rtems_get_index * *  DESCRIPTION: * *  This function returns the index portion of the ID. * */#define rtems_get_index( _id ) \  _Objects_Get_index( _id )/* *  Time related */#define RTEMS_MILLISECONDS_TO_MICROSECONDS(_ms) \        TOD_MILLISECONDS_TO_MICROSECONDS(_ms)#define RTEMS_MILLISECONDS_TO_TICKS(_ms) \        TOD_MILLISECONDS_TO_TICKS(_ms)#define RTEMS_MICROSECONDS_TO_TICKS(_ms) \        TOD_MICROSECONDS_TO_TICKS(_ms)#ifndef __RTEMS_APPLICATION__#include <rtems/rtems/support.inl>#endif#ifdef __cplusplus}#endif#endif/* end of include file */

⌨️ 快捷键说明

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