1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- #include "myADC.h"
- #include "board.h"
- #include "stm32f10x.h"
- #include "stm32f10x_adc.h"
- ADC_InitTypeDef ADC_InitStructure;
- __IO uint16_t VREFINT_CAL;
- 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 = ENABLE;
- 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);
-
- ADC_RegularChannelConfig(ADC1, ADC_Channel_1, 1, ADC_SampleTime_55Cycles5);
-
-
-
- ADC_Cmd(ADC1, 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;
- }
|