00001 /** ============================================================================ 00002 * @file zcpy_mqt.h 00003 * 00004 * @path $(DSPLINK)/dsp/inc/ 00005 * 00006 * @brief Defines the exported interface of the ZCPY MQT for GPP-DSP 00007 * communication. 00008 * 00009 * @ver 1.65.00.03 00010 * ============================================================================ 00011 * @copyright Copyright (C) 2002-2009, Texas Instruments Incorporated - 00012 * http://www.ti.com/ 00013 * 00014 * Redistribution and use in source and binary forms, with or without 00015 * modification, are permitted provided that the following conditions 00016 * are met: 00017 * 00018 * * Redistributions of source code must retain the above copyright 00019 * notice, this list of conditions and the following disclaimer. 00020 * 00021 * * Redistributions in binary form must reproduce the above copyright 00022 * notice, this list of conditions and the following disclaimer in the 00023 * documentation and/or other materials provided with the distribution. 00024 * 00025 * * Neither the name of Texas Instruments Incorporated nor the names of 00026 * its contributors may be used to endorse or promote products derived 00027 * from this software without specific prior written permission. 00028 * 00029 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00030 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 00031 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 00032 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 00033 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 00034 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00035 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 00036 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 00037 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 00038 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, 00039 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00040 * ============================================================================ 00041 */ 00042 00043 00044 #ifndef ZCPY_MQT_ 00045 #define ZCPY_MQT_ 00046 00047 00048 /* ----------------------------------- DSP/BIOS Headers */ 00049 #include <msgq.h> 00050 #include <msgq_mqt.h> 00051 00052 /* ----------------------------------- DSP/BIOS LINK Headers */ 00053 #include <dsplink.h> 00054 00055 00056 #ifdef __cplusplus 00057 extern "C" { 00058 #endif 00059 00060 00061 /** ============================================================================ 00062 * @name ZCPYMQT_Params 00063 * 00064 * @brief Defines the attributes for initialization of the ZCPY MQT. 00065 * 00066 * @param poolId 00067 * Pool ID used for allocating control messages. 00068 * ============================================================================ 00069 */ 00070 typedef struct ZCPYMQT_Params_tag { 00071 Uint16 poolId ; 00072 } ZCPYMQT_Params ; 00073 00074 00075 /** ============================================================================ 00076 * @name ZCPYMQT_FXNS 00077 * 00078 * @brief Declaration of the function table interface for the ZCPY MQT. 00079 * ============================================================================ 00080 */ 00081 extern MSGQ_TransportFxns ZCPYMQT_FXNS ; 00082 00083 00084 /** ============================================================================ 00085 * @func ZCPYMQT_init 00086 * 00087 * @brief Performs global initialization of the ZCPY MQT. 00088 * 00089 * @param None 00090 * 00091 * @return None 00092 * 00093 * @pre None 00094 * 00095 * @post None 00096 * 00097 * @see None 00098 * ============================================================================ 00099 */ 00100 extern Void ZCPYMQT_init () ; 00101 00102 00103 #ifdef __cplusplus 00104 } 00105 #endif /* extern "C" */ 00106 00107 00108 #endif /* ZCPY_MQT_ */