File: /home/oboss/Users/gec/sources/CDH_Structure/Packet_Router/packet_router_parameters.ads
1 --% Compilation Unit: Packet_Router_Parameters
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: packet_router_parameters.ads,v $
13 -- Revision 2.1 2003/10/21 13:07:33 gec
14 -- Eliminated comments referring to Alsys compiler.
15 --
16 -- Revision 2.0 2003/04/04 08:50:23 gec
17 -- Initial release of source files serving as baseline for OBOSS-III project.
18 --
19 -- Revision 1.1.1.1 2003/04/04 08:13:10 gec
20 -- Imported using TkCVS
21 --
22 --
23 --
24 --% Project: OBOSS
25 --
26 --% Copyright (C) 2003 by Terma A/S
27 -- Proprietary and intellectual rights of Terma A/S, Denmark,
28 -- are involved in the subject-matter of this material and
29 -- all manufacturing, reproduction, use, disclosure, and
30 -- sales rights pertaining to such subject-matter are
31 -- expressly reserved. This material is submitted for a
32 -- specific purpose as agreed, and the recipient by
33 -- accepting this material agrees that this material will
34 -- not be used, copied, or reproduced in whole or in part
35 -- nor its contents revealed in any manner or to any person,
36 -- except to meet the purpose for which it was submitted and
37 -- subject to the terms of the agreement.
38 --
39 --% Target Dependencies:
40 -- None
41 --% Compiler Dependencies:
42 -- None
43
44 --~-----------------------------------------------------------------------------
45
46 with Mission_Parameters;
47 with Task_Priority_Control;
48 with Ada_Task_Configuration;
49 package Packet_Router_Parameters is
50
51 --% Library Package:
52 -- Definition of Packet_Router values
53 --% Active Tasks:
54 --> None
55 --% Passive Tasks:
56 --> None
57
58 Application_ID :
59 constant Mission_Parameters.APID := Mission_Parameters.Packet_Router;
60
61 Packet_Buffer_Priority :
62 constant Task_Priority_Control.Passive_Task_Priority :=
63 Ada_Task_Configuration.Packet_Buffer_Priority;
64 Packet_Distributer_Priority :
65 constant Task_Priority_Control.Active_Task_Priority :=
66 Ada_Task_Configuration.Packet_Distributer_Priority;
67
68 Packet_Distributer_Stack_Size : constant := 8_000;
69 Packet_Buffer_Size : constant := 10;
70
71 end Packet_Router_Parameters;
72
73 --~-----------------------------------------------------------------------------
74