diff options
author | siddhu8990 | 2017-04-19 14:28:34 +0530 |
---|---|---|
committer | siddhu8990 | 2017-04-19 14:28:34 +0530 |
commit | 9e506f48291533cba7b4c555b0d2e98f234bfbe3 (patch) | |
tree | 6ffe38eefea51cdb767493850b2ada0c098fe416 /macros/scilab2c.sci | |
parent | 453598b49cb3d4a62b1797dbc90f0e3dd4521329 (diff) | |
download | scilab2c-9e506f48291533cba7b4c555b0d2e98f234bfbe3.tar.gz scilab2c-9e506f48291533cba7b4c555b0d2e98f234bfbe3.tar.bz2 scilab2c-9e506f48291533cba7b4c555b0d2e98f234bfbe3.zip |
Merged Ashish's work
Diffstat (limited to 'macros/scilab2c.sci')
-rw-r--r-- | macros/scilab2c.sci | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/scilab2c.sci b/macros/scilab2c.sci index 4fccb075..41494eac 100644 --- a/macros/scilab2c.sci +++ b/macros/scilab2c.sci @@ -143,7 +143,7 @@ error(msprintf(gettext("%s: Wrong number of input argument(s): %d expected.\n"), // --- LAUNCH USER SCI CODE TO TEST IT BEFORE TRANSLATING IT!!! --- // If Target choosen is 'Standalone' then only execute the code, otherwise directly start conversion. - if ((Target == "StandAlone"))// | (Target == "RPi")) + if (Target == "StandAlone" |Target == "AVR") runscicode(UserScilabMainFile, UserSciFilesPaths); // --- ASK USER FOR CONTINUATION. --- |