diff options
Diffstat (limited to '2.3-1/src/c/hardware/rasberrypi/Serial')
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); -} |