今天搞了一下AVR STUDIO环境下ATSAMD21驱动LED.
装了AVR STUDIO 7.
工程设置:
代码:
#include "sam.h"
void configure_port_pins(void)
{
REG_PORT_DIR1=0x400;
}
int main(void)
{
long int i;
/* Initialize the SAM system */
SystemInit();
configure_port_pins();
/* Replace with your application code */
while (1)
{
REG_PORT_OUT1=0x400;
for(i=1000000;i>0;i--);
REG_PORT_OUT1=0x000;
for(i=1000000;i>0;i--);
}
}
烧写:
工程:
AVR_LED.rar
(566.56 KB)
|