| /** |
| * \file mbtk_adc.c |
| * \brief A Documented file. |
| * |
| * Detailed description |
| * \Author: js.wang <js.wang@mobiletek.cn> |
| * \Version: 1.0.0 |
| * \Date: 2022-04-22 |
| */ |
| #include <fcntl.h> |
| #include <stdint.h> |
| #include <limits.h> |
| #include <termios.h> |
| #include <stdarg.h> |
| #include <dirent.h> |
| #include <sys/stat.h> |
| #include <sys/statfs.h> |
| #include <sys/types.h> |
| #include "mbtk_log.h" |
| #include "mbtk_type.h" |
| #include "mbtk_adc.h" |
| |
| #define ADC_DEVICE_802 "/sys/devices/soc.0/d4000000.apb/pxa2xx-i2c.2/i2c-2/2-0030/pm802-bat/adc" |
| #define ADC_DEVICE_803 "/sys/kernel/debug/adc" |
| |
| int mbtk_adc_close(void) |
| { |
| int ret = 0; |
| int fd = 0; |
| char adc = '3'; |
| //system("echo 3 > /sys/kernel/debug/adc"); |
| if(!access(ADC_DEVICE_803, R_OK)) |
| { |
| LOGI("DEV:%s", ADC_DEVICE_803); |
| fd = open(ADC_DEVICE_803, O_RDWR|O_CREAT|O_TRUNC, 0644); |
| } |
| else |
| { |
| LOGE("No found ADC devices."); |
| return -1; |
| } |
| |
| if(fd < 0) { |
| LOGE("[%s] file open error\n", __FUNCTION__); |
| return -2; |
| } |
| ret = write(fd, &adc, 1); |
| if (ret < 0) { |
| LOGE("%s: error writing to file!\n", __FUNCTION__); |
| close(fd); |
| return -2; |
| } |
| close(fd); |
| return 0; |
| } |
| |
| int mbtk_adc_get(mbtk_adc_enum channle) |
| { |
| int ret = 0; |
| int fd = 0; |
| char adc_buf[24] = {0}; |
| char *adc_value = NULL; |
| char adc = (channle == MBTK_ADC0 ? '0' : '1'); |
| |
| if(!access(ADC_DEVICE_802, R_OK)) { |
| LOGI("DEV:%s", ADC_DEVICE_802); |
| fd = open(ADC_DEVICE_802, O_RDWR|O_CREAT|O_TRUNC, 0644); |
| } else { |
| if(!access(ADC_DEVICE_803, R_OK)) { |
| LOGI("DEV:%s", ADC_DEVICE_803); |
| fd = open(ADC_DEVICE_803, O_RDWR|O_CREAT|O_TRUNC, 0644); |
| } else { |
| LOGE("No found ADC devices."); |
| return -1; |
| } |
| } |
| |
| if(fd < 0) { |
| LOGE("[%s] file open error\n", __FUNCTION__); |
| return -2; |
| } |
| ret = write(fd, &adc, 1); |
| if (ret < 0) { |
| LOGE("%s: error writing to file!\n", __FUNCTION__); |
| close(fd); |
| return -2; |
| } |
| ret = read(fd, adc_buf, 24); |
| if (ret < 0) { |
| LOGE("%s: error writing to file!\n", __FUNCTION__); |
| close(fd); |
| return -2; |
| }else{ |
| LOGI("%s %d adc:%s\n", __FUNCTION__, __LINE__, adc_buf); |
| adc_value = strstr(adc_buf, "channel"); |
| } |
| close(fd); |
| if(adc_value) |
| { |
| //LOGI("%s adc: %s\n", __FUNCTION__, adc_value); |
| } |
| else |
| return -2; |
| |
| return atoi(&adc_value[9]); |
| } |