@ -37,14 +37,12 @@ uint8_t USB_ProcessHIDReport(const uint8_t* ReportData, uint16_t ReportSize, HID
{
{
HID_StateTable_t StateTable [ HID_STATETABLE_STACK_DEPTH ] ;
HID_StateTable_t StateTable [ HID_STATETABLE_STACK_DEPTH ] ;
HID_StateTable_t * CurrStateTable = & StateTable [ 0 ] ;
HID_StateTable_t * CurrStateTable = & StateTable [ 0 ] ;
HID_CollectionPath_t * CurrCollectionPath = NULL ;
uint16_t UsageStack [ HID_USAGE_STACK_DEPTH ] ;
uint16_t UsageStack [ HID_USAGE_STACK_DEPTH ] ;
uint8_t UsageStackSize = 0 ;
uint8_t UsageStackSize = 0 ;
uint16_t BitOffsetIn = 0 ;
uint16_t BitOffsetIn = 0 ;
uint16_t BitOffsetOut = 0 ;
uint16_t BitOffsetOut = 0 ;
# if defined(HID_ENABLE_FEATURE_PROCESSING)
uint16_t BitOffsetFeature = 0 ;
uint16_t BitOffsetFeature = 0 ;
# endif
HID_CollectionPath_t * CurrCollectionPath = NULL ;
ParserData - > TotalReportItems = 0 ;
ParserData - > TotalReportItems = 0 ;
ParserData - > UsingMultipleReports = false ;
ParserData - > UsingMultipleReports = false ;
@ -131,10 +129,7 @@ uint8_t USB_ProcessHIDReport(const uint8_t* ReportData, uint16_t ReportSize, HID
ParserData - > UsingMultipleReports = true ;
ParserData - > UsingMultipleReports = true ;
BitOffsetIn = 0 ;
BitOffsetIn = 0 ;
BitOffsetOut = 0 ;
BitOffsetOut = 0 ;
# if defined(HID_ENABLE_FEATURE_PROCESSING)
BitOffsetFeature = 0 ;
BitOffsetFeature = 0 ;
# endif
break ;
break ;
case ( TYPE_LOCAL | TAG_LOCAL_USAGE ) :
case ( TYPE_LOCAL | TAG_LOCAL_USAGE ) :
if ( UsageStackSize = = HID_USAGE_STACK_DEPTH )
if ( UsageStackSize = = HID_USAGE_STACK_DEPTH )
@ -197,27 +192,22 @@ uint8_t USB_ProcessHIDReport(const uint8_t* ReportData, uint16_t ReportSize, HID
break ;
break ;
case ( TYPE_MAIN | TAG_MAIN_INPUT ) :
case ( TYPE_MAIN | TAG_MAIN_INPUT ) :
case ( TYPE_MAIN | TAG_MAIN_OUTPUT ) :
case ( TYPE_MAIN | TAG_MAIN_OUTPUT ) :
# if defined(HID_ENABLE_FEATURE_PROCESSING)
case ( TYPE_MAIN | TAG_MAIN_FEATURE ) :
case ( TYPE_MAIN | TAG_MAIN_FEATURE ) :
# endif
for ( uint8_t ReportItemNum = 0 ; ReportItemNum < CurrStateTable - > ReportCount ; ReportItemNum + + )
for ( uint8_t ReportItemNum = 0 ; ReportItemNum < CurrStateTable - > ReportCount ; ReportItemNum + + )
{
{
HID_ReportItem_t * CurrReportItem = & ParserData - > ReportItems [ ParserData - > TotalReportItems ] ;
HID_ReportItem_t NewReportItem ;
if ( ParserData - > TotalReportItems = = HID_MAX_REPORTITEMS )
memcpy ( & NewReportItem . Attributes ,
return HID_PARSE_InsufficientReportItems ;
memcpy ( & CurrReportItem - > Attributes ,
& CurrStateTable - > Attributes ,
& CurrStateTable - > Attributes ,
sizeof ( HID_ReportItem_Attributes_t ) ) ;
sizeof ( HID_ReportItem_Attributes_t ) ) ;
CurrReportItem- > ItemFlags = ReportItemData ;
NewReportItem. ItemFlags = ReportItemData ;
CurrReportItem- > CollectionPath = CurrCollectionPath ;
NewReportItem. CollectionPath = CurrCollectionPath ;
CurrReportItem- > ReportID = CurrStateTable - > ReportID ;
NewReportItem. ReportID = CurrStateTable - > ReportID ;
if ( UsageStackSize )
if ( UsageStackSize )
{
{
CurrReportItem- > Attributes . Usage . Usage = UsageStack [ 0 ] ;
NewReportItem. Attributes . Usage . Usage = UsageStack [ 0 ] ;
for ( uint8_t i = 0 ; i < UsageStackSize ; i + + )
for ( uint8_t i = 0 ; i < UsageStackSize ; i + + )
UsageStack [ i ] = UsageStack [ i + 1 ] ;
UsageStack [ i ] = UsageStack [ i + 1 ] ;
@ -226,42 +216,41 @@ uint8_t USB_ProcessHIDReport(const uint8_t* ReportData, uint16_t ReportSize, HID
}
}
else
else
{
{
CurrReportItem- > Attributes . Usage . Usage = 0 ;
NewReportItem. Attributes . Usage . Usage = 0 ;
}
}
switch ( HIDReportItem & TAG_MASK )
switch ( HIDReportItem & TAG_MASK )
{
{
case TAG_MAIN_INPUT :
case TAG_MAIN_INPUT :
CurrReportItem- > ItemType = REPORT_ITEM_TYPE_In ;
NewReportItem. ItemType = REPORT_ITEM_TYPE_In ;
CurrReportItem- > BitOffset = BitOffsetIn ;
NewReportItem. BitOffset = BitOffsetIn ;
BitOffsetIn + = CurrStateTable - > Attributes . BitSize ;
BitOffsetIn + = CurrStateTable - > Attributes . BitSize ;
break ;
break ;
case TAG_MAIN_OUTPUT :
case TAG_MAIN_OUTPUT :
CurrReportItem- > ItemType = REPORT_ITEM_TYPE_Out ;
NewReportItem. ItemType = REPORT_ITEM_TYPE_Out ;
CurrReportItem- > BitOffset = BitOffsetOut ;
NewReportItem. BitOffset = BitOffsetOut ;
BitOffsetOut + = CurrStateTable - > Attributes . BitSize ;
BitOffsetOut + = CurrStateTable - > Attributes . BitSize ;
break ;
break ;
# if defined(HID_ENABLE_FEATURE_PROCESSING)
case TAG_MAIN_FEATURE :
case TAG_MAIN_FEATURE :
CurrReportItem- > ItemType = REPORT_ITEM_TYPE_Feature ;
NewReportItem. ItemType = REPORT_ITEM_TYPE_Feature ;
CurrReportItem- > BitOffset = BitOffsetFeature ;
NewReportItem. BitOffset = BitOffsetFeature ;
BitOffsetFeature + = CurrStateTable - > Attributes . BitSize ;
BitOffsetFeature + = CurrStateTable - > Attributes . BitSize ;
break ;
break ;
# endif
}
}
# if defined(HID_INCLUDE_CONSTANT_DATA_ITEMS)
if ( ! ( ReportItemData & IOF_CONSTANT ) & & CALLBACK_HIDParser_FilterHIDReportItem ( & CurrStateTable - > Attributes ) )
ParserData - > TotalReportItems + + ;
{
# else
if ( ParserData - > TotalReportItems = = HID_MAX_REPORTITEMS )
if ( ! ( ReportItemData & IOF_CONSTANT ) )
return HID_PARSE_InsufficientReportItems ;
memcpy ( & ParserData - > ReportItems [ ParserData - > TotalReportItems ] ,
& NewReportItem , sizeof ( HID_ReportItem_t ) ) ;
ParserData - > TotalReportItems + + ;
ParserData - > TotalReportItems + + ;
# endif
}
}
}
UsageStackSize = 0 ;
UsageStackSize = 0 ;