Hi,
Driver:
https://github.com/torvalds/linux/blob/master/drivers/iio/adc/ti-ads124s08.c
API:
ads124s_read_raw
Line:
233
For start and stop conversation, the driver uses the following values:
#define ADS124S08_START_CONV 0x01
#define ADS124S08_STOP_CONV 0x00
But as per the datasheet, expected values are:
#define ADS124S08_CMD_START 0x08
#define ADS124S08_CMD_STOP 0x0a
So, can anyone please let me know the reason behind this?