diff options
author | yash1112 | 2017-07-07 21:20:49 +0530 |
---|---|---|
committer | yash1112 | 2017-07-07 21:20:49 +0530 |
commit | 9e5793a7b05b23e6044a6d7a9ddd5db39ba375f0 (patch) | |
tree | f50d6e06d8fe6bc1a9053ef10d4b4d857800ab51 /2.3-1/etc | |
download | Scilab2C-9e5793a7b05b23e6044a6d7a9ddd5db39ba375f0.tar.gz Scilab2C-9e5793a7b05b23e6044a6d7a9ddd5db39ba375f0.tar.bz2 Scilab2C-9e5793a7b05b23e6044a6d7a9ddd5db39ba375f0.zip |
sci2c arduino updated
Diffstat (limited to '2.3-1/etc')
-rw-r--r-- | 2.3-1/etc/scilab2c.quit | 0 | ||||
-rw-r--r-- | 2.3-1/etc/scilab2c.start | 62 |
2 files changed, 62 insertions, 0 deletions
diff --git a/2.3-1/etc/scilab2c.quit b/2.3-1/etc/scilab2c.quit new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/2.3-1/etc/scilab2c.quit diff --git a/2.3-1/etc/scilab2c.start b/2.3-1/etc/scilab2c.start new file mode 100644 index 00000000..59cf0865 --- /dev/null +++ b/2.3-1/etc/scilab2c.start @@ -0,0 +1,62 @@ +// This file is released into the public domain + +mprintf("Start Scilab 2 C module\n"); + +etc_tlbx = get_absolute_file_path("scilab2c.start"); +etc_tlbx = getshortpathname(etc_tlbx); +root_tlbx = strncpy( etc_tlbx, length(etc_tlbx)-length('\etc\') ); + +//Load functions library +// ============================================================================= +pathmacros = pathconvert( root_tlbx ) + 'macros'+ filesep(); +mprintf("\tLoad macros\n"); +sci2c_mainlib = lib(pathmacros); +sci2c_ASTManagementlib = lib(pathmacros + "ASTManagement" + filesep()); +sci2c_CCodeGenerationlib = lib(pathmacros + "CCodeGeneration" + filesep()); +sci2c_ErrorMessageslib = lib(pathmacros + "ErrorMessages" + filesep()); +sci2c_FunAnnotationlib = lib(pathmacros + "FunctionAnnotation" + filesep()); +sci2c_FunListlib = lib(pathmacros + "FunctionList" + filesep()); +sci2c_GenFunctionslib = lib(pathmacros + "GeneralFunctions" + filesep()); +sci2c_SymbolTablelib = lib(pathmacros + "SymbolTable" + filesep()); +sci2c_ToolInitlib = lib(pathmacros + "ToolInitialization" + filesep()); +sci2c_finDeps = lib(pathmacros + "findDeps" + filesep()); +sci2c_AVRlib = lib(pathmacros + "Hardware\AVR" + filesep()); +sci2c_RPilib = lib(pathmacros + "Hardware\RasberryPi"+ filesep()); +sci2c_ScilabArduinolib = lib(pathmacros + "Scilab-Arduino" + filesep()); +sci2c_CVCorelib = lib(pathmacros + "ImageProcessing\core" + filesep()); +sci2c_CVHighguilib = lib(pathmacros + "ImageProcessing\highgui" + filesep()); +sci2c_CVImgproclib = lib(pathmacros + "ImageProcessing\imgproc" + filesep()); +clear pathmacros; + +// Load and add help chapter +// ============================================================================= + +if or(getscilabmode() == ["NW";"STD"]) then + mprintf("\tLoad help\n"); + path_addchapter = pathconvert(root_tlbx+"/jar"); + if isdir(path_addchapter) then + add_help_chapter("Scilab 2 C", path_addchapter, %F); + clear add_help_chapter path_addchapter + end +end + +// Add demos +// ============================================================================= + +if or(getscilabmode() == ["NW";"STD"]) then + mprintf("\tLoad demos\n"); + pathdemos = pathconvert(root_tlbx + "/demos/scilab2c.dem.gateway.sce",%f,%t); + + add_demo(gettext("Scilab2C"),pathdemos); + clear pathdemos ; +end + +mprintf("\tVersion: "+getScilab2cVersion()+"\n"); + +global SCI2CHOME +SCI2CHOME = root_tlbx; +clear SCI2CHOME; + +// ============================================================================= +clear root_tlbx; +clear etc_tlbx; |