mirror of
https://github.com/ShaYmez/MMDVM_CM.git
synced 2024-11-15 20:51:49 -05:00
Add text data start byte and length to USRP header frame
This commit is contained in:
parent
83e663b3f0
commit
67b110c85f
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user