Zephyr API Documentation  3.6.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
smp_shell.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2019 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
11#ifndef ZEPHYR_INCLUDE_MGMT_SMP_SHELL_H_
12#define ZEPHYR_INCLUDE_MGMT_SMP_SHELL_H_
13
14#include <zephyr/types.h>
15
16#ifdef __cplusplus
17extern "C" {
18#endif
19
20#define SMP_SHELL_RX_BUF_SIZE 127
21
26 struct net_buf *buf;
28};
29
42size_t smp_shell_rx_bytes(struct smp_shell_data *data, const uint8_t *bytes,
43 size_t size);
44
53
63
64#ifdef __cplusplus
65}
66#endif
67
68#endif
long atomic_t
Definition: atomic_types.h:15
int smp_shell_init(void)
Initializes SMP transport over shell.
void smp_shell_process(struct smp_shell_data *data)
Processes SMP data and executes command if full frame was received.
size_t smp_shell_rx_bytes(struct smp_shell_data *data, const uint8_t *bytes, size_t size)
Attempt to process received bytes as part of an SMP frame.
__UINT8_TYPE__ uint8_t
Definition: stdint.h:88
Definition: kernel.h:2388
Network buffer pool representation.
Definition: buf.h:1076
Network buffer representation.
Definition: buf.h:1004
uint16_t size
Amount of data that this buffer can store.
Definition: buf.h:1036
uint8_t * data
Pointer to the start of data in the buffer.
Definition: buf.h:1030
Data used by SMP shell.
Definition: smp_shell.h:23
struct net_buf * buf
Definition: smp_shell.h:26
struct k_fifo buf_ready
Definition: smp_shell.h:25
struct net_buf_pool * buf_pool
Definition: smp_shell.h:24
atomic_t esc_state
Definition: smp_shell.h:27