This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

[参考译文] CC2652R:ECDSA 驱动程序问题

Guru**** 1818760 points
请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1409692/cc2652r-ecdsa-driver-issues

器件型号:CC2652R

工具与软件:

我正在尝试运行 sic https://software-dl.ti.com/simplelink/esd/simplelink_cc13xx_cc26xx_sdk/7.10.01.24/exports/docs/drivers/doxygen/html/_e_c_d_s_a_8h.html 上 ECDSA.h 文件参考中的"ECDSA 使用纯文本 CryotoKeys 验证"[ECDSA]示例代码

执行此操作时、会显示以下构建错误:

未解析符号 ECDSA_CONFIG、首先在 C:/ti/simplelink_cc13xx_cc26xx_sdk_7_10_01_24/source/ti/drivers/lib/ticlang/m4f/drivers_cc26x2.a 中引用 

我首先添加了对 ECDSA_INIT ()的调用,并尝试使用一组实际的参数:

ECDSA_INIT(); 
ECDSA_Params 参数;
ECDSA_PARAMS_INIT (&params);

ecdsaHandle = ECDSA_OPEN(0,&params);

也没有这样的运气。  我在做什么错?

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    我们禁用了 syscfg;我似乎需要先将设置添加到 ti_drivers_config.c/.h 中...

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    是的、就是这样。  现在一切都好了。