]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - processor-sdk/performance-audio-sr.git/blobdiff - processor_audio_sdk_1_00_00_00/psdk_cust/ipc_3_43_00_00_eng/docs/cdoc/ti/sdo/ipc/family/da830/NotifySetup-src.html
Remove processor_audio_sdk_1_00_00_00 subfolder
[processor-sdk/performance-audio-sr.git] / processor_audio_sdk_1_00_00_00 / psdk_cust / ipc_3_43_00_00_eng / docs / cdoc / ti / sdo / ipc / family / da830 / NotifySetup-src.html
diff --git a/processor_audio_sdk_1_00_00_00/psdk_cust/ipc_3_43_00_00_eng/docs/cdoc/ti/sdo/ipc/family/da830/NotifySetup-src.html b/processor_audio_sdk_1_00_00_00/psdk_cust/ipc_3_43_00_00_eng/docs/cdoc/ti/sdo/ipc/family/da830/NotifySetup-src.html
deleted file mode 100644 (file)
index ab7c3ff..0000000
+++ /dev/null
@@ -1,107 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html><head><title>module ti.sdo.ipc.family.da830.NotifySetup</title>
-<meta name="googlebot" content="noindex,nofollow">
-<link rel="stylesheet" type="text/css" href="../../../../../src.css"/>
-</head>
-<body>
-<pre class=src>
-     1    <span class="comment">/*
-</span>     2    <span class="comment"> * Copyright (c) 2012-2013, Texas Instruments Incorporated
-</span>     3    <span class="comment"> * All rights reserved.
-</span>     4    <span class="comment"> *
-</span>     5    <span class="comment"> * Redistribution and use in source and binary forms, with or without
-</span>     6    <span class="comment"> * modification, are permitted provided that the following conditions
-</span>     7    <span class="comment"> * are met:
-</span>     8    <span class="comment"> *
-</span>     9    <span class="comment"> * *  Redistributions of source code must retain the above copyright
-</span>    10    <span class="comment"> *    notice, this list of conditions and the following disclaimer.
-</span>    11    <span class="comment"> *
-</span>    12    <span class="comment"> * *  Redistributions in binary form must reproduce the above copyright
-</span>    13    <span class="comment"> *    notice, this list of conditions and the following disclaimer in the
-</span>    14    <span class="comment"> *    documentation and/or other materials provided with the distribution.
-</span>    15    <span class="comment"> *
-</span>    16    <span class="comment"> * *  Neither the name of Texas Instruments Incorporated nor the names of
-</span>    17    <span class="comment"> *    its contributors may be used to endorse or promote products derived
-</span>    18    <span class="comment"> *    from this software without specific prior written permission.
-</span>    19    <span class="comment"> *
-</span>    20    <span class="comment"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-</span>    21    <span class="comment"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-</span>    22    <span class="comment"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-</span>    23    <span class="comment"> * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
-</span>    24    <span class="comment"> * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-</span>    25    <span class="comment"> * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-</span>    26    <span class="comment"> * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
-</span>    27    <span class="comment"> * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-</span>    28    <span class="comment"> * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
-</span>    29    <span class="comment"> * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
-</span>    30    <span class="comment"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-</span>    31    <span class="comment"> */</span>
-    32    <span class="comment">/*
-</span>    33    <span class="comment"> *  ======== NotifySetup.xdc ========
-</span>    34    <span class="comment"> *
-</span>    35    <span class="comment"> */</span>
-    36    
-    37    import ti.sdo.utils.MultiProc;
-    38    
-    39    <span class="xdoc">/*!
-</span>    40    <span class="xdoc"> *  ======== NotifySetup ========
-</span>    41    <span class="xdoc"> *  Manages setup of the default Notify driver handles
-</span>    42    <span class="xdoc"> *
-</span>    43    <span class="xdoc"> *  Creates the default notify drivers for each pair of processors.
-</span>    44    <span class="xdoc"> */</span>
-    45    <span class=key>module</span> NotifySetup <span class=key>inherits</span> ti.sdo.ipc.interfaces.INotifySetup
-    46    {
-    47        <span class="xdoc">/*! Possible incoming interrupt IDs for DSP */</span>
-    48        <span class=key>enum</span> DSP_INT {
-    49            DSP_INT0 = 5,
-    50            DSP_INT1 = 67
-    51        }
-    52    
-    53        <span class="xdoc">/*! Possible incoming interrupt IDs for ARM */</span>
-    54        <span class=key>enum</span> ARM_INT {
-    55            ARM_INT0 = 28,
-    56            ARM_INT1 = 29
-    57        }
-    58    
-    59        <span class="xdoc">/*!
-</span>    60    <span class="xdoc">     *  Incoming interrupt ID for line #0 line on DSP
-</span>    61    <span class="xdoc">     *
-</span>    62    <span class="xdoc">     *  See {<b>@link</b> #DSP_INT} for possible values.
-</span>    63    <span class="xdoc">     */</span>
-    64        <span class=key>config</span> UInt dspRecvIntId0 = DSP_INT0;
-    65    
-    66        <span class="xdoc">/*! Vector ID to use on DSP for line #0 */</span>
-    67        <span class=key>config</span> UInt dspIntVectId0 = 5;
-    68    
-    69        <span class="xdoc">/*!
-</span>    70    <span class="xdoc">     *  Incoming interrupt ID for line #0 line on ARM
-</span>    71    <span class="xdoc">     *
-</span>    72    <span class="xdoc">     *  See {<b>@link</b> #ARM_INT} for possible values.
-</span>    73    <span class="xdoc">     */</span>
-    74        <span class=key>config</span> UInt armRecvIntId0 = ARM_INT0;
-    75    
-    76        <span class="xdoc">/*! Enable the second interrupt line */</span>
-    77        <span class=key>config</span> Bool useSecondLine = <span class=key>false</span>;
-    78    
-    79        <span class="xdoc">/*!
-</span>    80    <span class="xdoc">     *  Incoming interrupt ID for line #1 line on DSP
-</span>    81    <span class="xdoc">     *
-</span>    82    <span class="xdoc">     *  See {<b>@link</b> #DSP_INT} for possible values.
-</span>    83    <span class="xdoc">     */</span>
-    84        <span class=key>config</span> UInt dspRecvIntId1 = DSP_INT1;
-    85    
-    86        <span class="xdoc">/*! Vector ID to use on DSP for line #1 */</span>
-    87        <span class=key>config</span> UInt dspIntVectId1 = 6;
-    88    
-    89        <span class="xdoc">/*!
-</span>    90    <span class="xdoc">     *  Incoming interrupt ID for line #1 line on ARM
-</span>    91    <span class="xdoc">     *
-</span>    92    <span class="xdoc">     *  See {<b>@link</b> #ARM_INT} for possible values.
-</span>    93    <span class="xdoc">     */</span>
-    94        <span class=key>config</span> UInt armRecvIntId1 = ARM_INT1;
-    95    
-    96    <span class=key>internal</span>:
-    97    
-    98    }
-</pre>
-</body></html>