Thread 中讨论的其他器件: SysConfig
在 SDK 5.30中 CC2651R3的 SysConfig 文件中、可将 TX 功率设置为7dBm。 是?μ A
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.
您好!
我建议设置一个位于数据表范围内的 TX 功率。
对于 CC2651R3、最高 TX 功率为5dBm (数据表)。
谢谢、
Toby
这是 CC2651R3"ti_radio_config.c"的代码、该代码由 SysConfig 1.10基于 SDK5.30生成
// 2400 MHz, 5 dBm RF_TxPowerTable_Entry txPowerTable_2400_pa5[TXPOWERTABLE_2400_PA5_SIZE] = { {-20, RF_TxPowerTable_DEFAULT_PA_ENTRY(8, 3, 0, 2) }, {-18, RF_TxPowerTable_DEFAULT_PA_ENTRY(10, 3, 0, 3) }, {-15, RF_TxPowerTable_DEFAULT_PA_ENTRY(13, 3, 0, 3) }, {-12, RF_TxPowerTable_DEFAULT_PA_ENTRY(15, 3, 0, 5) }, {-10, RF_TxPowerTable_DEFAULT_PA_ENTRY(17, 3, 0, 5) }, {-9, RF_TxPowerTable_DEFAULT_PA_ENTRY(19, 3, 0, 6) }, {-6, RF_TxPowerTable_DEFAULT_PA_ENTRY(18, 2, 0, 9) }, {-5, RF_TxPowerTable_DEFAULT_PA_ENTRY(19, 2, 0, 11) }, {-3, RF_TxPowerTable_DEFAULT_PA_ENTRY(23, 2, 0, 11) }, {0, RF_TxPowerTable_DEFAULT_PA_ENTRY(25, 1, 0, 19) }, {1, RF_TxPowerTable_DEFAULT_PA_ENTRY(28, 1, 0, 22) }, {2, RF_TxPowerTable_DEFAULT_PA_ENTRY(31, 1, 0, 25) }, {3, RF_TxPowerTable_DEFAULT_PA_ENTRY(36, 1, 0, 29) }, {4, RF_TxPowerTable_DEFAULT_PA_ENTRY(23, 0, 0, 29) }, {5, RF_TxPowerTable_DEFAULT_PA_ENTRY(31, 0, 0, 56) }, {6, RF_TxPowerTable_DEFAULT_PA_ENTRY(43, 0, 0, 61) }, // The original PA value (6.5 dBm) has been rounded to an integer value. {7, RF_TxPowerTable_DEFAULT_PA_ENTRY(63, 0, 0, 0) }, RF_TxPowerTable_TERMINATION_ENTRY };
这是 CC2651R3"ti_radio_config.c"的代码、该代码由基于 SDK5.20的 SysConfig 1.10生成
// 2400 MHz, 5 dBm RF_TxPowerTable_Entry txPowerTable_2400_pa5[TXPOWERTABLE_2400_PA5_SIZE] = { {-20, RF_TxPowerTable_DEFAULT_PA_ENTRY(6, 3, 0, 2) }, {-18, RF_TxPowerTable_DEFAULT_PA_ENTRY(8, 3, 0, 3) }, {-15, RF_TxPowerTable_DEFAULT_PA_ENTRY(10, 3, 0, 3) }, {-12, RF_TxPowerTable_DEFAULT_PA_ENTRY(12, 3, 0, 5) }, {-10, RF_TxPowerTable_DEFAULT_PA_ENTRY(15, 3, 0, 5) }, {-9, RF_TxPowerTable_DEFAULT_PA_ENTRY(16, 3, 0, 5) }, {-6, RF_TxPowerTable_DEFAULT_PA_ENTRY(20, 3, 0, 8) }, {-5, RF_TxPowerTable_DEFAULT_PA_ENTRY(22, 3, 0, 9) }, {-3, RF_TxPowerTable_DEFAULT_PA_ENTRY(19, 2, 0, 12) }, {0, RF_TxPowerTable_DEFAULT_PA_ENTRY(19, 1, 0, 20) }, {1, RF_TxPowerTable_DEFAULT_PA_ENTRY(22, 1, 0, 20) }, {2, RF_TxPowerTable_DEFAULT_PA_ENTRY(25, 1, 0, 25) }, {3, RF_TxPowerTable_DEFAULT_PA_ENTRY(29, 1, 0, 28) }, {4, RF_TxPowerTable_DEFAULT_PA_ENTRY(35, 1, 0, 39) }, {5, RF_TxPowerTable_DEFAULT_PA_ENTRY(23, 0, 0, 57) }, RF_TxPowerTable_TERMINATION_ENTRY };