From ea958d3c401761dcc24865d9639b2fab31038db8 Mon Sep 17 00:00:00 2001 From: Brijeshcr Date: Thu, 6 Jul 2017 15:48:47 +0530 Subject: Revert "LinearAlgebra Function Added" --- help/en_US/AVRUARTSetup.xml | 90 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 help/en_US/AVRUARTSetup.xml (limited to 'help/en_US/AVRUARTSetup.xml') diff --git a/help/en_US/AVRUARTSetup.xml b/help/en_US/AVRUARTSetup.xml new file mode 100644 index 0000000..043e265 --- /dev/null +++ b/help/en_US/AVRUARTSetup.xml @@ -0,0 +1,90 @@ + + + + + + + + AVRUARTSetup + Function to Setup Serial Communication i.e UART or USART in ATmega16. + + + + + Parameters + + mode : + integer, from 0 to 2 + baudrate : + Enter one of the following available baudrates (2400 , 4800 , 9600 , 14400 , 19200 , 28800 , 38400 , 57600 , 768000 , 115200 , 230400 , 250000 , 1000000) + stopbits : + integer, (0 for one stopbit) or (1 for two stopbits) + parity : + integer, from 0 to 2 + + + + + Description + +This function Setup the UART or USART for Serial Communicaion between ATmega16 +and different micro controllers or between ATmega16 and Computer. + + +mode can take values: + +0 for Asynchronous Normal mode +1 for Asynchronous Double Speed mode +2 for Synchronous mode + + + +parity can take values: + +0 for parity disabled +1 for even parity +2 for odd parity + + + +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR. + + + + + + + Examples + + + + + See also + + AVRUARTTransmit + AVRUARTReceive + + + + + Authors + + Ashish Kamble + + + -- cgit