|
|
|
|
@ -20,49 +20,65 @@
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define ADC_NEW_SAMPLE 0x80
|
|
|
|
|
#define ADC_READ_DATA 0x40
|
|
|
|
|
|
|
|
|
|
#define ADC_BITS_MASK 0x0c
|
|
|
|
|
|
|
|
|
|
#define ADC_ADDR 0xD0 /* or 0x68 */
|
|
|
|
|
|
|
|
|
|
uint8_t r[4];
|
|
|
|
|
uint8_t curmode;
|
|
|
|
|
|
|
|
|
|
void mcpadc_init(uint8_t mode)
|
|
|
|
|
{
|
|
|
|
|
i2c_write(ADC_ADDR, 1, &mode);
|
|
|
|
|
curmode = mode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
uint8_t mcpadc_has_new_data()
|
|
|
|
|
uint8_t mcpadc_has_new_data(void)
|
|
|
|
|
{
|
|
|
|
|
i2c_read(ADC_ADDR, 4, r);/* 4 bytes are only needed in 18 bit mode */
|
|
|
|
|
return(r[3] & ADC_NEW_SAMPLE);
|
|
|
|
|
/* this assumes that the first RDY bit read after the sample data indicates the old/new state of the sample we just read */
|
|
|
|
|
if(curmode & ADC_BITS_MASK == ADC_BITS_18)
|
|
|
|
|
{
|
|
|
|
|
i2c_read(ADC_ADDR, 4, r);
|
|
|
|
|
curmode = r[4];
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
i2c_read(ADC_ADDR, 3, r);
|
|
|
|
|
curmode = r[3];
|
|
|
|
|
}
|
|
|
|
|
if(~curmode & ADC_NEW_SAMPLE) {curmode &= ADC_READ_DATA;}
|
|
|
|
|
return ~curmode & ADC_READ_DATA;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if ADC_ENABLE_18_BIT_MODE
|
|
|
|
|
int32_t mcpadc_get_data()
|
|
|
|
|
int32_t mcpadc_get_data(void)
|
|
|
|
|
{
|
|
|
|
|
int32_t value = 0;
|
|
|
|
|
i2c_read(ADC_ADDR, 4, r);/* reading 4 bytes guarantees us one config byte */
|
|
|
|
|
if(r[0] & 0x80) {value = 0xffff;}
|
|
|
|
|
value = (value << 16) | (r[0] << 8) | r[1];/*endianess ???*/
|
|
|
|
|
value = (value << 16) | (r[0] << 8) | r[1];
|
|
|
|
|
if((uint8_t) r[3] & ADC_BITS_MASK == ADC_BITS_18)
|
|
|
|
|
{
|
|
|
|
|
value = (value << 8) | r[2];
|
|
|
|
|
}
|
|
|
|
|
curmode |= (ADC_NEW_SAMPLE & ADC_READ_DATA);
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
int16_t mcpadc_get_data()
|
|
|
|
|
int16_t mcpadc_get_data(void)
|
|
|
|
|
{
|
|
|
|
|
i2c_read(ADC_ADDR, 2, r);/* this will NOT work in 18 bit mode */
|
|
|
|
|
int16_t value = (r[0] << 8) | r[1];/*endianess ???*/
|
|
|
|
|
int16_t value = (r[0] << 8) | r[1];
|
|
|
|
|
curmode |= (ADC_NEW_SAMPLE & ADC_READ_DATA);
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void mcpadc_start_conv()
|
|
|
|
|
void mcpadc_start_conv(void)
|
|
|
|
|
{
|
|
|
|
|
i2c_read(ADC_ADDR, 4, r);
|
|
|
|
|
r[3] |= ADC_NEW_SAMPLE;
|
|
|
|
|
r[3] = curmode | ADC_NEW_SAMPLE;
|
|
|
|
|
i2c_write(ADC_ADDR, 1, &(r[3]));
|
|
|
|
|
curmode |= (ADC_NEW_SAMPLE & ADC_READ_DATA);/* you asked for a new sample - no you won't get the old one */
|
|
|
|
|
}
|
|
|
|
|
|