mx21_common.c
来自「MX21_InitCodeLib.rar freescale mx21系列AR」· C语言 代码 · 共 43 行
C
43 行
/**********************************************************************
*
* (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 + =
减小字号Ctrl + -
显示快捷键?