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 am using MSP430F67751A and CC2520 RF radio for my project. MSP430F67751A and CC2520 are connected over SPI. when checked for the SPI clock frequency it shows 1MHz.
Below is the current configuration:
UCA0CTLW0 |= UCMST | UCSYNC | UCCKPL | UCMSB;
UCA0CTLW0 |= UCSSEL_2;
UCA0BRW_L = 0x03;
UCA0BRW_H = 0;
UCA0MCTLW = 0;
How can i increase the SPI clock. Please share some example codes if any, to achieve SPI clock 8MHz using the above configuration.
Hi Farooq
For UCSSEL_2 is to use SMCLK as clock source for the SPI so you can configure the SMCLK to 8MHz and configure UCA0BRW_L to 0 that divider is 1. For how to configure the SMCLK to 8MHz you can refer to this demo code https://dev.ti.com/tirex/explore/node?fullTextSearch=Static%20Ip%20&fullTextSearchPage=1&node=AKCtn8fYC.JGqYHddqoqbQ__IOGqZri__LATEST
**Attention** This is a public forum