fdc2x1x.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * Copyright (c) 2020 arithmetics.io
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Extended public API for the Texas Instruments FDC2X1X
  9. */
  10. #ifndef ZEPHYR_INCLUDE_DRIVERS_SENSOR_FDC2X1X_H_
  11. #define ZEPHYR_INCLUDE_DRIVERS_SENSOR_FDC2X1X_H_
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. #include <drivers/sensor.h>
  16. enum sensor_channel_fdc2x1x {
  17. /** CH0 Capacitance, in Picofarad **/
  18. SENSOR_CHAN_FDC2X1X_CAPACITANCE_CH0 = SENSOR_CHAN_PRIV_START,
  19. /** CH1 Capacitance, in Picofarad **/
  20. SENSOR_CHAN_FDC2X1X_CAPACITANCE_CH1,
  21. /** CH2 Capacitance, in Picofarad **/
  22. SENSOR_CHAN_FDC2X1X_CAPACITANCE_CH2,
  23. /** CH3 Capacitance, in Picofarad **/
  24. SENSOR_CHAN_FDC2X1X_CAPACITANCE_CH3,
  25. /** CH0 Frequency, in MHz **/
  26. SENSOR_CHAN_FDC2X1X_FREQ_CH0,
  27. /** CH1 Frequency, in MHz **/
  28. SENSOR_CHAN_FDC2X1X_FREQ_CH1,
  29. /** CH2 Frequency, in MHz **/
  30. SENSOR_CHAN_FDC2X1X_FREQ_CH2,
  31. /** CH3 Frequency, in MHz **/
  32. SENSOR_CHAN_FDC2X1X_FREQ_CH3,
  33. };
  34. #ifdef __cplusplus
  35. }
  36. #endif
  37. #endif /* ZEPHYR_INCLUDE_DRIVERS_SENSOR_FDC2X1X_ */