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
smp_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_SMP_CLIENT_
8#define H_SMP_CLIENT_
9
10#include <zephyr/kernel.h>
11#include <zephyr/net/buf.h>
12#include <mgmt/mcumgr/transport/smp_internal.h>
15
21 struct k_work work;
28};
29
30#ifdef __cplusplus
31extern "C" {
32#endif
33
43int smp_client_object_init(struct smp_client_object *smp_client, int smp_type);
44
54typedef int (*smp_client_res_fn)(struct net_buf *nb, void *user_data);
55
65int smp_client_single_response(struct net_buf *nb, const struct smp_hdr *res_hdr);
66
80 uint8_t command_id, uint8_t op,
81 enum smp_mcumgr_version_t version);
88
102int smp_client_send_cmd(struct smp_client_object *smp_client, struct net_buf *nb,
103 smp_client_res_fn cb, void *user_data, int timeout_in_sec);
104
105#ifdef __cplusplus
106}
107#endif
108
109#endif /* H_SMP_CLIENT_ */
Public kernel APIs.
SMP - Simple Management Protocol.
smp_mcumgr_version_t
SMP MCUmgr protocol version, part of the SMP header.
Definition: smp.h:39
Buffer management.
int smp_client_object_init(struct smp_client_object *smp_client, int smp_type)
Initialize a SMP client object.
int smp_client_single_response(struct net_buf *nb, const struct smp_hdr *res_hdr)
SMP client response handler.
struct net_buf * smp_client_buf_allocation(struct smp_client_object *smp_client, uint16_t group, uint8_t command_id, uint8_t op, enum smp_mcumgr_version_t version)
Allocate buffer and initialize with SMP header.
void smp_client_buf_free(struct net_buf *nb)
Free a SMP client buffer.
int(* smp_client_res_fn)(struct net_buf *nb, void *user_data)
Response callback for SMP send.
Definition: smp_client.h:54
int smp_client_send_cmd(struct smp_client_object *smp_client, struct net_buf *nb, smp_client_res_fn cb, void *user_data, int timeout_in_sec)
SMP client data send request.
__UINT8_TYPE__ uint8_t
Definition: stdint.h:88
__UINT16_TYPE__ uint16_t
Definition: stdint.h:89
Definition: kernel.h:2385
A structure used to submit work.
Definition: kernel.h:3865
Network buffer representation.
Definition: buf.h:906
uint8_t user_data[]
System metadata for this buffer.
Definition: buf.h:951
SMP client object.
Definition: smp_client.h:19
struct smp_transport * smpt
SMP transport object.
Definition: smp_client.h:25
uint8_t smp_seq
SMP SEQ.
Definition: smp_client.h:27
struct k_fifo tx_fifo
FIFO for client TX queue.
Definition: smp_client.h:23
struct k_work work
Must be the first member.
Definition: smp_client.h:21
SMP transport object for sending SMP responses.
Definition: smp.h:118