diff options
author | yash1112 | 2017-07-07 22:34:47 +0530 |
---|---|---|
committer | yash1112 | 2017-07-07 22:34:47 +0530 |
commit | 2a6c003c67faafd257984f4ae632e40bc6fa9a32 (patch) | |
tree | 5eecfb962980f7c32cd167bd7e124166e4741343 /2.3-1/src/c/hardware/rasberrypi/serial/i16RPISerialSendDatas.c | |
parent | ce61940a1398e66d9d09b81241789576c1ceca01 (diff) | |
parent | 640f9fcf3f64298c7958f4bde5a7e6a7602a690d (diff) | |
download | Scilab2C-2a6c003c67faafd257984f4ae632e40bc6fa9a32.tar.gz Scilab2C-2a6c003c67faafd257984f4ae632e40bc6fa9a32.tar.bz2 Scilab2C-2a6c003c67faafd257984f4ae632e40bc6fa9a32.zip |
1.Sci2cDeps updated 2.Windows compatibility resolved
Diffstat (limited to '2.3-1/src/c/hardware/rasberrypi/serial/i16RPISerialSendDatas.c')
-rw-r--r-- | 2.3-1/src/c/hardware/rasberrypi/serial/i16RPISerialSendDatas.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/2.3-1/src/c/hardware/rasberrypi/serial/i16RPISerialSendDatas.c b/2.3-1/src/c/hardware/rasberrypi/serial/i16RPISerialSendDatas.c new file mode 100644 index 00000000..fe6fe6f4 --- /dev/null +++ b/2.3-1/src/c/hardware/rasberrypi/serial/i16RPISerialSendDatas.c @@ -0,0 +1,24 @@ +/* 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: Siddhesh Wani + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + +/* Function to send signed 16-bit byte on specified serial port. */ + +#include "types.h" +#include "RPIPeripheralSerial.h" + +void i16RPISerialSendDatas(int fd, int16 data) +{ + /*Send lsb first*/ + serialPutchar(fd, (uint8) data); + serialPutchar(fd, (uint8) (data>>8)); + +} |