1 /* 2 * Copyright (c) 2023 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 #ifndef H_OS_GR_STUB_ 7 #define H_OS_GR_STUB_ 8 9 #include <inttypes.h> 10 #include <zephyr/net_buf.h> 11 #include <mgmt/mcumgr/transport/smp_internal.h> 12 13 #ifdef __cplusplus 14 extern "C" { 15 #endif 16 17 void smp_transport_read_hdr(const struct net_buf *nb, struct smp_hdr *dst_hdr); 18 void stub_smp_client_transport_register(void); 19 20 #ifdef __cplusplus 21 } 22 #endif 23 24 #endif /* H_OS_GR_STUB_ */ 25