为什么以下代码在 Arduino 中不起作用?
#include<avr/io.h>
void setup()
{
DDRA = 0xFF;
}
void loop()
{
PORTA = 0xAA;
_delay_ms(1000);
PORTA = 0x55;
_delay_ms(1000);
}
我收到以下错误。“DDRA 未在此范围内声明。”
据我所知,arduino 使用 AVR 微控制器,那么为什么我们不能在 arduino 板上使用 AVR 代码呢?