ARM-GCC下sprintf()的BUG?

简介: ADL User Guide for Open AT. OS v6.1    今天在调试程序时,发现了ARM-GCC下sprintf()的一个问题,它不支持浮点数。以前从来没碰到这个问题,而且认为这肯定不会有问题,折腾了半天,最后在ADL_User_Guide中找到了答案。
ADL User Guide for Open AT. OS v6.1

    今天在调试程序时,发现了ARM-GCCsprintf()的一个问题,它不支持浮点数。以前从来没碰到这个问题,而且认为这肯定不会有问题,折腾了半天,最后在ADL_User_Guide中找到了答案。ARM-GCC下的sprintf()确实不支持%f,文档中给出了相应的解决方法。

     Important remark about GCC compiler:

When using GCC compiler, due to internal standard C library architecture, it is strongly not recommended to use the "%f" mode in the wm_sprintf function in order to convert a float variable to a string. This leads to an ARM exception (product reset).

A way around for this conversion is:

float MyFloat; // float to display

ascii MyString [ 100 ]; // destination string

s16 d,f;

d = (s16) MyFloat * 1000; // Decimal precision: 3 digits

f = ( MyFLoat * 1000 ) - d; // Decimal precision: 3 digits

                  wm_sprintf ( MyString, "%d.%03d", (s16)MyFloat, f ); // Decimal precision: 3 digits

    实践证明,经验主义要不得,看文档很重要,而且要看仔细。

目录
相关文章
|
6月前
|
Ubuntu 编译器 C语言
ARM-GCC与交叉编译
ARM-GCC与交叉编译
|
6月前
|
Linux C语言
在Linux中使用gcc/g++编译代码
1.方法速记 直接编译语法:将text.c文件或者text.cpp文件直接编译成text文件。 gcc text.c -o text // gcc-o text.c text g++ text.cpp -o text // g++ text.cpp -o text
64 0
|
6月前
|
Linux 编译器
一起来认识Linux中的 BUILD_BUG_ON 宏
一起来认识Linux中的 BUILD_BUG_ON 宏
|
6月前
|
NoSQL 编译器 Linux
Linux——编译器gcc/g++、调试器gdb以及自动化构建工具makefile&&make详解
Linux——编译器gcc/g++、调试器gdb以及自动化构建工具makefile&&make详解
|
NoSQL Linux 编译器
【Linux】编译器gcc g++和调试器gdb的使用(下)
【Linux】编译器gcc g++和调试器gdb的使用(下)
|
C语言 C++
Win10下VS code运行C++程序(gcc,cmake)
Win10下VS code运行C++程序(gcc,cmake)
343 0
Win10下VS code运行C++程序(gcc,cmake)
|
前端开发 Unix C语言
|
C语言 内存技术 Linux
makefile初步制作,arm-linux- (gcc/ld/objcopy/objdump)详解【转】
转自:http://www.cnblogs.com/lifexy/p/7065175.html 在linux中输入vi Makefile 来实现创建Makefile文件 注意:命令行前必须加TAB键 例如:将两个文件led.
1643 0