📄 mx21_common.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 + -