From c40c885a783a8f23963ee09ee2d9392c75205614 Mon Sep 17 00:00:00 2001 From: Mika Tuupola Date: Mon, 14 Mar 2011 21:16:49 +0200 Subject: [PATCH] Update header. --- hello_world/firmware/main.c | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/hello_world/firmware/main.c b/hello_world/firmware/main.c index 0fdebd0..60af6ae 100644 --- a/hello_world/firmware/main.c +++ b/hello_world/firmware/main.c @@ -1,7 +1,19 @@ +/* + * Hello world of AVR. Blink led PORTB5 (Arduino digital 13). + * + * To compile and upload run: make clean; make; make program; + * + * Copyright 2009-2011 Mika Tuupola + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/mit-license.php + * + */ + #include #include -int main(void) +int main(void) { /* Make PORTB5 (Arduino pin 13) an output. */ DDRB |= _BV(PORTB5);