#!/bin/bash

echo "Adc means Analog Digital Converter."
echo ""
echo "It is mainly used by the battery/charger device driver."
echo "On current system, it is not supported to get the adc."
echo "But, you can do the following to see it yourself:"
echo ""
echo "    echo -ffff > /proc/driver/pm860x_charger"
echo "    cat /proc/driver/pm860x_charger"
echo ""
echo "But you can only see the results on the serial console".
echo ""
echo "Or, you can view the result using I2C tools,"
echo "because each value is read from an I2C register."
echo "But you need to find out the I2C bus/device and"
echo "meaning of each register yourself".
