HarmonyOS设备开发:Hi3861开发板编译出现:undefined reference to `hi_spi_init‘ 解决办法
问题:写完程序后,在shell上输出 python build.py wifiiot 出现undefined reference to `hi_spi_init’undefined reference to `hi_spi_host_writeread’如下图所示解决办法:找到这个路径://vendor/hisi/hi3861/hi3861/build/config/usr_config.mk打开
·
问题:
写完程序后,在shell上输出 python build.py wifiiot
出现
undefined reference to `hi_spi_init’
undefined reference to `hi_spi_host_writeread’
如下图所示
解决办法:
找到这个路径:
//vendor/hisi/hi3861/hi3861/build/config/usr_config.mk
打开并修改 usr_config.mk 这个文件
其中有一条语句被注释了
# CONFIG_SPI_SUPPORT is not set
取消注释并修改成以下语句(或者直接添加)
CONFIG_SPI_SUPPORT=y
重新编译,成功编译
更多推荐
已为社区贡献1条内容
所有评论(0)