File: /home/oboss/Users/gec/sources/PUS_Services/Device_Command_Distribution/on_off_driver.ads
1 --% Compilation Unit: On_Off_Driver
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: on_off_driver.ads,v $
13 -- Revision 2.1 2004/02/13 16:17:17 gec
14 -- Merged results of Demonstrator development on to main OBOSS trunk.
15 --
16 -- Revision 2.0.12.1 2003/12/04 13:15:07 gec
17 -- Introduced lacking redefinition of device adresses. Should have been part of the ECSS migration.
18 --
19 -- Revision 2.0 2003/04/04 08:50:59 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:11 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 --~-----------------------------------------------------------------------------
49
50 with Device_Command_Distribution_Types;
51 package On_Off_Driver is
52
53 --% Library Package:
54 -- Onboard platform specific operations for distribution of on/off
55 --+ commands on onboard busses.
56 -- Package body is to be provided for specific onboard platform.
57 --% Active Tasks:
58 --> None
59 --% Passive Tasks:
60 --> None
61
62 --% Subprogram:
63 -- Distributes on/off command on the on-board bus.
64 -- Result = true iff this succeeded.
65 -- Must be re-entrant!
66 --% Parameter Constraints:
67 --> None
68 --% Exceptions Raised:
69 --> None!
70 function Send
71 (On_Off_Addr
72 : Device_Command_Distribution_Types.
73 On_Off_Device_Addr)
74 return Boolean;
75
76 end On_Off_Driver;
77
78 --~-----------------------------------------------------------------------------
79