Add text data start byte and length to USRP header frame

This commit is contained in:
Doug McLain 2021-04-09 14:32:45 -04:00
parent 83e663b3f0
commit 67b110c85f
1 changed files with 4 additions and 1 deletions

View File

@ -401,7 +401,10 @@ int CUSRP2M17::run()
memset(m_usrpFrame, 0, 352);
memcpy(m_usrpFrame, "USRP", 4);
memcpy(m_usrpFrame+4, &cnt, 4);
m_usrpFrame[20] = 2;
m_usrpFrame[20] = 0x02;
m_usrpFrame[32] = 0x08;
m_usrpFrame[33] = 13 + m_usrpcs.size();
memcpy(m_usrpFrame+46, m_usrpcs.c_str(), m_usrpcs.size());
m_usrpNetwork->writeData(m_usrpFrame, 352);