blob: 32e1648b49e7689bd16b092be2f2c2513636cd37 (
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
|
function GenerateLibTrees(FileInfoDatFile);
// function GenerateLibTrees(FileInfoDatFile);
// -----------------------------------------------------------------
// This function generates the SCI2C and USER2C library trees.
// Library trees contain detailed information of the DSP functions
// (SCI2C) and the user defined functions (USER2C).
// Notice that this function performs just an intialization of
// USER2C library tree. The insertion of the information of the
// user defined functions will be performed later.
//
// Input data:
// FileInfoDatFile: name of the .dat file containing the FileInfo structure.
// SharedInfoDatFile: it is a buffer containing parameters that are exchanged by the
// functions of the SCI2C tool.
//
// Output data:
//
// Status:
// 11-Apr-2007 -- Nutricato Raffaele: Author.
// -----------------------------------------------------------------
// ---------------------
// --- Load section. ---
// ---------------------
// --- Load File Info Structure. ---
load(FileInfoDatFile,'FileInfo');
// -------------------------
// --- End load section. ---
// -------------------------
[SCI2CLibTree, USER2CLibTree] = InitializeLibraryTrees(FileInfoDatFile);
load(FileInfoDatFile,'FileInfo');
PrintStringInfo('Saving the SCI2C Library Tree in file '+FileInfo.SCI2CLibTreeFileName,...
FileInfo.GeneralReport,'both','y');
save(FileInfo.SCI2CLibTreeFileName,SCI2CLibTree);
PrintStringInfo('Saving the USER2C Library Tree in file '+FileInfo.USER2CLibTreeFileName,...
FileInfo.GeneralReport,'both','y');
save(FileInfo.USER2CLibTreeFileName,USER2CLibTree);
endfunction
|