1 /* 2 * Copyright (c) 2024 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef NRFS_CLOCK_REQS_H 8 #define NRFS_CLOCK_REQS_H 9 10 #include "nrfs_reqs_common.h" 11 12 #ifdef __cplusplus 13 extern "C" { 14 #endif 15 16 enum { 17 NRFS_CLOCK_REQ_SUBSCRIBE = NRFS_REQUEST_ID_DEF(NRFS_SERVICE_ID_CLOCK, 0x01), 18 NRFS_CLOCK_REQ_UNSUBSCRIBE = NRFS_REQUEST_ID_DEF(NRFS_SERVICE_ID_CLOCK, 0x02), 19 NRFS_CLOCK_REQ_LFCLK_SRC = NRFS_REQUEST_ID_DEF(NRFS_SERVICE_ID_CLOCK, 0x03), 20 NRFS_CLOCK_REQ_HSFLL_MODE = NRFS_REQUEST_ID_DEF(NRFS_SERVICE_ID_CLOCK, 0x04), 21 }; 22 23 #ifdef __cplusplus 24 } 25 #endif 26 27 #endif /* NRFS_CLOCK_REQS_H */ 28