summaryrefslogtreecommitdiff
path: root/2.3-1/macros/Hardware/RasberryPi/Misc
diff options
context:
space:
mode:
authorBrijeshcr2017-07-20 19:39:55 +0530
committerBrijeshcr2017-07-20 19:39:55 +0530
commit215a24b64f6d0ec3fcef06c2634926f730b3dcc5 (patch)
tree48072b76fe009ec8423ba9e179fef964db666a3a /2.3-1/macros/Hardware/RasberryPi/Misc
parent9a2e3e3174a9ff35ba9b739cec4a0b8c052a8dbe (diff)
parentdbf6486fa17d277729e0d6f77c2a6b93cbdd9424 (diff)
downloadScilab2C-215a24b64f6d0ec3fcef06c2634926f730b3dcc5.tar.gz
Scilab2C-215a24b64f6d0ec3fcef06c2634926f730b3dcc5.tar.bz2
Scilab2C-215a24b64f6d0ec3fcef06c2634926f730b3dcc5.zip
Added RPI demo and lcd128x64 fixed
Diffstat (limited to '2.3-1/macros/Hardware/RasberryPi/Misc')
-rwxr-xr-x2.3-1/macros/Hardware/RasberryPi/Misc/RPI_boardRev.sci34
-rwxr-xr-x2.3-1/macros/Hardware/RasberryPi/Misc/RPI_padDrive.sci40
-rwxr-xr-x2.3-1/macros/Hardware/RasberryPi/Misc/RPI_sn3218Setup.sci40
-rwxr-xr-x2.3-1/macros/Hardware/RasberryPi/Misc/buildmacros.sce14
-rwxr-xr-x2.3-1/macros/Hardware/RasberryPi/Misc/names3
5 files changed, 131 insertions, 0 deletions
diff --git a/2.3-1/macros/Hardware/RasberryPi/Misc/RPI_boardRev.sci b/2.3-1/macros/Hardware/RasberryPi/Misc/RPI_boardRev.sci
new file mode 100755
index 00000000..91ddb333
--- /dev/null
+++ b/2.3-1/macros/Hardware/RasberryPi/Misc/RPI_boardRev.sci
@@ -0,0 +1,34 @@
+// Copyright (C) 2017 - 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
+// Organization: FOSSEE, IIT Bombay
+// Email: toolbox@scilab.in
+
+function out=RPI_boardRev()
+// Function to print the board revision.
+//
+// Calling Sequence
+// rev=RPI_boardRev()
+//
+// Description
+// This function returns the board revision of the Raspberry Pi. Returns either 1 or 2.
+//
+// Examples
+// rev=RPI_boardRev()
+// Authors
+// Jorawar Singh
+//
+// Bibliography
+// http://wiringpi.com/reference/
+
+ commande="bRv#0#";
+ if getos()=="Linux" then
+ out=unix_g("python -c ""import socket;s=socket.socket();s.connect((''"+RPI_piAdress+"'',9077));s.send(''"+commande+"'');print(s.recv(1024));s.close()""");
+ elseif getos()=="Windows" then
+ [out,RPI_winR]=dos("python -c ""import socket;s=socket.socket();s.connect((''"+RPI_piAdress+"'',9077));s.send(''"+commande+"'');print(s.recv(1024));s.close()""");
+ end
+endfunction
diff --git a/2.3-1/macros/Hardware/RasberryPi/Misc/RPI_padDrive.sci b/2.3-1/macros/Hardware/RasberryPi/Misc/RPI_padDrive.sci
new file mode 100755
index 00000000..f2d0b177
--- /dev/null
+++ b/2.3-1/macros/Hardware/RasberryPi/Misc/RPI_padDrive.sci
@@ -0,0 +1,40 @@
+// Copyright (C) 2017 - 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
+// Organization: FOSSEE, IIT Bombay
+// Email: toolbox@scilab.in
+
+function RPI_padDrive(Group,value)
+// Function to set the 'strength' of the pad drivers for a particular group of pins
+//
+// Calling Sequence
+// RPI_padDrive(Group,value)
+//
+// Parameters
+// Group: the group to act on, a number from 0 to 2
+// Value: the strength, from 0 to 7, to set for the group
+//
+// Description
+// This sets the “strength” of the pad drivers for a particular group of pins. There are 3 groups of pins and the drive strength is from 0 to 7. Do not use this unless you know what you are doing
+//
+// Examples
+// RPI_padDrive(0,5)
+// See also
+//
+// Authors
+// Jorawar Singh
+//
+// Bibliography
+// http://wiringpi.com/reference/
+
+ commande="pDr#2#"+string(Group)+"#"+string(value)+"#";
+ if getos=="Linux" then
+ unix_w("python -c ""import socket;s=socket.socket();s.connect((''"+RPI_piAdress+"'',9077));s.send(''"+commande+"'');print(s.recv(1024));s.close()""");
+ elseif getos=="Windows" then
+ RPI_winR=dos("python -c ""import socket;s=socket.socket();s.connect((''"+RPI_piAdress+"'',9077));s.send(''"+commande+"'');print(s.recv(1024));s.close()""");
+ end
+endfunction
diff --git a/2.3-1/macros/Hardware/RasberryPi/Misc/RPI_sn3218Setup.sci b/2.3-1/macros/Hardware/RasberryPi/Misc/RPI_sn3218Setup.sci
new file mode 100755
index 00000000..0791c506
--- /dev/null
+++ b/2.3-1/macros/Hardware/RasberryPi/Misc/RPI_sn3218Setup.sci
@@ -0,0 +1,40 @@
+// Copyright (C) 2017 - 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
+// Organization: FOSSEE, IIT Bombay
+// Email: toolbox@scilab.in
+
+function RPI_sn3218Setup(pinBase)
+// Function for setting up SN3218 I2C based LED controller.
+//
+// Calling Sequence
+// RPI_sn3218Setup(pinBase)
+//
+// Parameters
+// pinBase: any number above 64. The consecutive 18 pins will be allocated alongwith.
+//
+// Description
+// This function sets up the extension module for the SN3218 I2C based LED controller.There is no I2C device address passed into the setup function – the SN3218 has a fixed I2C address of 0x54, so there’s no need to refer to it other than internally inside the driver. This also means that only one device can be connected to a Raspberry Pi.
+//
+// Examples
+// RPI_sn3218Setup(67)
+// See also
+// RPI_sr595Setup, RPI_pcf8574Setup, RPI_pcf8591Setup, RPI_mcp23008Setup, RPI_mcp23016Setup, RPI_mcp23017Setup, RPI_mcp23s08Setup, RPI_mcp23s17Setup
+//
+// Authors
+// Jorawar Singh
+//
+// Bibliography
+// http://wiringpi.com/reference/
+
+ commande="sn3#1#"+string(pinBase)+"#";
+ if getos=="Linux" then
+ unix_w("python -c ""import socket;s=socket.socket();s.connect((''"+RPI_piAdress+"'',9077));s.send(''"+commande+"'');print(s.recv(1024));s.close()""");
+ elseif getos=="Windows" then
+ RPI_winR=dos("python -c ""import socket;s=socket.socket();s.connect((''"+RPI_piAdress+"'',9077));s.send(''"+commande+"'');print(s.recv(1024));s.close()""");
+ end
+endfunction
diff --git a/2.3-1/macros/Hardware/RasberryPi/Misc/buildmacros.sce b/2.3-1/macros/Hardware/RasberryPi/Misc/buildmacros.sce
new file mode 100755
index 00000000..7d533f7b
--- /dev/null
+++ b/2.3-1/macros/Hardware/RasberryPi/Misc/buildmacros.sce
@@ -0,0 +1,14 @@
+// Copyright (C) 2017 - 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
+// Organization: FOSSEE, IIT Bombay
+// Email: toolbox@scilab.in
+
+tbx_build_macros(TOOLBOX_NAME, get_absolute_file_path('buildmacros.sce'));
+
+clear tbx_build_macros;
diff --git a/2.3-1/macros/Hardware/RasberryPi/Misc/names b/2.3-1/macros/Hardware/RasberryPi/Misc/names
new file mode 100755
index 00000000..35a4a425
--- /dev/null
+++ b/2.3-1/macros/Hardware/RasberryPi/Misc/names
@@ -0,0 +1,3 @@
+RPI_boardRev
+RPI_padDrive
+RPI_sn3218Setup