Skip to content

Commit

Permalink
Print device names in initial startup
Browse files Browse the repository at this point in the history
  • Loading branch information
SeongGino committed Aug 25, 2024
1 parent fe64ee9 commit dd85ec2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qhookermain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ void qhookerMain::SerialInit()
serialPort = new QSerialPort[serialFoundList.length()];
for(uint8_t i = 0; i < serialFoundList.length(); i++) {
serialPort[i].setPort(serialFoundList[i]);
qInfo() << "Assigning port no." << i+1;
qInfo() << "Assigning" << serialFoundList[i].portName() << "to port no." << i+1;
}
}
}
Expand Down

0 comments on commit dd85ec2

Please sign in to comment.