2018-06-11 16:38:35 +00:00
/*
* Copyright ( c ) 2018 , Texas Instruments Incorporated - http : //www.ti.com/
* All rights reserved .
*
* Redistribution and use in source and binary forms , with or without
* modification , are permitted provided that the following conditions
* are met :
* 1. Redistributions of source code must retain the above copyright
* notice , this list of conditions and the following disclaimer .
* 2. Redistributions in binary form must reproduce the above copyright
* notice , this list of conditions and the following disclaimer in the
* documentation and / or other materials provided with the distribution .
* 3. Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission .
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* ` ` AS IS ' ' AND ANY EXPRESS OR IMPLIED WARRANTIES , INCLUDING , BUT NOT
* LIMITED TO , THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED . IN NO EVENT SHALL THE
* COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT , INDIRECT ,
* INCIDENTAL , SPECIAL , EXEMPLARY , OR CONSEQUENTIAL DAMAGES
* ( INCLUDING , BUT NOT LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES ; LOSS OF USE , DATA , OR PROFITS ; OR BUSINESS INTERRUPTION )
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY , WHETHER IN CONTRACT ,
* STRICT LIABILITY , OR TORT ( INCLUDING NEGLIGENCE OR OTHERWISE )
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE , EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE .
*/
/*---------------------------------------------------------------------------*/
2018-05-30 10:21:54 +00:00
// Parameter summary
// IEEE Channel: 11
// Frequency: 2405 MHz
// SFD: 0
// Packet Data: 255
// Preamble (32 bit): 01010101...
// For Default PA:
// TX Power: 5 dBm (requires define CCFG_FORCE_VDDR_HH = 0 in ccfg.c, see CC13xx/CC26xx Technical Reference Manual)
// Enable high output power PA: false
// For High PA:
// TX Power: 20 dBm (requires define CCFG_FORCE_VDDR_HH = 0 in ccfg.c, see CC13xx/CC26xx Technical Reference Manual)
// Enable high output power PA: true
2018-06-11 16:38:35 +00:00
/*---------------------------------------------------------------------------*/
2018-06-07 08:29:47 +00:00
# include "sys/cc.h"
2018-06-11 16:38:35 +00:00
/*---------------------------------------------------------------------------*/
2018-05-30 10:21:54 +00:00
# include <ti/devices/DeviceFamily.h>
# include DeviceFamily_constructPath(driverlib/rf_mailbox.h)
# include DeviceFamily_constructPath(driverlib/rf_common_cmd.h)
# include DeviceFamily_constructPath(driverlib/rf_ieee_cmd.h)
# include DeviceFamily_constructPath(rf_patches/rf_patch_cpe_ieee_802_15_4.h)
# include DeviceFamily_constructPath(rf_patches/rf_patch_mce_ieee_802_15_4.h)
# include <ti/drivers/rf/RF.h>
2018-06-11 16:38:35 +00:00
/*---------------------------------------------------------------------------*/
2018-05-30 10:21:54 +00:00
# include "ieee-settings.h"
2018-06-11 16:38:35 +00:00
/*---------------------------------------------------------------------------*/
2018-05-30 10:21:54 +00:00
// TI-RTOS RF Mode Object
2018-06-11 16:38:35 +00:00
RF_Mode rf_ieee_mode =
2018-05-30 10:21:54 +00:00
{
. rfMode = RF_MODE_AUTO ,
. cpePatchFxn = & rf_patch_cpe_ieee_802_15_4 ,
. mcePatchFxn = & rf_patch_mce_ieee_802_15_4 ,
. rfePatchFxn = 0 ,
} ;
2018-06-11 16:38:35 +00:00
/*---------------------------------------------------------------------------*/
2018-05-30 10:21:54 +00:00
// TX Power table
// The RF_TxPowerTable_DEFAULT_PA_ENTRY macro is defined in RF.h and requires the following arguments:
// RF_TxPowerTable_DEFAULT_PA_ENTRY(bias, gain, boost coefficient)
// See the Technical Reference Manual for further details about the "txPower" Command field.
// The PA settings require the CCFG_FORCE_VDDR_HH = 0 unless stated otherwise.
2018-06-11 16:38:35 +00:00
RF_TxPowerTable_Entry rf_ieee_tx_power_table_default_pa [ RF_IEEE_TX_POWER_TABLE_DEFAULT_PA_SIZE + 1 ] =
2018-05-30 10:21:54 +00:00
{
{ - 21 , RF_TxPowerTable_DEFAULT_PA_ENTRY ( 7 , 3 , 0 , 3 ) } ,
{ - 18 , RF_TxPowerTable_DEFAULT_PA_ENTRY ( 9 , 3 , 0 , 3 ) } ,
{ - 15 , RF_TxPowerTable_DEFAULT_PA_ENTRY ( 8 , 2 , 0 , 6 ) } ,
{ - 12 , RF_TxPowerTable_DEFAULT_PA_ENTRY ( 10 , 2 , 0 , 8 ) } ,
{ - 10 , RF_TxPowerTable_DEFAULT_PA_ENTRY ( 12 , 2 , 0 , 11 ) } ,
{ - 9 , RF_TxPowerTable_DEFAULT_PA_ENTRY ( 13 , 2 , 0 , 5 ) } ,
{ - 6 , RF_TxPowerTable_DEFAULT_PA_ENTRY ( 13 , 1 , 0 , 16 ) } ,
{ - 5 , RF_TxPowerTable_DEFAULT_PA_ENTRY ( 14 , 1 , 0 , 17 ) } ,
{ - 3 , RF_TxPowerTable_DEFAULT_PA_ENTRY ( 17 , 1 , 0 , 20 ) } ,
{ 0 , RF_TxPowerTable_DEFAULT_PA_ENTRY ( 25 , 1 , 0 , 26 ) } ,
{ 1 , RF_TxPowerTable_DEFAULT_PA_ENTRY ( 28 , 1 , 0 , 28 ) } ,
{ 2 , RF_TxPowerTable_DEFAULT_PA_ENTRY ( 13 , 0 , 0 , 34 ) } ,
{ 3 , RF_TxPowerTable_DEFAULT_PA_ENTRY ( 17 , 0 , 0 , 42 ) } ,
{ 4 , RF_TxPowerTable_DEFAULT_PA_ENTRY ( 22 , 0 , 0 , 54 ) } ,
{ 5 , RF_TxPowerTable_DEFAULT_PA_ENTRY ( 30 , 0 , 0 , 74 ) } ,
RF_TxPowerTable_TERMINATION_ENTRY
} ;
2018-06-11 16:38:35 +00:00
/*---------------------------------------------------------------------------*/
2018-05-30 10:21:54 +00:00
// TX Power table
// The RF_TxPowerTable_HIGH_PA_ENTRY macro is defined in RF.h and requires the following arguments:
// RF_TxPowerTable_HIGH_PA_ENTRY(bias, ibboost, boost, coefficient, ldoTrim)
// See the Technical Reference Manual for further details about the "txPower" Command field.
// The PA settings require the CCFG_FORCE_VDDR_HH = 0 unless stated otherwise.
2018-06-11 16:38:35 +00:00
RF_TxPowerTable_Entry rf_ieee_tx_power_table_high_pa [ RF_IEEE_TX_POWER_TABLE_HIGH_PA_SIZE + 1 ] =
2018-05-30 10:21:54 +00:00
{
{ 0 , RF_TxPowerTable_HIGH_PA_ENTRY ( 29 , 0 , 1 , 17 , 1 ) } ,
{ 3 , RF_TxPowerTable_HIGH_PA_ENTRY ( 39 , 0 , 1 , 20 , 1 ) } ,
{ 6 , RF_TxPowerTable_HIGH_PA_ENTRY ( 46 , 0 , 1 , 26 , 7 ) } ,
{ 9 , RF_TxPowerTable_HIGH_PA_ENTRY ( 40 , 0 , 1 , 39 , 41 ) } ,
{ 10 , RF_TxPowerTable_HIGH_PA_ENTRY ( 23 , 2 , 1 , 65 , 5 ) } ,
{ 11 , RF_TxPowerTable_HIGH_PA_ENTRY ( 24 , 2 , 1 , 29 , 7 ) } ,
{ 12 , RF_TxPowerTable_HIGH_PA_ENTRY ( 19 , 2 , 1 , 16 , 25 ) } ,
{ 13 , RF_TxPowerTable_HIGH_PA_ENTRY ( 27 , 2 , 1 , 19 , 13 ) } ,
{ 14 , RF_TxPowerTable_HIGH_PA_ENTRY ( 24 , 2 , 1 , 19 , 27 ) } ,
{ 15 , RF_TxPowerTable_HIGH_PA_ENTRY ( 23 , 2 , 1 , 20 , 39 ) } ,
{ 16 , RF_TxPowerTable_HIGH_PA_ENTRY ( 34 , 2 , 1 , 26 , 23 ) } ,
{ 17 , RF_TxPowerTable_HIGH_PA_ENTRY ( 38 , 2 , 1 , 33 , 25 ) } ,
{ 18 , RF_TxPowerTable_HIGH_PA_ENTRY ( 30 , 2 , 1 , 37 , 53 ) } ,
{ 19 , RF_TxPowerTable_HIGH_PA_ENTRY ( 36 , 2 , 1 , 57 , 59 ) } ,
{ 20 , RF_TxPowerTable_HIGH_PA_ENTRY ( 56 , 2 , 1 , 45 , 63 ) } ,
RF_TxPowerTable_TERMINATION_ENTRY
} ;
2018-06-11 16:38:35 +00:00
/*---------------------------------------------------------------------------*/
2018-05-30 10:21:54 +00:00
// Overrides for CMD_RADIO_SETUP
2018-06-11 16:38:35 +00:00
uint32_t rf_ieee_overrides_default_pa [ ] CC_ALIGN ( 4 ) =
2018-05-30 10:21:54 +00:00
{
// override_ieee_802_15_4.xml
MCE_RFE_OVERRIDE ( 1 , 0 , 0 , 0 , 1 , 0 ) , // PHY: Use MCE RAM patch, RFE ROM bank 1
( uint32_t ) 0x02400403 , // Synth: Use 48 MHz crystal, enable extra PLL filtering
( uint32_t ) 0x001C8473 , // Synth: Configure extra PLL filtering
( uint32_t ) 0x00088433 , // Synth: Configure synth hardware
( uint32_t ) 0x00038793 , // Synth: Set minimum RTRIM to 3
HW32_ARRAY_OVERRIDE ( 0x4004 , 1 ) , // Synth: Configure faster calibration
( uint32_t ) 0x1C0C0618 , // Synth: Configure faster calibration
( uint32_t ) 0xC00401A1 , // Synth: Configure faster calibration
( uint32_t ) 0x00010101 , // Synth: Configure faster calibration
( uint32_t ) 0xC0040141 , // Synth: Configure faster calibration
( uint32_t ) 0x00214AD3 , // Synth: Configure faster calibration
( uint32_t ) 0x02980243 , // Synth: Decrease synth programming time-out (0x0298 RAT ticks = 166 us)
( uint32_t ) 0xFCFC08C3 , // DC/DC regulator: In Tx, use DCDCCTL5[3:0]=0xC (DITHER_EN=1 and IPEAK=4). In Rx, use DCDCCTL5[3:0]=0xC (DITHER_EN=1 and IPEAK=4).
( uint32_t ) 0x000F8883 , // Rx: Set LNA bias current offset to +15 to saturate trim to max (default: 0)
( uint32_t ) 0xFFFFFFFF ,
} ;
2018-06-11 16:38:35 +00:00
/*---------------------------------------------------------------------------*/
2018-05-30 10:21:54 +00:00
// Overrides for CMD_RADIO_SETUP
2018-06-11 16:38:35 +00:00
uint32_t rf_ieee_overrides_high_pa [ ] CC_ALIGN ( 4 ) =
2018-05-30 10:21:54 +00:00
{
// override_ieee_802_15_4.xml
MCE_RFE_OVERRIDE ( 1 , 0 , 0 , 0 , 1 , 0 ) , // PHY: Use MCE RAM patch, RFE ROM bank 1
( uint32_t ) 0x02400403 , // Synth: Use 48 MHz crystal, enable extra PLL filtering
( uint32_t ) 0x001C8473 , // Synth: Configure extra PLL filtering
( uint32_t ) 0x00088433 , // Synth: Configure synth hardware
( uint32_t ) 0x00038793 , // Synth: Set minimum RTRIM to 3
HW32_ARRAY_OVERRIDE ( 0x4004 , 1 ) , // Synth: Configure faster calibration
( uint32_t ) 0x1C0C0618 , // Synth: Configure faster calibration
( uint32_t ) 0xC00401A1 , // Synth: Configure faster calibration
( uint32_t ) 0x00010101 , // Synth: Configure faster calibration
( uint32_t ) 0xC0040141 , // Synth: Configure faster calibration
( uint32_t ) 0x00214AD3 , // Synth: Configure faster calibration
( uint32_t ) 0x02980243 , // Synth: Decrease synth programming time-out (0x0298 RAT ticks = 166 us)
( uint32_t ) 0xFCFC08C3 , // DC/DC regulator: In Tx, use DCDCCTL5[3:0]=0xC (DITHER_EN=1 and IPEAK=4). In Rx, use DCDCCTL5[3:0]=0xC (DITHER_EN=1 and IPEAK=4).
( uint32_t ) 0x000F8883 , // Rx: Set LNA bias current offset to +15 to saturate trim to max (default: 0)
// override_frontend_xd.xml
// TX power override
( uint32_t ) 0xFD6EE02B , // txHighPA=0x3F5BB8
( uint32_t ) 0xFFFFFFFF ,
} ;
2018-06-11 16:38:35 +00:00
/*---------------------------------------------------------------------------*/
2018-05-30 10:21:54 +00:00
// CMD_RADIO_SETUP
// Radio Setup Command for Pre-Defined Schemes
2018-06-11 16:38:35 +00:00
rfc_CMD_RADIO_SETUP_t rf_cmd_ieee_radio_setup =
2018-05-30 10:21:54 +00:00
{
2018-06-11 16:38:35 +00:00
. commandNo = CMD_RADIO_SETUP ,
. status = IDLE ,
. pNextOp = 0 ,
2018-05-30 10:21:54 +00:00
. startTime = 0x00000000 ,
2018-06-11 16:38:35 +00:00
. startTrigger . triggerType = TRIG_NOW ,
2018-05-30 10:21:54 +00:00
. startTrigger . bEnaCmd = 0x0 ,
. startTrigger . triggerNo = 0x0 ,
. startTrigger . pastTrig = 0x0 ,
2018-06-11 16:38:35 +00:00
. condition . rule = COND_NEVER ,
2018-05-30 10:21:54 +00:00
. condition . nSkip = 0x0 ,
. mode = 0x01 ,
. loDivider = 0x00 ,
. config . frontEndMode = 0x0 ,
. config . biasMode = 0x1 ,
. config . analogCfgMode = 0x0 ,
. config . bNoFsPowerUp = 0x0 ,
2018-06-11 16:38:35 +00:00
. txPower = 0x941E , /* 5 dBm default */
. pRegOverride = rf_ieee_overrides_default_pa ,
2018-05-30 10:21:54 +00:00
} ;
2018-06-11 16:38:35 +00:00
/*---------------------------------------------------------------------------*/
2018-05-30 10:21:54 +00:00
// CMD_FS
// Frequency Synthesizer Programming Command
2018-06-11 16:38:35 +00:00
rfc_CMD_FS_t rf_cmd_ieee_fs =
2018-05-30 10:21:54 +00:00
{
2018-06-11 16:38:35 +00:00
. commandNo = CMD_FS ,
. status = IDLE ,
. pNextOp = 0 ,
2018-05-30 10:21:54 +00:00
. startTime = 0x00000000 ,
2018-06-11 16:38:35 +00:00
. startTrigger . triggerType = TRIG_NOW ,
2018-05-30 10:21:54 +00:00
. startTrigger . bEnaCmd = 0x0 ,
. startTrigger . triggerNo = 0x0 ,
. startTrigger . pastTrig = 0x0 ,
2018-06-11 16:38:35 +00:00
. condition . rule = COND_NEVER ,
2018-05-30 10:21:54 +00:00
. condition . nSkip = 0x0 ,
2018-06-11 16:38:35 +00:00
. frequency = 0x0965 , /* set by driver */
. fractFreq = 0x0000 , /* set by driver */
2018-05-30 10:21:54 +00:00
. synthConf . bTxMode = 0x1 ,
. synthConf . refFreq = 0x0 ,
. __dummy0 = 0x00 ,
. __dummy1 = 0x00 ,
. __dummy2 = 0x00 ,
. __dummy3 = 0x0000 ,
} ;
2018-06-11 16:38:35 +00:00
/*---------------------------------------------------------------------------*/
2018-05-30 10:21:54 +00:00
// CMD_IEEE_TX
// IEEE 802.15.4 Transmit Command
2018-06-11 16:38:35 +00:00
rfc_CMD_IEEE_TX_t rf_cmd_ieee_tx =
2018-05-30 10:21:54 +00:00
{
2018-06-11 16:38:35 +00:00
. commandNo = CMD_IEEE_TX ,
. status = IDLE ,
. pNextOp = 0 ,
2018-05-30 10:21:54 +00:00
. startTime = 0x00000000 ,
2018-06-11 16:38:35 +00:00
. startTrigger . triggerType = TRIG_NOW ,
2018-05-30 10:21:54 +00:00
. startTrigger . bEnaCmd = 0x0 ,
. startTrigger . triggerNo = 0x0 ,
. startTrigger . pastTrig = 0x0 ,
2018-06-11 16:38:35 +00:00
. condition . rule = COND_NEVER ,
2018-05-30 10:21:54 +00:00
. condition . nSkip = 0x0 ,
. txOpt . bIncludePhyHdr = 0x0 ,
. txOpt . bIncludeCrc = 0x0 ,
. txOpt . payloadLenMsb = 0x0 ,
2018-06-11 16:38:35 +00:00
. payloadLen = 0x0 , /* set by driver */
. pPayload = 0 , /* set by driver */
2018-05-30 10:21:54 +00:00
. timeStamp = 0x00000000 ,
} ;
2018-06-11 16:38:35 +00:00
/*---------------------------------------------------------------------------*/
2018-05-30 10:21:54 +00:00
// CMD_IEEE_RX
// IEEE 802.15.4 Receive Command
2018-06-11 16:38:35 +00:00
rfc_CMD_IEEE_RX_t rf_cmd_ieee_rx =
2018-05-30 10:21:54 +00:00
{
2018-06-11 16:38:35 +00:00
. commandNo = CMD_IEEE_RX ,
. status = IDLE ,
. pNextOp = 0 ,
2018-05-30 10:21:54 +00:00
. startTime = 0x00000000 ,
2018-06-11 16:38:35 +00:00
. startTrigger . triggerType = TRIG_NOW ,
2018-05-30 10:21:54 +00:00
. startTrigger . bEnaCmd = 0x0 ,
. startTrigger . triggerNo = 0x0 ,
. startTrigger . pastTrig = 0x0 ,
2018-06-11 16:38:35 +00:00
. condition . rule = COND_NEVER ,
2018-05-30 10:21:54 +00:00
. condition . nSkip = 0x0 ,
2018-06-11 16:38:35 +00:00
. channel = 0x00 , /* set by driver */
. rxConfig . bAutoFlushCrc = 0x1 ,
2018-05-30 10:21:54 +00:00
. rxConfig . bAutoFlushIgn = 0x0 ,
. rxConfig . bIncludePhyHdr = 0x0 ,
2018-06-11 16:38:35 +00:00
. rxConfig . bIncludeCrc = 0x1 ,
2018-05-30 10:21:54 +00:00
. rxConfig . bAppendRssi = 0x1 ,
. rxConfig . bAppendCorrCrc = 0x1 ,
. rxConfig . bAppendSrcInd = 0x0 ,
2018-06-11 16:38:35 +00:00
. rxConfig . bAppendTimestamp = 0x1 ,
. pRxQ = 0 , /* set by driver */
. pOutput = 0 , /* set by driver */
. frameFiltOpt . frameFiltEn = 0x0 , /* set by driver */
. frameFiltOpt . frameFiltStop = 0x1 ,
. frameFiltOpt . autoAckEn = 0x0 , /* set by driver */
2018-05-30 10:21:54 +00:00
. frameFiltOpt . slottedAckEn = 0x0 ,
. frameFiltOpt . autoPendEn = 0x0 ,
. frameFiltOpt . defaultPend = 0x0 ,
. frameFiltOpt . bPendDataReqOnly = 0x0 ,
. frameFiltOpt . bPanCoord = 0x0 ,
2018-06-11 16:38:35 +00:00
. frameFiltOpt . maxFrameVersion = 0x2 ,
2018-05-30 10:21:54 +00:00
. frameFiltOpt . fcfReservedMask = 0x0 ,
. frameFiltOpt . modifyFtFilter = 0x0 ,
. frameFiltOpt . bStrictLenFilter = 0x0 ,
. frameTypes . bAcceptFt0Beacon = 0x1 ,
. frameTypes . bAcceptFt1Data = 0x1 ,
. frameTypes . bAcceptFt2Ack = 0x1 ,
. frameTypes . bAcceptFt3MacCmd = 0x1 ,
. frameTypes . bAcceptFt4Reserved = 0x1 ,
. frameTypes . bAcceptFt5Reserved = 0x1 ,
. frameTypes . bAcceptFt6Reserved = 0x1 ,
. frameTypes . bAcceptFt7Reserved = 0x1 ,
2018-06-11 16:38:35 +00:00
. ccaOpt . ccaEnEnergy = 0x1 ,
. ccaOpt . ccaEnCorr = 0x1 ,
. ccaOpt . ccaEnSync = 0x1 ,
2018-05-30 10:21:54 +00:00
. ccaOpt . ccaCorrOp = 0x1 ,
2018-06-11 16:38:35 +00:00
. ccaOpt . ccaSyncOp = 0x0 ,
. ccaOpt . ccaCorrThr = 0x3 ,
. ccaRssiThr = 0x0 , /* set by driver */
2018-05-30 10:21:54 +00:00
. __dummy0 = 0x00 ,
. numExtEntries = 0x00 ,
. numShortEntries = 0x00 ,
2018-06-11 16:38:35 +00:00
. pExtEntryList = 0 ,
. pShortEntryList = 0 ,
. localExtAddr = 0x0 , /* set by driver */
. localShortAddr = 0x0 , /* set by driver */
2018-05-30 10:21:54 +00:00
. localPanID = 0x0000 ,
. __dummy1 = 0x000000 ,
2018-06-11 16:38:35 +00:00
. endTrigger . triggerType = TRIG_NEVER ,
2018-05-30 10:21:54 +00:00
. endTrigger . bEnaCmd = 0x0 ,
. endTrigger . triggerNo = 0x0 ,
. endTrigger . pastTrig = 0x0 ,
. endTime = 0x00000000 ,
} ;
2018-06-11 16:38:35 +00:00
/*---------------------------------------------------------------------------*/