Skip to content

Commit

Permalink
Merge pull request f4exb#1937 from srcejon/freq_scanner
Browse files Browse the repository at this point in the history
Pager UDP packet update
  • Loading branch information
f4exb authored Dec 25, 2023
2 parents 99496ff + 9784742 commit 3be8815
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions plugins/channelrx/demodpager/pagerdemod.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,11 @@ bool PagerDemod::handleMessage(const Message& cmd)
if (m_settings.m_udpEnabled)
{
QByteArray message;
message.append(report.getDateTime().toString().toLatin1());
message.append(report.getDateTime().date().toString().toLatin1());
message.append('\0');
message.append(QString::number(report.getAddress()).toLatin1());
message.append(report.getDateTime().time().toString().toLatin1());
message.append('\0');
message.append(QString("%1").arg(report.getAddress(), 7, 10, QChar('0')).toLatin1());
message.append('\0');
message.append(QString::number(report.getFunctionBits()).toLatin1());
message.append('\0');
Expand Down

0 comments on commit 3be8815

Please sign in to comment.