The Packet TX example illustrates how to do simple packet transmission using the TI-RTOS RF driver. This example is meant to be used with the Packet RX example or SmartRF Studio. For every packet transmitted, Board_LED1 is toggled. The frequency and other RF settings can be modified using SmartRF Studio.
Board_LED1
- Toggled when data is transmitted over the RF interface
Please refer to the development board's specific "Settings and Resources" section in the Getting Started Guide (http://www.ti.com/lit/SPRUHU7C). For convenience, a short summary is also shown below.
| Development Boards | Notes |
| ================== | =================================================== |
| CC1310DK | Board_LED1 is the "LED1" LED |
| ------------------ | --------------------------------------------------- |
| CC1310_LAUNCHXL | Board_LED1 is the "Green" LED |
| ------------------ | --------------------------------------------------- |
Run the example. On another board, run the Packet RX example. Board_LED1 is toggled when data is transmitted.
This examples consists of a single task and the exported SmartRF Studio radio settings.
The default frequency is 868.0 MHz. In order to change frequency, modify the smartrf_settings file. This can be done using the code export feature in Smart RF Studio, or directly in the file.
The default frequency is 868.0 MHz, in order to change RF settings please modify the smartrf_settings.c file. This can be done either by exporting from Smart RF Studio or directly in the file.
When the task is executed it:
- Configures the radio for Proprietary mode
- Gets access to the radio via the RF drivers RF_open
- Sets up the radio using CMD_PROP_RADIO_DIV_SETUP command
- Set the output power to 14 dBm (requires that CCFG_FORCE_VDDR_HH = 1 in ccfg.c)
- Sets the frequency using CMD_FS command
- Create packet (with increasing sequence number and random content)
- Set absolute TX time to utilize automatic power management
- Transmit packet using CMD_PROP_TX command with blocking RF driver call
- Toggle Board_LED1 to indicate packet transmitted
- Transmit packets forever by repeating step 6-9
Note for IAR users: When using the CC1310DK, the TI XDS110v3 USB Emulator must be selected. For the CC1310_LAUNCHXL, select TI XDS110 Emulator. In both cases, select the cJTAG interface.
- For GNU and IAR users, please read the following website for details about enabling semi-hosting in order to view console output.