File: /home/oboss/Users/gec/sources/Demonstrator/Data_Handling_System/data_handling_system-storage_selection_definitions.ads
1 --% Compilation Unit: Power_Conditioning_System_Storage_Selection_Defs
2 --
3 --% Category: Package Declaration
4 --
5 --% Release: $Name: $
6 --
7 --% Version: $Revision: 2.1 $
8 --
9 --% Author: $Author: gec $
10 --
11 --% Revision Log:
12 -- $Log: data_handling_system-storage_selection_definitions.ads,v $
13 -- Revision 2.1 2004/02/13 16:16:32 gec
14 -- Merged results of Demonstrator development on to main OBOSS trunk.
15 --
16 -- Revision 1.1.2.1 2003/12/12 12:10:48 gec
17 -- Updated Data Handling System application process according to 'OBOSS-III Demonstrator Test Case Specification'.
18 --
19 -- Revision 2.0 2003/04/04 08:50:52 gec
20 -- Initial release of source files serving as baseline for OBOSS-III
21 --+ project.
22 --
23 -- Revision 1.1.1.1 2003/04/04 08:13:09 gec
24 -- Imported using TkCVS
25 --
26 --
27 --
28 --% Project: OBOSS
29 --
30 --% Copyright (C) 2003 by Terma A/S
31 -- Proprietary and intellectual rights of Terma A/S, Denmark,
32 -- are involved in the subject-matter of this material and
33 -- all manufacturing, reproduction, use, disclosure, and
34 -- sales rights pertaining to such subject-matter are
35 -- expressly reserved. This material is submitted for a
36 -- specific purpose as agreed, and the recipient by
37 -- accepting this material agrees that this material will
38 -- not be used, copied, or reproduced in whole or in part
39 -- nor its contents revealed in any manner or to any person,
40 -- except to meet the purpose for which it was submitted and
41 -- subject to the terms of the agreement.
42 --
43 --% Target Dependencies:
44 -- None
45 --% Compiler Dependencies:
46 -- None
47
48 --% Library Package:
49 -- Implementation of the Power Conditioning System storage selection
50 --+ definition service
51
52 with Data_Handling_System.Parameters;
53 with Data_Handling_System.Router;
54 with Storage_Selection_Defs;
55 package Data_Handling_System.Storage_Selection_Definitions is
56 new Storage_Selection_Defs
57 (Application_ID =>
58 Data_Handling_System.Parameters.Application_ID,
59 Max_Store_IDs =>
60 Data_Handling_System.Parameters.Storage_Selection.Max_Store_IDs,
61 Optional_Deposit =>
62 Data_Handling_System.Router.Optional_Deposit,
63 Telecommand_Buffer_Size =>
64 Data_Handling_System.Parameters.TC_Interpreters.
65 Telecommand_Buffer_Size,
66 Telecommand_Buffer_Priority =>
67 Data_Handling_System.Parameters.TC_Interpreters.
68 Telecommand_Buffer_Priority,
69 Telecommand_Interpreter_Priority =>
70 Data_Handling_System.Parameters.TC_Interpreters.
71 Telecommand_Interpreter_Priority,
72 Telecommand_Interpreter_Stack_Size =>
73 Data_Handling_System.Parameters.Storage_Selection.
74 Interpreter_Stack_Size);
75