adc.c 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. #include "includes.h"
  2. int g_iVbat=0;
  3. void ADCInit(void)
  4. {
  5. ADC_InitTypeDef ADC_InitStructure;
  6. GPIO_InitTypeDef GPIO_InitStructure;
  7. RCC_APB2PeriphClockCmd(RCC_APB2Periph_ADC2,ENABLE);
  8. RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
  9. GPIO_InitStructure.GPIO_Pin =GPIO_Pin_0;
  10. GPIO_InitStructure.GPIO_Mode =GPIO_Mode_IPU;//先内部上拉模式给IO充能
  11. GPIO_Init(GPIOA,&GPIO_InitStructure);
  12. DelayMs(100);
  13. GPIO_InitStructure.GPIO_Mode =GPIO_Mode_AIN;
  14. GPIO_Init(GPIOA,&GPIO_InitStructure); //默认速度为两兆
  15. DelayMs(200);//让电平恢复正常
  16. //配置ADC的运行:
  17. ADC_InitStructure.ADC_Mode = ADC_Mode_Independent; //独立模式
  18. ADC_InitStructure.ADC_ScanConvMode = DISABLE; //连续多通道模式
  19. ADC_InitStructure.ADC_ContinuousConvMode= DISABLE;//ENABLE; //连续转换
  20. ADC_InitStructure.ADC_ExternalTrigConv = ADC_ExternalTrigConv_None; //转换不受外界决定
  21. ADC_InitStructure.ADC_DataAlign =ADC_DataAlign_Right; //右对齐
  22. ADC_InitStructure.ADC_NbrOfChannel =1; //扫描通道数
  23. ADC_Init(ADC2,&ADC_InitStructure);
  24. ADC_RegularChannelConfig(ADC2,ADC_Channel_0, 1,ADC_SampleTime_1Cycles5); //通道X,采样时间为1.5周期,1代表规则通道第1个这个1是啥意思我不太清楚只有是1的时候我的ADC才正常。
  25. ADC_Cmd (ADC2,ENABLE); //使能或者失能指定的ADC
  26. ADC_SoftwareStartConvCmd(ADC2,ENABLE);//使能或者失能指定的ADC的软件转换启动功能
  27. }
  28. /***********************************************************************
  29. *获取电池电压
  30. 返回值: -1为无效 ; 正数表示电池电压放大100倍,如 382表示3.82V
  31. ***********************************************************************/
  32. int GetVbat(void)
  33. {
  34. char buf[30];
  35. static int Ct=0;
  36. static int siVbat[10]={0,0,0,0,0,0,0,0,0,0};
  37. int iVbat[10];
  38. int max[5];
  39. int sum;
  40. int i,j,k;
  41. int adc;
  42. int Vbat;
  43. ADC_StartCalibration(ADC2);
  44. ADC_SoftwareStartConvCmd(ADC2,ENABLE);
  45. while(ADC_GetFlagStatus(ADC2, ADC_FLAG_EOC) == RESET);
  46. adc=ADC_GetConversionValue(ADC2);
  47. if(adc<100 && adc>4095)
  48. {
  49. printf("VDAC OVER");
  50. return -1;
  51. }
  52. //循环存储
  53. siVbat[Ct]=adc;
  54. if(++Ct>9)Ct=0;
  55. //printf("%d,%d,%d,%d,%d,%d,%d,%d,%d,%d\r\n",siVbat[0],siVbat[1],siVbat[2],siVbat[3],siVbat[4],siVbat[5],siVbat[6],siVbat[7],siVbat[8],siVbat[9]);
  56. //滤波处理,排列取3个最大值,3个最大中去掉第一大,其余求平均
  57. //拷贝
  58. for(i=0;i<10;i++){
  59. iVbat[i]=siVbat[i];
  60. }
  61. for(i=0;i<4;i++){
  62. max[i]=0;
  63. for(j=0;j<10;j++){
  64. if(iVbat[j]>max[i]){
  65. max[i]=iVbat[j];
  66. k=j;
  67. }
  68. }
  69. iVbat[k]=0;
  70. }
  71. // printf("%d,%d,%d\r\n",max[0],max[1],max[2]);
  72. sum=max[1]+max[2];
  73. if(max[2]<200)
  74. {
  75. //printf("ERR3");
  76. return -1;
  77. }
  78. Vbat=sum*308/4096;
  79. return Vbat;
  80. }
  81. /*******************************************************
  82. *CheckVbat
  83. *检查电池电压,控制低压报警,
  84. *低压关机已由硬件监测
  85. ******************************************************/
  86. void CheckVbat(int Vbat)
  87. {
  88. static unsigned char sucCt=0;//提示“请充电”计数器
  89. if(Vbat<MIN_PWR_LEVEL){//330
  90. SlwTrace(INF,"Vbat low!shutdown now!",1);
  91. //关闭模块
  92. // if(sutPocStatus.ModemPowerOn==1){
  93. //// //发送机指令并等待7秒
  94. //// cmdShutDown(1);
  95. // }
  96. //发送机指令并等待7秒
  97. // 重启后再睡眠,则无需喂狗、
  98. sutProductPara.SleepFlag=1;
  99. SaveProductParaToFlash();
  100. cmdShutDown(1);
  101. while(1);
  102. }
  103. }
  104. char SetSpkLvProcess(char update)
  105. {
  106. short templv=0;
  107. static char LastTemplv=0;
  108. static unsigned char Lastnum=0;//0
  109. static short SpkCnt=0;
  110. unsigned char i=0;
  111. char buf[30];
  112. const unsigned short VolArr[VOL_LEV_NUM]={100,200,410,820,1230,1640,2050,2460,3000};//,4090};
  113. templv=GetPowerVbat();
  114. LastTemplv=Lastnum;
  115. for(i=0;i<VOL_LEV_NUM;i++)
  116. {
  117. if(LastTemplv==0){
  118. if(LastTemplv==0)if(templv>VolArr[LastTemplv]+VOL_LEV_DEF)LastTemplv++;
  119. }else if(LastTemplv<VOL_LEV_NUM-1){
  120. if(templv>=VolArr[LastTemplv]+VOL_LEV_DEF)LastTemplv++;
  121. else if(templv<VolArr[LastTemplv-1]-VOL_LEV_DEF)LastTemplv--;
  122. }else {
  123. if(LastTemplv==VOL_LEV_NUM-1)if(templv<VolArr[LastTemplv-1]-VOL_LEV_DEF)LastTemplv--;
  124. }
  125. }
  126. // printf("templv=%d----num===%d\r\n",templv,LastTemplv);
  127. if(update==1) return LastTemplv;
  128. if(LastTemplv!=Lastnum||update==2){
  129. if(LastTemplv!=0)SpeakerEnable();
  130. printf("templv=%d----num===%d\r\n",templv,LastTemplv);
  131. if(update==2){
  132. Lastnum=LastTemplv;
  133. FMSetVolume(Lastnum,1);
  134. }
  135. else{
  136. if(sutUIstatus.Status==UIS_STANDBY)
  137. {
  138. GuiDrawRect(26,110,106,124,1);//115
  139. if(LastTemplv<Lastnum)GuiClearRect(27+LastTemplv*10,110+1,105,123);
  140. GuiFillRect(26,110+1,26+LastTemplv*10-1,124-1,COLOR_BLUE);// COLOR_BLUE
  141. snprintf(buf,sizeof(buf),"%d",LastTemplv);
  142. GuiShowStr(109,109,buf,0x10,0);
  143. }
  144. Lastnum=LastTemplv;
  145. FMSetVolume(LastTemplv,1);
  146. }
  147. SpkCnt=300;
  148. }
  149. if(SpkCnt>0){
  150. if((--SpkCnt==0)&&(sutUIstatus.Status==UIS_STANDBY)){
  151. GuiClearRect(26,110,125,124);
  152. if(g_uslockflag==1){
  153. GuiShowBmp(72,110,"lock.bmp");
  154. }
  155. if(sutPocStatus.Speaker==0&&sutPocStatus.TTS==0) SpeakerDisable();
  156. }
  157. }
  158. return LastTemplv;
  159. }
  160. void BatterProcess(void){
  161. static char tick=0;
  162. int vbat;
  163. vbat=GetVbat();
  164. if(vbat > 0) g_iVbat=vbat;
  165. if(++tick<=3) return;
  166. tick=0;
  167. CheckVbat(g_iVbat);
  168. }
  169. unsigned short getBat(void){
  170. unsigned short ret;
  171. ret=(g_iVbat-MIN_PWR_LEVEL) * 100 / (400-MIN_PWR_LEVEL);
  172. return ((ret>100)?100:ret);
  173. }
  174. void PowerADCInit(void)
  175. {
  176. ADC_InitTypeDef ADC_InitStructure;
  177. GPIO_InitTypeDef GPIO_InitStructure;
  178. RCC_APB2PeriphClockCmd(RCC_APB2Periph_ADC1,ENABLE);
  179. RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
  180. GPIO_InitStructure.GPIO_Pin =VOL_ADC_PIN;
  181. GPIO_InitStructure.GPIO_Mode =GPIO_Mode_IPU;//先内部上拉模式给IO充能
  182. GPIO_Init(VOL_ADC_PORT,&GPIO_InitStructure);
  183. DelayMs(100);
  184. GPIO_InitStructure.GPIO_Mode =GPIO_Mode_AIN;
  185. GPIO_Init(VOL_ADC_PORT,&GPIO_InitStructure); //默认速度为两兆
  186. DelayMs(200);//让电平恢复正常
  187. //配置ADC的运行:
  188. ADC_InitStructure.ADC_Mode = ADC_Mode_Independent; //独立模式
  189. ADC_InitStructure.ADC_ScanConvMode =DISABLE; //连续多通道模式
  190. ADC_InitStructure.ADC_ContinuousConvMode =DISABLE;//ENABLE; //连续转换
  191. ADC_InitStructure.ADC_ExternalTrigConv = ADC_ExternalTrigConv_None; //转换不受外界决定
  192. ADC_InitStructure.ADC_DataAlign =ADC_DataAlign_Right; //右对齐
  193. ADC_InitStructure.ADC_NbrOfChannel =1; //扫描通道数
  194. ADC_Init(ADC1,&ADC_InitStructure);
  195. // ADC_RegularChannelConfig(ADC1,ADC_Channel_1, 1,ADC_SampleTime_1Cycles5); //通道X,采样时间为1.5周期,1代表规则通道第1个这个1是啥意思我不太清楚只有是1的时候我的ADC才正常。
  196. // ADC_Cmd (ADC1,ENABLE); //使能或者失能指定的ADC
  197. // ADC_SoftwareStartConvCmd(ADC1,ENABLE);//使能或者失能指定的ADC的软件转换启动功能
  198. ADC_Cmd(ADC1,ENABLE);
  199. /* Enable ADC1 reset calibaration register */
  200. ADC_ResetCalibration(ADC1);
  201. /* Check the end of ADC1 reset calibration register */
  202. while(ADC_GetResetCalibrationStatus(ADC1));
  203. /* Start ADC1 calibaration */
  204. ADC_StartCalibration(ADC1);
  205. /* Check the end of ADC1 calibration */
  206. while(ADC_GetCalibrationStatus(ADC1));
  207. }
  208. int GetPowerVbat(void)
  209. {
  210. int adc;
  211. int Vbat;
  212. ADC_StartCalibration(ADC1);
  213. ADC_RegularChannelConfig(ADC1, ADC_Channel_8, 1, ADC_SampleTime_1Cycles5 );
  214. ADC_SoftwareStartConvCmd(ADC1,ENABLE);
  215. while(ADC_GetFlagStatus(ADC1, ADC_FLAG_EOC) == RESET);
  216. adc=ADC_GetConversionValue(ADC1);
  217. if(adc<100 && adc>4095)
  218. {
  219. printf("VDAC OVER");
  220. return -1;
  221. }
  222. Vbat=adc;
  223. return Vbat;
  224. }