作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我编写了下面的代码,以使 ATMEGA168A 闪烁小 LED:
#include <avr/io.h>
#include <util/delay.h>
#define F_CPU 1000000UL
int main(void)
{
DDRB = 0b00000010;
PORTB = 0b00000000;
while(1)
{
PORTB ^= 1 << 1;
_delay_ms(1000);
}
}
编译器向我发出如下警告:
Warning #warning "F_CPU not defined for <util/delay.h>"
这是此警告的来源 (delay.h)
#ifndef F_CPU
/* prevent compiler error by supplying a default */
# warning "F_CPU not defined for <util/delay.h>"
# define F_CPU 1000000UL
#endif
我在这里做错了什么?我的声明有误吗?
最佳答案
您需要在包含之前定义F_CPU
。您可以在编译时在命令行上执行此操作,或将其放入源代码中。定义这个符号是为了让构建系统知道您的特定 CPU 的运行速度。 (也就是说,您无法以这种方式更改实际速度)。
关于c - ATMEGA168A - F_CPU 警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34372129/
我是一名优秀的程序员,十分优秀!