<meter id="pryje"><nav id="pryje"><delect id="pryje"></delect></nav></meter>
          <label id="pryje"></label>

          新聞中心

          stm32學習之十

          作者: 時間:2016-12-03 來源:網(wǎng)絡 收藏
          USART,ADGPIO溫度傳感器:

          注意的是:

          本文引用地址:http://www.ex-cimer.com/article/201612/325179.htm

          1、ADC_RegularChannelConfig(ADC1,ADC_Channel_16,1,ADC_SampleTime_239Cycles5);

          2、ADC_TempSensorVrefintCmd(ENABLE);

          依照上一節(jié)的程序,可以改寫以下,形成現(xiàn)在的程序與效果:

          add.h和add.h(寫成這種方式,原因與上一節(jié)一樣)

          add.h的代碼:

          #ifndef _ADD_H
          #define _ADD_H

          #include "stm32f10x.h"
          //對于12位的ADC,3.3V的ADC值為0xfff,溫度為25度時對應的電壓值為1.43V即0x6EE
          #define V25 0x6EE

          //斜率 每攝氏度4.3mV 對應每攝氏度0x05
          #define AVG_SLOPE 0x05
          void ADC_Configure();

          #endif

          add.c的代碼如下:

          #include "add.h"
          #define ADC1_DR_Address ((u32)0x40012400 + 0x4C)

          __IO uint16_t ADC_ConvertedValue;


          static void ADC_GPIO_Config()
          {

          GPIO_InitTypeDef GPIO_InitStructure;

          RCC_AHBPeriphClockCmd(RCC_AHBPeriph_DMA1 ,ENABLE);
          RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC|RCC_APB2Periph_ADC1,ENABLE);

          GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AIN;
          GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1;
          GPIO_Init(GPIOC,&GPIO_InitStructure);

          }
          static void ADC_DMA_Config()
          {
          ADC_InitTypeDef ADC_InitStructure;
          DMA_InitTypeDef DMA_InitStructure;

          DMA_DeInit(DMA1_Channel1);
          DMA_InitStructure.DMA_BufferSize = 1;
          DMA_InitStructure.DMA_DIR = DMA_DIR_PeripheralSRC;
          DMA_InitStructure.DMA_M2M = DMA_M2M_Disable;
          DMA_InitStructure.DMA_MemoryBaseAddr = (u32)&ADC_ConvertedValue;
          DMA_InitStructure.DMA_MemoryDataSize = DMA_MemoryDataSize_HalfWord;
          DMA_InitStructure.DMA_MemoryInc= DMA_MemoryInc_Disable;
          DMA_InitStructure.DMA_Mode = DMA_Mode_Circular;
          DMA_InitStructure.DMA_PeripheralBaseAddr = ADC1_DR_Address;
          DMA_InitStructure.DMA_PeripheralDataSize = DMA_PeripheralDataSize_HalfWord;
          DMA_InitStructure.DMA_PeripheralInc= DMA_PeripheralInc_Disable;
          DMA_InitStructure.DMA_Priority = DMA_Priority_High;
          DMA_Init(DMA1_Channel1,&DMA_InitStructure);
          DMA_Cmd(DMA1_Channel1, ENABLE);

          ADC_InitStructure.ADC_ContinuousConvMode = ENABLE;
          ADC_InitStructure.ADC_DataAlign = ADC_DataAlign_Right;
          ADC_InitStructure.ADC_ExternalTrigConv = ADC_ExternalTrigConv_None;
          ADC_InitStructure.ADC_Mode = ADC_Mode_Independent;
          ADC_InitStructure.ADC_NbrOfChannel = 1;
          ADC_InitStructure.ADC_ScanConvMode = DISABLE;
          ADC_Init(ADC1,&ADC_InitStructure);



          RCC_ADCCLKConfig(RCC_PCLK2_Div8);
          ADC_RegularChannelConfig(ADC1,ADC_Channel_16,1,ADC_SampleTime_239Cycles5);

          ADC_TempSensorVrefintCmd(ENABLE);


          ADC_DMACmd(ADC1,ENABLE);
          ADC_Cmd(ADC1,ENABLE);

          ADC_ResetCalibration(ADC1);
          while(ADC_GetResetCalibrationStatus(ADC1));

          ADC_StartCalibration(ADC1);
          while(ADC_GetCalibrationStatus(ADC1));

          ADC_SoftwareStartConvCmd(ADC1,ENABLE);
          }


          void ADC_Configure()
          {
          ADC_GPIO_Config();
          ADC_DMA_Config();
          }

          usart.h的代碼:

          #ifndef _USART_H
          #define _USAET_H
          #include
          void Usart_GPIO_Config(void);
          int fputc(int ch,FILE *f);

          #endif


          usart.c的代碼:

          #include "usart.h"
          #include "stm32f10x.h"

          void Usart_GPIO_Config()
          {
          USART_InitTypeDef USART_InitStructure;
          GPIO_InitTypeDef GPIO_InitStructure;

          RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA|RCC_APB2Periph_USART1,ENABLE);
          GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
          GPIO_InitStructure.GPIO_Pin= GPIO_Pin_9;
          GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
          GPIO_Init(GPIOA,&GPIO_InitStructure);

          GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
          GPIO_InitStructure.GPIO_Pin= GPIO_Pin_10;
          GPIO_Init(GPIOA,&GPIO_InitStructure); //注意的是,這個必須得加上,原因不清

          USART_InitStructure.USART_BaudRate = 115200;
          USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
          USART_InitStructure.USART_Mode = USART_Mode_Tx|USART_Mode_Rx;
          USART_InitStructure.USART_Parity = USART_Parity_No;
          USART_InitStructure.USART_StopBits = USART_StopBits_1;
          USART_InitStructure.USART_WordLength = USART_WordLength_8b;
          USART_Init(USART1,&USART_InitStructure);
          USART_Cmd(USART1,ENABLE);
          }


          int fputc(int ch,FILE *f)
          {
          USART_SendData(USART1,(unsigned char)ch);
          while(!(USART1->SR & USART_FLAG_TXE));
          return ch;
          }


          main.c的代碼如下:

          /******************** (C) COPYRIGHT 2013 **************************
          * 文件名 :main.c
          * 描述 :用3.5.0版本建的工程模板。
          * 實驗平臺:野火STM32開發(fā)板
          * 庫版本 :ST3.5.0
          *
          * 作者 :wit_yuan
          * 時間 : 2013年4月29日
          * 版本 :v1.0
          **********************************************************************************/
          #include "stm32f10x.h"
          #include "add.h"
          #include "usart.h"
          void delay(__IO uint32_t count);

          extern __IO uint16_t ADC_ConvertedValue;

          u16 Current_Temp;

          /*
          * 函數(shù)名:main
          * 描述 : 主函數(shù)
          * 輸入 :無
          * 輸出 : 無
          */
          int main(void)
          {
          Usart_GPIO_Config();
          ADC_Configure();

          while(1)
          {
          Current_Temp=(V25-ADC_ConvertedValue)/AVG_SLOPE+25;

          //10進制顯示
          printf("rn The current temperature= %3d ℃rn", Current_Temp);
          delay(0x01fffff0);

          }
          // add your code here ^_^。
          }
          /******************* (C) COPYRIGHT 2013 *****END OF FILE************/
          void delay(__IO uint32_t count)
          {
          for(;count>0;count--);
          }

          形成的效果如下:



          評論


          技術專區(qū)

          關閉
          看屁屁www成人影院,亚洲人妻成人图片,亚洲精品成人午夜在线,日韩在线 欧美成人 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();