Skip to content

Commit

Permalink
REF: Fix data conversion.
Browse files Browse the repository at this point in the history
  • Loading branch information
ningfei committed Sep 24, 2024
1 parent b876064 commit 3ca345b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/DeviceThread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ DataStream::Settings DeviceThread::getStreamSettingsFromID(int streamID)
streamsXmlList->getChildElement(streamID)->getStringAttribute("Stream_Name"),
"description",
"neuro-omega-device.data",
streamsXmlList->getChildElement(streamID)->getDoubleAttribute("Sampling_Rate")};
float(streamsXmlList->getChildElement(streamID)->getDoubleAttribute("Sampling_Rate"))};
return dataStreamSettings;
}

Expand Down

0 comments on commit 3ca345b

Please sign in to comment.