00001 00002 #include <avr/io.h> 00003 #include <avr/interrupt.h> 00004 00005 #include "nip_init.h" 00006 #include "test/test_mem.h" 00007 00008 00009 int main( void ) 00010 { 00011 uint8_t res; 00012 nip_init(); 00013 00014 // test memory management 00015 res = nip_test_mem(); 00016 00017 while (1) 00018 { 00019 00020 } 00021 00022 return 0; 00023 }