1 /* 2 * Copyright (c) 2018-2020 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <zephyr/types.h> 8 #include <zephyr/ztest.h> 9 #include <soc.h> 10 11 #include "hal/debug.h" 12 13 /* Clock setup timeouts are unlikely, below values are experimental */ 14 #define LFCLOCK_TIMEOUT_MS 500 15 #define HFCLOCK_TIMEOUT_MS 2 16 lll_clock_init(void)17int lll_clock_init(void) 18 { 19 return 0; 20 } 21 lll_clock_wait(void)22int lll_clock_wait(void) 23 { 24 return 0; 25 } 26 lll_hfclock_on(void)27int lll_hfclock_on(void) 28 { 29 return 0; 30 } 31 lll_hfclock_on_wait(void)32int lll_hfclock_on_wait(void) 33 { 34 return 0; 35 } 36 lll_hfclock_off(void)37int lll_hfclock_off(void) 38 { 39 return 0; 40 } 41 lll_clock_sca_local_get(void)42uint8_t lll_clock_sca_local_get(void) 43 { 44 return 0; 45 } 46 lll_clock_ppm_local_get(void)47uint32_t lll_clock_ppm_local_get(void) 48 { 49 return 0; 50 } 51 lll_clock_ppm_get(uint8_t sca)52uint32_t lll_clock_ppm_get(uint8_t sca) 53 { 54 ARG_UNUSED(sca); 55 return 0; 56 } 57