在STM32中 float类型为四字,存储格式为倒序(CD AB),在16转float时需要注意。
改为用共用体(union)自己转换,减少函数,精度未测
例如:
typedef union float2hex{
float f;
long h;
} ;
在STM32中 float类型为四字,存储格式为倒序(CD AB),在16转float时需要注意。
改为用共用体(union)自己转换,减少函数,精度未测
例如:
typedef union float2hex{
float f;
long h;
} ;
本文标题:float与HEX互转
本文链接:https://www.haomeiwen.com/subject/mxjbcctx.html
网友评论