include/nuttx/analog/ads1242.h: fix nxstyle warnings

This commit is contained in:
Pelle Windestam 2020-03-10 13:45:44 +01:00 committed by patacongo
parent b6fd522699
commit 1d3afe943a

View File

@ -51,6 +51,7 @@
****************************************************************************/ ****************************************************************************/
/* IOCTL Commands ***********************************************************/ /* IOCTL Commands ***********************************************************/
/* Cmd: ANIOC_ADS2142_READ Arg: uint32_t *value /* Cmd: ANIOC_ADS2142_READ Arg: uint32_t *value
* Cmd: ANIOC_ADS2142_SET_GAIN Arg: uint8_t value * Cmd: ANIOC_ADS2142_SET_GAIN Arg: uint8_t value
* Cmd: ANIOC_ADS2142_SET_POSITIVE_INPUT Arg: uint8_t value * Cmd: ANIOC_ADS2142_SET_POSITIVE_INPUT Arg: uint8_t value
@ -130,14 +131,14 @@
typedef enum typedef enum
{ {
ADS1242_x1 = 0, ADS1242_X1 = 0,
ADS1242_x2 = ADS1242_REG_SETUP_BIT_PGA0, ADS1242_X2 = ADS1242_REG_SETUP_BIT_PGA0,
ADS1242_x4 = ADS1242_REG_SETUP_BIT_PGA1, ADS1242_X4 = ADS1242_REG_SETUP_BIT_PGA1,
ADS1242_x8 = ADS1242_REG_SETUP_BIT_PGA1 | ADS1242_REG_SETUP_BIT_PGA0, ADS1242_X8 = ADS1242_REG_SETUP_BIT_PGA1 | ADS1242_REG_SETUP_BIT_PGA0,
ADS1242_x16 = ADS1242_REG_SETUP_BIT_PGA2, ADS1242_X16 = ADS1242_REG_SETUP_BIT_PGA2,
ADS1242_x32 = ADS1242_REG_SETUP_BIT_PGA2 | ADS1242_REG_SETUP_BIT_PGA0, ADS1242_X32 = ADS1242_REG_SETUP_BIT_PGA2 | ADS1242_REG_SETUP_BIT_PGA0,
ADS1242_x64 = ADS1242_REG_SETUP_BIT_PGA2 | ADS1242_REG_SETUP_BIT_PGA1, ADS1242_X64 = ADS1242_REG_SETUP_BIT_PGA2 | ADS1242_REG_SETUP_BIT_PGA1,
ADS1242_x128 = ADS1242_REG_SETUP_BIT_PGA2 | ADS1242_REG_SETUP_BIT_PGA1 | ADS1242_X128 = ADS1242_REG_SETUP_BIT_PGA2 | ADS1242_REG_SETUP_BIT_PGA1 |
ADS1242_REG_SETUP_BIT_PGA0 ADS1242_REG_SETUP_BIT_PGA0
} ADS1242_GAIN_SELECTION; } ADS1242_GAIN_SELECTION;
@ -187,10 +188,11 @@ extern "C"
* *
* Input Parameters: * Input Parameters:
* devpath - The full path to the driver to register. E.g., "/dev/ads1242" * devpath - The full path to the driver to register. E.g., "/dev/ads1242"
* spi - An instance of the SPI interface to use to communicate with ADS1242 * spi - An instance of the SPI interface to use to communicate with
* osc_freq_hz - The frequency of the ADS1242 oscillator in Hz. Required for * ADS1242
* calculating the minimum delay periods when accessing the device via SPI. * osc_freq_hz - The frequency of the ADS1242 oscillator in Hz. Required
* * for calculating the minimum delay periods when accessing
* the device via SPI.
* *
* Returned Value: * Returned Value:
* Zero (OK) on success; a negated errno value on failure. * Zero (OK) on success; a negated errno value on failure.