platform.h

来自「freescale atk source code」· C头文件 代码 · 共 64 行

H
64
字号
/*****************************************************************************
** platform.h
**
** Copyright 2007 Freescale Semiconductor, Inc. All Rights Reserved.
**
** This file contains copyrighted material. Use of this file is
** restricted by the provisions of a Freescale Software License
** Agreement, which has either been electronically accepted by
** you or has been expressly executed between the parties.
**
** Description: Explanation for the usage of this file.
**
** Revision History:
** -----------------
*****************************************************************************/

/*!
 * @file platform.h
 *
 * @brief the platform specific functions file
 *
 * @ingroup RAM Kernel
 */
#ifndef _PLATFORM_H_
#define _PLATFORM_H_

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

/*****************************************************************************
* <Includes>
*****************************************************************************/

/*****************************************************************************
* <Macros>
*****************************************************************************/
#define MX32	3
#define MEM_BASE_ADDR	0x80000000
#define MEM_BOTTOM_ADDR	0x87FFFFFF
/* watch dog registers */
#define WDOG_BASE_ADDR	0x53FDC000
#define WDOG_WCR	(WDOG_BASE_ADDR)
#define WDOG_WSR	(WDOG_BASE_ADDR + 0x2)

/*****************************************************************************
* <Typedefs>
*****************************************************************************/
extern void sys_reset(void);
extern u8 sys_get_chip_id(void);
/*****************************************************************************
* <Global Variables>
*****************************************************************************/

/*****************************************************************************
* <Local Variables>
*****************************************************************************/

#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* _PLATFORM_H_ */

⌨️ 快捷键说明

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