Zephyr API Documentation  3.6.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
smp_bt.h File Reference

Bluetooth transport for the mcumgr SMP protocol. More...

#include <zephyr/types.h>

Go to the source code of this file.

Functions

int smp_bt_register (void)
 Registers the SMP Bluetooth service.
 
int smp_bt_unregister (void)
 Unregisters the SMP Bluetooth service.
 
int smp_bt_notify (struct bt_conn *conn, const void *data, uint16_t len)
 Transmits an SMP command/response over the specified Bluetooth connection as a notification.
 

Detailed Description

Bluetooth transport for the mcumgr SMP protocol.

Function Documentation

◆ smp_bt_notify()

int smp_bt_notify ( struct bt_conn *  conn,
const void *  data,
uint16_t  len 
)

Transmits an SMP command/response over the specified Bluetooth connection as a notification.

Parameters
connConnection object.
dataPointer to SMP message.
lendata length.
Returns
0 in case of success or negative value in case of error.

◆ smp_bt_register()

int smp_bt_register ( void  )

Registers the SMP Bluetooth service.

Should only be called if the Bluetooth transport has been unregistered by calling smp_bt_unregister().

Returns
0 on success; negative error code on failure.

◆ smp_bt_unregister()

int smp_bt_unregister ( void  )

Unregisters the SMP Bluetooth service.

Returns
0 on success; negative error code on failure.