| /hal_ti-latest/simplelink_lpf3/source/ti/drivers/rcl/ |
| D | RCL_Event.h | 38 #define RCL_EventNone ((RCL_Events){ .value = (0 << 0)}) /*!< No events */ 39 #define RCL_EventCmdStarted ((RCL_Events){ .value = (1 << 0)}) /*!< Command handler ha… 40 #define RCL_EventLastCmdDone ((RCL_Events){ .value = (1 << 1)}) /*!< The RCL is finishe… 41 #define RCL_EventRxEntryAvail ((RCL_Events){ .value = (1 << 2)}) /*!< An RX entry has be… 42 #define RCL_EventRxBufferFinished ((RCL_Events){ .value = (1 << 3)}) /*!< An RX multi-buffer… 43 #define RCL_EventTxBufferFinished ((RCL_Events){ .value = (1 << 4)}) /*!< A TX buffer is fin… 44 #define RCL_EventSoftwareTriggered ((RCL_Events){ .value = (1 << 5)}) /*!< Handler is trigger… 45 #define RCL_EventTimerStart ((RCL_Events){ .value = (1 << 6)}) /*!< Timer-based start … 46 #define RCL_EventDescheduleStop ((RCL_Events){ .value = (1 << 7)}) /*!< Deschedule-type st… 47 #define RCL_EventGracefulStop ((RCL_Events){ .value = (1 << 8)}) /*!< Timer-based gracef… [all …]
|
| D | LRFCC23X0.h | 91 #define LRF_EventNone ((LRF_Events){ .value = (0U << 0U)}) /*!< No events */ 92 #define LRF_EventOpDone ((LRF_Events){ .value = (1U << 0U)}) /*!< The PBE operatio… 93 #define LRF_EventPingRsp ((LRF_Events){ .value = (1U << 1U)}) /*!< When receiving a… 94 #define LRF_EventRxCtrl ((LRF_Events){ .value = (1U << 2U)}) /*!< Frame filtering … 95 #define LRF_EventRxCtrlAck ((LRF_Events){ .value = (1U << 3U)}) /*!< LL control packe… 96 #define LRF_EventRxNok ((LRF_Events){ .value = (1U << 4U)}) /*!< Packet received … 97 #define LRF_EventRxIgnored ((LRF_Events){ .value = (1U << 5U)}) /*!< Packet received,… 98 #define LRF_EventRxEmpty ((LRF_Events){ .value = (1U << 6U)}) /*!< Empty packet rec… 99 #define LRF_EventRxBufFull ((LRF_Events){ .value = (1U << 7U)}) /*!< Packet received … 100 #define LRF_EventRxOk ((LRF_Events){ .value = (1U << 8U)}) /*!< Packet received … [all …]
|
| D | RCL.c | 120 LRF_Events lrfEvents = {.value = hal_get_command_ifg_reg()}; in rclCommandHwi() 145 …e, Log_DEBUG, "Command input events RCL: 0x%08X; LRF: 0x%08X", rclEventsIn.value, lrfEvents.value); in rclCommandHwi() 222 Log_printf(RclCore, Log_DEBUG, "RCL out: 0x%08X", rclEventsOut.value); in rclCommandHwi() 273 client->deferredRclEvents.value |= rclEventMask.value & rclEventsOut.value; in rclCommandHwi() 276 if (cmd->status >= RCL_CommandStatus_Finished || client->deferredRclEvents.value) in rclCommandHwi() 309 LRF_Events lrfEvents = { .value = hal_get_dispatch_ifg_reg() }; in rclDispatchHwi() 339 …RCL_Events rclEvents = { .value = currClient->deferredRclEvents.value & currCmd->runtime.rclCallba… in rclDispatchHwi() 340 …_Events stopEvents = { .value = currClient->deferredRclEvents.value & ((RCL_Events){.stopDelayed … in rclDispatchHwi() 347 if (stopEvents.value) { in rclDispatchHwi() 367 if (callback && rejectedEvents.value & nextCmd->runtime.rclCallbackMask.value) in rclDispatchHwi() [all …]
|
| D | LRFCC23X0.c | 57 static uint32_t countLeadingZeros(uint16_t value); 72 static void LRF_writeFifoPtr(uint32_t value, uintptr_t regAddr); 73 static void LRF_writeFifoPtrs(uint32_t value, uintptr_t regAddr0, uintptr_t regAddr1); 768 static void LRF_writeFifoPtr(uint32_t value, uintptr_t regAddr) in LRF_writeFifoPtr() argument 779 HWREG_WRITE_LRF(regAddr) = value; in LRF_writeFifoPtr() 789 static void LRF_writeFifoPtrs(uint32_t value, uintptr_t regAddr0, uintptr_t regAddr1) in LRF_writeFifoPtrs() argument 800 HWREG_WRITE_LRF(regAddr0) = value; in LRF_writeFifoPtrs() 801 HWREG_WRITE_LRF(regAddr1) = value; in LRF_writeFifoPtrs() 960 static uint32_t countLeadingZeros(uint16_t value) in countLeadingZeros() argument 963 if (value >= 0x0100) { in countLeadingZeros() [all …]
|
| /hal_ti-latest/simplelink_lpf3/source/ti/devices/cc23x0r5/cmsis/core/ |
| D | cmsis_iccarm.h | 589 __IAR_FT uint32_t __STREXW(uint32_t value, uint32_t volatile *ptr) in __STREXW() argument 591 return __STREX(value, (unsigned long *)ptr); in __STREXW() 599 __IAR_FT uint32_t __RRX(uint32_t value) in __RRX() argument 602 __ASM volatile("RRX %0, %1" : "=r"(result) : "r" (value)); in __RRX() 606 __IAR_FT void __set_BASEPRI_MAX(uint32_t value) in __set_BASEPRI_MAX() argument 608 __asm volatile("MSR BASEPRI_MAX,%0"::"r" (value)); in __set_BASEPRI_MAX() 639 __IAR_FT void __set_MSPLIM(uint32_t value) in __set_MSPLIM() argument 644 (void)value; in __set_MSPLIM() 646 __asm volatile("MSR MSPLIM,%0" :: "r" (value)); in __set_MSPLIM() 663 __IAR_FT void __set_PSPLIM(uint32_t value) in __set_PSPLIM() argument [all …]
|
| D | cmsis_gcc.h | 967 __STATIC_FORCEINLINE uint32_t __REV(uint32_t value) in __REV() argument 970 return __builtin_bswap32(value); in __REV() 974 __ASM ("rev %0, %1" : __CMSIS_GCC_OUT_REG (result) : __CMSIS_GCC_USE_REG (value) ); in __REV() 986 __STATIC_FORCEINLINE uint32_t __REV16(uint32_t value) in __REV16() argument 990 __ASM ("rev16 %0, %1" : __CMSIS_GCC_OUT_REG (result) : __CMSIS_GCC_USE_REG (value) ); in __REV16() 1001 __STATIC_FORCEINLINE int16_t __REVSH(int16_t value) in __REVSH() argument 1004 return (int16_t)__builtin_bswap16(value); in __REVSH() 1008 __ASM ("revsh %0, %1" : __CMSIS_GCC_OUT_REG (result) : __CMSIS_GCC_USE_REG (value) ); in __REVSH() 1039 #define __BKPT(value) __ASM volatile ("bkpt "#value) argument 1048 __STATIC_FORCEINLINE uint32_t __RBIT(uint32_t value) in __RBIT() argument [all …]
|
| /hal_ti-latest/simplelink_lpf3/source/ti/boards/cc23x0r5/ |
| D | rcl_settings_ble.c | 289 …{ .power = { .fraction = 0, .dBm = -20 }, .tempCoeff = 0, .value = { .reserved = 0, .ib = 18, .gai… 290 …{ .power = { .fraction = 0, .dBm = -16 }, .tempCoeff = 0, .value = { .reserved = 0, .ib = 20, .gai… 291 …{ .power = { .fraction = 0, .dBm = -12 }, .tempCoeff = 5, .value = { .reserved = 0, .ib = 17, .gai… 292 …{ .power = { .fraction = 0, .dBm = -8 }, .tempCoeff = 12, .value = { .reserved = 0, .ib = 17, .gai… 293 …{ .power = { .fraction = 0, .dBm = -4 }, .tempCoeff = 25, .value = { .reserved = 0, .ib = 17, .gai… 294 …{ .power = { .fraction = 0, .dBm = 0 }, .tempCoeff = 40, .value = { .reserved = 0, .ib = 19, .gain… 295 …{ .power = { .fraction = 0, .dBm = 1 }, .tempCoeff = 65, .value = { .reserved = 0, .ib = 30, .gain… 296 …{ .power = { .fraction = 0, .dBm = 2 }, .tempCoeff = 41, .value = { .reserved = 0, .ib = 39, .gain… 297 …{ .power = { .fraction = 0, .dBm = 3 }, .tempCoeff = 43, .value = { .reserved = 0, .ib = 31, .gain… 298 …{ .power = { .fraction = 0, .dBm = 4 }, .tempCoeff = 50, .value = { .reserved = 0, .ib = 37, .gain… [all …]
|
| /hal_ti-latest/simplelink/source/ti/devices/cc13x2x7_cc26x2x7/driverlib/ |
| D | rf_mailbox.h | 279 #define ADI_VAL_MASK(addr, mask, value) \ argument 280 (((addr) & 1) ? (((mask) & 0x0F) | (((value) & 0x0F) << 4)) : \ 281 ((((mask) & 0x0F) << 4) | ((value) & 0x0F))) 352 #define ADI_ADDR_VAL(addr, value) ((((addr) & 0x7F) << 8) | ((value) & 0xFF)) argument 353 #define ADI_ADDR_VAL_MASK(addr, mask, value) ((((addr) & 0x7F) << 8) | ADI_VAL_MASK(addr, mask, val… argument 356 #define LOWORD(value) ((value) & 0xFFFF) argument 358 #define HIWORD(value) ((value) >> 16) argument
|
| D | gpio.h | 222 GPIO_writeDio( uint32_t dioNumber, uint32_t value ) in GPIO_writeDio() argument 226 ASSERT(( value == 0 ) || ( value == 1 )); in GPIO_writeDio() 229 HWREGB( GPIO_BASE + dioNumber ) = value; in GPIO_writeDio()
|
| /hal_ti-latest/simplelink/source/ti/devices/cc13x2_cc26x2/driverlib/ |
| D | rf_mailbox.h | 279 #define ADI_VAL_MASK(addr, mask, value) \ argument 280 (((addr) & 1) ? (((mask) & 0x0F) | (((value) & 0x0F) << 4)) : \ 281 ((((mask) & 0x0F) << 4) | ((value) & 0x0F))) 352 #define ADI_ADDR_VAL(addr, value) ((((addr) & 0x7F) << 8) | ((value) & 0xFF)) argument 353 #define ADI_ADDR_VAL_MASK(addr, mask, value) ((((addr) & 0x7F) << 8) | ADI_VAL_MASK(addr, mask, val… argument 356 #define LOWORD(value) ((value) & 0xFFFF) argument 358 #define HIWORD(value) ((value) >> 16) argument
|
| D | gpio.h | 225 GPIO_writeDio( uint32_t dioNumber, uint32_t value ) 229 ASSERT(( value == 0 ) || ( value == 1 )); 232 HWREGB( GPIO_BASE + dioNumber ) = value;
|
| /hal_ti-latest/simplelink/source/ti/net/ |
| D | slnetutils.c | 77 static int32_t SlNetUtil_UTOA(uint16_t value, char * string, uint16_t base); 914 static int32_t SlNetUtil_UTOA(uint16_t value, char * string, uint16_t base) in SlNetUtil_UTOA() argument 928 if (0 == value) in SlNetUtil_UTOA() 936 for (; (value && (Index > 0)); Index--, value /= base) in SlNetUtil_UTOA() 938 *ptempString = "0123456789abcdef"[value % base]; in SlNetUtil_UTOA() 942 if (0 != value) in SlNetUtil_UTOA() 1236 uint16_t value = 0; in SlNetUtil_str2BinIpV6() local 1264 value = (value << 4) | (*pLocalStr - '0'); in SlNetUtil_str2BinIpV6() 1274 value = (value << 4) | ((*pLocalStr - 'a') + 10); in SlNetUtil_str2BinIpV6() 1284 value = (value << 4) | ((*pLocalStr - 'A') + 10); in SlNetUtil_str2BinIpV6() [all …]
|
| /hal_ti-latest/simplelink/source/ti/drivers/gpio/ |
| D | GPIOCC32XX.c | 511 unsigned int value; in GPIO_read() local 519 value = MAP_GPIOPinRead(getPortBase(config->port), config->pin); in GPIO_read() 522 getPort(config->port), config->pin, value); in GPIO_read() 524 value = (value & config->pin) ? 1 : 0; in GPIO_read() 526 return (value); in GPIO_read() 709 uint32_t value; in GPIO_toggle() local 719 value = MAP_GPIOPinRead(getPortBase(config->port), config->pin); in GPIO_toggle() 720 value ^= (uint32_t)config->pin; in GPIO_toggle() 721 MAP_GPIOPinWrite(getPortBase(config->port), config->pin, value); in GPIO_toggle() 735 void GPIO_write(uint_least8_t index, unsigned int value) in GPIO_write() argument [all …]
|
| /hal_ti-latest/simplelink_lpf3/source/ti/drivers/rcl/handlers/ |
| D | generic.c | 139 RCL_Events rclEvents = {.value = 0}; in RCL_Handler_Generic_Fs() 169 LRF_enableHwInterrupt(LRF_EventOpDone.value | LRF_EventOpError.value); in RCL_Handler_Generic_Fs() 229 RCL_Events rclEvents = {.value = 0}; in RCL_Handler_Generic_FsOff() 250 LRF_enableHwInterrupt(LRF_EventOpDone.value | LRF_EventOpError.value); in RCL_Handler_Generic_FsOff() 290 RCL_Events rclEvents = {.value = 0}; in RCL_Handler_Generic_Tx() 374 LRF_enableHwInterrupt(LRF_EventOpDone.value | LRF_EventOpError.value); in RCL_Handler_Generic_Tx() 435 RCL_Events rclEvents = {.value = 0}; in RCL_Handler_Generic_TxRepeat() 673 LRF_enableHwInterrupt(LRF_EventOpDone.value | LRF_EventOpError.value); in RCL_Handler_Generic_TxRepeat() 697 RCL_Events rclEvents = {.value = 0}; in RCL_Handler_Generic_TxTest() 808 LRF_enableHwInterrupt(LRF_EventOpDone.value | LRF_EventOpError.value); in RCL_Handler_Generic_TxTest() [all …]
|
| D | ble5.c | 445 RCL_Events rclEvents = {.value = 0}; in RCL_Handler_BLE5_adv() 1018 …eHwInterrupt(RCL_Handler_BLE5_maskEventsByFifoConf(LRF_EventOpDone.value | LRF_EventOpError.value | in RCL_Handler_BLE5_adv() 1019 … LRF_EventRxOk.value | LRF_EventRxIgnored.value | in RCL_Handler_BLE5_adv() 1020 … LRF_EventRxNok.value | LRF_EventRxBufFull.value, in RCL_Handler_BLE5_adv() 1025 LRF_enableHwInterrupt(LRF_EventOpDone.value | LRF_EventOpError.value); in RCL_Handler_BLE5_adv() 1373 …eHwInterrupt(RCL_Handler_BLE5_maskEventsByFifoConf(LRF_EventOpDone.value | LRF_EventOpError.value | in RCL_Handler_BLE5_adv() 1374 … LRF_EventRxOk.value | LRF_EventRxIgnored.value | in RCL_Handler_BLE5_adv() 1375 … LRF_EventRxNok.value | LRF_EventRxBufFull.value, in RCL_Handler_BLE5_adv() 1380 LRF_enableHwInterrupt(LRF_EventOpDone.value | LRF_EventOpError.value); in RCL_Handler_BLE5_adv() 1436 RCL_Events rclEvents = {.value = 0}; in RCL_Handler_BLE5_aux_adv() [all …]
|
| D | ieee.c | 166 RCL_Events rclEvents = {.value = 0}; in RCL_Handler_Ieee_RxTx() 451 …eHwInterrupt(RCL_Handler_Ieee_maskEventsByFifoConf(LRF_EventOpDone.value | LRF_EventOpError.value | in RCL_Handler_Ieee_RxTx() 452 … LRF_EventRxOk.value | LRF_EventRxNok.value | in RCL_Handler_Ieee_RxTx() 453 … LRF_EventRxIgnored.value | LRF_EventRxBufFull.value | in RCL_Handler_Ieee_RxTx() 454 … (ieeeHandlerState.common.activeUpdate ? LRF_EventTxAck.value : 0), in RCL_Handler_Ieee_RxTx() 477 LRF_clearHwInterrupt(LRF_EventRfesoft0.value); in RCL_Handler_Ieee_RxTx() 715 LRF_disableHwInterrupt(LRF_EventRfesoft0.value); in RCL_Handler_Ieee_RxTx() 738 LRF_enableHwInterrupt(LRF_EventRfesoft0.value); in RCL_Handler_Ieee_RxTx() 756 LRF_disableHwInterrupt(LRF_EventRfesoft0.value); in RCL_Handler_Ieee_RxTx() 841 LRF_disableHwInterrupt(LRF_EventRxEmpty.value); in RCL_Handler_Ieee_RxTx() [all …]
|
| D | ble_cs.c | 630 RCL_Events events = {.value = 0}; in RCL_Handler_BLE_CS_preFillTxBuffer() 809 RCL_Events events = {.value = 0}; in RCL_Handler_BLE_CS_readWriteBuffer() 876 RCL_Events events = {.value = 0}; in RCL_Handler_BLE_CS_readS2RSamples() 1773 RCL_Events rclEvents = {.value = 0}; in RCL_Handler_BLE_CS() 1813 | LRF_EventOpDone.value in RCL_Handler_BLE_CS() 1814 | LRF_EventOpError.value in RCL_Handler_BLE_CS() 1815 | LRF_EventMdmsoft0.value in RCL_Handler_BLE_CS() 1816 | LRF_EventRxfifo.value; in RCL_Handler_BLE_CS() 1862 rclEvents.value |= RCL_Handler_BLE_CS_readWriteBuffer(pCmd, true).value; in RCL_Handler_BLE_CS() 1869 rclEvents.value |= RCL_Handler_BLE_CS_readWriteBuffer(pCmd, false).value; in RCL_Handler_BLE_CS() [all …]
|
| /hal_ti-latest/simplelink/source/ti/drivers/watchdog/ |
| D | WatchdogCC32XX.c | 57 uint32_t value); 234 int_fast16_t WatchdogCC32XX_setReload(Watchdog_Handle handle, uint32_t value) in WatchdogCC32XX_setReload() argument 241 MAP_WatchdogReloadSet(hwAttrs->baseAddr, value); in WatchdogCC32XX_setReload() 243 object->reloadValue = value; in WatchdogCC32XX_setReload()
|
| /hal_ti-latest/simplelink_lpf3/source/ti/devices/cc23x0r5/driverlib/ |
| D | gpio.h | 194 __STATIC_INLINE void GPIOWriteDio(uint32_t dioNumber, uint32_t value) in GPIOWriteDio() argument 198 ASSERT((value == 0) || (value == 1)); in GPIOWriteDio() 201 HWREGB( GPIO_BASE + GPIO_O_DOUT3_0 + dioNumber ) = value; in GPIOWriteDio()
|
| /hal_ti-latest/simplelink_lpf3/source/ti/drivers/cryptoutils/utils/ |
| D | CryptoUtils.c | 358 int16_t value = 0; in CryptoUtils_convertLimitValueToInt() local 362 value = 1; in CryptoUtils_convertLimitValueToInt() 365 return value; in CryptoUtils_convertLimitValueToInt() 424 static uint16_t CryptoUtils_valueNonZeroTimingConstantCheck(int16_t value) in CryptoUtils_valueNonZeroTimingConstantCheck() argument 430 valueNonZero = (((uint16_t)value & 0xFF00u) >> 8u) | ((uint8_t)value & 0xFFu); in CryptoUtils_valueNonZeroTimingConstantCheck()
|
| /hal_ti-latest/simplelink/source/ti/drivers/ |
| D | ADC.h | 290 typedef int_fast16_t (*ADC_ConvertFxn) (ADC_Handle handle, uint16_t *value); 409 extern int_fast16_t ADC_convert(ADC_Handle handle, uint16_t *value);
|
| D | ADC.c | 73 int_fast16_t ADC_convert(ADC_Handle handle, uint16_t *value) in ADC_convert() argument 75 return (handle->fxnTablePtr->convertFxn(handle, value)); in ADC_convert()
|
| /hal_ti-latest/simplelink/source/ti/drivers/adc/ |
| D | ADCCC32XX.c | 71 int_fast16_t ADCCC32XX_convert(ADC_Handle handle, uint16_t *value); 141 int_fast16_t ADCCC32XX_convert(ADC_Handle handle, uint16_t *value) in ADCCC32XX_convert() argument 162 *value = ((adcSample >> 2) & 0x0FFF); in ADCCC32XX_convert()
|
| /hal_ti-latest/simplelink_lpf3/source/ti/drivers/rcl/wrappers/ |
| D | RCL_AdcNoise.c | 177 adcNoiseCmd->common.runtime.rclCallbackMask.value = RCL_EventLastCmdDone.value; in RCL_AdcNoise_get_samples_callback()
|
| /hal_ti-latest/simplelink/source/ti/drivers/net/wifi/ |
| D | trace.h | 197 …efine _SL_DBG_SYNC_LOG(index,value) {if(index < SL_DBG_SYNC_LOG_SIZE){*(_u32 *)&g_DbgCnt.SyncLog… argument 201 #define _SL_DBG_SYNC_LOG(index,value)
|