Home
last modified time | relevance | path

Searched refs:numWords (Results 1 – 5 of 5) sorted by relevance

/hal_ti-latest/simplelink_lpf3/source/ti/drivers/rcl/wrappers/
DRCL_AdcNoise.c70 typedef void (*applicationCallback_t)(uint32_t* buffer, uint32_t numWords, int_fast16_t status);
81 callback(adcCmd->output, adcCmd->numWords, RCL_STATUS_TO_WRAPPER_STATUS(cmd->status)); in adcNoiseCallback()
101 int_fast16_t RCL_AdcNoise_get_samples_blocking(uint32_t* buffer, uint32_t numWords) in RCL_AdcNoise_get_samples_blocking() argument
120 adcNoiseCmd->numWords = numWords; in RCL_AdcNoise_get_samples_blocking()
149 int_fast16_t RCL_AdcNoise_get_samples_callback(uint32_t* buffer, uint32_t numWords, applicationCall… in RCL_AdcNoise_get_samples_callback() argument
168 adcNoiseCmd->numWords = numWords; in RCL_AdcNoise_get_samples_callback()
/hal_ti-latest/simplelink_lpf3/source/ti/drivers/rcl/
DLRF.c352 uint32_t numWords; in LRF_applySettings() local
372 numWords = 0; in LRF_applySettings()
392 numWords = 0; in LRF_applySettings()
404 numWords = regionLength / 2; in LRF_applySettings()
412 numWords = regionLength; in LRF_applySettings()
425 numWords = regionLength; in LRF_applySettings()
431 if (numWords > segmentLength) in LRF_applySettings()
436 if ((int32_t)numWords > bufferAvailWords) in LRF_applySettings()
438 numWords = bufferAvailWords; in LRF_applySettings()
441 if (numWords > 0) in LRF_applySettings()
[all …]
/hal_ti-latest/simplelink_lpf3/source/ti/drivers/rcl/handlers/
Dadc_noise.c73 static void RCL_Handler_Adc_Noise_configureS2R(uint32_t numWords);
93 if ((adcCmd->numWords == 0) || (adcCmd->numWords > RCL_ADC_NOISE_MAX_NUM_WORDS)) in RCL_Handler_ADC_Noise_getNoise()
135 RCL_Handler_Adc_Noise_configureS2R(adcCmd->numWords); in RCL_Handler_ADC_Noise_getNoise()
137 …SE, "RFE powered up. Configured S2R for %d words, buffer: 0x%x", adcCmd->numWords, adcCmd->output); in RCL_Handler_ADC_Noise_getNoise()
160 … memcpy(adcCmd->output, ADC_NOISE_SAMPLE_PTR, adcCmd->numWords * sizeof(uint32_t)); in RCL_Handler_ADC_Noise_getNoise()
162 memset(ADC_NOISE_SAMPLE_PTR, 0, adcCmd->numWords * sizeof(uint32_t)); in RCL_Handler_ADC_Noise_getNoise()
202 …us = RCL_Scheduler_setNewStartAbsTime(RCL_Scheduler_getCurrentTime() + adcCmd->numWords / 3, true); in RCL_Handler_ADC_Noise_getNoise()
226 static void RCL_Handler_Adc_Noise_configureS2R(uint32_t numWords) in RCL_Handler_Adc_Noise_configureS2R() argument
242 HWREG_WRITE_LRF(LRFDS2R_BASE + LRFDS2R_O_STOP) = ADC_NOISE_SAMPLE_MEM_S2R_START + numWords - 1; in RCL_Handler_Adc_Noise_configureS2R()
Dgeneric.c1332 … uint32_t numWords = RCL_Buffer_DataEntry_paddedLen(fifoWord & 0xFFFF) / sizeof(uint32_t); in RCL_Handler_Nesb_Ptx() local
1333 if (numWords > 0) in RCL_Handler_Nesb_Ptx()
1337 numWords * sizeof(uint32_t)); in RCL_Handler_Nesb_Ptx()
1357 LRF_readRxFifoWords(buffer32, numWords); in RCL_Handler_Nesb_Ptx()
1358 RCL_MultiBuffer_commitBytes(curBuffer, numWords * sizeof(uint32_t)); in RCL_Handler_Nesb_Ptx()
1683 … uint32_t numWords = RCL_Buffer_DataEntry_paddedLen(fifoWord & 0xFFFF) / sizeof(uint32_t); in RCL_Handler_Nesb_Prx() local
1684 if (numWords > 0) in RCL_Handler_Nesb_Prx()
1690 numWords * 4); in RCL_Handler_Nesb_Prx()
1708 LRF_readRxFifoWords(buffer32, numWords); in RCL_Handler_Nesb_Prx()
1709 RCL_MultiBuffer_commitBytes(curBuffer, numWords * sizeof(uint32_t)); in RCL_Handler_Nesb_Prx()
[all …]
/hal_ti-latest/simplelink_lpf3/source/ti/drivers/rcl/commands/
Dadc_noise.h75 uint32_t numWords; /*!< Number of ADC sample words to collect. Range [1..1024] */ member
87 .numWords = RCL_ADC_NOISE_MAX_NUM_WORDS, \