编写stm32f103c8t6利用AD采集电压信号并通过串口输出的程序
时间: 2023-08-01 15:12:01 浏览: 1018
stm32f103c8t6实现adc采样例程,基于stm32cube
5星 · 资源好评率100%
好的,以下是一个简单的利用STM32F103C8T6的ADC模块进行电压采集并通过串口输出的程序:
```c
#include "stm32f10x.h"
#include "stdio.h"
#define ADC1_DR_Address ((uint32_t)0x4001244C)
void ADC1_Init(void);
void USART1_Init(void);
void USART1_SendChar(uint8_t ch);
void USART1_SendString(char* str);
int main(void)
{
uint16_t adc_value;
float voltage;
ADC1_Init();
USART1_Init();
while(1)
{
ADC_SoftwareStartConvCmd(ADC1, ENABLE); // 开始ADC转换
while(!ADC_GetFlagStatus(ADC1, ADC_FLAG_EOC)); // 等待转换完成
adc_value = ADC_GetConversionValue(ADC1); // 获取ADC采样值
voltage = (float)adc_value * 3.3 / 4096.0; // 转换为电压值
char buffer[20];
sprintf(buffer, "Voltage: %.2fV\r\n", voltage); // 格式化字符串
USART1_SendString(buffer); // 通过串口发送字符串
delay_ms(1000); // 延时1s
}
}
void ADC1_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
ADC_InitTypeDef ADC_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_ADC1, ENABLE); // 使能GPIOA和ADC1时钟
// 配置ADC1通道5对应的GPIOA.5引脚
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AIN;
GPIO_Init(GPIOA, &GPIO_InitStructure);
ADC_DeInit(ADC1); // 将ADC1的寄存器重置为缺省值
// ADC1的配置
ADC_InitStructure.ADC_Mode = ADC_Mode_Independent; // 独立模式
ADC_InitStructure.ADC_ScanConvMode = DISABLE; // 关闭扫描模式
ADC_InitStructure.ADC_ContinuousConvMode = DISABLE; // 关闭连续转换模式
ADC_InitStructure.ADC_ExternalTrigConv = ADC_ExternalTrigConv_None; // 禁止外部触发转换
ADC_InitStructure.ADC_DataAlign = ADC_DataAlign_Right; // 数据右对齐
ADC_InitStructure.ADC_NbrOfChannel = 1; // 转换通道数目为1
ADC_Init(ADC1, &ADC_InitStructure);
ADC_Cmd(ADC1, ENABLE); // 使能ADC1
ADC_ResetCalibration(ADC1); // 重置ADC1校准寄存器
while(ADC_GetResetCalibrationStatus(ADC1)); // 等待ADC1校准寄存器重置完成
ADC_StartCalibration(ADC1); // 开始ADC1校准
while(ADC_GetCalibrationStatus(ADC1)); // 等待ADC1校准完成
}
void USART1_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_USART1, ENABLE); // 使能GPIOA和USART1时钟
// 配置PA9为USART1 TX
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
// 配置PA10为USART1 RX
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_Init(GPIOA, &GPIO_InitStructure);
USART_InitStructure.USART_BaudRate = 115200; // 波特率为115200
USART_InitStructure.USART_WordLength = USART_WordLength_8b; // 数据位为8位
USART_InitStructure.USART_StopBits = USART_StopBits_1; // 停止位为1位
USART_InitStructure.USART_Parity = USART_Parity_No; // 无校验
USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None; // 无硬件流控制
USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx; // 支持接收和发送
USART_Init(USART1, &USART_InitStructure); // 初始化USART1
USART_Cmd(USART1, ENABLE); // 使能USART1
}
void USART1_SendChar(uint8_t ch)
{
while(USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET); // 等待发送缓冲区为空
USART_SendData(USART1, ch); // 发送数据
}
void USART1_SendString(char* str)
{
while(*str)
{
USART1_SendChar(*str++);
}
}
void delay_ms(uint32_t ms)
{
uint32_t i, j;
for(i = 0; i < ms; i++)
{
for(j = 0; j < 2000; j++);
}
}
```
注意,以上程序仅供参考,实际应用中可能需要根据具体情况进行修改。同时,还需要在工程中添加相关的库文件和头文件。
阅读全文