diff options
author | Brijeshcr | 2017-07-06 15:24:41 +0530 |
---|---|---|
committer | GitHub | 2017-07-06 15:24:41 +0530 |
commit | a7eeecce4c7c39ea52a2d434815c574a2c42730d (patch) | |
tree | 9968264546fd54f9eaa6ad80ee7db47e366f8601 /2.3-1/macros/Hardware/AVR/AVRUARTTransmit.sci | |
parent | 3308ea7a973e2c1e1c8bea99ac7cc783ce8e8b06 (diff) | |
parent | 115efeb443a7e6da44f628537811b69a01553ab2 (diff) | |
download | Scilab2C-a7eeecce4c7c39ea52a2d434815c574a2c42730d.tar.gz Scilab2C-a7eeecce4c7c39ea52a2d434815c574a2c42730d.tar.bz2 Scilab2C-a7eeecce4c7c39ea52a2d434815c574a2c42730d.zip |
Merge pull request #3 from sandeepgupta007/master
LinearAlgebra Function Added
Diffstat (limited to '2.3-1/macros/Hardware/AVR/AVRUARTTransmit.sci')
-rw-r--r-- | 2.3-1/macros/Hardware/AVR/AVRUARTTransmit.sci | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/2.3-1/macros/Hardware/AVR/AVRUARTTransmit.sci b/2.3-1/macros/Hardware/AVR/AVRUARTTransmit.sci index 695c708d..eb358499 100644 --- a/2.3-1/macros/Hardware/AVR/AVRUARTTransmit.sci +++ b/2.3-1/macros/Hardware/AVR/AVRUARTTransmit.sci @@ -10,19 +10,17 @@ function AVRUARTTransmit(data) // Function to Transmit data using UART or USART. -// -// Parameter -// data : The data to be transmitted can be a Char,String,Unsigned Int,Signed Int. -// // Description // This function Tranmits data over UART or USART.The data to be transmitted can // be a Char , String , Unsigned Int, Signed Int. -// -// This is curretly dummy function. It provides no functionality but is required -// for providing support for generating C code for AVR. +// +// Parameter +// data : +// The data to be transmitted can be a Char,String,Unsigned Int,Signed Int. // //Examples -// AVRUARTTransmit("This is example"); //This function will transmit the entered string. +// AVRUARTTransmit("This is example"); //This function will transmit the entered string. +// //See also // AVRUARTSetup // AVRUARTReceive @@ -30,4 +28,6 @@ function AVRUARTTransmit(data) // Authors // Ashish Kamble // +// This is curretly dummy function. It provides no functionality but is required +// for providing support for generating C code for AVR. endfunction |