Changes between Version 2 and Version 3 of spec/IEEE1722Tp


Ignore:
Timestamp:
Apr 15, 2024, 5:24:25 PM (5 weeks ago)
Author:
fujisft-kaji
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • spec/IEEE1722Tp

    v2 v3  
    99
    1010= 概要 =
     11
     12* API一覧
     13
     14  ||= API =||= ID[[BR]][Dec] =||= ID[[BR]][Hex] =||= R23-11 =||
     15  || [#IEEE1722Tp_Init IEEE1722Tp_Init]                         ||   1|| 0x01||  ○  ||
     16  || [#IEEE1722Tp_DeInit IEEE1722Tp_DeInit]                     ||   2|| 0x02||  ○  ||
     17  || [#IEEE1722Tp_GetVersionInfo IEEE1722Tp_GetVersionInfo]     ||   3|| 0x03||  ○  ||
     18  || [#IEEE1722Tp_ActivateStream IEEE1722Tp_ActivateStream]     ||   6|| 0x06||  ○  ||
     19  || [#IEEE1722Tp_DeactivateStream IEEE1722Tp_DeactivateStream] ||   7|| 0x07||  ○  ||
     20  || [#IEEE1722Tp_Transmit IEEE1722Tp_Transmit]                 ||   4|| 0x04||  ○  ||
     21  || [#IEEE1722Tp_ReleaseRxBuffer IEEE1722Tp_ReleaseRxBuffer]   ||   5|| 0x05||  ○  ||
     22  || [#IEEE1722Tp_TxConfirmation IEEE1722Tp_TxConfirmation]     ||   8|| 0x08||  ○  ||
     23  || [#IEEE1722Tp_RxIndication IEEE1722Tp_RxIndication]         ||   9|| 0x09||  ○  ||
     24  || [#IEEE1722Tp_MainFunctionTx IEEE1722Tp_MainFunctionTx]     ||  10|| 0x0A||  ○  ||
     25  || [#IEEE1722Tp_MainFunctionRx IEEE1722Tp_MainFunctionRx]     ||  11|| 0x0B||  ○  ||
     26
    1127* コンフィギュレーション一覧 (R23-11)
    1228  * [#IEEE1722TpConfig IEEE1722TpConfig] (○)
     
    128144= API仕様 =
    129145
     146== IEEE1722Tp_Init ==
     147{{{
     148void IEEE1722Tp_Init (const IEEE1722Tp_ConfigType* ConfigPtr)
     149}}}
     150
     151== IEEE1722Tp_DeInit ==
     152{{{
     153void IEEE1722Tp_DeInit (void)
     154}}}
     155
     156== IEEE1722Tp_GetVersionInfo ==
     157{{{
     158void IEEE1722Tp_GetVersionInfo (Std_VersionInfoType* versionInfo)
     159}}}
     160
     161== IEEE1722Tp_ActivateStream ==
     162{{{
     163Std_ReturnType IEEE1722Tp_ActivateStream (IEEE1722Tp_StreamIndexType StreamIndex)
     164}}}
     165
     166== IEEE1722Tp_DeactivateStream ==
     167{{{
     168Std_ReturnType IEEE1722Tp_DeactivateStream (IEEE1722Tp_StreamIndexType StreamIndex)
     169}}}
     170
     171== IEEE1722Tp_Transmit ==
     172{{{
     173Std_ReturnType IEEE1722Tp_Transmit (PduIdType TxPduId, const PduInfoType* PduInfoPtr)
     174}}}
     175
     176== IEEE1722Tp_ReleaseRxBuffer ==
     177{{{
     178void IEEE1722Tp_ReleaseRxBuffer (PduIdType RxPduId)
     179}}}
     180
     181== IEEE1722Tp_TxConfirmation ==
     182{{{
     183void IEEE1722Tp_TxConfirmation (PduIdType TxPduId, Std_ReturnType result)
     184}}}
     185
     186== IEEE1722Tp_RxIndication ==
     187{{{
     188void IEEE1722Tp_RxIndication (PduIdType RxPduId, const PduInfoType* PduInfoPtr)
     189}}}
     190
     191== IEEE1722Tp_MainFunctionTx ==
     192{{{
     193void IEEE1722Tp_MainFunctionTx (void)
     194}}}
     195
     196== IEEE1722Tp_MainFunctionRx ==
     197{{{
     198void IEEE1722Tp_MainFunctionRx (void)
     199}}}
     200
    130201----
    131202