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

📄 mx21_common.c

📁 MX21_InitCodeLib.rar freescale mx21系列ARM芯片9328的WINCE5.0下初始化代码
💻 C
字号:
/**********************************************************************
*
*         (C) COPYRIGHT 2004 FREESCALE, INC.
*         ALL RIGHTS RESERVED
*
*
*
*     Group/Division: WMSG/MMDO
*
*    Description	:                   
*                     These functions are used by other functions and are 
*                     ideally not meant for direct use by users of this 
*                     library code.
*                  
*
*     Related Specifications:
*
*     Errata:
*
*     File Name: MX21_ArmPlatform.c
*     Revision Number: 0.1
*     Author(s): Sharad Kumar
*     Date created: 30Apr2004
*     Revision History:
*        Date      Rev     Description
*        ----      ---     -----------
*        30Apr2004  0.1     First Draft
*
**********************************************************************/
#include "MX21_Common.h"


void 
softDelay (uint32_t delay_value) 
{
	uint32_t i;
	uint32_t a;
	
	for (i=0; i < delay_value; i++) 
	{
		a = i;
	}
}

⌨️ 快捷键说明

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