blob: 330def7a4256a18c34f447a3d4c923d6b7fd79ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
// 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_RPI_Digitallib = lib(pathmacros + "Hardware\RasberryPi\Digital" + filesep());
sci2c_RPI_gertBoardlib = lib(pathmacros + "Hardware\RasberryPi\gertBoard" + filesep());
sci2c_RPI_I2Clib = lib(pathmacros + "Hardware\RasberryPi\I2C" + filesep());
sci2c_RPI_Interruptlib = lib(pathmacros + "Hardware\RasberryPi\Interrupt" + filesep());
sci2c_RPI_lcdlib = lib(pathmacros + "Hardware\RasberryPi\lcd" + filesep());
sci2c_RPI_lcd128x64lib = lib(pathmacros + "Hardware\RasberryPi\lcd128x64" + filesep());
sci2c_RPI_mcplib = lib(pathmacros + "Hardware\RasberryPi\mcp" + filesep());
sci2c_RPI_Misclib = lib(pathmacros + "Hardware\RasberryPi\Misc" + filesep());
sci2c_RPI_pcflib = lib(pathmacros + "Hardware\RasberryPi\pcf" + filesep());
sci2c_RPI_piGlowlib = lib(pathmacros + "Hardware\RasberryPi\piGlow" + filesep());
sci2c_RPI_pinMaplib = lib(pathmacros + "Hardware\RasberryPi\pinMap" + filesep());
sci2c_RPI_pwmlib = lib(pathmacros + "Hardware\RasberryPi\pwm" + filesep());
sci2c_RPI_Seriallib = lib(pathmacros + "Hardware\RasberryPi\Serial" + filesep());
sci2c_RPI_Setuplib = lib(pathmacros + "Hardware\RasberryPi\Setup" + filesep());
sci2c_RPI_Shiftlib = lib(pathmacros + "Hardware\RasberryPi\Shift" + filesep());
sci2c_RPI_Softlib = lib(pathmacros + "Hardware\RasberryPi\Soft" + filesep());
sci2c_RPI_SPIlib = lib(pathmacros + "Hardware\RasberryPi\SPI" + filesep());
sci2c_RPI_Timinglib = lib(pathmacros + "Hardware\RasberryPi\Timing" + 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;
|