2 Star 2 Fork 4

Liuis/nvs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
nvs_port.h 800 Bytes
一键复制 编辑 原始数据 按行查看 历史
Liuis 提交于 2023-09-28 14:11 . The first version.
/* NVS: non volatile storage in flash
*
* Copyright (c) 2023 Liuis
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2023-09-03 Liuis The first version.
*/
#ifndef __NVS_PORT_H_
#define __NVS_PORT_H_
#include "nvs.h"
#ifdef __cplusplus
extern "C"
{
#endif
/**
* Port for nvs mutex lock and unlock
*/
#define NVS_MUTEX_INIT(fs)
#define NVS_MUTEX_LOCK(fs)
#define NVS_MUTEX_UNLOCK(fs)
#if 1
#define NVS_LOG_DBG printf
#define NVS_LOG_INF printf
#define NVS_LOG_ERR printf
#else
#define NVS_LOG_DBG(s)
#define NVS_LOG_INF(s)
#define NVS_LOG_ERR(s)
#endif
extern flash_parameters flash_param_on_chip;
#ifdef __cplusplus
}
#endif
#endif /* __NVS_CFG_H_ */
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/Liuis_Lou/nvs.git
[email protected]:Liuis_Lou/nvs.git
Liuis_Lou
nvs
nvs
master

搜索帮助