Changes between Version 4 and Version 5 of spec/Det


Ignore:
Timestamp:
Oct 23, 2014, 10:54:03 AM (10 years ago)
Author:
fujisft-shigihara
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • spec/Det

    v4 v5  
    77[[BR]]
    88
    9 {{{#!comment
    10 [執筆開始時削除エリア]ここから
    11 ※コメントごと削除してください
    12 }}}
    13 * '''本項目は、まだ執筆されていません'''
    14 * '''執筆して頂ける方は、本注意書きを削除の上、執筆をお願いします(詳しくは本Wikiのソースコードをご参照ください)'''
    15 * '''質問事項等がございましたら、[http://dev.toppers.jp/trac/ap/wiki/ Wikiトップページ]にあります[http://dev.toppers.jp/trac/ap/wiki/WikiStart#%E5%95%8F%E3%81%84%E5%90%88%E3%82%8F%E3%81%9B%E5%85%88 問い合わせ先]までお願いします'''
    16 ----
    17 {{{#!comment
    18 [執筆開始時削除エリア]ここまで
    19 ※コメントごと削除してください
    20 }}}
     9= 概要 =
    2110
    22 = 概要 =
     11* API一覧
     12
     13  ||= API =||= ID[[BR]][Dec] =||= ID[[BR]][Hex] =||
     14  || [#Det_Init Det_Init]                     ||  0|| 0x00||
     15  || [#Det_ReportError Det_ReportError]       ||  1|| 0x01||
     16  || [#Det_Start Det_Start]                   ||  2|| 0x02||
     17  || [#Det_GetVersionInfo Det_GetVersionInfo] ||  3|| 0x03||
     18
     19* コンフィギュレーション一覧
     20  * [#DetGeneral DetGeneral]
     21    * [#DetForwardToDlt DetForwardToDlt]
     22    * [#DetVersionInfoApi DetVersionInfoApi]
     23  * [#DetNotification DetNotification]
     24    * [#DetErrorHook DetErrorHook]
     25
     26* エラーコード一覧
     27
     28  ||= エラーコード =||= Dec =||= Hex =||
     29  || DET_E_PARAM_POINTER ||  1|| 0x01||
    2330
    2431----
     
    2633= API仕様 =
    2734
     35== Det_Init ==
     36{{{
     37void Det_Init(void)
     38}}}
     39
     40== Det_ReportError ==
     41{{{
     42Std_ReturnType Det_ReportError(uint16 ModuleId, uint8 InstanceId, uint8 ApiId, uint8 ErrorId)
     43}}}
     44
     45== Det_Start ==
     46{{{
     47void Det_Start(void)
     48}}}
     49
     50== Det_GetVersionInfo ==
     51{{{
     52void Det_GetVersionInfo(Std_VersionInfoType* versioninfo)
     53}}}
     54
    2855----
    2956
    3057= コンフィギュレーション仕様 =
     58
     59== !DetGeneral ==
     60{{{
     61/AUTOSAR/EcucDefs/Det/DetGeneral
     62}}}
     63* 型:Container
     64* 多重度:1
     65
     66== !DetForwardToDlt ==
     67{{{
     68/AUTOSAR/EcucDefs/Det/DetGeneral/DetForwardToDlt
     69}}}
     70* 型:!BooleanParam
     71* 多重度:0..1
     72
     73== !DetVersionInfoApi ==
     74{{{
     75/AUTOSAR/EcucDefs/Det/DetGeneral/DetVersionInfoApi
     76}}}
     77* 型:!BooleanParam
     78* 多重度:1
     79
     80== !DetNotification ==
     81{{{
     82/AUTOSAR/EcucDefs/Det/DetNotification
     83}}}
     84* 型:Container
     85* 多重度:0..1
     86
     87== !DetErrorHook ==
     88{{{
     89/AUTOSAR/EcucDefs/Det/DetNotification/DetErrorHook
     90}}}
     91* 型:!FunctionName
     92* 多重度:0..*
     93
     94