mcf523x_ccm.h

来自「freemodbus-v1-1-1-0.zip v1.1.1版本的代码 支持多」· C头文件 代码 · 共 64 行

H
64
字号
/************************************************************************************ * Copyright @ 1995-2005 metrowerks inc. All rights reserved.                       * *                                                                                  * *                                                                                  * *    $RCSfile: mcf523x_ccm.h,v $                                                            * *    $Revision: 1.1 $                                                              * *    $Date: 2006/05/14 21:59:16 $                                                  * *                                                                                  * * DESCRIPTION                                                                      * *   Register and bit definitions for the MCF523X.                                  * *                                                                                  * *                                                                                  * *                                                                                  * * NOTE                                                                             * *                                                                                  * *                                                                                  * *                                                                                  * * HISTORY                                                                          * *                                                                                  *	 ************************************************************************************/#ifndef __MCF523X_CCM_H__#define __MCF523X_CCM_H__/*********************************************************************** Chip Configuration Module (CCM)**********************************************************************//* Register read/write macros */#define MCF_CCM_CCR     (*(vuint16*)(void*)(&__IPSBAR[0x110004]))#define MCF_CCM_LPCR    (*(vuint8 *)(void*)(&__IPSBAR[0x110007]))#define MCF_CCM_CIR     (*(vuint16*)(void*)(&__IPSBAR[0x11000A]))#define MCF_CCM_RCON    (*(vuint16*)(void*)(&__IPSBAR[0x110008]))/* Bit definitions and macros for MCF_CCM_CCR */#define MCF_CCM_CCR_BMT(x)        (((x)&0x0007)<<0)#define MCF_CCM_CCR_BME           (0x0008)#define MCF_CCM_CCR_SZEN          (0x0040)#define MCF_CCM_CCR_MODE(x)       (((x)&0x0007)<<8)/* Bit definitions and macros for MCF_CCM_LPCR */#define MCF_CCM_LPCR_STPMD(x)     (((x)&0x03)<<3)#define MCF_CCM_LPCR_LPMD(x)      (((x)&0x03)<<6)#define MCF_CCM_LPCR_LPMD_STOP    (0xC0)#define MCF_CCM_LPCR_LPMD_WAIT    (0x80)#define MCF_CCM_LPCR_LPMD_DOZE    (0x40)#define MCF_CCM_LPCR_LPMD_RUN     (0x00)/* Bit definitions and macros for MCF_CCM_CIR */#define MCF_CCM_CIR_PRN(x)        (((x)&0x003F)<<0)#define MCF_CCM_CIR_PIN(x)        (((x)&0x03FF)<<6)/* Bit definitions and macros for MCF_CCM_RCON */#define MCF_CCM_RCON_MODE         (0x0001)#define MCF_CCM_RCON_BOOTPS(x)    (((x)&0x0003)<<3)#define MCF_CCM_RCON_RLOAD        (0x0020)#define MCF_CCM_RCON_RCSC(x)      (((x)&0x0003)<<8)/********************************************************************/#endif /* __MCF523X_CCM_H__ */

⌨️ 快捷键说明

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