使用 PIC16F1824 浮动到字符串
Float to string using PIC16F1824
我在使用 PIC16F1824 时遇到了一些问题。
我想转换从 ADC 转换器检索到的值并将其传输到 UART。
我使用 MCC 来生成我的代码。
当我逐步调试我的代码时,电压值与我用示波器获得的电压值相似。
但是当我想在串行接口上打印这个值时,我在 printf.
中的参数 %f (或 %.2f) 出现错误
C:\Program
Files\Microchip\xc8\v2.20\pic\sources\c99\common\nf_fputc.c:16::
warning: (1498) pointer (unknown) in expression may have no targets
C:\Program
Files\Microchip\xc8\v2.20\pic\sources\c99\common\doprnt.c:66:: error:
(1250) could not find space (80 bytes) for variable _dbuf (908) exit
status = 1
这是我的代码
#include "mcc_generated_files/mcc.h"
void main(void) {
SYSTEM_Initialize();
uint16_t convertedValue, convertedValue2;
float voltage, voltage2;
float temp = 0;
volatile float sensorRH = 0;
char buffer[5];
while (1) {
// ADC_SelectChannel(channel_AN0);
// ADC_StartConversion();
// while (!ADC_IsConversionDone());
// convertedValue = ADC_GetConversionResult();
// voltage = convertedValue * 0.0048875;
// temp = (voltage2 - 0.424) / 0.00625; // LM60
ADC_SelectChannel(channel_AN2);
ADC_StartConversion();
while (!ADC_IsConversionDone());
convertedValue2 = ADC_GetConversionResult();
voltage2 = convertedValue2 * 0.0048875; // Tension 5V - Résolution 10 bits (5/1023)
sensorRH = (voltage2 - 0.852) / 0.031483; // HIH-4000
printf("ADC converted value = %.2f\n", sensorRH);
sprintf(buffer, "%f",sensorRH);
}
}
我也试过:
- 包含 stdio 库:
#include <stdio.h>
- 将浮点值更改为
volatile float sensorRH;
- 在主函数外声明我的浮动。这给了我另一个错误:
C:\Program
Files\Microchip\xc8\v2.20\pic\sources\c99\common\nf_fputc.c:16::
warning: (1498) pointer (unknown) in expression may have no targets
mcc_generated_files/eusart.c:64:: error: (1250) could not find space
(8 bytes) for variable _eusartTxBuffer (908) exit status = 1
- 使用不同大小的缓冲区尝试 sprintf 函数(与第一个错误相同)。
我正在使用带有 PIC4kit 调试器和 XC8 编译器的 PIC16F1824。
提前致谢
您收到的错误意味着您没有足够的 RAM 或闪存,或者换句话说,您使用了太多 space。将 space 减少少量的一个非常简单的方法是启用优化器。减少更多的一种方法是编写不需要那么多的代码 space。 printf()
系列也占用了大量的 space 和浮点数。如果您可以不使用 printf()
或 sprintf()
并将浮点运算替换为整数运算,这应该是可能的,但它可能会给您带来不太精确的计算,这应该无关紧要,因为您的 ADC 不是一开始就非常精确。
解决来自编译器的诊断消息:
C:\Program Files\Microchip\xc8\v2.20\pic\sources\c99\common\nf_fputc.c:16:: warning: (1498) pointer (unknown) in expression may have no targets
C:\Program Files\Microchip\xc8\v2.20\pic\sources\c99\common\doprnt.c:66:: error: (1250) could not find space (80 bytes) for variable _dbuf (908) exit status = 1
第一个“警告:(1498)”是生成的,因为 XC8 编译器在处理有时称为不透明指针的内容时很愚蠢。但由于这是对您不应更改的 Microchip 库代码的引用,并且代码实际上是正确的,因此请忽略此警告。
第二个“错误:(1250)”是您的代码中的一个错误。您声明的对象多于可用 RAM。
这是我刚刚为您创建的仅使用整数数学的代码:
#include "mcc_generated_files/mcc.h"
/*
Main application
*/
void main(void)
{
#define VREF_VALUE (500) // ADC VREF voltage in 1/100 of a volt
uint32_t convertedValue2;
uint16_t voltage2;
// initialize the device
SYSTEM_Initialize();
// When using interrupts, you need to set the Global and Peripheral Interrupt Enable bits
// Use the following macros to:
// Enable the Global Interrupts
//INTERRUPT_GlobalInterruptEnable();
// Enable the Peripheral Interrupts
//INTERRUPT_PeripheralInterruptEnable();
// Disable the Global Interrupts
//INTERRUPT_GlobalInterruptDisable();
// Disable the Peripheral Interrupts
//INTERRUPT_PeripheralInterruptDisable();
while (1)
{
// Add your application code
ADC_SelectChannel(channel_AN2);
__delay_ms(1000);
ADC_StartConversion();
while (!ADC_IsConversionDone());
convertedValue2 = ADC_GetConversionResult();
voltage2 = (uint16_t)( (convertedValue2 * VREF_VALUE + 0x8000ul) >> 16 );
printf("ADC voltage = %1u.%02u\r\n", voltage2/100, voltage2%100);
}
}
由于您没有提供有关您正在使用的传感器的任何详细信息,我无法向您展示用于针对您的传感器进行缩放和偏移的整数数学运算。
完整的 MPLABX v5.40 项目可以在我的 git 中心存储库 here.
上找到
非常感谢您的回答。
我想我理解了建议,将值转换为整数,然后将其除以在串行接口中得到一个浮点值。
我只是对这条线有问题
voltage2 = (uint16_t)( (convertedValue2 * VREF_VALUE + 0x8000ul) >> 16 );
它给我一些错误
我正在使用传感器
我已经用这段代码进行了转换
voltage = convertedValue * 0.0048875; // VREF : 5V / 10 bits ADC
temp = (voltage - 0.424) / 0.00625; // LM60
sensorRH = (voltage - 0.852) / 0.031483; // HIH-4000
感谢您的帮助
最后,我通过 UART 发送以毫伏为单位的 ADC 值,并在 PC 软件上进行转换。
它不是很干净,但它可以完成工作......
谢谢
int i = 0;
int j = 0;
while (1) {
ADC_SelectChannel(channel_AN2);
ADC_StartConversion();
while (!ADC_IsConversionDone());
convertedValue = ADC_GetConversionResult();
voltage = convertedValue * 0.0048875;
i = voltage * 100;
__delay_ms(500);
ADC_SelectChannel(channel_AN3);
ADC_StartConversion();
while (!ADC_IsConversionDone());
convertedValue2 = ADC_GetConversionResult();
voltage2 = convertedValue2 * 0.0048875;
j = voltage2 * 100;
printf("ADC voltage = %1u - %1u\r\n", i, j);
}
我在使用 PIC16F1824 时遇到了一些问题。 我想转换从 ADC 转换器检索到的值并将其传输到 UART。 我使用 MCC 来生成我的代码。 当我逐步调试我的代码时,电压值与我用示波器获得的电压值相似。 但是当我想在串行接口上打印这个值时,我在 printf.
中的参数 %f (或 %.2f) 出现错误C:\Program Files\Microchip\xc8\v2.20\pic\sources\c99\common\nf_fputc.c:16:: warning: (1498) pointer (unknown) in expression may have no targets C:\Program Files\Microchip\xc8\v2.20\pic\sources\c99\common\doprnt.c:66:: error: (1250) could not find space (80 bytes) for variable _dbuf (908) exit status = 1
这是我的代码
#include "mcc_generated_files/mcc.h"
void main(void) {
SYSTEM_Initialize();
uint16_t convertedValue, convertedValue2;
float voltage, voltage2;
float temp = 0;
volatile float sensorRH = 0;
char buffer[5];
while (1) {
// ADC_SelectChannel(channel_AN0);
// ADC_StartConversion();
// while (!ADC_IsConversionDone());
// convertedValue = ADC_GetConversionResult();
// voltage = convertedValue * 0.0048875;
// temp = (voltage2 - 0.424) / 0.00625; // LM60
ADC_SelectChannel(channel_AN2);
ADC_StartConversion();
while (!ADC_IsConversionDone());
convertedValue2 = ADC_GetConversionResult();
voltage2 = convertedValue2 * 0.0048875; // Tension 5V - Résolution 10 bits (5/1023)
sensorRH = (voltage2 - 0.852) / 0.031483; // HIH-4000
printf("ADC converted value = %.2f\n", sensorRH);
sprintf(buffer, "%f",sensorRH);
}
}
我也试过:
- 包含 stdio 库:
#include <stdio.h>
- 将浮点值更改为
volatile float sensorRH;
- 在主函数外声明我的浮动。这给了我另一个错误:
C:\Program Files\Microchip\xc8\v2.20\pic\sources\c99\common\nf_fputc.c:16:: warning: (1498) pointer (unknown) in expression may have no targets mcc_generated_files/eusart.c:64:: error: (1250) could not find space (8 bytes) for variable _eusartTxBuffer (908) exit status = 1
- 使用不同大小的缓冲区尝试 sprintf 函数(与第一个错误相同)。
我正在使用带有 PIC4kit 调试器和 XC8 编译器的 PIC16F1824。 提前致谢
您收到的错误意味着您没有足够的 RAM 或闪存,或者换句话说,您使用了太多 space。将 space 减少少量的一个非常简单的方法是启用优化器。减少更多的一种方法是编写不需要那么多的代码 space。 printf()
系列也占用了大量的 space 和浮点数。如果您可以不使用 printf()
或 sprintf()
并将浮点运算替换为整数运算,这应该是可能的,但它可能会给您带来不太精确的计算,这应该无关紧要,因为您的 ADC 不是一开始就非常精确。
解决来自编译器的诊断消息:
C:\Program Files\Microchip\xc8\v2.20\pic\sources\c99\common\nf_fputc.c:16:: warning: (1498) pointer (unknown) in expression may have no targets
C:\Program Files\Microchip\xc8\v2.20\pic\sources\c99\common\doprnt.c:66:: error: (1250) could not find space (80 bytes) for variable _dbuf (908) exit status = 1
第一个“警告:(1498)”是生成的,因为 XC8 编译器在处理有时称为不透明指针的内容时很愚蠢。但由于这是对您不应更改的 Microchip 库代码的引用,并且代码实际上是正确的,因此请忽略此警告。
第二个“错误:(1250)”是您的代码中的一个错误。您声明的对象多于可用 RAM。
这是我刚刚为您创建的仅使用整数数学的代码:
#include "mcc_generated_files/mcc.h"
/*
Main application
*/
void main(void)
{
#define VREF_VALUE (500) // ADC VREF voltage in 1/100 of a volt
uint32_t convertedValue2;
uint16_t voltage2;
// initialize the device
SYSTEM_Initialize();
// When using interrupts, you need to set the Global and Peripheral Interrupt Enable bits
// Use the following macros to:
// Enable the Global Interrupts
//INTERRUPT_GlobalInterruptEnable();
// Enable the Peripheral Interrupts
//INTERRUPT_PeripheralInterruptEnable();
// Disable the Global Interrupts
//INTERRUPT_GlobalInterruptDisable();
// Disable the Peripheral Interrupts
//INTERRUPT_PeripheralInterruptDisable();
while (1)
{
// Add your application code
ADC_SelectChannel(channel_AN2);
__delay_ms(1000);
ADC_StartConversion();
while (!ADC_IsConversionDone());
convertedValue2 = ADC_GetConversionResult();
voltage2 = (uint16_t)( (convertedValue2 * VREF_VALUE + 0x8000ul) >> 16 );
printf("ADC voltage = %1u.%02u\r\n", voltage2/100, voltage2%100);
}
}
由于您没有提供有关您正在使用的传感器的任何详细信息,我无法向您展示用于针对您的传感器进行缩放和偏移的整数数学运算。
完整的 MPLABX v5.40 项目可以在我的 git 中心存储库 here.
上找到非常感谢您的回答。 我想我理解了建议,将值转换为整数,然后将其除以在串行接口中得到一个浮点值。 我只是对这条线有问题
voltage2 = (uint16_t)( (convertedValue2 * VREF_VALUE + 0x8000ul) >> 16 );
它给我一些错误
我正在使用传感器
我已经用这段代码进行了转换
voltage = convertedValue * 0.0048875; // VREF : 5V / 10 bits ADC
temp = (voltage - 0.424) / 0.00625; // LM60
sensorRH = (voltage - 0.852) / 0.031483; // HIH-4000
感谢您的帮助
最后,我通过 UART 发送以毫伏为单位的 ADC 值,并在 PC 软件上进行转换。 它不是很干净,但它可以完成工作...... 谢谢
int i = 0;
int j = 0;
while (1) {
ADC_SelectChannel(channel_AN2);
ADC_StartConversion();
while (!ADC_IsConversionDone());
convertedValue = ADC_GetConversionResult();
voltage = convertedValue * 0.0048875;
i = voltage * 100;
__delay_ms(500);
ADC_SelectChannel(channel_AN3);
ADC_StartConversion();
while (!ADC_IsConversionDone());
convertedValue2 = ADC_GetConversionResult();
voltage2 = convertedValue2 * 0.0048875;
j = voltage2 * 100;
printf("ADC voltage = %1u - %1u\r\n", i, j);
}