Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lepton_sdk/Src/LEPTON_SDK.c
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ LEP_RESULT LEP_GetAttribute(LEP_CAMERA_PORT_DESC_T_PTR portDescPtr,
}
else if ( portDescPtr->portType == LEP_CCI_UVC )
{
result = UVC_GetAttribute(portDescPtr, commandID, attributePtr, attributeWordLength);
result = LEP_GetAttribute(portDescPtr, commandID, attributePtr, attributeWordLength);
}
else
result = LEP_COMM_INVALID_PORT_ERROR;
Expand Down Expand Up @@ -185,7 +185,7 @@ LEP_RESULT LEP_SetAttribute(LEP_CAMERA_PORT_DESC_T_PTR portDescPtr,
}
else if ( portDescPtr->portType == LEP_CCI_UVC )
{
result = UVC_SetAttribute(portDescPtr, commandID, attributePtr, attributeWordLength);
result = LEP_SetAttribute(portDescPtr, commandID, attributePtr, attributeWordLength);
}
else
result = LEP_COMM_INVALID_PORT_ERROR;
Expand Down Expand Up @@ -224,7 +224,7 @@ LEP_RESULT LEP_RunCommand(LEP_CAMERA_PORT_DESC_T_PTR portDescPtr,
}
else if ( portDescPtr->portType == LEP_CCI_UVC )
{
result = UVC_RunCommand(portDescPtr, commandID);
result = LEP_RunCommand(portDescPtr, commandID);
}
else
result = LEP_COMM_INVALID_PORT_ERROR;
Expand Down