atmega8 例程:系统库函数的延迟
/***********************************************************
* 函数库说明:ATMEGE8 延迟库函数
* 版本:v1.0
*
************************************************************
*注意: LED PC5
***********************************************************/
#include
//定义外部晶振
#define F_CPU 6000000UL
//延迟包含头文件
#include
//函数声明
void Delay_s(int ss);
【atmega8 例程:系统库函数的延迟】
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);
}
}
}
//首先库文件
//且系统延迟函数因晶振的不同对延迟大小有限制,需要注意:
/**
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.
*/
推荐阅读
- 显示系统集成商们和LED显示屏厂们的势力之争
- 光纤通讯系统由哪些模块组成?光纤通讯插入损耗、回拨损耗影响因素介绍
- LM3S1138入门6,系统时钟设置
- 整个数字资产生态系统使用AI进行自主操作
- 51操作系统学习笔记_二
- “鸿蒙”将推出手机版本,明年华为的手机将全面支持“鸿蒙”系统
- 电动汽车电池管理系统中的放大器功能是怎样的呐?
- 华为王成录:鸿蒙系统两年前就已经可用,明年将陆续搭载部分手机
- 家庭供暖系统是采用传统暖气片采暖还是地暖方式呢?
- 51单片机成功运行UCOSII实时操作系统