main.c

См. документацию.
00001 
00024 // #include <avr/io.h>
00025 #include <avr/io.h>
00026 #include <stdio.h>
00027 #include <inttypes.h>
00028 
00029 #include "portpc.h"
00030 
00031 int main(void)
00032 {
00033         DDRB = (1<<7);
00034 
00035         usart0_init();
00036 
00037         while(1)
00038         {// main loop
00039                 PORTB = (1<<7);
00040                 send_usart0();
00041                 PORTB = ~(1<<7);
00042                 send_usart0();
00043         }
00044         return 0;
00045 }

Документация по rs232 test. Последние изменения: Sat Oct 6 03:56:26 2007. Создано системой  doxygen 1.5.1