FreeCalypso > hg > fc-tourmaline
comparison src/g23m-gprs/sm/sm_dispatcher.h @ 1:fa8dc04885d8
src/g23m-*: import from Magnetite
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Fri, 16 Oct 2020 06:25:50 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 0:4e78acac3d88 | 1:fa8dc04885d8 |
|---|---|
| 1 /*---------------------------------------------------------------------------- | |
| 2 | Project : 3G PS | |
| 3 | Module : SM | |
| 4 +----------------------------------------------------------------------------- | |
| 5 | Copyright 2003 Texas Instruments. | |
| 6 | All rights reserved. | |
| 7 | | |
| 8 | This file is confidential and a trade secret of Texas | |
| 9 | Instruments . | |
| 10 | The receipt of or possession of this file does not convey | |
| 11 | any rights to reproduce or disclose its contents or to | |
| 12 | manufacture, use, or sell anything it may describe, in | |
| 13 | whole, or in part, without the specific written consent of | |
| 14 | Texas Instruments. | |
| 15 +----------------------------------------------------------------------------- | |
| 16 | Purpose: Process dispatcher helper functions in the SM entity. | |
| 17 | For design details, see: | |
| 18 | 8010.908 SM Detailed Specification | |
| 19 +---------------------------------------------------------------------------*/ | |
| 20 | |
| 21 /*==== DECLARATION CONTROL =================================================*/ | |
| 22 | |
| 23 #ifndef SM_DISPATCHER_H | |
| 24 #define SM_DISPATCHER_H | |
| 25 | |
| 26 /*==== INCLUDES =============================================================*/ | |
| 27 | |
| 28 #include "sm.h" | |
| 29 | |
| 30 /*==== CONSTS ===============================================================*/ | |
| 31 | |
| 32 /*==== TYPES ================================================================*/ | |
| 33 | |
| 34 /*==== EXPORTS ==============================================================*/ | |
| 35 | |
| 36 /* SMREG SAP */ | |
| 37 extern void sm_disp_smreg_pdp_activate_req(T_SMREG_PDP_ACTIVATE_REQ *prim); | |
| 38 extern void sm_disp_smreg_pdp_activate_sec_req(T_SMREG_PDP_ACTIVATE_SEC_REQ *prim); | |
| 39 extern void sm_disp_smreg_pdp_activate_rej_res(T_SMREG_PDP_ACTIVATE_REJ_RES *prim); | |
| 40 extern void sm_disp_smreg_pdp_deactivate_req(T_SMREG_PDP_DEACTIVATE_REQ *prim); | |
| 41 extern void sm_disp_smreg_pdp_modify_req(T_SMREG_PDP_MODIFY_REQ *prim); | |
| 42 | |
| 43 /* SM SAP */ | |
| 44 extern void sm_disp_sm_activate_res(T_SM_ACTIVATE_RES *prim); | |
| 45 extern void sm_disp_sm_deactivate_res(T_SM_DEACTIVATE_RES *prim); | |
| 46 extern void sm_disp_sm_modify_res(T_SM_MODIFY_RES *prim); | |
| 47 extern void sm_disp_sm_status_req(T_SM_STATUS_REQ *prim); | |
| 48 | |
| 49 /* MMPM SAP */ | |
| 50 extern void sm_disp_mmpm_attach_ind(T_MMPM_ATTACH_IND *prim); | |
| 51 extern void sm_disp_mmpm_detach_ind(T_MMPM_DETACH_IND *prim); | |
| 52 extern void sm_disp_mmpm_resume_ind(T_MMPM_RESUME_IND *prim); | |
| 53 extern void sm_disp_mmpm_suspend_ind(T_MMPM_SUSPEND_IND *prim); | |
| 54 | |
| 55 /* Handled in sm_dispatch_message.c */ | |
| 56 extern void sm_disp_mmpm_unitdata_ind(T_MMPM_UNITDATA_IND *prim); | |
| 57 | |
| 58 /* Timer handling - sm_timer_handler.c */ | |
| 59 extern void sm_disp_pei_timeout(U16 index); | |
| 60 #endif /* SM_DISPATCHER_H */ | |
| 61 /*==== END OF FILE ==========================================================*/ |
