Other Parts Discussed in Thread: SYSCONFIG
Hello,
We would like a pair of LAUNCHXL-C1352P1(Rev.B) to run the rfEasyLinkTx and ~Rx sample codes with the RF frequency 1200MHz. Could you please advise?
My test history:
- CCSv920.
- The SDK: simplelink_cc13x2_26x2_sdk_3_30_00_03
- From the CCS, the following projects were successfully imported, built, and run. The red and green LEDs of both the EVM blinked synchronously. – Good as long as no-edits.
C:\ti\simplelink_cc13x2_26x2_sdk_3_30_00_03\examples\rtos\CC1352P1_LAUNCHXL\easylink\rfEasyLinkTx
C:\ti\simplelink_cc13x2_26x2_sdk_3_30_00_03\examples\rtos\CC1352P1_LAUNCHXL\easylink\rfEasyLinkRx
- Then a line was added to each the C source code, [rfEasyLinkTx.c and rfEasyLinkRx.c]:
EasyLink_setFrequency(1200000000);
- Rebuild and run. Although this time the LEDs of the RX side doesn’t blink. - NG
- The arguments are not [Hz] but [kHz], so I changed them to 1200000:
EasyLink_setFrequency(1200000);
- Rebuild and run. Although this time the LEDs of the RX side doesn’t blink. – NG again.
