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

📄 mg5uart_reg.c

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻 C
字号:
/* *  This file contains a typical set of register access routines which may be *  used with the mg5uart chip if accesses to the chip are as follows: * *    + registers are accessed as unsigned32's *    + registers are only u32-aligned (no address gaps) * *  COPYRIGHT (c) 1989-2001. *  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: mg5uart_reg.c,v 1.1.6.1 2003/09/04 18:45:49 joel Exp $ */#include <rtems.h>#ifndef _MG5UART_MULTIPLIER#define _MG5UART_MULTIPLIER 1#define _MG5UART_NAME(_X) _X#define _MG5UART_TYPE unsigned32#endif#define CALCULATE_REGISTER_ADDRESS( _base, _reg ) \  (_MG5UART_TYPE *)((_base) + ((_reg) * _MG5UART_MULTIPLIER ))/*  *  MG5UART Get Register Routine */unsigned8 _MG5UART_NAME(mg5uart_get_register)(  unsigned32  ulCtrlPort,  unsigned8   ucRegNum){  _MG5UART_TYPE *port;  port = CALCULATE_REGISTER_ADDRESS( ulCtrlPort, ucRegNum );  return *port;}/* *  MG5UART Set Register Routine */void  _MG5UART_NAME(mg5uart_set_register)(  unsigned32  ulCtrlPort,  unsigned8   ucRegNum,  unsigned8   ucData){  _MG5UART_TYPE *port;  port = CALCULATE_REGISTER_ADDRESS( ulCtrlPort, ucRegNum );  *port = ucData;}

⌨️ 快捷键说明

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