123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- #include "myADC.h"
- #include "board.h"
- #include "stm32f10x.h"
- #include "stm32f10x_adc.h"
- ADC_InitTypeDef ADC_InitStructure;
- __IO uint16_t VREFINT_CAL;
- uint16_t getRefAdcValue;
- void myADC_delay(void)
- {
- uint16_t i = 0;
- for (i = 0; i < 1000; i++)
- {
- ;
- }
-
- }
- void myADC_init(void)
- {
- GPIO_InitTypeDef GPIO_InitStructure;
-
- RCC_APB2PeriphClockCmd(RCC_APB2Periph_ADC1, ENABLE);
- GPIO_InitStructure.GPIO_Pin = BOARD_PIN_CURRENT_AD;
- GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AIN;
- GPIO_Init(BOARD_PORT_CURRENT_AD, &GPIO_InitStructure);
-
-
-
-
-
- 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;
- ADC_Init(ADC1, &ADC_InitStructure);
-
- ADC_RegularChannelConfig(ADC1, ADC_Channel_1, 1, ADC_SampleTime_55Cycles5);
- ADC_RegularChannelConfig(ADC1, ADC_Channel_Vrefint, 2, ADC_SampleTime_55Cycles5);
-
-
-
- ADC_Cmd(ADC1, ENABLE);
- ADC_TempSensorVrefintCmd(ENABLE);
-
- ADC_ResetCalibration(ADC1);
-
- while(ADC_GetResetCalibrationStatus(ADC1));
-
- ADC_StartCalibration(ADC1);
-
- while(ADC_GetCalibrationStatus(ADC1));
-
-
- ADC_SoftwareStartConvCmd(ADC1, ENABLE);
-
- }
- uint16_t myADC_getValue(void)
- {
- uint16_t getAdcValue;
- getAdcValue = ADC_GetConversionValue(ADC1);
- return getAdcValue;
- }
- uint16_t myADC_getADC(uint8_t chl)
- {
- uint16_t getAdcValue;
-
-
- ADC_RegularChannelConfig(ADC1, chl, 1, ADC_SampleTime_239Cycles5);
- ADC_SoftwareStartConvCmd(ADC1, ENABLE);
- while(!ADC_GetFlagStatus(ADC1, ADC_FLAG_EOC));
- getAdcValue = ADC_GetConversionValue(ADC1);
- return getAdcValue;
- }
- float myADC_getVoltageValue(void)
- {
- uint16_t getAdcValue;
- uint16_t getRefAdcValue;
- float voltage;
- getRefAdcValue = myADC_getADC(ADC_Channel_Vrefint);
- getAdcValue = myADC_getADC(ADC_Channel_1);
- voltage = (float)getAdcValue * 1.2 / getRefAdcValue;
- return voltage;
- }
|