Enable the building of appimages on CI

This commit is contained in:
Carl Philipp Klemm 2025-09-18 13:02:31 +02:00
parent 316ce6c043
commit 8091cc751f
5 changed files with 67 additions and 13 deletions

View file

@ -39,7 +39,8 @@ void MainWindow::enumerateDevices()
{
uint16_t serial = serials[i];
std::shared_ptr<struct eismultiplexer> multiplexer(new struct eismultiplexer);
if (!eismultiplexer_connect(multiplexer.get(), serial))
int ret = eismultiplexer_connect(multiplexer.get(), serial);
if (ret == 0)
{
uint16_t channelCount = 0;
qDebug()<<"Adding channels from device "<<serial;
@ -58,7 +59,7 @@ void MainWindow::enumerateDevices()
{
QMessageBox::warning(this, tr("Connection Failed"),
tr("Failed to connect to device with serial %1").arg(serial));
qWarning() << "Failed to connect to device with serial" << serial;
qWarning()<<"Failed to connect to device with serial"<<serial<<"eismultiplexer_connect returned"<<ret;
}
ui->channelLayout->addStretch();
}