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 12 #ifdef __cplusplus 13 extern "C" { 14 #endif 15 16 void os_stub_init(const char *echo_str); 17 void os_reset_response(void); 18 void os_echo_verify(struct net_buf *nb); 19 20 #ifdef __cplusplus 21 } 22 #endif 23 24 #endif /* H_OS_GR_STUB_ */ 25