最終更新:2012-07-06 (金) 03:45:24 (4306d)  

WinAVR
Top / WinAVR

http://winavr.sourceforge.net/

Windows用のAVR向けCコンパイラ

WinAVR (pronounced "whenever") is a suite of executable, open source software development tools for the Atmel AVR series of RISC microprocessors hosted on the Windows platform. It includes the GNU GCC compiler for C and C++.

基本

#include <avr/io.h>
int main(void) {
    // ここに「初期化処理」
    while(1) {
        // ここに「繰り返し実行する処理」
    }
}

関連

参考