newlib sscanf() 在 stm32 中抛出硬故障异常
我使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除了STM32 F4系列之外,这些控制器不支持浮点指令,
vpush
就是其中之一。该问题应该通过使用
-mfloat-abi=soft
(而不是softfp
或hard
)编译 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 notsoftfp
orhard
).