访问手机版页面
你的位置:老古开发网 > AVR单片机 > ATMega8系列单片机 > 正文  
atmega8 例程:系统库函数的延迟
内容导读:
/************************************************************ 函数库说明:ATMEGE8 延迟库函数* 版本: v1.0 * **

/***********************************************************

* 函数库说明:ATMEGE8 延迟库函数

* 版本: v1.0

*

************************************************************

*注意: LED PC5

***********************************************************/

#include

//定义外部晶振

#define F_CPU 6000000UL

//延迟包含头文件

#include

//函数声明

void Delay_s(int ss);

int main(void)

{

//LED等PC5设置为输出

DDRC |= (1 << DDC5);

//起始PC5输出高电平,LED不亮

PORTC |= (1 << PC5);

while(1)

{

//取反

PORTC ^= (1 << PC5);

//延迟1s

Delay_s(1);

}

return 0;

}

/***********************************************************

** 名称:void Delay_s(int ss)

** 功能:精确1s延迟

** 入口参数:ss 需要延时的秒数

** 出口参数:无

** 使用说明:系统库函数延迟因晶振不同有大小限制

***********************************************************/

void Delay_s(int ss)

{

int i = 0;

while(ss--)

{

for(i = 0; i < 25; i++)

{

_delay_ms(40);

}

}

}


//首先库文件里面不再定义F_CPU(即晶振频率),所以在main.c中自行定义。

//且系统延迟函数因晶振的不同对延迟大小有限制,需要注意:

/**

ingroup util_delay

Perform a delay of c __us microseconds, using _delay_loop_1().

The macro F_CPU is supposed to be defined to a

constant defining the CPU clock frequency (in Hertz).

The maximal possible delay is 768 us / F_CPU in MHz.

*/


/**

ingroup util_delay

Perform a delay of c __ms milliseconds, using _delay_loop_2().

The macro F_CPU is supposed to be defined to a

constant defining the CPU clock frequency (in Hertz).

The maximal possible delay is 262.14 ms / F_CPU in MHz.

*/


标签: atmega8,延迟,系统库函数,
来源:互联网 作者:karen 时间:2019/1/7 12:20:01
相关阅读
推荐阅读
阅读排行
最近更新
商品推荐