Zephyr API Documentation  3.5.0
A Scalable Open Source RTOS
3.5.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
os_mgmt_client.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2023 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#ifndef H_OS_MGMT_CLIENT_
8#define H_OS_MGMT_CLIENT_
9
10#include <inttypes.h>
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
24 int status;
25};
26
34void os_mgmt_client_init(struct os_mgmt_client *client, struct smp_client_object *smp_client);
35
45int os_mgmt_client_echo(struct os_mgmt_client *client, const char *echo_string);
46
56
57#ifdef __cplusplus
58}
59#endif
60
61#endif /* H_OS_MGMT_CLIENT_ */
int os_mgmt_client_reset(struct os_mgmt_client *client)
Send SMP Reset command.
int os_mgmt_client_echo(struct os_mgmt_client *client, const char *echo_string)
Send SMP message for Echo command.
void os_mgmt_client_init(struct os_mgmt_client *client, struct smp_client_object *smp_client)
Initialize OS management client.
OS mgmt client object.
Definition: os_mgmt_client.h:20
int status
Command status.
Definition: os_mgmt_client.h:24
struct smp_client_object * smp_client
SMP client object
Definition: os_mgmt_client.h:22
SMP client object.
Definition: smp_client.h:19