Home
last modified time | relevance | path

Searched refs:dutyValue (Results 1 – 4 of 4) sorted by relevance

/hal_ti-latest/simplelink/source/ti/drivers/pwm/
DPWMTimerCC32XX.c83 int_fast16_t PWMTimerCC32XX_setDuty(PWM_Handle handle, uint32_t dutyValue);
85 int_fast16_t PWMTimerCC32XX_setDutyAndPeriod(PWM_Handle handle, uint32_t dutyValue, uint32_t period…
171 static uint32_t getDutyCounts(PWM_Duty_Units dutyUnits, uint32_t dutyValue, in getDutyCounts() argument
181 duty = dutyValue; in getDutyCounts()
185 duty = (((uint64_t) dutyValue) * ((uint64_t) periodCounts)) / in getDutyCounts()
190 duty = (dutyValue != 0) ? (dutyValue * (freq.lo/1000000)) - 1 : 0; in getDutyCounts()
480 if (initHw(handle, params->periodValue, params->dutyValue) != in PWMTimerCC32XX_open()
498 (uintptr_t) handle, params->periodValue, params->dutyValue); in PWMTimerCC32XX_open()
507 int_fast16_t PWMTimerCC32XX_setDuty(PWM_Handle handle, uint32_t dutyValue) in PWMTimerCC32XX_setDuty() argument
523 duty = getDutyCounts(object->dutyUnits, dutyValue, period); in PWMTimerCC32XX_setDuty()
[all …]
/hal_ti-latest/simplelink/source/ti/drivers/
DPWM.c51 .dutyValue = 0, /* 0% duty cycle */
DPWM.h337 uint32_t dutyValue; /*!< PWM initial duty */ member
/hal_ti-latest/simplelink/source/ti/drivers/apps/
DLED.c180 pwmParams.dutyValue = 0; in LED_open()