lorawan.h 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. /*
  2. * Copyright (c) 2020 Manivannan Sadhasivam <mani@kernel.org>
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_LORAWAN_LORAWAN_H_
  7. #define ZEPHYR_INCLUDE_LORAWAN_LORAWAN_H_
  8. /**
  9. * @file
  10. * @brief Public LoRaWAN APIs
  11. */
  12. #include <device.h>
  13. #include <sys/slist.h>
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. /**
  18. * @brief LoRaWAN class types.
  19. */
  20. enum lorawan_class {
  21. LORAWAN_CLASS_A = 0x00,
  22. LORAWAN_CLASS_B = 0x01,
  23. LORAWAN_CLASS_C = 0x02,
  24. };
  25. /**
  26. * @brief LoRaWAN activation types.
  27. */
  28. enum lorawan_act_type {
  29. LORAWAN_ACT_OTAA = 0,
  30. LORAWAN_ACT_ABP,
  31. };
  32. /**
  33. * @brief LoRaWAN datarate types.
  34. */
  35. enum lorawan_datarate {
  36. LORAWAN_DR_0 = 0,
  37. LORAWAN_DR_1,
  38. LORAWAN_DR_2,
  39. LORAWAN_DR_3,
  40. LORAWAN_DR_4,
  41. LORAWAN_DR_5,
  42. LORAWAN_DR_6,
  43. LORAWAN_DR_7,
  44. LORAWAN_DR_8,
  45. LORAWAN_DR_9,
  46. LORAWAN_DR_10,
  47. LORAWAN_DR_11,
  48. LORAWAN_DR_12,
  49. LORAWAN_DR_13,
  50. LORAWAN_DR_14,
  51. LORAWAN_DR_15,
  52. };
  53. /**
  54. * @brief LoRaWAN message types.
  55. *
  56. * Note: The default message type is unconfirmed.
  57. */
  58. enum lorawan_message_type {
  59. LORAWAN_MSG_CONFIRMED = BIT(0),
  60. };
  61. /**
  62. * @brief LoRaWAN join parameters for over-the-Air activation (OTAA)
  63. *
  64. * Note that all of the fields use LoRaWAN 1.1 terminology.
  65. *
  66. * All parameters are optional if a secure element is present in which
  67. * case the values stored in the secure element will be used instead.
  68. */
  69. struct lorawan_join_otaa {
  70. uint8_t *join_eui;
  71. uint8_t *nwk_key;
  72. uint8_t *app_key;
  73. };
  74. struct lorawan_join_abp {
  75. /** Device address on the network */
  76. uint32_t dev_addr;
  77. /** Application session key */
  78. uint8_t *app_skey;
  79. /** Network session key */
  80. uint8_t *nwk_skey;
  81. /** Application EUI */
  82. uint8_t *app_eui;
  83. };
  84. struct lorawan_join_config {
  85. union {
  86. struct lorawan_join_otaa otaa;
  87. struct lorawan_join_abp abp;
  88. };
  89. /** Device EUI. Optional if a secure element is present. */
  90. uint8_t *dev_eui;
  91. enum lorawan_act_type mode;
  92. };
  93. #define LW_RECV_PORT_ANY UINT16_MAX
  94. struct lorawan_downlink_cb {
  95. /* Port to handle messages for:
  96. * Port 0: TX packet acknowledgements
  97. * Ports 1-255: Standard downlink port
  98. * LW_RECV_PORT_ANY: All downlinks
  99. */
  100. uint16_t port;
  101. /**
  102. * @brief Callback function to run on downlink data
  103. *
  104. * @note Callbacks are run on the system workqueue,
  105. * and should therefore be as short as possible.
  106. *
  107. * @param port Port message was sent on
  108. * @param data_pending Network server has more downlink packets pending
  109. * @param rssi Received signal strength in dBm
  110. * @param snr Signal to Noise ratio in dBm
  111. * @param len Length of data received, will be 0 for ACKs
  112. * @param data Data received, will be NULL for ACKs
  113. */
  114. void (*cb)(uint8_t port, bool data_pending,
  115. int16_t rssi, int8_t snr,
  116. uint8_t len, const uint8_t *data);
  117. /** Node for callback list */
  118. sys_snode_t node;
  119. };
  120. /**
  121. * @brief Add battery level callback function.
  122. *
  123. * Provide the LoRaWAN stack with a function to be called whenever a battery
  124. * level needs to be read. As per LoRaWAN specification the callback needs to
  125. * return "0: node is connected to an external power source,
  126. * 1..254: battery level, where 1 is the minimum and 254 is the maximum
  127. * value,
  128. * 255: the node was not able to measure the battery level"
  129. *
  130. * Should no callback be provided the lorawan backend will report 255.
  131. *
  132. * @param battery_lvl_cb Pointer to the battery level function
  133. *
  134. * @return 0 if successful, negative errno code if failure
  135. */
  136. int lorawan_set_battery_level_callback(uint8_t (*battery_lvl_cb)(void));
  137. /**
  138. * @brief Register a callback to be run on downlink packets
  139. *
  140. * @param cb Pointer to structure containing callback parameters
  141. */
  142. void lorawan_register_downlink_callback(struct lorawan_downlink_cb *cb);
  143. /**
  144. * @brief Register a callback to be called when the datarate changes
  145. *
  146. * The callback is called once upon successfully joining a network and again
  147. * each time the datarate changes due to ADR.
  148. *
  149. * The callback function takes one parameter:
  150. * - dr - updated datarate
  151. *
  152. * @param dr_cb Pointer to datarate update callback
  153. */
  154. void lorawan_register_dr_changed_callback(void (*dr_cb)(enum lorawan_datarate));
  155. /**
  156. * @brief Join the LoRaWAN network
  157. *
  158. * Join the LoRaWAN network using OTAA or AWB.
  159. *
  160. * @param config Configuration to be used
  161. *
  162. * @return 0 if successful, negative errno code if failure
  163. */
  164. int lorawan_join(const struct lorawan_join_config *config);
  165. /**
  166. * @brief Start the LoRaWAN stack
  167. *
  168. * This function need to be called before joining the network.
  169. *
  170. * @return 0 if successful, negative errno code if failure
  171. */
  172. int lorawan_start(void);
  173. /**
  174. * @brief Send data to the LoRaWAN network
  175. *
  176. * Send data to the connected LoRaWAN network.
  177. *
  178. * @param port Port to be used for sending data. Must be set if the
  179. * payload is not empty.
  180. * @param data Data buffer to be sent
  181. * @param len Length of the buffer to be sent. Maximum length of this
  182. * buffer is 255 bytes but the actual payload size varies with
  183. * region and datarate.
  184. * @param flags Flag used to determine the type of message being sent. It
  185. * could be one of the lorawan_message_type. The default
  186. * behaviour is unconfirmed message.
  187. *
  188. * @return 0 if successful, negative errno code if failure
  189. */
  190. int lorawan_send(uint8_t port, uint8_t *data, uint8_t len, uint8_t flags);
  191. /**
  192. * @brief Set the current device class
  193. *
  194. * Change the current device class. This function may be called before
  195. * or after a network connection has been established.
  196. *
  197. * @param dev_class New device class
  198. *
  199. * @return 0 if successful, negative errno code if failure
  200. */
  201. int lorawan_set_class(enum lorawan_class dev_class);
  202. /**
  203. * @brief Set the number of tries used for transmissions
  204. *
  205. * @param tries Number of tries to be used
  206. *
  207. * @return 0 if successful, negative errno code if failure
  208. */
  209. int lorawan_set_conf_msg_tries(uint8_t tries);
  210. /**
  211. * @brief Enable Adaptive Data Rate (ADR)
  212. *
  213. * Control whether adaptive data rate (ADR) is enabled. When ADR is enabled,
  214. * the data rate is treated as a default data rate that will be used if the
  215. * ADR algorithm has not established a data rate. ADR should normally only
  216. * be enabled for devices with stable RF conditions (i.e., devices in a mostly
  217. * static location).
  218. *
  219. * @param enable Enable or Disable adaptive data rate.
  220. */
  221. void lorawan_enable_adr(bool enable);
  222. /**
  223. * @brief Set the default data rate
  224. *
  225. * Change the default data rate.
  226. *
  227. * @param dr Data rate used for transmissions
  228. *
  229. * @return 0 if successful, negative errno code if failure
  230. */
  231. int lorawan_set_datarate(enum lorawan_datarate dr);
  232. /**
  233. * @brief Get the minimum possible datarate
  234. *
  235. * The minimum possible datarate may change in response to a TxParamSetupReq
  236. * command from the network server.
  237. *
  238. * @return Minimum possible data rate
  239. */
  240. enum lorawan_datarate lorawan_get_min_datarate(void);
  241. /**
  242. * @brief Get the current payload sizes
  243. *
  244. * Query the current payload sizes. The maximum payload size varies with
  245. * datarate, while the current payload size can be less due to MAC layer
  246. * commands which are inserted into uplink packets.
  247. *
  248. * @param max_next_payload_size Maximum payload size for the next transmission
  249. * @param max_payload_size Maximum payload size for this datarate
  250. */
  251. void lorawan_get_payload_sizes(uint8_t *max_next_payload_size,
  252. uint8_t *max_payload_size);
  253. #ifdef __cplusplus
  254. }
  255. #endif
  256. #endif /* ZEPHYR_INCLUDE_LORAWAN_LORAWAN_H_ */