pxa255_ssp.h

来自「老外的一个开源项目」· C头文件 代码 · 共 44 行

H
44
字号
// Copyright (c) David Vescovi.  All rights reserved.
// Part of Project DrumStix
// Windows Embedded Developers Interest Group (WE-DIG) community project.
// http://www.we-dig.org
// Copyright (c) Microsoft Corporation.  All rights reserved.
//------------------------------------------------------------------------------
//
//  Header: pxa255_ssp.h
//
//  Defines the ssp controler register layout and associated types and constants.
//
//------------------------------------------------------------------------------
#ifndef _PXA255_SSP_H_
#define _PXA255_SSP_H_

#if __cplusplus
extern "C" {
#endif

//------------------------------------------------------------------------------
//
//  Type:  SSP_REG_T
//
//  Defines the control register layout.
//
//------------------------------------------------------------------------------

typedef struct
{
	VUINT32_T	SSCR0;			// control register 0
	VUINT32_T	SSCR1;			// control register 1
	VUINT32_T	SSSR;			// status register 
	VUINT32_T	SSITR;			// interrupt test register
	VUINT32_T	SSDR;			// data read/write registe
} SSP_REG_T, *PSSP_REG_T;



#if __cplusplus
}
#endif

#endif 

⌨️ 快捷键说明

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