summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/hardware/rasberrypi/Serial
diff options
context:
space:
mode:
authorBrijeshcr2017-07-06 15:24:41 +0530
committerGitHub2017-07-06 15:24:41 +0530
commita7eeecce4c7c39ea52a2d434815c574a2c42730d (patch)
tree9968264546fd54f9eaa6ad80ee7db47e366f8601 /2.3-1/src/c/hardware/rasberrypi/Serial
parent3308ea7a973e2c1e1c8bea99ac7cc783ce8e8b06 (diff)
parent115efeb443a7e6da44f628537811b69a01553ab2 (diff)
downloadScilab2C-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/src/c/hardware/rasberrypi/Serial')
-rw-r--r--2.3-1/src/c/hardware/rasberrypi/Serial/gRPI_serialOpena.c19
-rw-r--r--2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialCloses.c17
-rw-r--r--2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialDataAvails.c19
-rw-r--r--2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialFlushs.c17
-rw-r--r--2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialGetchars.c17
-rw-r--r--2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialPrintfs.c17
-rw-r--r--2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialPutchars.c17
-rw-r--r--2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialPutss.c17
8 files changed, 0 insertions, 140 deletions
diff --git a/2.3-1/src/c/hardware/rasberrypi/Serial/gRPI_serialOpena.c b/2.3-1/src/c/hardware/rasberrypi/Serial/gRPI_serialOpena.c
deleted file mode 100644
index 31543afe..00000000
--- a/2.3-1/src/c/hardware/rasberrypi/Serial/gRPI_serialOpena.c
+++ /dev/null
@@ -1,19 +0,0 @@
-/* Copyright (C) 2016 - IIT Bombay - FOSSEE
-
- This file must be used under the terms of the CeCILL.
- This source file is licensed as described in the file COPYING, which
- you should have received as part of this distribution. The terms
- are also available at
- http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
- Author: Jorawar Singh, Siddhesh Wani
- Organization: FOSSEE, IIT Bombay
- Email: toolbox@scilab.in
-*/
-
-#include "RPIPeripheralSerial.h"
-
-int8 gRPI_serialOpena(char* device,int size,uint32 baud){
- int8 fd;
- fd = serialOpen(device,baud);
- return fd;
-}
diff --git a/2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialCloses.c b/2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialCloses.c
deleted file mode 100644
index d20aa541..00000000
--- a/2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialCloses.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/* Copyright (C) 2016 - IIT Bombay - FOSSEE
-
- This file must be used under the terms of the CeCILL.
- This source file is licensed as described in the file COPYING, which
- you should have received as part of this distribution. The terms
- are also available at
- http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
- Author: Jorawar Singh, Siddhesh Wani
- Organization: FOSSEE, IIT Bombay
- Email: toolbox@scilab.in
-*/
-
-#include "RPIPeripheralSerial.h"
-
-void u8RPI_serialCloses(uint8 fd){
- serialClose(fd);
-}
diff --git a/2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialDataAvails.c b/2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialDataAvails.c
deleted file mode 100644
index cf256070..00000000
--- a/2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialDataAvails.c
+++ /dev/null
@@ -1,19 +0,0 @@
-/* Copyright (C) 2016 - IIT Bombay - FOSSEE
-
- This file must be used under the terms of the CeCILL.
- This source file is licensed as described in the file COPYING, which
- you should have received as part of this distribution. The terms
- are also available at
- http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
- Author: Jorawar Singh, Siddhesh Wani
- Organization: FOSSEE, IIT Bombay
- Email: toolbox@scilab.in
-*/
-
-#include "RPIPeripheralSerial.h"
-
-uint8 u8RPI_serialDataAvails(uint8 fd){
- uint8 out;
- out=serialDataAvail(fd);
- return(out);
-}
diff --git a/2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialFlushs.c b/2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialFlushs.c
deleted file mode 100644
index 4d150637..00000000
--- a/2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialFlushs.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/* Copyright (C) 2016 - IIT Bombay - FOSSEE
-
- This file must be used under the terms of the CeCILL.
- This source file is licensed as described in the file COPYING, which
- you should have received as part of this distribution. The terms
- are also available at
- http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
- Author: Jorawar Singh, Siddhesh Wani
- Organization: FOSSEE, IIT Bombay
- Email: toolbox@scilab.in
-*/
-
-#include "RPIPeripheralSerial.h"
-
-void u8RPI_serialFlushs(uint8 fd){
- serialFlush(fd);
-}
diff --git a/2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialGetchars.c b/2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialGetchars.c
deleted file mode 100644
index c1dabfd1..00000000
--- a/2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialGetchars.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/* Copyright (C) 2016 - IIT Bombay - FOSSEE
-
- This file must be used under the terms of the CeCILL.
- This source file is licensed as described in the file COPYING, which
- you should have received as part of this distribution. The terms
- are also available at
- http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
- Author: Jorawar Singh, Siddhesh Wani
- Organization: FOSSEE, IIT Bombay
- Email: toolbox@scilab.in
-*/
-
-#include "RPIPeripheralSerial.h"
-
-void u8RPI_serialGetchars(uint8 fd,char* out){
- out=serialGetchar(fd);
-}
diff --git a/2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialPrintfs.c b/2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialPrintfs.c
deleted file mode 100644
index d1672003..00000000
--- a/2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialPrintfs.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/* Copyright (C) 2016 - IIT Bombay - FOSSEE
-
- This file must be used under the terms of the CeCILL.
- This source file is licensed as described in the file COPYING, which
- you should have received as part of this distribution. The terms
- are also available at
- http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
- Author: Jorawar Singh, Siddhesh Wani
- Organization: FOSSEE, IIT Bombay
- Email: toolbox@scilab.in
-*/
-
-#include "RPIPeripheralSerial.h"
-
-void u8RPI_serialPrintfs(uint8 fd,char* msg,int size){
- serialPrintf(fd,msg);
-}
diff --git a/2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialPutchars.c b/2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialPutchars.c
deleted file mode 100644
index 3309317e..00000000
--- a/2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialPutchars.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/* Copyright (C) 2016 - IIT Bombay - FOSSEE
-
- This file must be used under the terms of the CeCILL.
- This source file is licensed as described in the file COPYING, which
- you should have received as part of this distribution. The terms
- are also available at
- http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
- Author: Jorawar Singh, Siddhesh Wani
- Organization: FOSSEE, IIT Bombay
- Email: toolbox@scilab.in
-*/
-
-#include "RPIPeripheralSerial.h"
-
-void u8RPI_serialPutchars(uint8 fd,uint8 character){
- serialPutchar(fd,character);
-}
diff --git a/2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialPutss.c b/2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialPutss.c
deleted file mode 100644
index 581e15ac..00000000
--- a/2.3-1/src/c/hardware/rasberrypi/Serial/u8RPI_serialPutss.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/* Copyright (C) 2016 - IIT Bombay - FOSSEE
-
- This file must be used under the terms of the CeCILL.
- This source file is licensed as described in the file COPYING, which
- you should have received as part of this distribution. The terms
- are also available at
- http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
- Author: Jorawar Singh, Siddhesh Wani
- Organization: FOSSEE, IIT Bombay
- Email: toolbox@scilab.in
-*/
-
-#include "RPIPeripheralSerial.h"
-
-void u8RPI_serialPutss(uint8 fd,char* character,int size){
- serialPuts(fd,character);
-}