sensor.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686
  1. /**
  2. * @file drivers/sensor.h
  3. *
  4. * @brief Public APIs for the sensor driver.
  5. */
  6. /*
  7. * Copyright (c) 2016 Intel Corporation
  8. *
  9. * SPDX-License-Identifier: Apache-2.0
  10. */
  11. #ifndef ZEPHYR_INCLUDE_DRIVERS_SENSOR_H_
  12. #define ZEPHYR_INCLUDE_DRIVERS_SENSOR_H_
  13. /**
  14. * @brief Sensor Interface
  15. * @defgroup sensor_interface Sensor Interface
  16. * @ingroup io_interfaces
  17. * @{
  18. */
  19. #include <zephyr/types.h>
  20. #include <device.h>
  21. #include <errno.h>
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /**
  26. * @brief Representation of a sensor readout value.
  27. *
  28. * The value is represented as having an integer and a fractional part,
  29. * and can be obtained using the formula val1 + val2 * 10^(-6). Negative
  30. * values also adhere to the above formula, but may need special attention.
  31. * Here are some examples of the value representation:
  32. *
  33. * 0.5: val1 = 0, val2 = 500000
  34. * -0.5: val1 = 0, val2 = -500000
  35. * -1.0: val1 = -1, val2 = 0
  36. * -1.5: val1 = -1, val2 = -500000
  37. */
  38. struct sensor_value {
  39. /** Integer part of the value. */
  40. int32_t val1;
  41. /** Fractional part of the value (in one-millionth parts). */
  42. int32_t val2;
  43. };
  44. /**
  45. * @brief Sensor channels.
  46. */
  47. enum sensor_channel {
  48. /** Acceleration on the X axis, in m/s^2. */
  49. SENSOR_CHAN_ACCEL_X,
  50. /** Acceleration on the Y axis, in m/s^2. */
  51. SENSOR_CHAN_ACCEL_Y,
  52. /** Acceleration on the Z axis, in m/s^2. */
  53. SENSOR_CHAN_ACCEL_Z,
  54. /** Acceleration on the X, Y and Z axes. */
  55. SENSOR_CHAN_ACCEL_XYZ,
  56. /** Angular velocity around the X axis, in radians/s. */
  57. SENSOR_CHAN_GYRO_X,
  58. /** Angular velocity around the Y axis, in radians/s. */
  59. SENSOR_CHAN_GYRO_Y,
  60. /** Angular velocity around the Z axis, in radians/s. */
  61. SENSOR_CHAN_GYRO_Z,
  62. /** Angular velocity around the X, Y and Z axes. */
  63. SENSOR_CHAN_GYRO_XYZ,
  64. /** Magnetic field on the X axis, in Gauss. */
  65. SENSOR_CHAN_MAGN_X,
  66. /** Magnetic field on the Y axis, in Gauss. */
  67. SENSOR_CHAN_MAGN_Y,
  68. /** Magnetic field on the Z axis, in Gauss. */
  69. SENSOR_CHAN_MAGN_Z,
  70. /** Magnetic field on the X, Y and Z axes. */
  71. SENSOR_CHAN_MAGN_XYZ,
  72. /** Device die temperature in degrees Celsius. */
  73. SENSOR_CHAN_DIE_TEMP,
  74. /** Ambient temperature in degrees Celsius. */
  75. SENSOR_CHAN_AMBIENT_TEMP,
  76. /** Pressure in kilopascal. */
  77. SENSOR_CHAN_PRESS,
  78. /**
  79. * Proximity. Adimensional. A value of 1 indicates that an
  80. * object is close.
  81. */
  82. SENSOR_CHAN_PROX,
  83. /** Humidity, in percent. */
  84. SENSOR_CHAN_HUMIDITY,
  85. /** Illuminance in visible spectrum, in lux. */
  86. SENSOR_CHAN_LIGHT,
  87. /** Illuminance in infra-red spectrum, in lux. */
  88. SENSOR_CHAN_IR,
  89. /** Illuminance in red spectrum, in lux. */
  90. SENSOR_CHAN_RED,
  91. /** Illuminance in green spectrum, in lux. */
  92. SENSOR_CHAN_GREEN,
  93. /** Illuminance in blue spectrum, in lux. */
  94. SENSOR_CHAN_BLUE,
  95. /** Altitude, in meters */
  96. SENSOR_CHAN_ALTITUDE,
  97. /** 1.0 micro-meters Particulate Matter, in ug/m^3 */
  98. SENSOR_CHAN_PM_1_0,
  99. /** 2.5 micro-meters Particulate Matter, in ug/m^3 */
  100. SENSOR_CHAN_PM_2_5,
  101. /** 10 micro-meters Particulate Matter, in ug/m^3 */
  102. SENSOR_CHAN_PM_10,
  103. /** Distance. From sensor to target, in meters */
  104. SENSOR_CHAN_DISTANCE,
  105. /** CO2 level, in parts per million (ppm) **/
  106. SENSOR_CHAN_CO2,
  107. /** VOC level, in parts per billion (ppb) **/
  108. SENSOR_CHAN_VOC,
  109. /** Gas sensor resistance in ohms. */
  110. SENSOR_CHAN_GAS_RES,
  111. /** Voltage, in volts **/
  112. SENSOR_CHAN_VOLTAGE,
  113. /** Current, in amps **/
  114. SENSOR_CHAN_CURRENT,
  115. /** Power in watts **/
  116. SENSOR_CHAN_POWER,
  117. /** Resistance , in Ohm **/
  118. SENSOR_CHAN_RESISTANCE,
  119. /** Angular rotation, in degrees */
  120. SENSOR_CHAN_ROTATION,
  121. /** Position change on the X axis, in points. */
  122. SENSOR_CHAN_POS_DX,
  123. /** Position change on the Y axis, in points. */
  124. SENSOR_CHAN_POS_DY,
  125. /** Position change on the Z axis, in points. */
  126. SENSOR_CHAN_POS_DZ,
  127. /** Revolutions per minute, in RPM. */
  128. SENSOR_CHAN_RPM,
  129. /** Voltage, in volts **/
  130. SENSOR_CHAN_GAUGE_VOLTAGE,
  131. /** Average current, in amps **/
  132. SENSOR_CHAN_GAUGE_AVG_CURRENT,
  133. /** Standy current, in amps **/
  134. SENSOR_CHAN_GAUGE_STDBY_CURRENT,
  135. /** Max load current, in amps **/
  136. SENSOR_CHAN_GAUGE_MAX_LOAD_CURRENT,
  137. /** Gauge temperature **/
  138. SENSOR_CHAN_GAUGE_TEMP,
  139. /** State of charge measurement in % **/
  140. SENSOR_CHAN_GAUGE_STATE_OF_CHARGE,
  141. /** Full Charge Capacity in mAh **/
  142. SENSOR_CHAN_GAUGE_FULL_CHARGE_CAPACITY,
  143. /** Remaining Charge Capacity in mAh **/
  144. SENSOR_CHAN_GAUGE_REMAINING_CHARGE_CAPACITY,
  145. /** Nominal Available Capacity in mAh **/
  146. SENSOR_CHAN_GAUGE_NOM_AVAIL_CAPACITY,
  147. /** Full Available Capacity in mAh **/
  148. SENSOR_CHAN_GAUGE_FULL_AVAIL_CAPACITY,
  149. /** Average power in mW **/
  150. SENSOR_CHAN_GAUGE_AVG_POWER,
  151. /** State of health measurement in % **/
  152. SENSOR_CHAN_GAUGE_STATE_OF_HEALTH,
  153. /** Time to empty in minutes **/
  154. SENSOR_CHAN_GAUGE_TIME_TO_EMPTY,
  155. /** Time to full in minutes **/
  156. SENSOR_CHAN_GAUGE_TIME_TO_FULL,
  157. /** Cycle count (total number of charge/discharge cycles) **/
  158. SENSOR_CHAN_GAUGE_CYCLE_COUNT,
  159. /** Design voltage of cell in V (max voltage)*/
  160. SENSOR_CHAN_GAUGE_DESIGN_VOLTAGE,
  161. /** Desired voltage of cell in V (nominal voltage) */
  162. SENSOR_CHAN_GAUGE_DESIRED_VOLTAGE,
  163. /** Desired charging current in mA */
  164. SENSOR_CHAN_GAUGE_DESIRED_CHARGING_CURRENT,
  165. /** All channels. */
  166. SENSOR_CHAN_ALL,
  167. /**
  168. * Number of all common sensor channels.
  169. */
  170. SENSOR_CHAN_COMMON_COUNT,
  171. /**
  172. * This and higher values are sensor specific.
  173. * Refer to the sensor header file.
  174. */
  175. SENSOR_CHAN_PRIV_START = SENSOR_CHAN_COMMON_COUNT,
  176. /**
  177. * Maximum value describing a sensor channel type.
  178. */
  179. SENSOR_CHAN_MAX = INT16_MAX,
  180. };
  181. /**
  182. * @brief Sensor trigger types.
  183. */
  184. enum sensor_trigger_type {
  185. /**
  186. * Timer-based trigger, useful when the sensor does not have an
  187. * interrupt line.
  188. */
  189. SENSOR_TRIG_TIMER,
  190. /** Trigger fires whenever new data is ready. */
  191. SENSOR_TRIG_DATA_READY,
  192. /**
  193. * Trigger fires when the selected channel varies significantly.
  194. * This includes any-motion detection when the channel is
  195. * acceleration or gyro. If detection is based on slope between
  196. * successive channel readings, the slope threshold is configured
  197. * via the @ref SENSOR_ATTR_SLOPE_TH and @ref SENSOR_ATTR_SLOPE_DUR
  198. * attributes.
  199. */
  200. SENSOR_TRIG_DELTA,
  201. /** Trigger fires when a near/far event is detected. */
  202. SENSOR_TRIG_NEAR_FAR,
  203. /**
  204. * Trigger fires when channel reading transitions configured
  205. * thresholds. The thresholds are configured via the @ref
  206. * SENSOR_ATTR_LOWER_THRESH, @ref SENSOR_ATTR_UPPER_THRESH, and
  207. * @ref SENSOR_ATTR_HYSTERESIS attributes.
  208. */
  209. SENSOR_TRIG_THRESHOLD,
  210. /** Trigger fires when a single tap is detected. */
  211. SENSOR_TRIG_TAP,
  212. /** Trigger fires when a double tap is detected. */
  213. SENSOR_TRIG_DOUBLE_TAP,
  214. /** Trigger fires when a free fall is detected. */
  215. SENSOR_TRIG_FREEFALL,
  216. /**
  217. * Number of all common sensor triggers.
  218. */
  219. SENSOR_TRIG_COMMON_COUNT,
  220. /**
  221. * This and higher values are sensor specific.
  222. * Refer to the sensor header file.
  223. */
  224. SENSOR_TRIG_PRIV_START = SENSOR_TRIG_COMMON_COUNT,
  225. /**
  226. * Maximum value describing a sensor trigger type.
  227. */
  228. SENSOR_TRIG_MAX = INT16_MAX,
  229. };
  230. /**
  231. * @brief Sensor trigger spec.
  232. */
  233. struct sensor_trigger {
  234. /** Trigger type. */
  235. enum sensor_trigger_type type;
  236. /** Channel the trigger is set on. */
  237. enum sensor_channel chan;
  238. };
  239. /**
  240. * @brief Sensor attribute types.
  241. */
  242. enum sensor_attribute {
  243. /**
  244. * Sensor sampling frequency, i.e. how many times a second the
  245. * sensor takes a measurement.
  246. */
  247. SENSOR_ATTR_SAMPLING_FREQUENCY,
  248. /** Lower threshold for trigger. */
  249. SENSOR_ATTR_LOWER_THRESH,
  250. /** Upper threshold for trigger. */
  251. SENSOR_ATTR_UPPER_THRESH,
  252. /** Threshold for any-motion (slope) trigger. */
  253. SENSOR_ATTR_SLOPE_TH,
  254. /**
  255. * Duration for which the slope values needs to be
  256. * outside the threshold for the trigger to fire.
  257. */
  258. SENSOR_ATTR_SLOPE_DUR,
  259. /* Hysteresis for trigger thresholds. */
  260. SENSOR_ATTR_HYSTERESIS,
  261. /** Oversampling factor */
  262. SENSOR_ATTR_OVERSAMPLING,
  263. /** Sensor range, in SI units. */
  264. SENSOR_ATTR_FULL_SCALE,
  265. /**
  266. * The sensor value returned will be altered by the amount indicated by
  267. * offset: final_value = sensor_value + offset.
  268. */
  269. SENSOR_ATTR_OFFSET,
  270. /**
  271. * Calibration target. This will be used by the internal chip's
  272. * algorithms to calibrate itself on a certain axis, or all of them.
  273. */
  274. SENSOR_ATTR_CALIB_TARGET,
  275. /** Configure the operating modes of a sensor. */
  276. SENSOR_ATTR_CONFIGURATION,
  277. /** Set a calibration value needed by a sensor. */
  278. SENSOR_ATTR_CALIBRATION,
  279. /** Enable/disable sensor features */
  280. SENSOR_ATTR_FEATURE_MASK,
  281. /** Alert threshold or alert enable/disable */
  282. SENSOR_ATTR_ALERT,
  283. /**
  284. * Number of all common sensor attributes.
  285. */
  286. SENSOR_ATTR_COMMON_COUNT,
  287. /**
  288. * This and higher values are sensor specific.
  289. * Refer to the sensor header file.
  290. */
  291. SENSOR_ATTR_PRIV_START = SENSOR_ATTR_COMMON_COUNT,
  292. /**
  293. * Maximum value describing a sensor attribute type.
  294. */
  295. SENSOR_ATTR_MAX = INT16_MAX,
  296. };
  297. /**
  298. * @typedef sensor_trigger_handler_t
  299. * @brief Callback API upon firing of a trigger
  300. *
  301. * @param dev Pointer to the sensor device
  302. * @param trigger The trigger
  303. */
  304. typedef void (*sensor_trigger_handler_t)(const struct device *dev,
  305. struct sensor_trigger *trigger);
  306. /**
  307. * @typedef sensor_attr_set_t
  308. * @brief Callback API upon setting a sensor's attributes
  309. *
  310. * See sensor_attr_set() for argument description
  311. */
  312. typedef int (*sensor_attr_set_t)(const struct device *dev,
  313. enum sensor_channel chan,
  314. enum sensor_attribute attr,
  315. const struct sensor_value *val);
  316. /**
  317. * @typedef sensor_attr_get_t
  318. * @brief Callback API upon getting a sensor's attributes
  319. *
  320. * See sensor_attr_get() for argument description
  321. */
  322. typedef int (*sensor_attr_get_t)(const struct device *dev,
  323. enum sensor_channel chan,
  324. enum sensor_attribute attr,
  325. struct sensor_value *val);
  326. /**
  327. * @typedef sensor_trigger_set_t
  328. * @brief Callback API for setting a sensor's trigger and handler
  329. *
  330. * See sensor_trigger_set() for argument description
  331. */
  332. typedef int (*sensor_trigger_set_t)(const struct device *dev,
  333. const struct sensor_trigger *trig,
  334. sensor_trigger_handler_t handler);
  335. /**
  336. * @typedef sensor_sample_fetch_t
  337. * @brief Callback API for fetching data from a sensor
  338. *
  339. * See sensor_sample_fetch() for argument description
  340. */
  341. typedef int (*sensor_sample_fetch_t)(const struct device *dev,
  342. enum sensor_channel chan);
  343. /**
  344. * @typedef sensor_channel_get_t
  345. * @brief Callback API for getting a reading from a sensor
  346. *
  347. * See sensor_channel_get() for argument description
  348. */
  349. typedef int (*sensor_channel_get_t)(const struct device *dev,
  350. enum sensor_channel chan,
  351. struct sensor_value *val);
  352. __subsystem struct sensor_driver_api {
  353. sensor_attr_set_t attr_set;
  354. sensor_attr_get_t attr_get;
  355. sensor_trigger_set_t trigger_set;
  356. sensor_sample_fetch_t sample_fetch;
  357. sensor_channel_get_t channel_get;
  358. };
  359. /**
  360. * @brief Set an attribute for a sensor
  361. *
  362. * @param dev Pointer to the sensor device
  363. * @param chan The channel the attribute belongs to, if any. Some
  364. * attributes may only be set for all channels of a device, depending on
  365. * device capabilities.
  366. * @param attr The attribute to set
  367. * @param val The value to set the attribute to
  368. *
  369. * @return 0 if successful, negative errno code if failure.
  370. */
  371. __syscall int sensor_attr_set(const struct device *dev,
  372. enum sensor_channel chan,
  373. enum sensor_attribute attr,
  374. const struct sensor_value *val);
  375. static inline int z_impl_sensor_attr_set(const struct device *dev,
  376. enum sensor_channel chan,
  377. enum sensor_attribute attr,
  378. const struct sensor_value *val)
  379. {
  380. const struct sensor_driver_api *api =
  381. (const struct sensor_driver_api *)dev->api;
  382. if (api->attr_set == NULL) {
  383. return -ENOSYS;
  384. }
  385. return api->attr_set(dev, chan, attr, val);
  386. }
  387. /**
  388. * @brief Get an attribute for a sensor
  389. *
  390. * @param dev Pointer to the sensor device
  391. * @param chan The channel the attribute belongs to, if any. Some
  392. * attributes may only be set for all channels of a device, depending on
  393. * device capabilities.
  394. * @param attr The attribute to get
  395. * @param val Pointer to where to store the attribute
  396. *
  397. * @return 0 if successful, negative errno code if failure.
  398. */
  399. __syscall int sensor_attr_get(const struct device *dev,
  400. enum sensor_channel chan,
  401. enum sensor_attribute attr,
  402. struct sensor_value *val);
  403. static inline int z_impl_sensor_attr_get(const struct device *dev,
  404. enum sensor_channel chan,
  405. enum sensor_attribute attr,
  406. struct sensor_value *val)
  407. {
  408. const struct sensor_driver_api *api =
  409. (const struct sensor_driver_api *)dev->api;
  410. if (api->attr_get == NULL) {
  411. return -ENOSYS;
  412. }
  413. return api->attr_get(dev, chan, attr, val);
  414. }
  415. /**
  416. * @brief Activate a sensor's trigger and set the trigger handler
  417. *
  418. * The handler will be called from a thread, so I2C or SPI operations are
  419. * safe. However, the thread's stack is limited and defined by the
  420. * driver. It is currently up to the caller to ensure that the handler
  421. * does not overflow the stack.
  422. *
  423. * @funcprops \supervisor
  424. *
  425. * @param dev Pointer to the sensor device
  426. * @param trig The trigger to activate
  427. * @param handler The function that should be called when the trigger
  428. * fires
  429. *
  430. * @return 0 if successful, negative errno code if failure.
  431. */
  432. static inline int sensor_trigger_set(const struct device *dev,
  433. struct sensor_trigger *trig,
  434. sensor_trigger_handler_t handler)
  435. {
  436. const struct sensor_driver_api *api =
  437. (const struct sensor_driver_api *)dev->api;
  438. if (api->trigger_set == NULL) {
  439. return -ENOSYS;
  440. }
  441. return api->trigger_set(dev, trig, handler);
  442. }
  443. /**
  444. * @brief Fetch a sample from the sensor and store it in an internal
  445. * driver buffer
  446. *
  447. * Read all of a sensor's active channels and, if necessary, perform any
  448. * additional operations necessary to make the values useful. The user
  449. * may then get individual channel values by calling @ref
  450. * sensor_channel_get.
  451. *
  452. * Since the function communicates with the sensor device, it is unsafe
  453. * to call it in an ISR if the device is connected via I2C or SPI.
  454. *
  455. * @param dev Pointer to the sensor device
  456. *
  457. * @return 0 if successful, negative errno code if failure.
  458. */
  459. __syscall int sensor_sample_fetch(const struct device *dev);
  460. static inline int z_impl_sensor_sample_fetch(const struct device *dev)
  461. {
  462. const struct sensor_driver_api *api =
  463. (const struct sensor_driver_api *)dev->api;
  464. return api->sample_fetch(dev, SENSOR_CHAN_ALL);
  465. }
  466. /**
  467. * @brief Fetch a sample from the sensor and store it in an internal
  468. * driver buffer
  469. *
  470. * Read and compute compensation for one type of sensor data (magnetometer,
  471. * accelerometer, etc). The user may then get individual channel values by
  472. * calling @ref sensor_channel_get.
  473. *
  474. * This is mostly implemented by multi function devices enabling reading at
  475. * different sampling rates.
  476. *
  477. * Since the function communicates with the sensor device, it is unsafe
  478. * to call it in an ISR if the device is connected via I2C or SPI.
  479. *
  480. * @param dev Pointer to the sensor device
  481. * @param type The channel that needs updated
  482. *
  483. * @return 0 if successful, negative errno code if failure.
  484. */
  485. __syscall int sensor_sample_fetch_chan(const struct device *dev,
  486. enum sensor_channel type);
  487. static inline int z_impl_sensor_sample_fetch_chan(const struct device *dev,
  488. enum sensor_channel type)
  489. {
  490. const struct sensor_driver_api *api =
  491. (const struct sensor_driver_api *)dev->api;
  492. return api->sample_fetch(dev, type);
  493. }
  494. /**
  495. * @brief Get a reading from a sensor device
  496. *
  497. * Return a useful value for a particular channel, from the driver's
  498. * internal data. Before calling this function, a sample must be
  499. * obtained by calling @ref sensor_sample_fetch or
  500. * @ref sensor_sample_fetch_chan. It is guaranteed that two subsequent
  501. * calls of this function for the same channels will yield the same
  502. * value, if @ref sensor_sample_fetch or @ref sensor_sample_fetch_chan
  503. * has not been called in the meantime.
  504. *
  505. * For vectorial data samples you can request all axes in just one call
  506. * by passing the specific channel with _XYZ suffix. The sample will be
  507. * returned at val[0], val[1] and val[2] (X, Y and Z in that order).
  508. *
  509. * @param dev Pointer to the sensor device
  510. * @param chan The channel to read
  511. * @param val Where to store the value
  512. *
  513. * @return 0 if successful, negative errno code if failure.
  514. */
  515. __syscall int sensor_channel_get(const struct device *dev,
  516. enum sensor_channel chan,
  517. struct sensor_value *val);
  518. static inline int z_impl_sensor_channel_get(const struct device *dev,
  519. enum sensor_channel chan,
  520. struct sensor_value *val)
  521. {
  522. const struct sensor_driver_api *api =
  523. (const struct sensor_driver_api *)dev->api;
  524. return api->channel_get(dev, chan, val);
  525. }
  526. /**
  527. * @brief The value of gravitational constant in micro m/s^2.
  528. */
  529. #define SENSOR_G 9806650LL
  530. /**
  531. * @brief The value of constant PI in micros.
  532. */
  533. #define SENSOR_PI 3141592LL
  534. /**
  535. * @brief Helper function to convert acceleration from m/s^2 to Gs
  536. *
  537. * @param ms2 A pointer to a sensor_value struct holding the acceleration,
  538. * in m/s^2.
  539. *
  540. * @return The converted value, in Gs.
  541. */
  542. static inline int32_t sensor_ms2_to_g(const struct sensor_value *ms2)
  543. {
  544. int64_t micro_ms2 = ms2->val1 * 1000000LL + ms2->val2;
  545. if (micro_ms2 > 0) {
  546. return (micro_ms2 + SENSOR_G / 2) / SENSOR_G;
  547. } else {
  548. return (micro_ms2 - SENSOR_G / 2) / SENSOR_G;
  549. }
  550. }
  551. /**
  552. * @brief Helper function to convert acceleration from Gs to m/s^2
  553. *
  554. * @param g The G value to be converted.
  555. * @param ms2 A pointer to a sensor_value struct, where the result is stored.
  556. */
  557. static inline void sensor_g_to_ms2(int32_t g, struct sensor_value *ms2)
  558. {
  559. ms2->val1 = ((int64_t)g * SENSOR_G) / 1000000LL;
  560. ms2->val2 = ((int64_t)g * SENSOR_G) % 1000000LL;
  561. }
  562. /**
  563. * @brief Helper function for converting radians to degrees.
  564. *
  565. * @param rad A pointer to a sensor_value struct, holding the value in radians.
  566. *
  567. * @return The converted value, in degrees.
  568. */
  569. static inline int32_t sensor_rad_to_degrees(const struct sensor_value *rad)
  570. {
  571. int64_t micro_rad_s = rad->val1 * 1000000LL + rad->val2;
  572. if (micro_rad_s > 0) {
  573. return (micro_rad_s * 180LL + SENSOR_PI / 2) / SENSOR_PI;
  574. } else {
  575. return (micro_rad_s * 180LL - SENSOR_PI / 2) / SENSOR_PI;
  576. }
  577. }
  578. /**
  579. * @brief Helper function for converting degrees to radians.
  580. *
  581. * @param d The value (in degrees) to be converted.
  582. * @param rad A pointer to a sensor_value struct, where the result is stored.
  583. */
  584. static inline void sensor_degrees_to_rad(int32_t d, struct sensor_value *rad)
  585. {
  586. rad->val1 = ((int64_t)d * SENSOR_PI / 180LL) / 1000000LL;
  587. rad->val2 = ((int64_t)d * SENSOR_PI / 180LL) % 1000000LL;
  588. }
  589. /**
  590. * @brief Helper function for converting struct sensor_value to double.
  591. *
  592. * @param val A pointer to a sensor_value struct.
  593. * @return The converted value.
  594. */
  595. static inline double sensor_value_to_double(const struct sensor_value *val)
  596. {
  597. return (double)val->val1 + (double)val->val2 / 1000000;
  598. }
  599. /**
  600. * @brief Helper function for converting double to struct sensor_value.
  601. *
  602. * @param val A pointer to a sensor_value struct.
  603. * @param inp The converted value.
  604. */
  605. static inline void sensor_value_from_double(struct sensor_value *val, double inp)
  606. {
  607. val->val1 = (int32_t) inp;
  608. val->val2 = (int32_t)(inp * 1000000) % 1000000;
  609. }
  610. /**
  611. * @}
  612. */
  613. #ifdef __cplusplus
  614. }
  615. #endif
  616. #include <syscalls/sensor.h>
  617. #endif /* ZEPHYR_INCLUDE_DRIVERS_SENSOR_H_ */