Home
last modified time | relevance | path

Searched refs:cmd (Results 1 – 25 of 41) sorted by relevance

12

/hal_ti-2.7.6/simplelink/source/ti/devices/cc13x2_cc26x2/driverlib/
Drf_mailbox.h300 #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/
DNVSSPI25X.c169 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/
DSDSPI.c73 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/
DADC.h282 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,
DCapture.c62 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()
DCamera.c76 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()
DCapture.h276 uint_fast16_t cmd, void *arg);
382 extern int_fast16_t Capture_control(Capture_Handle handle, uint_fast16_t cmd,
DADC.c65 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()
DSPI.c72 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()
DWatchdog.c75 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()
DWatchdog.h327 uint_fast16_t cmd,
457 uint_fast16_t cmd,
DI2C.c76 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()
DTimer.c55 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()
DTimer.h328 uint_fast16_t cmd, void *arg);
458 extern int_fast16_t Timer_control(Timer_Handle handle, uint_fast16_t cmd,
DI2C.h626 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,
DCamera.h448 uint_fast16_t cmd,
563 extern int_fast16_t Camera_control(Camera_Handle handle, uint_fast16_t cmd,
DSD.h234 uint_fast16_t cmd, void *arg);
377 extern int_fast16_t SD_control(SD_Handle handle, uint_fast16_t cmd, void *arg);
DSD.c61 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()
DSPI.h678 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,
DNVS.c65 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()
DPWM.c69 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()
DPWM.h358 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,
DUART.c79 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()
DNVS.h514 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/
DWatchdogCC32XX.c53 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()

12