1 #ifndef EVE_PLATFORM_H_INCLUDED 2 #define EVE_PLATFORM_H_INCLUDED 7 uint32_t EvePlatformInitEx(
const ble_enable_params_t *BleEnableParams,
const nrf_clock_lf_cfg_t *ClockConfig);
9 static inline uint32_t EvePlatformInit(
const ble_enable_params_t *BleEnableParams)
11 nrf_clock_lf_cfg_t NrfClockLfConfig = {
12 .source = NRF_CLOCK_LF_SRC_XTAL,
15 .xtal_accuracy = NRF_CLOCK_LF_XTAL_ACCURACY_250_PPM,
17 return EvePlatformInitEx(BleEnableParams, &NrfClockLfConfig);
Header file for BLE subsystem interface.