lora.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. /*
  2. * Copyright (c) 2019 Manivannan Sadhasivam
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DRIVERS_LORA_H_
  7. #define ZEPHYR_INCLUDE_DRIVERS_LORA_H_
  8. /**
  9. * @file
  10. * @brief Public LoRa APIs
  11. */
  12. #include <zephyr/types.h>
  13. #include <device.h>
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. enum lora_signal_bandwidth {
  18. BW_125_KHZ = 0,
  19. BW_250_KHZ,
  20. BW_500_KHZ,
  21. };
  22. enum lora_datarate {
  23. SF_6 = 6,
  24. SF_7,
  25. SF_8,
  26. SF_9,
  27. SF_10,
  28. SF_11,
  29. SF_12,
  30. };
  31. enum lora_coding_rate {
  32. CR_4_5 = 1,
  33. CR_4_6 = 2,
  34. CR_4_7 = 3,
  35. CR_4_8 = 4,
  36. };
  37. struct lora_modem_config {
  38. uint32_t frequency;
  39. enum lora_signal_bandwidth bandwidth;
  40. enum lora_datarate datarate;
  41. enum lora_coding_rate coding_rate;
  42. uint16_t preamble_len;
  43. int8_t tx_power;
  44. bool tx;
  45. };
  46. /**
  47. * @typedef lora_api_config()
  48. * @brief Callback API for configuring the LoRa module
  49. *
  50. * @see lora_config() for argument descriptions.
  51. */
  52. typedef int (*lora_api_config)(const struct device *dev,
  53. struct lora_modem_config *config);
  54. /**
  55. * @typedef lora_api_send()
  56. * @brief Callback API for sending data over LoRa
  57. *
  58. * @see lora_send() for argument descriptions.
  59. */
  60. typedef int (*lora_api_send)(const struct device *dev,
  61. uint8_t *data, uint32_t data_len);
  62. /**
  63. * @typedef lora_api_send_async()
  64. * @brief Callback API for sending data asynchronously over LoRa
  65. *
  66. * @see lora_send_async() for argument descriptions.
  67. */
  68. typedef int (*lora_api_send_async)(const struct device *dev,
  69. uint8_t *data, uint32_t data_len,
  70. struct k_poll_signal *async);
  71. /**
  72. * @typedef lora_api_recv()
  73. * @brief Callback API for receiving data over LoRa
  74. *
  75. * @see lora_recv() for argument descriptions.
  76. */
  77. typedef int (*lora_api_recv)(const struct device *dev, uint8_t *data,
  78. uint8_t size,
  79. k_timeout_t timeout, int16_t *rssi, int8_t *snr);
  80. /**
  81. * @typedef lora_api_test_cw()
  82. * @brief Callback API for transmitting a continuous wave
  83. *
  84. * @see lora_test_cw() for argument descriptions.
  85. */
  86. typedef int (*lora_api_test_cw)(const struct device *dev, uint32_t frequency,
  87. int8_t tx_power, uint16_t duration);
  88. struct lora_driver_api {
  89. lora_api_config config;
  90. lora_api_send send;
  91. lora_api_send_async send_async;
  92. lora_api_recv recv;
  93. lora_api_test_cw test_cw;
  94. };
  95. /**
  96. * @brief Configure the LoRa modem
  97. *
  98. * @param dev LoRa device
  99. * @param config Data structure containing the intended configuration for the
  100. modem
  101. * @return 0 on success, negative on error
  102. */
  103. static inline int lora_config(const struct device *dev,
  104. struct lora_modem_config *config)
  105. {
  106. const struct lora_driver_api *api =
  107. (const struct lora_driver_api *)dev->api;
  108. return api->config(dev, config);
  109. }
  110. /**
  111. * @brief Send data over LoRa
  112. *
  113. * @note This blocks until transmission is complete.
  114. *
  115. * @param dev LoRa device
  116. * @param data Data to be sent
  117. * @param data_len Length of the data to be sent
  118. * @return 0 on success, negative on error
  119. */
  120. static inline int lora_send(const struct device *dev,
  121. uint8_t *data, uint32_t data_len)
  122. {
  123. const struct lora_driver_api *api =
  124. (const struct lora_driver_api *)dev->api;
  125. return api->send(dev, data, data_len);
  126. }
  127. /**
  128. * @brief Asynchronously send data over LoRa
  129. *
  130. * @note This returns immediately after starting transmission, and locks
  131. * the LoRa modem until the transmission completes.
  132. *
  133. * @param dev LoRa device
  134. * @param data Data to be sent
  135. * @param data_len Length of the data to be sent
  136. * @param async A pointer to a valid and ready to be signaled
  137. * struct k_poll_signal. (Note: if NULL this function will not
  138. * notify the end of the transmission).
  139. * @return 0 on success, negative on error
  140. */
  141. static inline int lora_send_async(const struct device *dev,
  142. uint8_t *data, uint32_t data_len,
  143. struct k_poll_signal *async)
  144. {
  145. const struct lora_driver_api *api =
  146. (const struct lora_driver_api *)dev->api;
  147. return api->send_async(dev, data, data_len, async);
  148. }
  149. /**
  150. * @brief Receive data over LoRa
  151. *
  152. * @note This is a blocking call.
  153. *
  154. * @param dev LoRa device
  155. * @param data Buffer to hold received data
  156. * @param size Size of the buffer to hold the received data. Max size
  157. allowed is 255.
  158. * @param timeout Duration to wait for a packet.
  159. * @param rssi RSSI of received data
  160. * @param snr SNR of received data
  161. * @return Length of the data received on success, negative on error
  162. */
  163. static inline int lora_recv(const struct device *dev, uint8_t *data,
  164. uint8_t size,
  165. k_timeout_t timeout, int16_t *rssi, int8_t *snr)
  166. {
  167. const struct lora_driver_api *api =
  168. (const struct lora_driver_api *)dev->api;
  169. return api->recv(dev, data, size, timeout, rssi, snr);
  170. }
  171. /**
  172. * @brief Transmit an unmodulated continuous wave at a given frequency
  173. *
  174. * @note Only use this functionality in a test setup where the
  175. * transmission does not interfere with other devices.
  176. *
  177. * @param dev LoRa device
  178. * @param frequency Output frequency (Hertz)
  179. * @param tx_power TX power (dBm)
  180. * @param duration Transmission duration in seconds.
  181. * @return 0 on success, negative on error
  182. */
  183. static inline int lora_test_cw(const struct device *dev, uint32_t frequency,
  184. int8_t tx_power, uint16_t duration)
  185. {
  186. const struct lora_driver_api *api =
  187. (const struct lora_driver_api *)dev->api;
  188. if (api->test_cw == NULL) {
  189. return -ENOSYS;
  190. }
  191. return api->test_cw(dev, frequency, tx_power, duration);
  192. }
  193. #ifdef __cplusplus
  194. }
  195. #endif
  196. #endif /* ZEPHYR_INCLUDE_DRIVERS_LORA_H_ */