/hal_ti-2.7.6/simplelink/source/ti/devices/cc13x2_cc26x2/driverlib/ |
D | rf_mailbox.h | 300 #define SW_REG_OVERRIDE(cmd, field, val) (3 | ((_POSITION_##cmd##_##field) << 4) | ((uint32_t)(val)… argument 302 #define SW_REG_IND_OVERRIDE(cmd, field, offset, val) (3 | \ argument 303 (((_POSITION_##cmd##_##field) + ((offset) << 1)) << 4) | ((uint32_t)(val) << 16)) 305 #define SW_REG_BYTE_OVERRIDE(cmd, field, val) (0x8003 | ((_POSITION_##cmd##_##field) << 4) | \ argument 308 #define SW_REG_2BYTE_OVERRIDE(cmd, field, val0, val1) (3 | (((_POSITION_##cmd##_##field) & 0xFFFE) … argument 310 #define SW_REG_MASK_OVERRIDE(cmd, field, offset, mask, val) (0x8003 | \ argument 311 ((_POSITION_##cmd##_##field + (offset)) << 4) | (((uint32_t)(val) & 0xFF) << 16) | (((uint32_t)(mas… 321 #define SW_ARRAY_OVERRIDE(cmd, firstfield, length) (1 | (((_POSITION_##cmd##_##firstfield)) << 2) |… argument
|
/hal_ti-2.7.6/simplelink/source/ti/drivers/nvs/ |
D | NVSSPI25X.c | 169 int_fast16_t NVSSPI25X_control(NVS_Handle handle, uint_fast16_t cmd, uintptr_t arg) in NVSSPI25X_control() argument 174 if (cmd != NVSSPI25X_CMD_MASS_ERASE) return (NVS_STATUS_UNDEFINEDCMD); in NVSSPI25X_control() 737 uint8_t cmd; in extFlashPowerDown() local 740 cmd = SPIFLASH_DP; in extFlashPowerDown() 742 status = extFlashSpiWrite(&cmd,sizeof(cmd)); in extFlashPowerDown() 754 uint8_t cmd; in extFlashPowerStandby() local 757 cmd = SPIFLASH_RDP; in extFlashPowerStandby() 759 status = extFlashSpiWrite(&cmd, sizeof(cmd)); in extFlashPowerStandby() 775 uint8_t cmd; in extFlashMassErase() local 783 cmd = SPIFLASH_MASS_ERASE; in extFlashMassErase() [all …]
|
/hal_ti-2.7.6/simplelink/source/ti/drivers/sd/ |
D | SDSPI.c | 73 int_fast16_t SDSPI_control(SD_Handle handle, uint_fast16_t cmd, 88 static uint8_t sendCmd(SPI_Handle handle, uint8_t cmd, uint32_t arg); 132 int_fast16_t SDSPI_control(SD_Handle handle, uint_fast16_t cmd, void *arg) in SDSPI_control() argument 645 static uint8_t sendCmd(SPI_Handle handle, uint8_t cmd, uint32_t arg) in sendCmd() argument 652 if ((cmd != CMD0) && !waitUntilReady(handle)) { in sendCmd() 657 txBuf[0] = cmd; /* Command */ in sendCmd() 663 if (cmd == CMD0) { in sendCmd() 667 else if (cmd == CMD8) { in sendCmd() 687 if ((cmd == CMD12) && in sendCmd()
|
/hal_ti-2.7.6/simplelink/source/ti/drivers/ |
D | ADC.h | 282 typedef int_fast16_t (*ADC_ControlFxn) (ADC_Handle handle, uint_fast16_t cmd, 389 extern int_fast16_t ADC_control(ADC_Handle handle, uint_fast16_t cmd,
|
D | Capture.c | 62 int_fast16_t Capture_control(Capture_Handle handle, uint_fast16_t cmd, in Capture_control() argument 65 return (handle->fxnTablePtr->controlFxn(handle, cmd, arg)); in Capture_control()
|
D | Camera.c | 76 int_fast16_t Camera_control(Camera_Handle handle, uint_fast16_t cmd, void *arg) in Camera_control() argument 78 return (handle->fxnTablePtr->controlFxn(handle, cmd, arg)); in Camera_control()
|
D | Capture.h | 276 uint_fast16_t cmd, void *arg); 382 extern int_fast16_t Capture_control(Capture_Handle handle, uint_fast16_t cmd,
|
D | ADC.c | 65 int_fast16_t ADC_control(ADC_Handle handle, uint_fast16_t cmd, void *arg) in ADC_control() argument 67 return (((ADC_FxnTable *)handle->fxnTablePtr)->controlFxn(handle, cmd, arg)); in ADC_control()
|
D | SPI.c | 72 int_fast16_t SPI_control(SPI_Handle handle, uint_fast16_t cmd, void *controlArg) in SPI_control() argument 74 return (handle->fxnTablePtr->controlFxn(handle, cmd, controlArg)); in SPI_control()
|
D | Watchdog.c | 75 int_fast16_t Watchdog_control(Watchdog_Handle handle, uint_fast16_t cmd, in Watchdog_control() argument 78 return (handle->fxnTablePtr->watchdogControl(handle, cmd, arg)); in Watchdog_control()
|
D | Watchdog.h | 327 uint_fast16_t cmd, 457 uint_fast16_t cmd,
|
D | I2C.c | 76 int_fast16_t I2C_control(I2C_Handle handle, uint_fast16_t cmd, void *controlArg) in I2C_control() argument 78 return (handle->fxnTablePtr->controlFxn(handle, cmd, controlArg)); in I2C_control()
|
D | Timer.c | 55 int_fast16_t Timer_control(Timer_Handle handle, uint_fast16_t cmd, void *arg) in Timer_control() argument 57 return handle->fxnTablePtr->controlFxn(handle, cmd, arg); in Timer_control()
|
D | Timer.h | 328 uint_fast16_t cmd, void *arg); 458 extern int_fast16_t Timer_control(Timer_Handle handle, uint_fast16_t cmd,
|
D | I2C.h | 626 typedef int_fast16_t (*I2C_ControlFxn) (I2C_Handle handle, uint_fast16_t cmd, 754 extern int_fast16_t I2C_control(I2C_Handle handle, uint_fast16_t cmd,
|
D | Camera.h | 448 uint_fast16_t cmd, 563 extern int_fast16_t Camera_control(Camera_Handle handle, uint_fast16_t cmd,
|
D | SD.h | 234 uint_fast16_t cmd, void *arg); 377 extern int_fast16_t SD_control(SD_Handle handle, uint_fast16_t cmd, void *arg);
|
D | SD.c | 61 int_fast16_t SD_control(SD_Handle handle, uint_fast16_t cmd, void *arg) in SD_control() argument 63 return (handle->fxnTablePtr->controlFxn(handle, cmd, arg)); in SD_control()
|
D | SPI.h | 678 typedef int_fast16_t (*SPI_ControlFxn) (SPI_Handle handle, uint_fast16_t cmd, 801 extern int_fast16_t SPI_control(SPI_Handle handle, uint_fast16_t cmd,
|
D | NVS.c | 65 int_fast16_t NVS_control(NVS_Handle handle, uint_fast16_t cmd, uintptr_t arg) in NVS_control() argument 67 return (handle->fxnTablePtr->controlFxn(handle, cmd, arg)); in NVS_control()
|
D | PWM.c | 69 int_fast16_t PWM_control(PWM_Handle handle, uint_fast16_t cmd, void *arg) in PWM_control() argument 71 return handle->fxnTablePtr->controlFxn(handle, cmd, arg); in PWM_control()
|
D | PWM.h | 358 typedef int_fast16_t (*PWM_ControlFxn) (PWM_Handle handle, uint_fast16_t cmd, 480 extern int_fast16_t PWM_control(PWM_Handle handle, uint_fast16_t cmd,
|
D | UART.c | 79 int_fast16_t UART_control(UART_Handle handle, uint_fast16_t cmd, void *arg) in UART_control() argument 81 return (handle->fxnTablePtr->controlFxn(handle, cmd, arg)); in UART_control()
|
D | NVS.h | 514 typedef int_fast16_t (*NVS_ControlFxn) (NVS_Handle handle, uint_fast16_t cmd, 658 extern int_fast16_t NVS_control(NVS_Handle handle, uint_fast16_t cmd, uintptr_t arg);
|
/hal_ti-2.7.6/simplelink/source/ti/drivers/watchdog/ |
D | WatchdogCC32XX.c | 53 uint_fast16_t cmd, void *arg); 147 int_fast16_t WatchdogCC32XX_control(Watchdog_Handle handle, uint_fast16_t cmd, in WatchdogCC32XX_control() argument 152 switch (cmd) { in WatchdogCC32XX_control()
|