Skip to content

Commit

Permalink
attempting to find where this callsign being set
Browse files Browse the repository at this point in the history
  • Loading branch information
dbehnke committed Oct 11, 2022
1 parent 464c0bb commit 7c56edb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions USRP2YSF/USRP2YSF.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -505,10 +505,10 @@ int CUSRP2YSF::run()
ysfPayload.writeVDMode2Data(m_ysfFrame + 35U, dch);
break;
case 1:
ysfPayload.writeVDMode2Data(m_ysfFrame + 35U, (unsigned char*)m_callsign.c_str());
ysfPayload.writeVDMode2Data(m_ysfFrame + 35U, (unsigned char*)m_usrpcs.c_str());
break;
case 2:
ysfPayload.writeVDMode2Data(m_ysfFrame + 35U, (unsigned char*)m_callsign.c_str());
ysfPayload.writeVDMode2Data(m_ysfFrame + 35U, (unsigned char*)m_usrpcs.c_str());
break;
case 5:
memset(dch, ' ', YSF_CALLSIGN_LENGTH/2);
Expand Down

0 comments on commit 7c56edb

Please sign in to comment.