如何用stm32F103版从一路adc采集到的电压用串口发送出来
时间: 2024-05-14 21:16:06 浏览: 138
以下是一个简单的示例代码,可以让你通过串口发送STM32F103板上ADC采集到的电压值:
```c
#include "stm32f10x.h"
#include "stdio.h"
#define ADC1_DR_Address ((uint32_t)0x4001244C)
void USART1_Init(void);
void USART1_SendChar(char ch);
void USART1_SendString(char* str);
void ADC1_Init(void);
uint16_t ADC1_Read(void);
void delay(uint32_t nCount);
int main(void)
{
uint16_t adc_value;
float voltage;
char buffer[16];
USART1_Init();
ADC1_Init();
while(1)
{
// 读取ADC值并计算电压
adc_value = ADC1_Read();
voltage = (float)adc_value / 4096 * 3.3;
// 将电压值转换为字符串并发送到串口
sprintf(buffer, "%.2fV\r\n", voltage);
USART1_SendString(buffer);
// 延时一段时间
delay(1000000);
}
}
void USART1_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;
// 使能USART1和GPIOA时钟
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 | RCC_APB2Periph_GPIOA, ENABLE);
// 配置USART1的TX引脚为复用推挽输出
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_Init(GPIOA, &GPIO_InitStructure);
// 配置USART1的工作参数
USART_InitStructure.USART_BaudRate = 115200;
USART_InitStructure.USART_WordLength = USART_WordLength_8b;
USART_InitStructure.USART_StopBits = USART_StopBits_1;
USART_InitStructure.USART_Parity = USART_Parity_No;
USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
USART_InitStructure.USART_Mode = USART_Mode_Tx;
USART_Init(USART1, &USART_InitStructure);
// 使能USART1
USART_Cmd(USART1, ENABLE);
}
void USART1_SendChar(char ch)
{
while(USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET);
USART_SendData(USART1, ch);
}
void USART1_SendString(char* str)
{
while(*str)
{
USART1_SendChar(*str++);
}
}
void ADC1_Init(void)
{
ADC_InitTypeDef ADC_InitStructure;
GPIO_InitTypeDef GPIO_InitStructure;
// 使能ADC1和GPIOA时钟
RCC_APB2PeriphClockCmd(RCC_APB2Periph_ADC1 | RCC_APB2Periph_GPIOA, ENABLE);
// 配置PA0为模拟输入
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AIN;
GPIO_Init(GPIOA, &GPIO_InitStructure);
// 配置ADC1工作参数
ADC_InitStructure.ADC_Mode = ADC_Mode_Independent;
ADC_InitStructure.ADC_ScanConvMode = DISABLE;
ADC_InitStructure.ADC_ContinuousConvMode = ENABLE;
ADC_InitStructure.ADC_ExternalTrigConv = ADC_ExternalTrigConv_None;
ADC_InitStructure.ADC_DataAlign = ADC_DataAlign_Right;
ADC_InitStructure.ADC_NbrOfChannel = 1;
ADC_Init(ADC1, &ADC_InitStructure);
// 配置ADC1的通道0
ADC_RegularChannelConfig(ADC1, ADC_Channel_0, 1, ADC_SampleTime_55Cycles5);
// 使能ADC1
ADC_Cmd(ADC1, ENABLE);
// 等待ADC1校准完成
ADC_ResetCalibration(ADC1);
while(ADC_GetResetCalibrationStatus(ADC1));
ADC_StartCalibration(ADC1);
while(ADC_GetCalibrationStatus(ADC1));
}
uint16_t ADC1_Read(void)
{
ADC_SoftwareStartConvCmd(ADC1, ENABLE);
while(ADC_GetFlagStatus(ADC1, ADC_FLAG_EOC) == RESET);
return ADC_GetConversionValue(ADC1);
}
void delay(uint32_t nCount)
{
for(; nCount != 0; nCount--);
}
```
在这个示例代码中,我们使用USART1来发送数据。首先,我们在`USART1_Init()`函数中初始化USART1,并在`USART1_SendChar()`和`USART1_SendString()`函数中分别发送单个字符和字符串。然后,我们在`ADC1_Init()`函数中初始化ADC1,并在`ADC1_Read()`函数中读取ADC采样值。最后,我们在`main()`函数中循环读取ADC值并计算电压,并将电压值发送到串口。
注意,我们使用了`sprintf()`函数将浮点数转换为字符串,这需要包含`stdio.h`头文件。此外,我们在`delay()`函数中使用了简单的循环延时,这并不是一个好习惯,实际应用中应该使用更可靠的延时方法。
你需要将代码烧录到STM32F103板上,并使用串口调试工具连接板子。当你打开串口调试工具后,应该能够看到每隔一段时间,串口会输出一些数字,这些数字是ADC采样到的电压值。
阅读全文