Hi,
I want to transmit continuous wave using cc1101 with a msp430f5528.Is it possible,is there any pin to do this ?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi,
I want to transmit continuous wave using cc1101 with a msp430f5528.Is it possible,is there any pin to do this ?
Here is some code that I use all the time to achieve unmodulated TX on CC1101/CC2500 series devices.
void set_tx_unmodulated_test_mode(void)
{
unsigned char reg_access;
reg_access = 0x32;
trx8BitRegAccess(RADIO_WRITE_ACCESS, PKTCTRL0, ®_access, 1);
reg_access = 0x33;
trx8BitRegAccess(RADIO_WRITE_ACCESS, MDMCFG2, ®_access, 1);
trxSpiCmdStrobe(RF_STX); // Change state to TX, initiating
}
Hi
Thanku for solution.I have one more question
Do i need to give a randam packet to cc1101 to transmit or cc1101 will generate its own random packet ?
Hi
thank you now my device is transmitting continuously but I am not able to see the packets but when I kept my smart RF studio in continuous reception mode I can able to see the change in RSSi value.But if I put my smart rf studio in packet RX mode I cant able to see the packets.is still any changes needed in firmware side.