nRF Connect SDK Bare Metal API 2.0.99
Loading...
Searching...
No Matches
ble_rmem.h
1/*
2 * Copyright (c) 2026 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5 */
6#ifndef NRFBM_SETTINGS_BLE_RMEM_H__
7#define NRFBM_SETTINGS_BLE_RMEM_H__
8
9#ifdef __cplusplus
10extern "C" {
11#endif
12
13#include <stdint.h>
14#include <stddef.h>
15#include <bm/storage/bm_rmem.h>
16
17#define BLE_RMEM_MAX_NAME_SIZE 16
18
27size_t ble_rmem_adv_name_get(struct bm_retained_clipboard_ctx *ctx, char const **name);
28
29#ifdef __cplusplus
30}
31#endif
32
33#endif /* NRFBM_SETTINGS_BLE_RMEM_H__ */
Runtime context for the retained clipboard instance.
Definition bm_rmem.h:20