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.
工具与软件:
我必须针对 F29更新到最新的 CCS20、但我也在 AM2634上进行开发。 我更新到了最新的 SysConfig 和 MCU+SDK、现在不再编译 gpio_led_blink 示例。 输出的最后几行是:
[104]makefile_ccs_bootimage_gen:87:用于目标"all"的配方失败
[105]最近一次调用:
[106]<module>中的"C:\ti\mcu_plus_sdk_am263x_10_01_00_31\tools\boot\multicore-elf\genimage.py"第39行
[107]从 modules.multicoreelf 导入 MultiCoreELF、OTFECCMProcessor
[108]<module>中的"C:\ti\mcu_plus_sdk_am263x_10_01_00_31\tools\boot\multicore-elf\modules\multicoreelf.py"第45行
[109]来自.gmac import enc_process_data
[110]<module>中的"C:\ti\mcu_plus_sdk_am263x_10_01_00_31\tools\boot\multicore-elf\modules\gmac.py"第37行
[111] from cryptography.hazmat.c原 语. cypher import Cipher , algorithmets, models
[112]ModuleNotFoundError:没有名为"加密"的模块
[113]gmake[3]:***[All]错误1.
[114]Undertale ;你的孩子,我的孩子,我的孩子,我的孩子,我的孩子,我的孩子,我的孩子
[115]gmake[2]:[post-build]错误2 (已忽略)
这表明我缺少与加密相关的东西;它在哪里?为什么它不与其他软件包一起安装?
谢谢!
吉姆
实际上、这似乎是 该示例的 mcu_plus_sdk_am263x_10_01_00_31版本;我恢复回 mcu_plus_sdk_am263x_10_00_00_35、然后生成它。
Jim、您好!
抱歉、您必须面对这个问题。 这是因为新增了对 python 加密模块的要求。
请使用以下命令来安装加密模块:
PIP install pyelftools 构造加密
然后您可以尝试构建示例、它应该可以工作、如果这有帮助、请告诉我。