Lines Matching full:values

168  * @brief Type used for defining duty cycle values for a sequence
174 * @brief Structure for defining duty cycle values for a sequence
183 * @brief Structure for defining duty cycle values for a sequence
195 * @brief Structure for defining duty cycle values for a sequence
206 * @brief Union grouping pointers to arrays of duty cycle values applicable to
214 … uint16_t const * p_raw; ///< Pointer providing raw access to the values.
221 * provided duty cycle values are not copied. The @p values pointer is stored
222 * in the peripheral's internal register, and the values are loaded from RAM
223 * during the sequence playback. Therefore, you must ensure that the values
225 * the values cannot be placed in a local variable that is allocated on stack).
226 * If the sequence is played in a loop and the values should be updated
231 * @note The @p repeats and @p end_delay values (which are written to the
239 …nrf_pwm_values_t values; ///< Pointer to an array with duty cycle values. This array must be in Da… member
242 * cycle values in various loading modes
248 uint16_t length; ///< Number of 16-bit values in the array pointed by @p values.
254 * @brief Helper macro for calculating the number of 16-bit values in specified
255 * array of duty cycle values.
476 * @brief Function for modifying the pointer to the duty cycle values
481 * @param[in] p_values Pointer to an array with duty cycle values.
488 * @brief Function for modifying the total number of duty cycle values
493 * @param[in] length Number of duty cycle values.
695 nrf_pwm_seq_ptr_set( p_reg, seq_id, p_seq->values.p_raw); in nrf_pwm_sequence_set()