File tree Expand file tree Collapse file tree
Source/Processors/Channel Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -407,6 +407,8 @@ size_t EventChannel::getTypeByteSize(EventChannel::EventChannelTypes type)
407407 case UINT32_ARRAY: return sizeof (uint32);
408408 case INT64_ARRAY: return sizeof (int64);
409409 case UINT64_ARRAY: return sizeof (uint64);
410+ case FLOAT_ARRAY: return sizeof (float );
411+ case DOUBLE_ARRAY: return sizeof (double );
410412 default : return sizeof (char );
411413 }
412414}
@@ -426,6 +428,8 @@ void EventChannel::setDefaultNameAndDescription()
426428 case UINT32_ARRAY: name = " UINT32" ; break ;
427429 case INT64_ARRAY: name = " INT64" ; break ;
428430 case UINT64_ARRAY: name = " UINT64" ; break ;
431+ case FLOAT_ARRAY: name = " FLOAT" ; break ;
432+ case DOUBLE_ARRAY: name = " DOUBLE" ; break ;
429433 default :
430434 setName (" INVALID" );
431435 setDescription (" Invalid channel" );
You can’t perform that action at this time.
0 commit comments