Skip to content

Commit

Permalink
Fixed sending of the scan command.
Browse files Browse the repository at this point in the history
  • Loading branch information
branoholy committed Jun 21, 2016
1 parent a9dd975 commit d42e084
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ project("regilo")
# Set project version
set(PROJECT_VERSION_MAJOR "2")
set(PROJECT_VERSION_MINOR "4")
set(PROJECT_VERSION_PATCH "")
set(PROJECT_VERSION_PATCH "1")
set(PROJECT_VERSION_TWEAK "")
set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}")

Expand Down
2 changes: 1 addition & 1 deletion include/regilo/scancontroller.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ ScanData ScanController<ProtocolController>::getScan(bool fromDevice)

if(fromDevice)
{
this->sendCommand(getScanCommand());
ProtocolController::template sendCommand<>(getScanCommand());
data.time = epoch<std::chrono::milliseconds>().count();

parseScanData(this->deviceOutput, data);
Expand Down

0 comments on commit d42e084

Please sign in to comment.