You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a comment in "configuratorwindow.cpp", line 818, that is unnecessary and only adds confusion. The entire line where the comment is located is as follows:
mcp2210_.close(); // If the device is already closed, this will have no effect
That line is located inside handleError(), and the only instance of a call to mcp2210_.close() is inside this same function. So, the device is never closed elsewhere, and handleError() is never called concurrently. Thus, the comment makes no sense and should be removed.
The text was updated successfully, but these errors were encountered:
There is a comment in "configuratorwindow.cpp", line 818, that is unnecessary and only adds confusion. The entire line where the comment is located is as follows:
mcp2210_.close(); // If the device is already closed, this will have no effect
That line is located inside handleError(), and the only instance of a call to mcp2210_.close() is inside this same function. So, the device is never closed elsewhere, and handleError() is never called concurrently. Thus, the comment makes no sense and should be removed.
The text was updated successfully, but these errors were encountered: