s3c6410_iic.h

来自「6410BSP1」· C头文件 代码 · 共 51 行

H
51
字号
//
// Copyright (c) Microsoft Corporation.  All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft end-user
// license agreement (EULA) under which you licensed this SOFTWARE PRODUCT.
// If you did not accept the terms of the EULA, you are not authorized to use
// this source code. For a copy of the EULA, please see the LICENSE.RTF on your
// install media.
//
//------------------------------------------------------------------------------
//
//  Header: s3c6410_iic.h
//
//  Defines the IIC Bus controller CPU register layout and definitions.
//
#ifndef __S3C6410_IIC_H
#define __S3C6410_IIC_H

#if __cplusplus
extern "C"
{
#endif


//------------------------------------------------------------------------------
//  Type: S3C6410_IIC_REG
//
//  Defines IIC bus control register layout. This register bank is located by
//  the constant CPU_BASE_REG_XX_IIC in the configuration file
//  cpu_base_reg_cfg.h.
//
// IIC Base Address = 0x7F004000

typedef struct
{
    UINT32    IICCON;
    UINT32    IICSTAT;
    UINT32    IICADD;
    UINT32    IICDS;
    UINT32    IICLC;

} S3C6410_IIC_REG, *PS3C6410_IIC_REG;


#if __cplusplus
    }
#endif

#endif

⌨️ 快捷键说明

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