From db464f35f5a10b58d9ed1085e0b462689adee583 Mon Sep 17 00:00:00 2001 From: Siddhesh Wani Date: Mon, 25 May 2015 14:46:31 +0530 Subject: Original Version --- macros/ErrorMessages/EM_NanSize.bin | Bin 0 -> 22776 bytes macros/ErrorMessages/EM_NanSize.sci | 82 ++++++++++++++++++++++++++++++++ macros/ErrorMessages/EM_UnknownStep.bin | Bin 0 -> 18292 bytes macros/ErrorMessages/EM_UnknownStep.sci | 70 +++++++++++++++++++++++++++ macros/ErrorMessages/EM_ZeroSize.bin | Bin 0 -> 3200 bytes macros/ErrorMessages/EM_ZeroSize.sci | 27 +++++++++++ macros/ErrorMessages/buildmacros.sce | 15 ++++++ macros/ErrorMessages/lib | Bin 0 -> 484 bytes macros/ErrorMessages/names | 3 ++ 9 files changed, 197 insertions(+) create mode 100644 macros/ErrorMessages/EM_NanSize.bin create mode 100644 macros/ErrorMessages/EM_NanSize.sci create mode 100644 macros/ErrorMessages/EM_UnknownStep.bin create mode 100644 macros/ErrorMessages/EM_UnknownStep.sci create mode 100644 macros/ErrorMessages/EM_ZeroSize.bin create mode 100644 macros/ErrorMessages/EM_ZeroSize.sci create mode 100644 macros/ErrorMessages/buildmacros.sce create mode 100644 macros/ErrorMessages/lib create mode 100644 macros/ErrorMessages/names (limited to 'macros/ErrorMessages') diff --git a/macros/ErrorMessages/EM_NanSize.bin b/macros/ErrorMessages/EM_NanSize.bin new file mode 100644 index 00000000..d0ad584b Binary files /dev/null and b/macros/ErrorMessages/EM_NanSize.bin differ diff --git a/macros/ErrorMessages/EM_NanSize.sci b/macros/ErrorMessages/EM_NanSize.sci new file mode 100644 index 00000000..60877389 --- /dev/null +++ b/macros/ErrorMessages/EM_NanSize.sci @@ -0,0 +1,82 @@ +function EM_NanSize(ReportFileName) +// function EM_NanSize(ReportFileName) +// ----------------------------------------------------------------- +// +// Input data: +// //NUT: Add description here +// +// Output data: +// //NUT: Add description here +// +// Status: +// 13-Feb-2008 -- Raffaele Nutricato: Author. +// +// Copyright 2008 Raffaele Nutricato. +// Contact: raffaele.nutricato@tiscali.it +// ----------------------------------------------------------------- + +// ------------------------------ +// --- Check input arguments. --- +// ------------------------------ +SCI2CNInArgCheck(argn(2),1,1); + +PrintStringInfo(' ',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: Cannot initialize a local or global variable with a variable value',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: coming from a function or an operation.',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: See code below:',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: a = 10;',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: b = 10;',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: c = a+b;',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: D = zeros(a,b); // Allowed',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: E = zeros(10,b); // Allowed',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: F = zeros(10,5); // Allowed',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: G = zeros(10,c); // Not Allowed because c value is not known at transation time.',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: H = 10:c:9;// Not Allowed because c value is not known at transation time.',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: The same problem arises in for loops.',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: SCI2C forbids use of step values in ""for"" loops which come from ',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: a function or an operation.',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: Always specify its value.',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: Example: ',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: Scilab Code:',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: unkstep = 2*cos(0); // It means that unkstep is not known at translation time.',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: for cnt=10:unkstep:1',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: disp(cnt)',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: end',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: The code above is not allowed. You can change it as shown below:',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: unkstep = 2; // This time the value of unkstep is known at translation time.',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: for cnt=10:unkstep:1',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: disp(cnt)',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: end',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: The reason for this limitation is related to the impossibility to generate optimized C code.',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: when the step is unknown.',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: Look at the following example for more details,',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: Scilab Code:;',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: for cnt=10:unkstep:1',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: disp(cnt)',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: end',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: If unkstep variable value is unkwnown it is not possible to generate',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: optimized C code.',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: Infact, if unkstep is >= 0, the correct C code is:',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: for (cnt=10;cnt<=1;cnt+=unkstep)',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: disp(cnt);',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: If unkstep is < 0 the correct C code is:',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: for (cnt=10; cnt>=1; cnt+=unkstep)',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: disp(cnt);',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: Note how the condition cnt<=1 changes to cnt>=1.',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: In order to take into account of this possibility ',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: SCI2C translator should generate both codes and then ',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: insert them into an if/else block as shown here: ',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: if (unkstep >= 0)',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: {',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: for (cnt=10;cnt<=1;cnt+=unkstep)',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: disp(cnt);',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: }',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: else{',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: {',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: for (cnt=10;cnt<=1;cnt+=unkstep)',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: disp(cnt);',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: }',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: Of course it is not optimized C code.',ReportFileName,'both','y'); +PrintStringInfo(' ',ReportFileName,'both','y'); +SCI2Cerror(9999, 'SCI2CERROR: Cannot initialize a local or global variable with a variable value coming from a function or an operation.'); +endfunction diff --git a/macros/ErrorMessages/EM_UnknownStep.bin b/macros/ErrorMessages/EM_UnknownStep.bin new file mode 100644 index 00000000..57a2b4d7 Binary files /dev/null and b/macros/ErrorMessages/EM_UnknownStep.bin differ diff --git a/macros/ErrorMessages/EM_UnknownStep.sci b/macros/ErrorMessages/EM_UnknownStep.sci new file mode 100644 index 00000000..e9e37c2d --- /dev/null +++ b/macros/ErrorMessages/EM_UnknownStep.sci @@ -0,0 +1,70 @@ +function EM_UnknownStep(ReportFileName) +// function EM_UnknownStep(ReportFileName) +// ----------------------------------------------------------------- +// +// Input data: +// //NUT: Add description here +// +// Output data: +// //NUT: Add description here +// +// Status: +// 13-Feb-2008 -- Raffaele Nutricato: Author. +// +// Copyright 2008 Raffaele Nutricato. +// Contact: raffaele.nutricato@tiscali.it +// ----------------------------------------------------------------- + +// ------------------------------ +// --- Check input arguments. --- +// ------------------------------ +SCI2CNInArgCheck(argn(2),1,1); + +PrintStringInfo(' ',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: SCI2C forbids use of step values in ""for"" loops which come from ',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: a function or an operation.',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: Always specify its value.',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: Example: ',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: Scilab Code:',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: unkstep = 2*cos(0); // It means that unkstep is not known at translation time.',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: for cnt=10:unkstep:1',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: disp(cnt)',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: end',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: The code above is not allowed. You can change it as shown below:',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: unkstep = 2; // This time the value of unkstep is known at translation time.',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: for cnt=10:unkstep:1',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: disp(cnt)',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: end',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: The reason for this limitation is related to the impossibility to generate optimized C code.',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: when the step is unknown.',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: Look at the following example for more details,',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: Scilab Code:;',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: for cnt=10:unkstep:1',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: disp(cnt)',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: end',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: If unkstep variable value is unkwnown it is not possible to generate',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: optimized C code.',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: Infact, if unkstep is >= 0, the correct C code is:',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: for (cnt=10;cnt<=1;cnt+=unkstep)',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: disp(cnt);',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: If unkstep is < 0 the correct C code is:',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: for (cnt=10; cnt>=1; cnt+=unkstep)',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: disp(cnt);',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: Note how the condition cnt<=1 changes to cnt>=1.',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: In order to take into account of this possibility ',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: SCI2C translator should generate both codes and then ',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: insert them into an if/else block as shown here: ',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: if (unkstep >= 0)',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: {',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: for (cnt=10;cnt<=1;cnt+=unkstep)',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: disp(cnt);',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: }',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: else{',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: {',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: for (cnt=10;cnt<=1;cnt+=unkstep)',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: disp(cnt);',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: }',ReportFileName,'both','y'); +PrintStringInfo('SCI2CERROR: Of course it is not optimized C code.',ReportFileName,'both','y'); +PrintStringInfo(' ',ReportFileName,'both','y'); +error(9999, 'SCI2C forbids use of step values in ""for"" loops which come from a function or an operation.'); +endfunction diff --git a/macros/ErrorMessages/EM_ZeroSize.bin b/macros/ErrorMessages/EM_ZeroSize.bin new file mode 100644 index 00000000..f8d2830f Binary files /dev/null and b/macros/ErrorMessages/EM_ZeroSize.bin differ diff --git a/macros/ErrorMessages/EM_ZeroSize.sci b/macros/ErrorMessages/EM_ZeroSize.sci new file mode 100644 index 00000000..7cee5b9f --- /dev/null +++ b/macros/ErrorMessages/EM_ZeroSize.sci @@ -0,0 +1,27 @@ +function EM_ZeroSize(ReportFileName) +// function EM_ZeroSize(ReportFileName) +// ----------------------------------------------------------------- +// +// Input data: +// //NUT: Add description here +// +// Output data: +// //NUT: Add description here +// +// Status: +// 13-Feb-2008 -- Raffaele Nutricato: Author. +// +// Copyright 2008 Raffaele Nutricato. +// Contact: raffaele.nutricato@tiscali.it +// ----------------------------------------------------------------- + +// ------------------------------ +// --- Check input arguments. --- +// ------------------------------ +SCI2CNInArgCheck(argn(2),1,1); + +PrintStringInfo('SCI2CERROR: Cannot handle zero-size arrays.',ReportFileName,'both','y'); +PrintStringInfo(' ',ReportFileName,'both','y'); +error(9999, 'SCI2CERROR: Cannot handle zero-size arrays.'); + +endfunction diff --git a/macros/ErrorMessages/buildmacros.sce b/macros/ErrorMessages/buildmacros.sce new file mode 100644 index 00000000..60fd2843 --- /dev/null +++ b/macros/ErrorMessages/buildmacros.sce @@ -0,0 +1,15 @@ +// +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009-2009 - DIGITEO - Bruno JOFRET +// +// 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 +// +// + +tbx_build_macros(TOOLBOX_NAME, get_absolute_file_path('buildmacros.sce')); + +clear tbx_build_macros; diff --git a/macros/ErrorMessages/lib b/macros/ErrorMessages/lib new file mode 100644 index 00000000..e61aba59 Binary files /dev/null and b/macros/ErrorMessages/lib differ diff --git a/macros/ErrorMessages/names b/macros/ErrorMessages/names new file mode 100644 index 00000000..b327192a --- /dev/null +++ b/macros/ErrorMessages/names @@ -0,0 +1,3 @@ +EM_NanSize +EM_ZeroSize +EM_UnknownStep -- cgit From 56d929da6683ca38ab07870173dba5aadb451403 Mon Sep 17 00:00:00 2001 From: siddhu8990 Date: Tue, 8 Dec 2015 11:43:14 +0530 Subject: Modified so that code for all three output formats can be generated --- macros/ErrorMessages/lib | Bin 484 -> 696 bytes macros/ErrorMessages/names | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) (limited to 'macros/ErrorMessages') diff --git a/macros/ErrorMessages/lib b/macros/ErrorMessages/lib index e61aba59..2b3ee2f3 100644 Binary files a/macros/ErrorMessages/lib and b/macros/ErrorMessages/lib differ diff --git a/macros/ErrorMessages/names b/macros/ErrorMessages/names index b327192a..f55e8f8b 100644 --- a/macros/ErrorMessages/names +++ b/macros/ErrorMessages/names @@ -1,3 +1,3 @@ EM_NanSize -EM_ZeroSize EM_UnknownStep +EM_ZeroSize -- cgit From 9e506f48291533cba7b4c555b0d2e98f234bfbe3 Mon Sep 17 00:00:00 2001 From: siddhu8990 Date: Wed, 19 Apr 2017 14:28:34 +0530 Subject: Merged Ashish's work --- macros/ErrorMessages/lib | Bin 696 -> 560 bytes 1 file changed, 0 insertions(+), 0 deletions(-) (limited to 'macros/ErrorMessages') diff --git a/macros/ErrorMessages/lib b/macros/ErrorMessages/lib index 2b3ee2f3..e989c7f7 100644 Binary files a/macros/ErrorMessages/lib and b/macros/ErrorMessages/lib differ -- cgit From 1fd0dce8d72c4d5869ce5ff4025ac09af603bc0f Mon Sep 17 00:00:00 2001 From: siddhu8990 Date: Wed, 19 Apr 2017 14:57:49 +0530 Subject: Merged Shamik's work --- macros/ErrorMessages/lib | Bin 560 -> 616 bytes 1 file changed, 0 insertions(+), 0 deletions(-) (limited to 'macros/ErrorMessages') diff --git a/macros/ErrorMessages/lib b/macros/ErrorMessages/lib index e989c7f7..77d8512d 100644 Binary files a/macros/ErrorMessages/lib and b/macros/ErrorMessages/lib differ -- cgit From c7e9597db39140c1d982f796a8e1f03bb54e7905 Mon Sep 17 00:00:00 2001 From: siddhu8990 Date: Mon, 24 Apr 2017 14:08:37 +0530 Subject: Fixed float.h issue. OpenCV with built libraries working for linux x64 --- macros/ErrorMessages/EM_NanSize.bin | Bin 22776 -> 0 bytes macros/ErrorMessages/EM_UnknownStep.bin | Bin 18292 -> 0 bytes macros/ErrorMessages/EM_ZeroSize.bin | Bin 3200 -> 0 bytes macros/ErrorMessages/lib | Bin 616 -> 0 bytes macros/ErrorMessages/names | 3 --- 5 files changed, 3 deletions(-) delete mode 100644 macros/ErrorMessages/EM_NanSize.bin delete mode 100644 macros/ErrorMessages/EM_UnknownStep.bin delete mode 100644 macros/ErrorMessages/EM_ZeroSize.bin delete mode 100644 macros/ErrorMessages/lib delete mode 100644 macros/ErrorMessages/names (limited to 'macros/ErrorMessages') diff --git a/macros/ErrorMessages/EM_NanSize.bin b/macros/ErrorMessages/EM_NanSize.bin deleted file mode 100644 index d0ad584b..00000000 Binary files a/macros/ErrorMessages/EM_NanSize.bin and /dev/null differ diff --git a/macros/ErrorMessages/EM_UnknownStep.bin b/macros/ErrorMessages/EM_UnknownStep.bin deleted file mode 100644 index 57a2b4d7..00000000 Binary files a/macros/ErrorMessages/EM_UnknownStep.bin and /dev/null differ diff --git a/macros/ErrorMessages/EM_ZeroSize.bin b/macros/ErrorMessages/EM_ZeroSize.bin deleted file mode 100644 index f8d2830f..00000000 Binary files a/macros/ErrorMessages/EM_ZeroSize.bin and /dev/null differ diff --git a/macros/ErrorMessages/lib b/macros/ErrorMessages/lib deleted file mode 100644 index 77d8512d..00000000 Binary files a/macros/ErrorMessages/lib and /dev/null differ diff --git a/macros/ErrorMessages/names b/macros/ErrorMessages/names deleted file mode 100644 index f55e8f8b..00000000 --- a/macros/ErrorMessages/names +++ /dev/null @@ -1,3 +0,0 @@ -EM_NanSize -EM_UnknownStep -EM_ZeroSize -- cgit From e36eac94dd517bb69d3e5782516ee58942451991 Mon Sep 17 00:00:00 2001 From: Siddhesh Wani Date: Thu, 4 May 2017 16:15:18 +0530 Subject: Basic functions and image processing working with MSVC on windows x64 --- macros/ErrorMessages/lib | Bin 0 -> 532 bytes macros/ErrorMessages/names | 3 +++ 2 files changed, 3 insertions(+) create mode 100644 macros/ErrorMessages/lib create mode 100644 macros/ErrorMessages/names (limited to 'macros/ErrorMessages') diff --git a/macros/ErrorMessages/lib b/macros/ErrorMessages/lib new file mode 100644 index 00000000..5b1667c2 Binary files /dev/null and b/macros/ErrorMessages/lib differ diff --git a/macros/ErrorMessages/names b/macros/ErrorMessages/names new file mode 100644 index 00000000..f55e8f8b --- /dev/null +++ b/macros/ErrorMessages/names @@ -0,0 +1,3 @@ +EM_NanSize +EM_UnknownStep +EM_ZeroSize -- cgit From f0e074cc43f04f58aafe00742b9748a09f77894f Mon Sep 17 00:00:00 2001 From: siddhu8990 Date: Thu, 4 May 2017 20:07:20 +0530 Subject: Toolbox working with scilab 6.0 --- macros/ErrorMessages/lib | Bin 0 -> 696 bytes macros/ErrorMessages/names | 3 +++ 2 files changed, 3 insertions(+) create mode 100644 macros/ErrorMessages/lib create mode 100644 macros/ErrorMessages/names (limited to 'macros/ErrorMessages') diff --git a/macros/ErrorMessages/lib b/macros/ErrorMessages/lib new file mode 100644 index 00000000..2b3ee2f3 Binary files /dev/null and b/macros/ErrorMessages/lib differ diff --git a/macros/ErrorMessages/names b/macros/ErrorMessages/names new file mode 100644 index 00000000..f55e8f8b --- /dev/null +++ b/macros/ErrorMessages/names @@ -0,0 +1,3 @@ +EM_NanSize +EM_UnknownStep +EM_ZeroSize -- cgit From 369c257b9ae0320621b43ca75b38ff66cc13f37b Mon Sep 17 00:00:00 2001 From: yash1112 Date: Mon, 19 Jun 2017 05:40:46 +0530 Subject: 1.3 new scilab-arduino functions added2. all functions have been tested on hardware 3. 5 i2c library functions added 4. Now generates code for 27 Boards(arduino and lilypad). 5. New GUI --- macros/ErrorMessages/EM_NanSize.bin | Bin 0 -> 22776 bytes macros/ErrorMessages/EM_UnknownStep.bin | Bin 0 -> 18292 bytes macros/ErrorMessages/EM_ZeroSize.bin | Bin 0 -> 3200 bytes macros/ErrorMessages/lib | Bin 379 -> 556 bytes 4 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 macros/ErrorMessages/EM_NanSize.bin create mode 100644 macros/ErrorMessages/EM_UnknownStep.bin create mode 100644 macros/ErrorMessages/EM_ZeroSize.bin (limited to 'macros/ErrorMessages') diff --git a/macros/ErrorMessages/EM_NanSize.bin b/macros/ErrorMessages/EM_NanSize.bin new file mode 100644 index 00000000..d0ad584b Binary files /dev/null and b/macros/ErrorMessages/EM_NanSize.bin differ diff --git a/macros/ErrorMessages/EM_UnknownStep.bin b/macros/ErrorMessages/EM_UnknownStep.bin new file mode 100644 index 00000000..57a2b4d7 Binary files /dev/null and b/macros/ErrorMessages/EM_UnknownStep.bin differ diff --git a/macros/ErrorMessages/EM_ZeroSize.bin b/macros/ErrorMessages/EM_ZeroSize.bin new file mode 100644 index 00000000..f8d2830f Binary files /dev/null and b/macros/ErrorMessages/EM_ZeroSize.bin differ diff --git a/macros/ErrorMessages/lib b/macros/ErrorMessages/lib index 0a9f8913..5370e124 100644 Binary files a/macros/ErrorMessages/lib and b/macros/ErrorMessages/lib differ -- cgit From 8e235230a4c16a042d2620fa7b58a9b0f4ba1914 Mon Sep 17 00:00:00 2001 From: ukashanoor Date: Mon, 19 Jun 2017 10:42:03 +0530 Subject: after if and for --- macros/ErrorMessages/EM_NanSize.bin | Bin 0 -> 22776 bytes macros/ErrorMessages/EM_UnknownStep.bin | Bin 0 -> 18292 bytes macros/ErrorMessages/EM_ZeroSize.bin | Bin 0 -> 3200 bytes macros/ErrorMessages/lib | Bin 379 -> 424 bytes 4 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 macros/ErrorMessages/EM_NanSize.bin create mode 100644 macros/ErrorMessages/EM_UnknownStep.bin create mode 100644 macros/ErrorMessages/EM_ZeroSize.bin (limited to 'macros/ErrorMessages') diff --git a/macros/ErrorMessages/EM_NanSize.bin b/macros/ErrorMessages/EM_NanSize.bin new file mode 100644 index 00000000..d0ad584b Binary files /dev/null and b/macros/ErrorMessages/EM_NanSize.bin differ diff --git a/macros/ErrorMessages/EM_UnknownStep.bin b/macros/ErrorMessages/EM_UnknownStep.bin new file mode 100644 index 00000000..57a2b4d7 Binary files /dev/null and b/macros/ErrorMessages/EM_UnknownStep.bin differ diff --git a/macros/ErrorMessages/EM_ZeroSize.bin b/macros/ErrorMessages/EM_ZeroSize.bin new file mode 100644 index 00000000..f8d2830f Binary files /dev/null and b/macros/ErrorMessages/EM_ZeroSize.bin differ diff --git a/macros/ErrorMessages/lib b/macros/ErrorMessages/lib index 0a9f8913..dc2a3386 100644 Binary files a/macros/ErrorMessages/lib and b/macros/ErrorMessages/lib differ -- cgit From 785e19f097f7ca1964edaf159c9adfe2eda733b5 Mon Sep 17 00:00:00 2001 From: ukashanoor Date: Wed, 21 Jun 2017 11:54:14 +0530 Subject: inter commit --- macros/ErrorMessages/EM_NanSize.bin | Bin 22776 -> 0 bytes macros/ErrorMessages/EM_UnknownStep.bin | Bin 18292 -> 0 bytes macros/ErrorMessages/EM_ZeroSize.bin | Bin 3200 -> 0 bytes 3 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 macros/ErrorMessages/EM_NanSize.bin delete mode 100644 macros/ErrorMessages/EM_UnknownStep.bin delete mode 100644 macros/ErrorMessages/EM_ZeroSize.bin (limited to 'macros/ErrorMessages') diff --git a/macros/ErrorMessages/EM_NanSize.bin b/macros/ErrorMessages/EM_NanSize.bin deleted file mode 100644 index d0ad584b..00000000 Binary files a/macros/ErrorMessages/EM_NanSize.bin and /dev/null differ diff --git a/macros/ErrorMessages/EM_UnknownStep.bin b/macros/ErrorMessages/EM_UnknownStep.bin deleted file mode 100644 index 57a2b4d7..00000000 Binary files a/macros/ErrorMessages/EM_UnknownStep.bin and /dev/null differ diff --git a/macros/ErrorMessages/EM_ZeroSize.bin b/macros/ErrorMessages/EM_ZeroSize.bin deleted file mode 100644 index f8d2830f..00000000 Binary files a/macros/ErrorMessages/EM_ZeroSize.bin and /dev/null differ -- cgit From aef4e8398f2b1848b0e4cdd9580dbbe93e4006f9 Mon Sep 17 00:00:00 2001 From: Jorawar Singh Date: Fri, 30 Jun 2017 11:28:58 +0530 Subject: Help files, modified Raspberry Pi code conversion --- macros/ErrorMessages/lib | Bin 379 -> 436 bytes 1 file changed, 0 insertions(+), 0 deletions(-) (limited to 'macros/ErrorMessages') diff --git a/macros/ErrorMessages/lib b/macros/ErrorMessages/lib index 0a9f8913..3630f722 100644 Binary files a/macros/ErrorMessages/lib and b/macros/ErrorMessages/lib differ -- cgit From a3dfa2a4069740517ca6e83f99dd4e0dbb71c377 Mon Sep 17 00:00:00 2001 From: siddhu8990 Date: Sat, 1 Jul 2017 06:52:51 +0530 Subject: Merged Jorawer's work, Help files, RPi-scilab2c --- macros/ErrorMessages/lib | Bin 379 -> 696 bytes 1 file changed, 0 insertions(+), 0 deletions(-) (limited to 'macros/ErrorMessages') diff --git a/macros/ErrorMessages/lib b/macros/ErrorMessages/lib index 0a9f8913..2b3ee2f3 100644 Binary files a/macros/ErrorMessages/lib and b/macros/ErrorMessages/lib differ -- cgit From 121b455e1e46617c670a8b9dfa77bbb1aa97a51a Mon Sep 17 00:00:00 2001 From: Jorawar Singh Date: Tue, 4 Jul 2017 15:14:46 +0530 Subject: Fixed standalone conversion errors with RPi files --- macros/ErrorMessages/lib | Bin 696 -> 456 bytes 1 file changed, 0 insertions(+), 0 deletions(-) (limited to 'macros/ErrorMessages') diff --git a/macros/ErrorMessages/lib b/macros/ErrorMessages/lib index 2b3ee2f3..2994abce 100644 Binary files a/macros/ErrorMessages/lib and b/macros/ErrorMessages/lib differ -- cgit From de14a5628ad439e20770d10733ebdac46562a860 Mon Sep 17 00:00:00 2001 From: Jorawar Singh Date: Fri, 7 Jul 2017 13:00:37 +0530 Subject: Raspberry Pi function changes and minor gui changes --- macros/ErrorMessages/lib | Bin 456 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 macros/ErrorMessages/lib (limited to 'macros/ErrorMessages') diff --git a/macros/ErrorMessages/lib b/macros/ErrorMessages/lib deleted file mode 100644 index 2994abce..00000000 Binary files a/macros/ErrorMessages/lib and /dev/null differ -- cgit From d13b41b79200c533efad1f5dcc8803ca510ae1be Mon Sep 17 00:00:00 2001 From: Abhinav Dronamraju Date: Mon, 10 Jul 2017 22:11:27 +0530 Subject: Readay to push the final changes --- macros/ErrorMessages/lib | Bin 0 -> 468 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 macros/ErrorMessages/lib (limited to 'macros/ErrorMessages') diff --git a/macros/ErrorMessages/lib b/macros/ErrorMessages/lib new file mode 100644 index 00000000..1500b1fa Binary files /dev/null and b/macros/ErrorMessages/lib differ -- cgit From 550bca9f6e005872e654bc96b0b477cf502d814f Mon Sep 17 00:00:00 2001 From: Jorawar Singh Date: Sun, 16 Jul 2017 22:17:43 +0530 Subject: Toolbox merge, RPI demos and structured demos --- macros/ErrorMessages/lib | Bin 468 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 macros/ErrorMessages/lib (limited to 'macros/ErrorMessages') diff --git a/macros/ErrorMessages/lib b/macros/ErrorMessages/lib deleted file mode 100644 index 1500b1fa..00000000 Binary files a/macros/ErrorMessages/lib and /dev/null differ -- cgit From 29388094e30cae9f11ba82360c1d9bc03b229d10 Mon Sep 17 00:00:00 2001 From: Brijeshcr Date: Thu, 20 Jul 2017 21:03:09 +0530 Subject: Added Erfcx --- macros/ErrorMessages/lib | Bin 0 -> 520 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 macros/ErrorMessages/lib (limited to 'macros/ErrorMessages') diff --git a/macros/ErrorMessages/lib b/macros/ErrorMessages/lib new file mode 100644 index 00000000..ba3b9a5a Binary files /dev/null and b/macros/ErrorMessages/lib differ -- cgit From b58911a949248b09a0597309feb35fbcc25556fd Mon Sep 17 00:00:00 2001 From: Abhinav Dronamraju Date: Thu, 20 Jul 2017 22:17:24 +0530 Subject: Solved error of nnz --- macros/ErrorMessages/lib | Bin 520 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 macros/ErrorMessages/lib (limited to 'macros/ErrorMessages') diff --git a/macros/ErrorMessages/lib b/macros/ErrorMessages/lib deleted file mode 100644 index ba3b9a5a..00000000 Binary files a/macros/ErrorMessages/lib and /dev/null differ -- cgit