ST意法半导体
直播中

戴双宝

7年用户 198经验值
私信 关注
[问答]

用lib_ndef_aar做例子不起作用

你好,
我是M24LR04E的初学者。
我使用X-NUCLEO-NFC02a1和NUCLEO-L053R8。
我在True Studio中使用STM32CubeExpansion_NFC2_V1.3.0。
我做一些ST库的例子很好用(短信,电子邮件,URI,网站,文字,联系方式)
我用lib_ndef_aar做一个例子,它不起作用。
我写了这段代码:
的strcpy(App_Android.PakageName, 'com.gombosdev.ampere');

NDEF_AddAAR(& App_Android);我使用应用程序'NFC Tools'在M24LR04E中写入数据,它运行良好。
我不明白。
你有一个与NDEF-AAR库一起工作的例子吗?
最好的祝福,
Mickaël Bucher

以上来自于谷歌翻译


以下为原文




Hello,
I am a beginner with M24LR04E.
I use X-NUCLEO-NFC02a1 with NUCLEO-L053R8.
I use STM32CubeExpansion_NFC2_V1.3.0 with True Studio.
I do some examples with ST library which work good (SMS, email, URI, website, text, contact)
I do an example with lib_ndef_aar and it not works.
I wrote this code :
      strcpy(App_Android.PakageName,'com.gombosdev.ampere');

       NDEF_AddAAR(&App_Android);I use an application 'NFC Tools'to write  data in M24LR04E and it work good.
I don't understand.
Do you have an example which work with the library NDEF-AAR ?
best regards,
Mickaël Bucher

回帖(1)

王桂珍

2019-7-22 15:02:42
嗨Mickael,
使用NDEF库编写AAR就像您已经做的那样简单。
根据您的描述,唯一可能发生的问题是标记的内存已满。
NDEF_AddAAR实际上将AAR记录添加到标记中的现有NDEF消息,因此您需要确保剩余的可用内存足够。
如果您希望NDEF消息只包含一条AAR记录,则应在调用NDEF_AddAAR之前清除NDEF消息:
memset的(NDEF_Buffer,0,2);
NDEF_WriteNDEF(NDEF_Buffer);
NDEF_AddAAR(安培; App_Android);
如果这有助于解决您的问题,请告知我们。
如果没有,请提供有关您失败的更多详细信息:
1. NDEF_AddAAR是否返回错误代码?哪一个?
2.你如何阅读RF方面的标签。你用的是Android手机吗?
问候,
雷米B.

以上来自于谷歌翻译


以下为原文




Hi Mickael,
Writing an AAR with the NDEF library is as simple as you already did.
From your description, the only issue that could occur is that the memory of your tag is full.
The NDEF_AddAAR actually adds an AAR record to an existing NDEF message in the tag, so you need to make sure the remaining available memory is sufficient.
If you prefer to have an NDEF message containing only a single AAR record, your should clear the NDEF message prior to call NDEF_AddAAR:
memset(NDEF_Buffer,0,2);
NDEF_WriteNDEF(NDEF_Buffer);
NDEF_AddAAR(&App_Android);
Let us know if this helps with your issue.
And if not, please provide more details on your failure:
1. Does NDEF_AddAAR return an error code? Which one?
2. How do you read the tag on RF side. Do you use an Android phone?
Regards,
Remi B.
举报

更多回帖

发帖
×
20
完善资料,
赚取积分