-
Notifications
You must be signed in to change notification settings - Fork 28
/
Delay.C
93 lines (89 loc) · 2.27 KB
/
Delay.C
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/********************************** (C) COPYRIGHT *******************************
* File Name : Debug.C
* Author : WCH
* Version : V1.1
* Date : 2017/09/05
* Description : CH554 DEBUG Interface
CH554主频修改、延时函数定义
串口0和串口1初始化
串口0和串口1的收发子函数
看门狗初始化
*******************************************************************************/
#include "Delay.H"
#include "ch554_platform.h"
/*******************************************************************************
* Function Name : mDelayus(UNIT16 n)
* Description : us延时函数
* Input : UNIT16 n
* Output : None
* Return : None
*******************************************************************************/
void mDelayuS(uint16_t n ) // 以uS为单位延时
{
#ifdef CLOCK_CFG
#if CLOCK_CFG <= 6000000
n >>= 2;
#endif
#if CLOCK_CFG <= 3000000
n >>= 2;
#endif
#if CLOCK_CFG <= 750000
n >>= 4;
#endif
#endif
while ( n ) { // total = 12~13 Fsys cycles, 1uS @Fsys=12MHz
++ SAFE_MOD; // 2 Fsys cycles, for higher Fsys, add operation here
#ifdef CLOCK_CFG
#if CLOCK_CFG >= 14000000
++ SAFE_MOD;
#endif
#if CLOCK_CFG >= 16000000
++ SAFE_MOD;
#endif
#if CLOCK_CFG >= 18000000
++ SAFE_MOD;
#endif
#if CLOCK_CFG >= 20000000
++ SAFE_MOD;
#endif
#if CLOCK_CFG >= 22000000
++ SAFE_MOD;
#endif
#if CLOCK_CFG >= 24000000
++ SAFE_MOD;
#endif
#if CLOCK_CFG >= 26000000
++ SAFE_MOD;
#endif
#if CLOCK_CFG >= 28000000
++ SAFE_MOD;
#endif
#if CLOCK_CFG >= 30000000
++ SAFE_MOD;
#endif
#if CLOCK_CFG >= 32000000
++ SAFE_MOD;
#endif
#endif
-- n;
}
}
/*******************************************************************************
* Function Name : mDelayms(UNIT16 n)
* Description : ms延时函数
* Input : UNIT16 n
* Output : None
* Return : None
*******************************************************************************/
void mDelaymS(uint16_t n ) // 以mS为单位延时
{
while ( n ) {
#ifdef DELAY_MS_HW
while ( ( TKEY_CTRL & bTKC_IF ) == 0 );
while ( TKEY_CTRL & bTKC_IF );
#else
mDelayuS( 1000 );
#endif
-- n;
}
}