nRF Connect SDK Bare Metal API 2.0.99
Loading...
Searching...
No Matches
bm_storage_backends.h
1
16#ifndef BM_STORAGE_BACKENDS_H__
17#define BM_STORAGE_BACKENDS_H__
18
19#include <bm/storage/bm_storage.h>
20
21#ifdef __cplusplus
22extern "C" {
23#endif
24
25#if defined(CONFIG_BM_STORAGE_BACKEND_SD)
26extern const struct bm_storage_api bm_storage_sd_api;
27#endif
28
29#if defined(CONFIG_BM_STORAGE_BACKEND_RRAM)
30extern const struct bm_storage_api bm_storage_rram_api;
31#endif
32
33#if defined(CONFIG_BM_STORAGE_BACKEND_NATIVE_SIM)
34extern const struct bm_storage_api bm_storage_native_sim_api;
35#endif
36
37#ifdef __cplusplus
38}
39#endif
40
41#endif /* BM_STORAGE_BACKENDS_H__ */
Backend API.
Definition bm_storage.h:118