1 /* 2 * Copyright (c) 2024 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef NRFS_PHY_H 8 #define NRFS_PHY_H 9 10 #include <nrfs_common.h> 11 12 #ifdef __cplusplus 13 extern "C" { 14 #endif 15 16 typedef struct { 17 void *p_buffer; 18 uint32_t size; 19 uint8_t domain_id; 20 } nrfs_phy_t; 21 22 #ifdef __cplusplus 23 } 24 #endif 25 26 #endif /* NRFS_PHY_H */ 27