summaryrefslogtreecommitdiff
path: root/macros/Hardware/RasberryPi/Misc
diff options
context:
space:
mode:
authorBrijeshcr2017-07-20 19:39:55 +0530
committerBrijeshcr2017-07-20 19:39:55 +0530
commit95ba66169e2f30d87694703b6162c58d371fceda (patch)
tree701adbda6608b3a8274e45ca5a5fe82039a50a66 /macros/Hardware/RasberryPi/Misc
parentc70a50ed3df714fc52f18b41539c7f0ac2734f32 (diff)
parent38f1fb926d82f9144a5e9a28595d2d21dcc08f8e (diff)
downloadscilab2c-95ba66169e2f30d87694703b6162c58d371fceda.tar.gz
scilab2c-95ba66169e2f30d87694703b6162c58d371fceda.tar.bz2
scilab2c-95ba66169e2f30d87694703b6162c58d371fceda.zip
Added RPI demo and lcd128x64 fixed
Diffstat (limited to 'macros/Hardware/RasberryPi/Misc')
-rwxr-xr-xmacros/Hardware/RasberryPi/Misc/RPI_boardRev.sci34
-rwxr-xr-xmacros/Hardware/RasberryPi/Misc/RPI_padDrive.sci40
-rwxr-xr-xmacros/Hardware/RasberryPi/Misc/RPI_sn3218Setup.sci40
-rwxr-xr-xmacros/Hardware/RasberryPi/Misc/buildmacros.sce14
-rwxr-xr-xmacros/Hardware/RasberryPi/Misc/names3
5 files changed, 131 insertions, 0 deletions
diff --git a/macros/Hardware/RasberryPi/Misc/RPI_boardRev.sci b/macros/Hardware/RasberryPi/Misc/RPI_boardRev.sci
new file mode 100755
index 00000000..91ddb333
--- /dev/null
+++ b/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/macros/Hardware/RasberryPi/Misc/RPI_padDrive.sci b/macros/Hardware/RasberryPi/Misc/RPI_padDrive.sci
new file mode 100755
index 00000000..f2d0b177
--- /dev/null
+++ b/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/macros/Hardware/RasberryPi/Misc/RPI_sn3218Setup.sci b/macros/Hardware/RasberryPi/Misc/RPI_sn3218Setup.sci
new file mode 100755
index 00000000..0791c506
--- /dev/null
+++ b/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/macros/Hardware/RasberryPi/Misc/buildmacros.sce b/macros/Hardware/RasberryPi/Misc/buildmacros.sce
new file mode 100755
index 00000000..7d533f7b
--- /dev/null
+++ b/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/macros/Hardware/RasberryPi/Misc/names b/macros/Hardware/RasberryPi/Misc/names
new file mode 100755
index 00000000..35a4a425
--- /dev/null
+++ b/macros/Hardware/RasberryPi/Misc/names
@@ -0,0 +1,3 @@
+RPI_boardRev
+RPI_padDrive
+RPI_sn3218Setup