c_cpp AVR C实验室1

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp AVR C实验室1相关的知识,希望对你有一定的参考价值。

/*
 * lab1.c
 *
 * Created: 12/23/2015 6:18:56 PM
 * Author : mahir
 */ 

#include <avr/io.h>


int main(void)
{
    DDRD = 0xff;	// Set all Port D pins as outputs
    DDRC = 0xff;	// Set all Port C pins as outputs

    PORTD = 0xFF;	// Set all Port D pins as HIGH
    PORTC = 0x00;	// Set all Port C pins as LOW

    return 1;
}

以上是关于c_cpp AVR C实验室1的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 用于嵌入式程序的小型RingQueue(例如Arduino,AVR,mbed等。

c_cpp 测量实验室终极

c_cpp 实验室2电位

c_cpp WCL - 实验室8

c_cpp WCL - 实验室7

c_cpp 实验室405 2016年7月15日