File: /home/oboss/Users/gec/sources/Demonstrator/Payload/payload-storage_selection_defs.ads

1     --% Compilation Unit: Payload.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: payload-storage_selection_defs.ads,v $
13     --    Revision 2.1  2004/02/13 16:16:48  gec
14     --    Merged results of Demonstrator development on to main OBOSS trunk.
15     --
16     --    Revision 1.1.2.1  2004/01/26 10:14:02  gec
17     --    Partial update of payload application process according to Demonstrator specification. Applicable for integration testing.
18     --
19     --
20     --% Project: OBOSS
21     --
22     --% Copyright (C) 2004 by Terma A/S
23     --  Proprietary and intellectual rights of Terma A/S, Denmark,
24     --  are involved in the subject-matter of this material and
25     --  all manufacturing, reproduction, use, disclosure, and
26     --  sales rights pertaining to such subject-matter are
27     --  expressly reserved. This material is submitted for a
28     --  specific purpose as agreed, and the recipient by
29     --  accepting this material agrees that this material will
30     --  not be used, copied, or reproduced in whole or in part
31     --  nor its contents revealed in any manner or to any person,
32     --  except to meet the purpose for which it was submitted and
33     --  subject to the terms of the agreement.
34     --
35     --% Target Dependencies:
36     --    None
37     --% Compiler Dependencies:
38     --    None
39     
40     --% Library Package:
41     --    Implementation of the Payload application process storage selection
42     --+    definition service
43     
44     with Payload.Parameters;
45     with Payload.Router;
46     with Storage_Selection_Defs;
47     pragma Elaborate (Storage_Selection_Defs);
48     package Payload.Storage_Selection_Defs is new Standard.Storage_Selection_Defs
49              (Application_ID =>
50                  Payload.Parameters.Application_ID,
51               Max_Store_IDs =>
52                  Payload.Parameters.Storage_Selection.Max_Store_IDs,
53               Optional_Deposit =>
54                  Payload.Router.Optional_Deposit,
55               Telecommand_Buffer_Size =>
56                  Payload.Parameters.TC_Interpreters.Telecommand_Buffer_Size,
57               Telecommand_Buffer_Priority =>
58                  Payload.Parameters.TC_Interpreters.Telecommand_Buffer_Priority,
59               Telecommand_Interpreter_Priority =>
60                  Payload.Parameters.TC_Interpreters.
61                     Telecommand_Interpreter_Priority,
62               Telecommand_Interpreter_Stack_Size =>
63                  Payload.Parameters.Storage_Selection.Interpreter_Stack_Size);
64