Searched refs:table (Results 1 – 8 of 8) sorted by relevance
| /hal_ti-latest/simplelink_lpf3/source/ti/drivers/rcl/ |
| D | LRF.c | 725 LRF_TxPowerTable_Entry LRF_TxPowerTable_findValue(const LRF_TxPowerTable *table, LRF_TxPowerTable_I… in LRF_TxPowerTable_findValue() argument 733 …else if (table != NULL && table->numEntries > 0 && powerLevel.rawValue <= LRF_TxPower_Use_Max.rawV… in LRF_TxPowerTable_findValue() 739 return table->powerTable[0]; in LRF_TxPowerTable_findValue() 745 return table->powerTable[table->numEntries - 1]; in LRF_TxPowerTable_findValue() 747 else if (table->powerTable[0].power.rawValue > powerLevel.rawValue) in LRF_TxPowerTable_findValue() 756 for (size_t i = 1; i < table->numEntries; i++) in LRF_TxPowerTable_findValue() 759 if (table->powerTable[i].power.rawValue > powerLevel.rawValue) in LRF_TxPowerTable_findValue() 762 return table->powerTable[i - 1]; in LRF_TxPowerTable_findValue() 765 if (table->powerTable[table->numEntries - 1].power.rawValue == powerLevel.rawValue) in LRF_TxPowerTable_findValue() 768 return table->powerTable[table->numEntries - 1]; in LRF_TxPowerTable_findValue()
|
| D | LRF.h | 291 LRF_TxPowerTable_Entry LRF_TxPowerTable_findValue(const LRF_TxPowerTable *table, LRF_TxPowerTable_I…
|
| /hal_ti-latest/simplelink_lpf3/source/ti/drivers/rcl/commands/ |
| D | ble_cs.h | 469 typedef void (*RCL_CmdBleCs_PrecalCallback)(RCL_CmdBleCs_PrecalTable *table, uint8_t channel, uint3… 499 void RCL_Handler_BLE_CS_PrecalDefaultCallback(RCL_CmdBleCs_PrecalTable *table, uint8_t channel, uin… 523 RCL_CmdBleCs_PrecalTable *table; member 531 .table = pTable \
|
| /hal_ti-latest/simplelink_lpf3/source/ti/drivers/rcl/handlers/ |
| D | ble_cs.c | 1954 …HWREGH_WRITE_LRF(LRFD_BUFRAM_BASE + PBE_BLE_CS_RAM_O_MODE) = ((pCmd->table->numEntries << PBE_BLE_… in RCL_Handler_BLE_CS_Precal() 1955 HWREG_WRITE_LRF(LRFDRFE_BASE + LRFDRFE_O_SPARE0) = pCmd->table->rxGain; in RCL_Handler_BLE_CS_Precal() 1957 for (uint8_t j=0; j<pCmd->table->numEntries; j++) in RCL_Handler_BLE_CS_Precal() 1960 HWREG_WRITE_LRF(LRFDTXF_BASE + LRFDTXF_O_TXD) = pCmd->table->entries[j].channel; in RCL_Handler_BLE_CS_Precal() 1974 for (uint8_t j=0; j<pCmd->table->numEntries; j++) in RCL_Handler_BLE_CS_Precal() 1978 pCmd->table->entries[j].hdc.i = ((data >> 0 ) & 0xFFFF); in RCL_Handler_BLE_CS_Precal() 1979 pCmd->table->entries[j].hdc.q = ((data >> 16) & 0xFFFF); in RCL_Handler_BLE_CS_Precal() 1982 pCmd->table->entries[j].ldc.i = ((data >> 0 ) & 0xFFFF); in RCL_Handler_BLE_CS_Precal() 1983 pCmd->table->entries[j].ldc.q = ((data >> 16) & 0xFFFF); in RCL_Handler_BLE_CS_Precal() 1987 pCmd->table->valid = 1; in RCL_Handler_BLE_CS_Precal() [all …]
|
| D | ieee.h | 87 …dAddr *newAddr, uint8_t framePending, RCL_CmdIeee_SourceMatchingTableShort *table, uint32_t index);
|
| /hal_ti-latest/simplelink_lpf3/source/ti/drivers/dma/ |
| D | dma.ld | 23 /* Device has 8 DMA channels => the alt. control table is at offset 0x80 */
|
| /hal_ti-latest/simplelink/source/ti/drivers/rf/ |
| D | RFCC26X2.h | 2546 extern int8_t RF_TxPowerTable_findPowerLevel(RF_TxPowerTable_Entry table[], RF_TxPowerTable_Value v… 2572 extern RF_TxPowerTable_Value RF_TxPowerTable_findValue(RF_TxPowerTable_Entry table[], int8_t powerL…
|
| D | RFCC26X2_multiMode.c | 5753 int8_t RF_TxPowerTable_findPowerLevel(RF_TxPowerTable_Entry table[], RF_TxPowerTable_Value value) in RF_TxPowerTable_findPowerLevel() argument 5757 for (i=0; (table[i].power != RF_TxPowerTable_INVALID_DBM) && in RF_TxPowerTable_findPowerLevel() 5758 (table[i].value.rawValue != RF_TxPowerTable_INVALID_VALUE); i++) in RF_TxPowerTable_findPowerLevel() 5760 if (((uint32_t)table[i].value.paType == (uint32_t)value.paType) && in RF_TxPowerTable_findPowerLevel() 5761 ((uint32_t)table[i].value.rawValue == (uint32_t)value.rawValue)) in RF_TxPowerTable_findPowerLevel() 5771 return(table[i].power); in RF_TxPowerTable_findPowerLevel() 5778 RF_TxPowerTable_Value RF_TxPowerTable_findValue(RF_TxPowerTable_Entry table[], int8_t powerLevel) in RF_TxPowerTable_findValue() argument 5787 return(table[0].value); in RF_TxPowerTable_findValue() 5793 for (i=0; ((int8_t)table[i].power != (int8_t)RF_TxPowerTable_INVALID_DBM) && in RF_TxPowerTable_findValue() 5794 … ((uint32_t)table[i].value.rawValue != (uint32_t)RF_TxPowerTable_INVALID_VALUE); i++) in RF_TxPowerTable_findValue() [all …]
|