在PIC单片机的MikroC程序中将float转换为字符数组

时间:2014-03-15 15:13:49

标签: floating-point embedded converter mikroc

我试图修改我在网上找到的程序,我在这里找到了:

Interfacing Ultrasonic distance sensor ASCII output using PIC Microcontroller

我需要对距离进行一些计算才能将其输出到LCD显示器。我成功地将字符串转换为浮点数。它的代码在这里:

// LCD module connections
sbit LCD_RS at RB7_bit;
sbit LCD_EN at RB6_bit;
sbit LCD_D4 at RB5_bit;
sbit LCD_D5 at RB4_bit;
sbit LCD_D6 at RB3_bit;
sbit LCD_D7 at RB2_bit;
sbit LCD_RS_Direction at TRISB7_bit;
sbit LCD_EN_Direction at TRISB6_bit;
sbit LCD_D4_Direction at TRISB5_bit;
sbit LCD_D5_Direction at TRISB4_bit;
sbit LCD_D6_Direction at TRISB3_bit;
sbit LCD_D7_Direction at TRISB2_bit;
// End LCD module connections

void main()
{
    int i,temp;
    char dist[] = "000.0";
    float v,h,l=25,b=25;
    Lcd_Init(); // Initialize LCD
    UART1_Init(9600); //Initialize the UART module
    Lcd_Cmd(_LCD_CLEAR); // Clear display
    Lcd_Cmd(_LCD_CURSOR_OFF); // Cursor off
    Lcd_Out(1,1,"Distance= cm");
    do
    {
        if(UART1_Data_Ready()) //if data ready
        {
            if(UART1_Read() == 0x0D) //check for new line character
            {
                for(i=0;i<5;)
                {
                    if(UART1_Data_Ready()) // if data ready
                    {
                        dist[i] = UART1_Read();  // read data
                        i++;
                    }
                }
            }
         }
         h=(100*(dist[0]-48))+(10*(dist[1]-48))+(dist[2]-48)+(0.1*(dist[4]-48));
         v=l*b*h*0.001;
         //sprintf(dist,"%f",v);
         Lcd_Out(1,10,dist);
    }while(1);
}

如果我添加了stdio,sprintf()会工作吗?或者我是否必须从头开始编写逻辑?或者我可以使用其他一些库函数吗?

1 个答案:

答案 0 :(得分:0)

是的,sprintf()应该将浮点值转换为字符串。

某些微控制器库带有不同版本的sprintf()。旨在节省代码空间的最小版本可能不支持%f格式字段。因此,请确保链接到支持%f格式字段的库版本。

你确定你的char数组dist足够长吗?你不希望sprintf()溢出char数组。您可以通过将格式说明符从"%f"更改为"%.1f"来将sprintf()输出的小数位数限制为1。这将在一端保护您,但在v&gt; = 1000.0时您仍然需要防止溢出。考虑使用sprintfn()而不是sprintf()。