Changes between Version 2 and Version 3 of spec/Fw


Ignore:
Timestamp:
Apr 15, 2024, 4:34:58 PM (6 weeks ago)
Author:
fujisft-kaji
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • spec/Fw

    v2 v3  
    88
    99= 概要 =
     10
     11* API一覧
     12
     13  ||= API =||= ID[[BR]][Dec] =||= ID[[BR]][Hex] =||= R23-11 =||
     14  || [#Fw_Init Fw_Init]                                                 ||   0|| 0x00||  ○  ||
     15  || [#Fw_GetVersionInfo Fw_GetVersionInfo]                             ||   1|| 0x01||  ○  ||
     16  || [#Fw_InspectPacket Fw_InspectPacket]                               ||   3|| 0x03||  ○  ||
     17  || [#Fw_SetFirewallState Fw_SetFirewallState]                         ||   4|| 0x04||  ○  ||
     18  || [#Fw_StreamHandleIdxStatistics Fw_StreamHandleIdxStatistics]       ||   5|| 0x05||  ○  ||
     19  || [#Fw_StreamHandleIdxConfiguration Fw_StreamHandleIdxConfiguration] ||   6|| 0x06||  ○  ||
     20  || [#Fw_MainFunction Fw_MainFunction]                                 ||   2|| 0x02||  ○  ||
     21
    1022* コンフィギュレーション一覧 (R23-11)
    1123  * [#FirewallConfig FirewallConfig] (○)
     
    169181= API仕様 =
    170182
     183== Fw_Init ==
     184{{{
     185void Fw_Init (const Fw_ConfigType* configPtr)
     186}}}
     187
     188== Fw_GetVersionInfo ==
     189{{{
     190void Fw_GetVersionInfo (const Std_VersionInfoType* versionInfo)
     191}}}
     192
     193== Fw_InspectPacket ==
     194{{{
     195Std_ReturnType Fw_InspectPacket (uint8 CtrlIdx, Eth_FrameType FrameType, boolean IsBroadcast, const uint8* PhysAddrPtr, const Eth_DataType* DataPtr, uint16 LenByte, uint8* StreamHandleIdxPtr, Fw_InspectionResultType* InspectionResultPtr)
     196}}}
     197
     198== Fw_SetFirewallState ==
     199{{{
     200void Fw_SetFirewallState (uint16 FirewallState)
     201}}}
     202
     203== Fw_StreamHandleIdxStatistics ==
     204{{{
     205void Fw_StreamHandleIdxStatistics (uint8 SwitchIdx, uint8 NumberOfBuckets, const uint8* StreamHandleIdxStatisticsPtr)
     206}}}
     207
     208== Fw_StreamHandleIdxConfiguration ==
     209{{{
     210void Fw_StreamHandleIdxConfiguration (uint8 SwitchIdx, uint8 StreamHandleIdxPtr, boolean StreamHandleIdxActivityStatus)
     211}}}
     212
     213== Fw_MainFunction ==
     214{{{
     215void Fw_MainFunction (void)
     216}}}
     217
    171218----
    172219