summaryrefslogtreecommitdiff
path: root/avr/aio_client/firmware/main.c
diff options
context:
space:
mode:
authorJörg Biemann <joerg@Jorgs-MacBook-Pro.local>2012-09-29 16:25:42 +0200
committerJörg Biemann <joerg@Jorgs-MacBook-Pro.local>2012-09-29 16:25:42 +0200
commitbcd8691a436ab2e32adf74cfc161f0af7ebb92d7 (patch)
tree81efcab95dbe127f17868a6448fd5f04c4365395 /avr/aio_client/firmware/main.c
parentdaf8126e9066a506bc02298ab56bd793a293e9c1 (diff)
Signed-off-by: Jörg Biemann <joerg@Jorgs-MacBook-Pro.local>HEADmaster
AVR Client Project für Mac erstellt
Diffstat (limited to 'avr/aio_client/firmware/main.c')
-rw-r--r--avr/aio_client/firmware/main.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/avr/aio_client/firmware/main.c b/avr/aio_client/firmware/main.c
new file mode 100644
index 0000000..b231749
--- /dev/null
+++ b/avr/aio_client/firmware/main.c
@@ -0,0 +1,16 @@
+/* Name: main.c
+ * Author: <insert your name here>
+ * Copyright: <insert your copyright message here>
+ * License: <insert your license reference here>
+ */
+
+#include <avr/io.h>
+
+int main(void)
+{
+ /* insert your hardware initialization here */
+ for(;;){
+ /* insert your main loop code here */
+ }
+ return 0; /* never reached */
+}