Lines Matching full:setup
47 * APP: setup PPI connection from IPC_RECEIVE to RTC CAPTURE, enable interrupt
49 * NET: setup RTC CC for arbitrary offset from now, setup PPI from RTC_COMPARE to IPC_SEND
58 * NET: setup PPI from IPC_RECEIVE to RTC CAPTURE
69 /* Setup or clear connection from IPC_RECEIVE to RTC_CAPTURE
72 * @param setup If true connection is setup, else it is cleared.
74 static void ppi_ipc_to_rtc(union rtc_sync_channels channels, bool setup) in ppi_ipc_to_rtc() argument
79 if (setup) { in ppi_ipc_to_rtc()
88 /* Setup or clear connection from RTC_COMPARE to IPC_SEND
91 * @param setup If true connection is setup, else it is cleared.
93 static void ppi_rtc_to_ipc(union rtc_sync_channels channels, bool setup) in ppi_rtc_to_ipc() argument
98 if (setup) { in ppi_rtc_to_ipc()
170 /* Setup new connection from RTC to IPC and set RTC to a new in remote_callback()
225 /* Setup RTC synchronization. */
272 LOG_ERR("Failed synchronized RTC setup (err: %d)", rv); in sync_rtc_setup()