newlib sscanf() 在 stm32 中抛出硬故障异常

发布于 2024-11-06 11:37:42 字数 143 浏览 0 评论 0原文

我使用gcc编译我的项目,在main中使用函数sscanf(),堆栈大小为4k,我在gdb中调试程序,显示VPUSH指令抛出异常。

我测试了函数 sprintf(),它工作得很好。为什么 sscanf() 函数在 stm32 的 newlib 中不起作用?

i use gcc compile my project, use the function sscanf() in main, the stack size is 4k, i debug the program in gdb, show VPUSH instruction throw the exception.

and i test the function sprintf(), it work nice. why the function sscanf() is not work in newlib for stm32?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

苏大泽ㄣ 2024-11-13 11:37:42

除了STM32 F4系列之外,这些控制器不支持浮点指令,vpush就是其中之一。

该问题应该通过使用 -mfloat-abi=soft(而不是 softfphard)编译 newlib 来解决。

Apart from STM32 F4 series, those controllers do not support floating point instructions, vpush being one of them.

The problem should be solved by compiling newlib with -mfloat-abi=soft (and not softfp or hard).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文