专家
公告
财富商城
电子网
旗下网站
首页
问题库
专栏
标签库
话题
专家
NEW
门户
发布
提问题
发文章
STM32
请问怎样把串口接收到的数据转换为整形啊?
2019-07-21 05:13
发布
×
打开微信“扫一扫”,打开网页后点击屏幕右上角分享按钮
站内问答
/
STM32/STM8
14145
8
1362
串口接收到的数据不是整形,不能继续计算,怎样才能把串口接收到的数据转化为整形?
友情提示:
此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
8条回答
只抽金卡啊
1楼-- · 2019-07-21 17:47
我感觉就是对字符串的处理吧 把传输的数据字符串转换成整形或浮点型 然后再计算 大概是这样吧
Str2float.h
[mw_shl_code=applescript,true]#ifndef __Str2float_H
#define __Str2float_H
float Get_float(char c[],unsigned int len);
float Decimals_Deal(char c[],unsigned int p);
#endif[/mw_shl_code]
Str2float.c
[mw_shl_code=applescript,true]#include "Str2float.h"
#include "string.h"
unsigned int i = 0;
float Decimals_Deal(char c[],unsigned int q)
{
float ss = 0.1,result = 0;
for(i = q+1;i<strlen(c);i++)
{
result+=ss*c
;
ss= ss*0.1;
}
return result;
}
float Integer_Deal(char c[],unsigned int k)
{
float temp = 0,s = 1;
for(i = 0;i<k;i++)
{
temp +=(float)c[k-i-1]*s;
s *= 10;
}
return temp;
}
float Get_float(char c[],unsigned int len)
{
unsigned int q = 0;
float a = 0;
for(i=0;i<len;i++)
{
if(c
==0x2e)
{
q = i;
break;
}
}
for(i = 0;i<strlen(c);i++)
{
if(i!=q)
{
c
= c
-0x30;
}
}
switch(q)
{
case 0:
{
a += Decimals_Deal(c,q);
}break;
case 1:
{
a = Integer_Deal(c,q);
a += Decimals_Deal(c,q);
}break;
case 2:
{
a = Integer_Deal(c,q);
a += Decimals_Deal(c,q);
}
case 3:
{
a = Integer_Deal(c,q);
a += Decimals_Deal(c,q);
}
}
return a;
}
[/mw_shl_code]
加载中...
holy404290384
2楼-- · 2019-07-21 18:49
请问串口发过来的数据是什么型的
加载中...
上一页
1
2
一周热门
更多
>
相关问题
STM32F4上I2C(在PROTEUS中模拟)调试不通的问题
6 个回答
芯片供应紧张,准备换个MCU,MM32L系列替换STM32L系列的怎么样?
7 个回答
STM32同时使用两个串口进行数据收发时数据丢包的问题
5 个回答
STM32F103串口通信死机问题
4 个回答
STM32WLE5CC连接SX1268在LoRa模式下能与 SX1278互通吗?
2 个回答
STM32开发板免费用活动
7 个回答
stm32 处理 DHT11占用太多时间,大家程序是怎么设计的
8 个回答
分享一个STM32单片机做的离线编程器代码
9 个回答
相关文章
ST公司第一款无线低功耗单片机模块有效提高物联网设计生产效率
0个评论
如何实现对单片机寄存器的访问
0个评论
通过USB用STM32片内自带Bootloader下载程序及注意事项
0个评论
欲练此功必先自宫之STM32汇编启动,放慢是为了更好的前行
0个评论
×
关闭
采纳回答
向帮助了您的网友说句感谢的话吧!
非常感谢!
确 认
×
关闭
编辑标签
最多设置5个标签!
STM32
保存
关闭
×
关闭
举报内容
检举类型
检举内容
检举用户
检举原因
广告推广
恶意灌水
回答内容与提问无关
抄袭答案
其他
检举说明(必填)
提交
关闭
×
关闭
您已邀请
15
人回答
查看邀请
擅长该话题的人
回答过该话题的人
我关注的人
Str2float.h
[mw_shl_code=applescript,true]#ifndef __Str2float_H
#define __Str2float_H
float Get_float(char c[],unsigned int len);
float Decimals_Deal(char c[],unsigned int p);
#endif[/mw_shl_code]
Str2float.c
[mw_shl_code=applescript,true]#include "Str2float.h"
#include "string.h"
unsigned int i = 0;
float Decimals_Deal(char c[],unsigned int q)
{
float ss = 0.1,result = 0;
for(i = q+1;i<strlen(c);i++)
{
result+=ss*c;
ss= ss*0.1;
}
return result;
}
float Integer_Deal(char c[],unsigned int k)
{
float temp = 0,s = 1;
for(i = 0;i<k;i++)
{
temp +=(float)c[k-i-1]*s;
s *= 10;
}
return temp;
}
float Get_float(char c[],unsigned int len)
{
unsigned int q = 0;
float a = 0;
for(i=0;i<len;i++)
{
if(c==0x2e)
{
q = i;
break;
}
}
for(i = 0;i<strlen(c);i++)
{
if(i!=q)
{
c = c-0x30;
}
}
switch(q)
{
case 0:
{
a += Decimals_Deal(c,q);
}break;
case 1:
{
a = Integer_Deal(c,q);
a += Decimals_Deal(c,q);
}break;
case 2:
{
a = Integer_Deal(c,q);
a += Decimals_Deal(c,q);
}
case 3:
{
a = Integer_Deal(c,q);
a += Decimals_Deal(c,q);
}
}
return a;
}
[/mw_shl_code]
一周热门 更多>