1 |
/**************************************************************************** |
2 |
/* F i l e D a t a |
3 |
/* |
4 |
/* Module : BasicSW |
5 |
/* C.I. No. : |
6 |
/* $Revision: 1.1.1.1 $ |
7 |
/* $Date: 2003/08/04 09:40:21 $ |
8 |
/* Belonging to : |
9 |
/* : |
10 |
/* $RCSfile: PD_PatchDumpManager_p.c,v $ |
11 |
/* Program Type : |
12 |
/* Sub-modules : |
13 |
/* |
14 |
/**************************************************************************** |
15 |
/* S W D e v e l o p m e n t E n v i r o n m e n t |
16 |
/* |
17 |
/* Host system : |
18 |
/* SW Compiler : |
19 |
/* $Author: sebastiani $ |
20 |
/* : |
21 |
/**************************************************************************** |
22 |
/* U p d a t i n g |
23 |
/* |
24 |
/* $Log: PD_PatchDumpManager_p.c,v $ |
25 |
/* Revision 1.1.1.1 2003/08/04 09:40:21 sebastiani |
26 |
/* Imported sources laben rel. 19.06.2003 integrated with pam2 |
27 |
/* |
28 |
/* Revision 1.5 2002/05/09 08:16:34 zulia |
29 |
/* * acceptance release |
30 |
/* |
31 |
/* |
32 |
/*****************************************************************************/ |
33 |
|
34 |
|
35 |
/*============================= Include File ================================*/ |
36 |
|
37 |
#include <src/BasicSW/PatchDumpManager/PD_PatchDumpManager_p.h> |
38 |
#include <src/BasicSW/PatchDumpManager/PD_PatchDumpManager_op.h> |
39 |
|
40 |
/*****************************************************************************/ |
41 |
|
42 |
/*== P a t c h D u m p M a n a g e r P R O V I D E D I N T E R F A C E =*/ |
43 |
|
44 |
/*****************************************************************************/ |
45 |
|
46 |
/*****************************************************************************/ |
47 |
/* @Function: PD_piInitPatchDumpManager */ |
48 |
/* @Purpose : */ |
49 |
/* Provided Interface to initialize the Patch/Dump Manager */ |
50 |
/* */ |
51 |
/* @@ */ |
52 |
/* @Parameter Name @Mode @Description */ |
53 |
/* status_code OUT Return code */ |
54 |
/* @@ */ |
55 |
/*****************************************************************************/ |
56 |
|
57 |
status_code PD_piInitPatchDumpManager(void) |
58 |
{ |
59 |
return PD_opInitPatchDumpManager(); |
60 |
} |
61 |
|
62 |
|
63 |
/*****************************************************************************/ |
64 |
/* @Function: PD_piSndMsgPatchDumpManager */ |
65 |
/* @Purpose : */ |
66 |
/* Provided Interface to send a message to the PatchDump task. */ |
67 |
/* */ |
68 |
/* @@ */ |
69 |
/* @Parameter Name @Mode @Description */ |
70 |
/* SndMsg IN pointer to the message structure */ |
71 |
/* status_code OUT Return code */ |
72 |
/* @@ */ |
73 |
/*****************************************************************************/ |
74 |
status_code PD_piSndMsgPatchDumpManager (MsgTsk* SndMsg) |
75 |
{ |
76 |
return PD_opSndMsgPatchDumpManager(SndMsg); |
77 |
} |
78 |
|
79 |
/*****************************************************************************/ |
80 |
/* @Function: PD_piGetDumpDataAddress */ |
81 |
/* @Purpose : */ |
82 |
/* This function gets the address of dumped data. Dumped data are stored */ |
83 |
/* into an array resident in RAM memory. This function retrieves the */ |
84 |
/* pointer to the first location. */ |
85 |
/* */ |
86 |
/* @@ */ |
87 |
/* @Parameter Name @Mode @Description */ |
88 |
/* pDump IN pointer to the address of dumped data */ |
89 |
/* status_code OUT Return code */ |
90 |
/* @@ */ |
91 |
/*****************************************************************************/ |
92 |
status_code PD_piGetDumpDataAddress(unsigned short int** pDump) |
93 |
{ |
94 |
return PD_opGetDumpDataAddress(pDump); |
95 |
} |
96 |
|