⚠️
Hi there.. thanks for coming to the forums. Exciting news! we’re now in the process of moving to our new forum platform that will offer better functionality and is contained within the main Dialog website. All posts and accounts have been migrated. We’re now accepting traffic on the new forum only - please POST any new threads at//www.xmece.com/support。We’ll be fixing bugs / optimising the searching and tagging over the coming days.
9个帖子/ 0新
Last post
米克伍德
Offline
最后一次露面:1 month 1 week ago
加入:2017-05-19 18:27
键DB回调覆盖

SDK为应用程序绑定数据库函数提供回调,可以用用户函数替换。但是,struct bond_db在app_bond_db.c文件中定义(不是在标题中),并且键入键在app_bond_db.c中静态,因此很难为app_bond_db_callbacks提供有意义的用户定义替换,而无需修改SDK文件。我尽量不这样做,因为它使得在进行自定义修改时升级SDK非常困难。

我们的应用程序将在设计中将绑定DB存储在另一个处理器的闪存中,因此罐头SPI_FLASH和I2C_EEPROM功能不合适。如果SDK提供了检索键合结构地址和大小的函数,则非常好,这将允许覆盖默认回调而不修改SDK。正如现在,我需要修改SDK以提供此功能。

Device:
米克伍德
Offline
最后一次露面:1 month 1 week ago
加入:2017-05-19 18:27
As a followup to my first

As a followup to my first post, is there a good way to handle retrieval of the bond database "asynchronously"? For example, as mentioned our system will store the bond database in a separate processor. So when it is time to initialize the bond db, the DA14585 will request (via SPI bus) transfer of the bond db from the other processor; the actual transfer will complete some time later. The SPI processing is handled via callback (specifically during the user_on_system_powered() callback), so I can't just block the app_bdb_init() call while I wait for this transfer to take place.

I could just return from the app_bdb_init() function and "backfill" the bond db when it has been received, but I fear this could cause other problems. Any suggestions on handling this situation? Thanks.

PM_DIALOG.
Offline
最后一次露面:1小时29分钟前
工作人员
加入:2018-02-08 11:03
Hi mkelwood,

Hi mkelwood,

你能试着再解释一下你想做的事情吗?如果我能从你的线程中理解,你想要完成的是要开始阅读绑定数据,但要在程序尚未完成之前启动过程?当结束过程完成后,应触发回调?请提供进一步澄清。

谢谢,PM_DIALOG.

米克伍德
Offline
最后一次露面:1 month 1 week ago
加入:2017-05-19 18:27
Hello PM_Dialog,

Hello PM_Dialog,

That's roughly correct. The problem is that I will either need to return from app_bdb_init() before the bond database is retrieved, or block in app_bdb_init() while calling the scheduler to allow the SPI bus processing in the user_on_system_powered() callback to continue, similar to what is done in bond_db_erase_flash_sectors(). In the first case I would populate the bond_db structure either by message handling or directly in the SPI processing code once the bond database was retrieved from the other processor. This case is easier to implement, but it may be dangerous to return from app_dbd_init() without a valid bond database in place. The second case (block and call scheduler from within app_dbd_init()) may be safer but is more difficult to implement correctly, and it will only work if the rwip_schedule() call will allow the SPI processing to continue by calling user_on_system_powered() as needed.

So my question is (A) is it safe to return from app_bdb_init() and proceed with the application startup before the bond database is available, and if not, then (B) will the block-and-schedule scheme work by calling user_on_system_powered() as needed until the bond database is received?

Also, per my first post, since the bond database load and store mechanisms are not hooked to app_bond_db_callbacks, I have no choice but to modify the SDK to implement custom load and store mechanisms, which is unfortunate.

PM_DIALOG.
Offline
最后一次露面:1小时29分钟前
工作人员
加入:2018-02-08 11:03
Hi mkelwood,

Hi mkelwood,

感谢你的信息。我会检查你的问题,我会尽快通知你。

谢谢,PM_DIALOG.

米克伍德
Offline
最后一次露面:1 month 1 week ago
加入:2017-05-19 18:27
Hello PM_Dialog,

Hello PM_Dialog,

I implemented Scheme A above: proceed from app_bdb_init() with an invalid database and back-fill the bond database after it is retrieved from other processor. This seems to work properly. I suppose there is a small window where a pairing event could occur without a valid database in place (any modifications would get over-written), but I estimate that the whole process is complete before the first advertise packet even goes out on the radio. In any case we will probably have to live with that risk.

It would be nice to get confirmation that this scheme does not have other (unknown to me) caveats. Any information you can provide would be appreciated.

PM_DIALOG.
Offline
最后一次露面:1小时29分钟前
工作人员
加入:2018-02-08 11:03
Hi mkelwood,

Hi mkelwood,

道歉的delay and thanks for the procedure you have provided. Could you please clarify if this procedure fixes your issue? As you mentioned you SDK modify the SDK (I would not recommend it), but I don’t have any news on this.

谢谢,PM_DIALOG.

米克伍德
Offline
最后一次露面:1 month 1 week ago
加入:2017-05-19 18:27
Hi PM_Dialog,

Hi PM_Dialog,

The described procedure seems to be working fine for us. I closed the window by delaying the start of advertising until the bond database was retrieved and in place, so there should be no possibility of a connection attempt with an invalid database. This procedure does require changes to the SDK in app_bond_db.c. I agree that this is unfortunate, but the published callback structure for the bond database does not support implementation of a custom storage method for the bond database (which was the reason for my original post here). I hope the development team will rectify this at some point.

最诚挚的问候,

麦克

PM_DIALOG.
Offline
最后一次露面:1小时29分钟前
工作人员
加入:2018-02-08 11:03
Hi mkelwood,

Hi mkelwood,

As it is mentioned in the last post, it is not recommended to modify the SDK, but glad that you figured your issue out and thank you for your indication.

谢谢,PM_DIALOG.