Lines Matching full:source

5  * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright notice, this
156 …LOCK_TASK_HFCLKSTART = offsetof(NRF_CLOCK_Type, TASKS_HFCLKSTART), /**< Start HFCLK clock source.*/
157 …CLOCK_TASK_HFCLKSTOP = offsetof(NRF_CLOCK_Type, TASKS_HFCLKSTOP), /**< Stop HFCLK clock source.*/
158 …LOCK_TASK_LFCLKSTART = offsetof(NRF_CLOCK_Type, TASKS_LFCLKSTART), /**< Start LFCLK clock source.*/
159 …CLOCK_TASK_LFCLKSTOP = offsetof(NRF_CLOCK_Type, TASKS_LFCLKSTOP), /**< Stop LFCLK clock source.*/
249 * @brief Function for changing the low-frequency clock source.
252 * @param[in] source New low-frequency clock source.
254 __STATIC_INLINE void nrf_clock_lf_src_set(nrf_clock_lfclk_t source);
257 * @brief Function for retrieving the selected source for the low-frequency clock.
260 * is the selected source for the low-frequency clock.
262 * is the selected source for the low-frequency clock.
264 * the HFCLK is the selected source for the low-frequency clock.
269 * @brief Function for retrieving the active source of the low-frequency clock.
272 * is the active source of the low-frequency clock.
274 * is the active source of the low-frequency clock.
276 * the HFCLK is the active source of the low-frequency clock.
281 * @brief Function for retrieving the clock source for the LFCLK clock when
310 * @brief Function for retrieving the active source of the high-frequency clock.
313 * source of the high-frequency clock.
315 * source of the high-frequency clock.
322 * @param[in] clk_src Clock source to be checked.
431 __STATIC_INLINE void nrf_clock_lf_src_set(nrf_clock_lfclk_t source) in nrf_clock_lf_src_set() argument
433 NRF_CLOCK->LFCLKSRC = (uint32_t)(source); in nrf_clock_lf_src_set()