Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
flashDB
RT-Thread一般讨论
flashdb kvdb结构体参数存储问题
发布于 2024-05-18 10:19:48 浏览:629
订阅该版
基于Flashdb的例程,添加一个结构体类型数据在default_kv表中;如下。 ```c struct index { uint8_t protocolVersion; char hardwareID[5]; }; static struct index index00; /* default KV nodes */ static struct fdb_default_kv_node default_kv_table[] = { {"index", &index00, sizeof(index00)}, {"username", "armink", 0}, /* string KV */ {"boot_count", &boot_count, sizeof(boot_count)}, /* int type KV */ {"boot_time", &boot_time, sizeof(boot_time)}, /* int array type KV */ ``` 然后在函数中使用fdb_kv_get_blob把数据保存在blob类型中,尝试打印出来。 ```c /*default table测试代码:打印结构体*/ struct STIndex_0x00 temp_index00; fdb_kv_get_blob(&kvdb, "index", fdb_blob_make(&blob, &temp_index00, sizeof(temp_index00))); if (blob.saved.len > 0) { FDB_INFO("get the 'index00' protocolVersion is: %d\n", temp_index00.protocolVersion); FDB_INFO("get the 'index00' hardwareID is: %s\n", temp_index00.hardwareID); } /*default table测试代码:开机次数*/ uint32_t temp_boot_count; fdb_kv_get_blob(&kvdb, "boot_count", fdb_blob_make(&blob, &temp_boot_count, sizeof(temp_boot_count))); if (blob.saved.len > 0) { FDB_INFO("get current boot count is: %d\n", temp_boot_count); } ``` 别的像 string, int 和array等数据都能打印正常(输出台如下), 但结构体好像没有储存正确。能帮忙看看具体哪里有错误吗? ```c [FlashDB][kv][file] (../packages/FlashDB-latest/src/fdb_kvdb.c:1638) KVDB size is 1048576 bytes. [FlashDB][FDB] get the username value is: armink [FlashDB][FDB] get first time is: 0 [FlashDB][FDB] get second time is: 1 [FlashDB][FDB] get current boot count is: 41 [FlashDB][sample][kvdb][basic] ==================== kvdb_basic_sample ========= [FlashDB][sample][kvdb][basic] get the 'boot_count' value is 41 [FlashDB][sample][kvdb][basic] set the 'boot_count' value to 42 [FlashDB][sample][kvdb][basic]================================================== ```
查看更多
1
个回答
默认排序
按发布时间排序
Ziegler小陈
2024-09-02
这家伙很懒,什么也没写!
尝试一下fdb_kv_set_default(kvdb)重置数据库未默认值,在打印前
撰写答案
登录
注册新账号
关注者
0
被浏览
629
关于作者
张文彬
这家伙很懒,什么也没写!
提问
8
回答
5
被采纳
0
关注TA
发私信
相关问题
1
BSD的一些代码分析
2
RT-Thread文件系统
3
怎么文档,源码还是没有呀??
4
[ZT]嵌入式LwIP协议栈的内存管理
5
RTLinux/RTCore体系结构
6
RTLinux/RTCore局限性
7
怎样获取源码
8
[ZT]The lightest lightweight threads, Protothreads
9
[ZT]微内核操作系统及L4概述
10
关于操作系统对C++操作符的使用
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
最新文章
1
rt thrad 源码笔记 :rt thread中的面向对象
2
组件 lwip v2.0.3 版本使用 netdev网卡的 ping 功能
3
简单两步配置RTT源码阅读环境 vsc+clangd插件
4
恩智浦[FRDM-MCXN947]初探 之 ADC与DAC
5
LVGL使用字库IC芯片显示中文
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
线程
RT-Thread Nano
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
UART
WIZnet_W5500
ota在线升级
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
编译报错
Debug
rt_mq_消息队列_msg_queue
SFUD
msh
keil_MDK
ulog
C++_cpp
MicroPython
本月问答贡献
出出啊
1517
个答案
342
次被采纳
小小李sunny
1444
个答案
289
次被采纳
张世争
807
个答案
174
次被采纳
crystal266
547
个答案
161
次被采纳
whj467467222
1222
个答案
148
次被采纳
本月文章贡献
catcatbing
2
篇文章
2
次点赞
xnosky
2
篇文章
1
次点赞
Woshizhapuren
1
篇文章
4
次点赞
YZRD
1
篇文章
2
次点赞
用RTT跑流水灯
1
篇文章
2
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部