forked from nrfconnect/sdk-nrf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnrf_cloud.h
1268 lines (1166 loc) · 45.9 KB
/
nrf_cloud.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (c) 2018 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
*/
#ifndef NRF_CLOUD_H__
#define NRF_CLOUD_H__
#include <zephyr/kernel.h>
#include <zephyr/types.h>
#include <zephyr/net/mqtt.h>
#if defined(CONFIG_MODEM_INFO)
#include <modem/modem_info.h>
#endif
#include <net/nrf_cloud_defs.h>
#include <dfu/dfu_target_full_modem.h>
#if defined(CONFIG_NRF_MODEM)
#include <nrf_modem_gnss.h>
#endif
#include <net/nrf_cloud_os.h>
#ifdef __cplusplus
extern "C" {
#endif
/** @defgroup nrf_cloud nRF Cloud
* @{
*/
/** MQTT message ID: not specified, use next incremented value */
#define NCT_MSG_ID_USE_NEXT_INCREMENT 0
/** MQTT message ID: subscribe to control channel topics */
#define NCT_MSG_ID_CC_SUB 100
/** MQTT message ID: subscribe to data channel topics */
#define NCT_MSG_ID_DC_SUB 101
/** MQTT message ID: subscribe to FOTA topics */
#define NCT_MSG_ID_FOTA_SUB 103
/** MQTT message ID: unsubscribe from control channel topics */
#define NCT_MSG_ID_CC_UNSUB 150
/** MQTT message ID: unsubscribe from data channel topics */
#define NCT_MSG_ID_DC_UNSUB 151
/** MQTT message ID: unsubscribe from FOTA topics */
#define NCT_MSG_ID_FOTA_UNSUB 153
/** MQTT message ID: request device state (shadow) */
#define NCT_MSG_ID_STATE_REQUEST 200
/** MQTT message ID: request FOTA job */
#define NCT_MSG_ID_FOTA_REQUEST 201
/** MQTT message ID: request BLE FOTA job */
#define NCT_MSG_ID_FOTA_BLE_REQUEST 202
/** MQTT message ID: update device state (shadow) */
#define NCT_MSG_ID_STATE_REPORT 300
/** MQTT message ID: set pairing/associated state */
#define NCT_MSG_ID_PAIR_STATUS_REPORT 301
/** MQTT message ID: update FOTA job status */
#define NCT_MSG_ID_FOTA_REPORT 302
/** MQTT message ID: update BLE FOTA job status */
#define NCT_MSG_ID_FOTA_BLE_REPORT 303
/** MQTT message ID: Start of incrementing range */
#define NCT_MSG_ID_INCREMENT_BEGIN 1000
/** MQTT message ID: End of incrementing range */
#define NCT_MSG_ID_INCREMENT_END 9999
/** MQTT message ID: Start of user specified (custom) range */
#define NCT_MSG_ID_USER_TAG_BEGIN (NCT_MSG_ID_INCREMENT_END + 1)
/** MQTT message ID: End of user specified (custom) range */
#define NCT_MSG_ID_USER_TAG_END 0xFFFF /* MQTT message IDs are uint16_t */
/** Determine if an MQTT message ID is a user specified tag to be used for ACK matching */
#define IS_VALID_USER_TAG(tag) ((tag >= NCT_MSG_ID_USER_TAG_BEGIN) && \
(tag <= NCT_MSG_ID_USER_TAG_END))
/** Maximum valid duration for JWTs generated by @ref nrf_cloud_jwt_generate */
#define NRF_CLOUD_JWT_VALID_TIME_S_MAX (7 * 24 * 60 * 60)
/** Default valid duration for JWTs generated by @ref nrf_cloud_jwt_generate */
#define NRF_CLOUD_JWT_VALID_TIME_S_DEF (10 * 60)
/** Value used to disable sending a timestamp. Timestamps are in UNIX epoch format. */
#define NRF_CLOUD_NO_TIMESTAMP 0
/** @brief Asynchronous nRF Cloud events notified by the module. */
enum nrf_cloud_evt_type {
/** The transport to the nRF Cloud is established. */
NRF_CLOUD_EVT_TRANSPORT_CONNECTED = 0x1,
/** In the process of connecting to nRF Cloud. */
NRF_CLOUD_EVT_TRANSPORT_CONNECTING,
/** There was a request from nRF Cloud to associate the device
* with a user on the nRF Cloud.
*/
NRF_CLOUD_EVT_USER_ASSOCIATION_REQUEST,
/** The device is successfully associated with a user. */
NRF_CLOUD_EVT_USER_ASSOCIATED,
/** The device can now start sending sensor data to the cloud. */
NRF_CLOUD_EVT_READY,
/** The device received non-specific data from the cloud. */
NRF_CLOUD_EVT_RX_DATA_GENERAL,
/** The device received "appID" : "DEVICE", "messageType" : "DISCON",
* indicating that the device was removed from its nRF Cloud account.
*/
NRF_CLOUD_EVT_RX_DATA_DISCON,
/** The device received location data from the cloud
* and no response callback was registered.
*/
NRF_CLOUD_EVT_RX_DATA_LOCATION,
/** The device received shadow related data from the cloud. */
NRF_CLOUD_EVT_RX_DATA_SHADOW,
/** The device has received a ping response from the cloud. */
NRF_CLOUD_EVT_PINGRESP,
/** The data sent to the cloud was acknowledged. */
NRF_CLOUD_EVT_SENSOR_DATA_ACK,
/** The transport was disconnected. The status field in the event struct will
* be populated with a @ref nrf_cloud_disconnect_status value.
*/
NRF_CLOUD_EVT_TRANSPORT_DISCONNECTED,
/** A FOTA update has started.
* This event is only sent if @kconfig{CONFIG_NRF_CLOUD_FOTA_AUTO_START_JOB} is enabled.
*/
NRF_CLOUD_EVT_FOTA_START,
/** The device should be restarted to apply a firmware upgrade */
NRF_CLOUD_EVT_FOTA_DONE,
/** An error occurred during the FOTA update. */
NRF_CLOUD_EVT_FOTA_ERROR,
/** An error occurred when connecting to the nRF Cloud. The status field in the event
* struct will be populated with a @ref nrf_cloud_connect_result value.
*/
NRF_CLOUD_EVT_TRANSPORT_CONNECT_ERROR,
/** FOTA update job information has been received.
* When ready, the application should start the job by
* calling @ref nrf_cloud_fota_job_start.
* This event is only sent if @kconfig{CONFIG_NRF_CLOUD_FOTA_AUTO_START_JOB} is disabled.
*/
NRF_CLOUD_EVT_FOTA_JOB_AVAILABLE,
/** An error occurred. The status field in the event struct will
* be populated with a @ref nrf_cloud_error_status value.
*/
NRF_CLOUD_EVT_ERROR = 0xFF
};
/** @brief nRF Cloud error status, used to describe @ref NRF_CLOUD_EVT_ERROR event. */
enum nrf_cloud_error_status {
/** No error */
NRF_CLOUD_ERR_STATUS_NONE = 0,
/** MQTT connection failed */
NRF_CLOUD_ERR_STATUS_MQTT_CONN_FAIL,
/** MQTT protocol version not supported by server */
NRF_CLOUD_ERR_STATUS_MQTT_CONN_BAD_PROT_VER,
/** MQTT client identifier rejected by server */
NRF_CLOUD_ERR_STATUS_MQTT_CONN_ID_REJECTED,
/** MQTT service is unavailable */
NRF_CLOUD_ERR_STATUS_MQTT_CONN_SERVER_UNAVAIL,
/** Malformed user name or password */
NRF_CLOUD_ERR_STATUS_MQTT_CONN_BAD_USR_PWD,
/** Client is not authorized to connect */
NRF_CLOUD_ERR_STATUS_MQTT_CONN_NOT_AUTH,
/** Failed to subscribe to MQTT topic */
NRF_CLOUD_ERR_STATUS_MQTT_SUB_FAIL,
/** Error processing A-GNSS data */
NRF_CLOUD_ERR_STATUS_AGNSS_PROC,
/** Error processing P-GPS data */
NRF_CLOUD_ERR_STATUS_PGPS_PROC,
};
/** @brief nRF Cloud disconnect status, used to describe @ref NRF_CLOUD_EVT_TRANSPORT_DISCONNECTED
* event.
*/
enum nrf_cloud_disconnect_status {
/** Disconnect was requested by user/application */
NRF_CLOUD_DISCONNECT_USER_REQUEST,
/** Disconnect was caused by the cloud */
NRF_CLOUD_DISCONNECT_CLOSED_BY_REMOTE,
/** Socket received POLLNVAL event */
NRF_CLOUD_DISCONNECT_INVALID_REQUEST,
/** Socket poll returned an error value or POLLERR event */
NRF_CLOUD_DISCONNECT_MISC,
};
/** @brief nRF Cloud connect result.
* Used as return value for nrf_cloud_connect() and to describe
* @ref NRF_CLOUD_EVT_TRANSPORT_CONNECT_ERROR event.
*/
enum nrf_cloud_connect_result {
/** The connection was successful */
NRF_CLOUD_CONNECT_RES_SUCCESS = 0,
/** The library is not initialized; @ref nrf_cloud_init */
NRF_CLOUD_CONNECT_RES_ERR_NOT_INITD = -1,
/** A network error ocurred */
NRF_CLOUD_CONNECT_RES_ERR_NETWORK = -3,
/** A connection error occurred relating to the nRF Cloud backend */
NRF_CLOUD_CONNECT_RES_ERR_BACKEND = -4,
/** The connection failed due to an indeterminate reason */
NRF_CLOUD_CONNECT_RES_ERR_MISC = -5,
/** Insufficient memory is available */
NRF_CLOUD_CONNECT_RES_ERR_NO_MEM = -6,
/** Invalid private key */
NRF_CLOUD_CONNECT_RES_ERR_PRV_KEY = -7,
/** Invalid CA or client cert */
NRF_CLOUD_CONNECT_RES_ERR_CERT = -8,
/** Other cert issue */
NRF_CLOUD_CONNECT_RES_ERR_CERT_MISC = -9,
/** Timeout, SIM card may be out of data */
NRF_CLOUD_CONNECT_RES_ERR_TIMEOUT_NO_DATA = -10,
/** The connection exists */
NRF_CLOUD_CONNECT_RES_ERR_ALREADY_CONNECTED = -11,
};
/** @brief nRF Cloud error codes.
* See the <a href="https://api.nrfcloud.com/v1#section/Error-Codes">Error Codes</a>
* section of nRF Cloud API documentation for more information.
*/
enum nrf_cloud_error {
NRF_CLOUD_ERROR_UNKNOWN = -1,
NRF_CLOUD_ERROR_NONE = 0,
/* nRF Cloud API defined error codes below */
NRF_CLOUD_ERROR_BAD_REQUEST = 40000,
NRF_CLOUD_ERROR_INVALID_CERT = 40001,
NRF_CLOUD_ERROR_DISSOCIATE = 40002,
NRF_CLOUD_ERROR_ACCESS_DENIED = 40100,
NRF_CLOUD_ERROR_DEV_ID_IN_USE = 40101,
NRF_CLOUD_ERROR_INVALID_OWNER_CODE = 40102,
NRF_CLOUD_ERROR_DEV_NOT_ASSOCIATED = 40103,
NRF_CLOUD_ERROR_DATA_NOT_FOUND = 40410,
NRF_CLOUD_ERROR_NRF_DEV_NOT_FOUND = 40411,
NRF_CLOUD_ERROR_NO_DEV_NOT_PROV = 40412,
NRF_CLOUD_ERROR_NO_DEV_DISSOCIATE = 40413,
NRF_CLOUD_ERROR_NO_DEV_DELETE = 40414,
/* Item was not found. No error occurred, the requested item simply does not exist */
NRF_CLOUD_ERROR_NOT_FOUND_NO_ERROR = 40499,
NRF_CLOUD_ERROR_BAD_RANGE = 41600,
NRF_CLOUD_ERROR_VALIDATION = 42200,
NRF_CLOUD_ERROR_INTERNAL_SERVER = 50010,
};
/** @brief Sensor types supported by the nRF Cloud. */
enum nrf_cloud_sensor {
/** The GNSS sensor on the device. */
NRF_CLOUD_SENSOR_GNSS,
/** The FLIP movement sensor on the device. */
NRF_CLOUD_SENSOR_FLIP,
/** The Button press sensor on the device. */
NRF_CLOUD_SENSOR_BUTTON,
/** The TEMP sensor on the device. */
NRF_CLOUD_SENSOR_TEMP,
/** The Humidity sensor on the device. */
NRF_CLOUD_SENSOR_HUMID,
/** The Air Pressure sensor on the device. */
NRF_CLOUD_SENSOR_AIR_PRESS,
/** The Air Quality sensor on the device. */
NRF_CLOUD_SENSOR_AIR_QUAL,
/** The RSPR data obtained from the modem. */
NRF_CLOUD_LTE_LINK_RSRP,
/** Log messages generated on the device. */
NRF_CLOUD_LOG,
/** Log messages generated on the device in dictionary (binary) format. */
NRF_CLOUD_DICTIONARY_LOG,
/** The descriptive DEVICE data indicating its status. */
NRF_CLOUD_DEVICE_INFO,
/** The light sensor on the device. */
NRF_CLOUD_SENSOR_LIGHT,
};
/** @brief Topic types supported by nRF Cloud. */
enum nrf_cloud_topic_type {
/** Endpoint used to update the cloud-side device shadow state . */
NRF_CLOUD_TOPIC_STATE = 0x1,
/** Endpoint used to directly message the nRF Cloud Web UI. */
NRF_CLOUD_TOPIC_MESSAGE,
/** Endpoint used to publish bulk messages to nRF Cloud. Bulk messages combine multiple
* messages into a single message that will be unwrapped and re-published to the
* message topic in the nRF Cloud backend.
*/
NRF_CLOUD_TOPIC_BULK,
/** Endpoint used to publish binary data to nRF Cloud for certain services.
* One example is dictionary formatted logs enabled by
* @kconfig{CONFIG_LOG_BACKEND_NRF_CLOUD_OUTPUT_DICTIONARY}, which enables the
* Zephyr option @kconfig{CONFIG_LOG_DICTIONARY_SUPPORT}. Binary data published to
* this topic should be prefixed by the binary header structure defined in
* nrf_cloud_codec.h - struct nrf_cloud_bin_hdr. A unique format value
* should be included to distinguish this data from binary logging.
*/
NRF_CLOUD_TOPIC_BIN,
#if defined(CONFIG_NRF_CLOUD_MQTT_SHADOW_TRANSFORMS)
/** Endpoint used to request device shadow data using a transform (JSONata expression). */
NRF_CLOUD_TOPIC_STATE_TF,
#endif
};
/** @brief FOTA status reported to nRF Cloud and notified in @ref nrf_cloud_fota_poll_handler_t */
enum nrf_cloud_fota_status {
NRF_CLOUD_FOTA_QUEUED = 0,
NRF_CLOUD_FOTA_IN_PROGRESS = 1,
NRF_CLOUD_FOTA_FAILED = 2,
NRF_CLOUD_FOTA_SUCCEEDED = 3,
NRF_CLOUD_FOTA_TIMED_OUT = 4,
NRF_CLOUD_FOTA_CANCELED = 5,
NRF_CLOUD_FOTA_REJECTED = 6,
NRF_CLOUD_FOTA_DOWNLOADING = 7,
/* Validation for Full modem FOTA needed, disconnect from LTE network and call
* nrf_cloud_fota_poll_update_apply(). This event is not reported to nRF Cloud and is only
* used internally to signal the application to apply the full modem FOTA update.
*/
NRF_CLOUD_FOTA_FMFU_VALIDATION_NEEDED = 8,
};
/** @brief FOTA update type. */
enum nrf_cloud_fota_type {
NRF_CLOUD_FOTA_TYPE__FIRST = 0,
/** Application update. */
NRF_CLOUD_FOTA_APPLICATION = NRF_CLOUD_FOTA_TYPE__FIRST,
/** Delta modem update */
NRF_CLOUD_FOTA_MODEM_DELTA = 1,
/** Bootloader update. */
NRF_CLOUD_FOTA_BOOTLOADER = 2,
/* Types not handled by this library:
* NRF_CLOUD_FOTA_BLE_BOOT = 3,
* NRF_CLOUD_FOTA_BLE_SOFTDEVICE = 4,
*/
/** Full modem update */
NRF_CLOUD_FOTA_MODEM_FULL = 5,
/** Auxiliary device updated using SMP */
NRF_CLOUD_FOTA_SMP = 6,
NRF_CLOUD_FOTA_TYPE__INVALID
};
/** Size of nRF Cloud FOTA job ID; version 4 UUID: 32 bytes, 4 hyphens, NULL */
#define NRF_CLOUD_FOTA_JOB_ID_SIZE (32 + 4 + 1)
/** @brief Common FOTA job info */
struct nrf_cloud_fota_job_info {
enum nrf_cloud_fota_type type;
/** Null-terminated FOTA job identifier */
char *id;
char *host;
char *path;
int file_size;
};
/** @brief Validity of an in-progress/installed FOTA update */
enum nrf_cloud_fota_validate_status {
/** No FOTA update in progress */
NRF_CLOUD_FOTA_VALIDATE_NONE = 0,
/** The FOTA update has not yet been validated */
NRF_CLOUD_FOTA_VALIDATE_PENDING,
/** Validation succeeded */
NRF_CLOUD_FOTA_VALIDATE_PASS,
/** Validation failed */
NRF_CLOUD_FOTA_VALIDATE_FAIL,
/** Validation result could not be determined */
NRF_CLOUD_FOTA_VALIDATE_UNKNOWN,
/** The validation process is finished */
NRF_CLOUD_FOTA_VALIDATE_DONE,
/** An error occurred before validation */
NRF_CLOUD_FOTA_VALIDATE_ERROR,
};
/** @brief Status flags for tracking the update process of the b1 bootloader (MCUBOOT) */
enum nrf_cloud_fota_bootloader_status_flags {
/** Initial state */
NRF_CLOUD_FOTA_BL_STATUS_CLEAR = 0,
/** Indicates if the NRF_CLOUD_FOTA_BL_STATUS_S0_WAS_ACTIVE flag has been updated */
NRF_CLOUD_FOTA_BL_STATUS_S0_FLAG_SET = (1 << 0),
/** Indicates if slot 0 was active prior to the update */
NRF_CLOUD_FOTA_BL_STATUS_S0_WAS_ACTIVE = (1 << 1),
/** Indicates if the planned reboot has occurred during the update install process */
NRF_CLOUD_FOTA_BL_STATUS_REBOOTED = (1 << 2),
};
/** @brief FOTA job info provided to the settings module to track FOTA job status. */
struct nrf_cloud_settings_fota_job {
enum nrf_cloud_fota_validate_status validate;
enum nrf_cloud_fota_type type;
char id[NRF_CLOUD_FOTA_JOB_ID_SIZE];
enum nrf_cloud_fota_bootloader_status_flags bl_flags;
};
/** @brief Generic encapsulation for any data that is sent to the cloud. */
struct nrf_cloud_data {
/** Length of the data. */
uint32_t len;
/** Pointer to the data. */
const void *ptr;
};
/** @brief MQTT topic. */
struct nrf_cloud_topic {
/** Length of the topic. */
uint32_t len;
/** Pointer to the topic. */
const void *ptr;
};
/** @brief Sensor data transmission parameters. */
struct nrf_cloud_sensor_data {
/** The sensor that is the source of the data. */
enum nrf_cloud_sensor type;
/** Sensor data to be transmitted. */
struct nrf_cloud_data data;
/** Unique tag to identify the sent data. Can be used to match
* acknowledgment on the NRF_CLOUD_EVT_SENSOR_DATA_ACK event.
* Valid range: NCT_MSG_ID_USER_TAG_BEGIN to NCT_MSG_ID_USER_TAG_END.
* Any other value will suppress the NRF_CLOUD_EVT_SENSOR_DATA_ACK event.
*/
uint16_t tag;
/** UNIX epoch timestamp (in milliseconds) of the data.
* If a value <= NRF_CLOUD_NO_TIMESTAMP (0) is provided, the timestamp will be ignored.
*/
int64_t ts_ms;
};
/** @brief Asynchronous events received from the module. */
struct nrf_cloud_evt {
/** The event that occurred. */
enum nrf_cloud_evt_type type;
/** Any status associated with the event. */
uint32_t status;
/** Received data. */
struct nrf_cloud_data data;
/** Topic on which data was received. */
struct nrf_cloud_topic topic;
/** Decoded shadow data: valid for NRF_CLOUD_EVT_RX_DATA_SHADOW events. */
struct nrf_cloud_obj_shadow_data *shadow;
};
/** @brief Structure used to send data to nRF Cloud. */
struct nrf_cloud_tx_data {
/** Object containing data to be published */
struct nrf_cloud_obj *obj;
/** Pre-encoded data that is to be published if an object is not provided */
struct nrf_cloud_data data;
/** Endpoint topic type published to. */
enum nrf_cloud_topic_type topic_type;
/** Quality of Service of the message. */
enum mqtt_qos qos;
/** Message ID */
uint32_t id;
};
/** @brief Controls which values are added to the FOTA array in the "serviceInfo" shadow section */
struct nrf_cloud_svc_info_fota {
/** Flag to indicate if bootloader updates are supported */
uint8_t bootloader:1;
/** Flag to indicate if modem delta updates are supported */
uint8_t modem:1;
/** Flag to indicate if application updates are supported */
uint8_t application:1;
/** Flag to indicate if full modem image updates are supported */
uint8_t modem_full:1;
/** Flag to indicate if smp updates are supported */
uint8_t smp:1;
/** Reserved for future use */
uint8_t _rsvd:3;
};
/** @brief DEPRECATED - No longer used by nRF Cloud
* The device data cards on the nRF Cloud portal automatically appear when the device
* sends messages with the proper schema:
* https://github.com/nRFCloud/application-protocols/tree/v1/schemas/deviceToCloud
* Custom cards are generated for appIds that are not present in the schema.
*/
struct nrf_cloud_svc_info_ui {
/* Items with UI support on nRF Cloud */
/** Temperature */
uint8_t temperature:1;
/** Location (map) */
uint8_t gnss:1;
/** Orientation */
uint8_t flip:1;
/** Humidity */
uint8_t humidity:1;
/** Air pressure */
uint8_t air_pressure:1;
/** RSRP */
uint8_t rsrp:1;
/** Logs */
uint8_t log:1;
/** Dictionary (binary) Logs */
uint8_t dictionary_log:1;
/** Air Quality */
uint8_t air_quality:1;
/* Items without UI support on nRF Cloud */
/** Light sensor */
uint8_t light_sensor:1;
/** Button */
uint8_t button:1;
/** Unused bits */
uint8_t _rsvd:5;
};
/** @brief How the info sections are handled when encoding shadow data */
enum nrf_cloud_shadow_info {
/** Data will not be modified */
NRF_CLOUD_INFO_NO_CHANGE = 0,
/** Data will be set/updated */
NRF_CLOUD_INFO_SET = 1,
/** Data section will be cleared */
NRF_CLOUD_INFO_CLEAR = 2,
};
/** @brief Modem info data and which sections should be encoded */
struct nrf_cloud_modem_info {
enum nrf_cloud_shadow_info device;
enum nrf_cloud_shadow_info network;
enum nrf_cloud_shadow_info sim;
#if defined(CONFIG_MODEM_INFO)
/** Pointer to a populated @ref modem_param_info struct.
* If NULL, modem data will be fetched.
*/
const struct modem_param_info *mpi;
#endif
/** Application version string to report to nRF Cloud.
* Used only if device parameter is NRF_CLOUD_INFO_SET.
*/
const char *application_version;
};
/** @brief Structure to specify which components are added to the encoded service info object */
struct nrf_cloud_svc_info {
/** Specify FOTA components to enable, set to NULL to remove the FOTA entry */
struct nrf_cloud_svc_info_fota *fota;
/** DEPRECATED - nRF Cloud no longer requires the device to set UI values in the shadow.
* See @ref nrf_cloud_svc_info_ui for more information.
*/
struct nrf_cloud_svc_info_ui *ui;
};
/** @brief Structure to specify which components are added to the encoded device status object */
struct nrf_cloud_device_status {
/** Specify which modem info components to include, set to NULL to skip */
struct nrf_cloud_modem_info *modem;
/** Specify which service info components to include, set to NULL to skip */
struct nrf_cloud_svc_info *svc;
/** Specify how the connection info data should be handled */
enum nrf_cloud_shadow_info conn_inf;
};
/** @brief GNSS data type contained in @ref nrf_cloud_gnss_data */
enum nrf_cloud_gnss_type {
/** Invalid data type */
NRF_CLOUD_GNSS_TYPE_INVALID,
/** Specifies a data type of @ref nrf_cloud_gnss_pvt */
NRF_CLOUD_GNSS_TYPE_PVT,
/** Specifies a data type of @ref nrf_cloud_gnss_nmea */
NRF_CLOUD_GNSS_TYPE_NMEA,
/** Specifies a data type of nrf_modem_gnss_pvt_data_frame */
NRF_CLOUD_GNSS_TYPE_MODEM_PVT,
/** Specifies a data type of nrf_modem_gnss_nmea_data_frame */
NRF_CLOUD_GNSS_TYPE_MODEM_NMEA,
};
/** @brief PVT data */
struct nrf_cloud_gnss_pvt {
/** Latitude in degrees; required. */
double lat;
/** Longitude in degrees; required. */
double lon;
/** Position accuracy (2D 1-sigma) in meters; required. */
float accuracy;
/** Altitude above WGS-84 ellipsoid in meters; optional. */
float alt;
/** Horizontal speed in m/s; optional. */
float speed;
/** Heading of user movement in degrees; optional. */
float heading;
/** Altitude value is set */
uint8_t has_alt:1;
/** Speed value is set */
uint8_t has_speed:1;
/** Heading value is set */
uint8_t has_heading:1;
/** Reserved for future use */
uint8_t _rsvd:5;
};
struct nrf_cloud_credentials_status {
/* Configured sec_tag for nRF Cloud */
uint32_t sec_tag;
size_t ca_size;
/* Flags to indicate if the specified credentials exist */
uint8_t ca:1;
uint8_t ca_coap:1;
uint8_t ca_aws:1;
uint8_t client_cert:1;
uint8_t prv_key:1;
};
#if !defined(CONFIG_NRF_MODEM)
#define NRF_MODEM_GNSS_NMEA_MAX_LEN 83
#endif
/** @brief NMEA data */
struct nrf_cloud_gnss_nmea {
/** Null-terminated NMEA sentence. Supported types are GPGGA, GPGLL, GPRMC.
* Max string length is NRF_MODEM_GNSS_NMEA_MAX_LEN - 1
*/
const char *sentence;
};
/** @brief GNSS data to be sent to nRF Cloud as a device message */
struct nrf_cloud_gnss_data {
/** The type of GNSS data below. */
enum nrf_cloud_gnss_type type;
/** UNIX epoch timestamp (in milliseconds) of the data.
* If a value <= NRF_CLOUD_NO_TIMESTAMP (0) is provided, the timestamp will be ignored.
*/
int64_t ts_ms;
union {
/** For type: NRF_CLOUD_GNSS_TYPE_PVT */
struct nrf_cloud_gnss_pvt pvt;
/** For type: NRF_CLOUD_GNSS_TYPE_NMEA */
struct nrf_cloud_gnss_nmea nmea;
#if defined(CONFIG_NRF_MODEM)
/** For type: NRF_CLOUD_GNSS_TYPE_MODEM_PVT */
struct nrf_modem_gnss_nmea_data_frame *mdm_nmea;
/** For type: NRF_CLOUD_GNSS_TYPE_MODEM_NMEA */
struct nrf_modem_gnss_pvt_data_frame *mdm_pvt;
#endif
};
};
/** @brief Data to control behavior of the nrf_cloud library from the
* cloud side. This data is stored in the device shadow.
*/
struct nrf_cloud_ctrl_data {
/** If true, nrf_cloud_alert_send() or nrf_cloud_rest_alert_send()
* will transfer alerts to the cloud whenever they are raised.
* If false, alerts will be suppressed.
*/
bool alerts_enabled;
/** If 0: None - the nrf_cloud library logging backend is disabled.
* 4: LOG_DBG (least urgent) and all levels below are sent to the cloud.
* 3: LOG_INF and all levels below are sent to the cloud.
* 2: LOG_WRN and all levels below are sent to the cloud.
* 1: only LOG_ERR (most urgent) is sent to the cloud.
*/
int log_level;
};
/**
* @brief Event handler registered with the module to handle asynchronous
* events from the module.
*
* @param[in] evt The event and any associated parameters.
*/
typedef void (*nrf_cloud_event_handler_t)(const struct nrf_cloud_evt *evt);
/** @brief Initialization parameters for the module. */
struct nrf_cloud_init_param {
/** Event handler that is registered with the module. */
nrf_cloud_event_handler_t event_handler;
/** Null-terminated MQTT client ID string.
* Must not exceed NRF_CLOUD_CLIENT_ID_MAX_LEN.
* Must be set if NRF_CLOUD_CLIENT_ID_SRC_RUNTIME
* is enabled; otherwise, NULL.
*/
char *client_id;
/** Flash device information required for full modem FOTA updates.
* Only used if @kconfig{CONFIG_NRF_CLOUD_FOTA_FULL_MODEM_UPDATE} is enabled.
* Ignored if @kconfig{CONFIG_DFU_TARGET_FULL_MODEM_USE_EXT_PARTITION} is
* enabled.
*/
struct dfu_target_fmfu_fdev *fmfu_dev_inf;
/** Optional hooks to override memory management functions.
* If set, @ref nrf_cloud_os_mem_hooks_init will be called by @ref nrf_cloud_init.
*/
struct nrf_cloud_os_mem_hooks *hooks;
/** Optional application version that is reported to nRF Cloud if
* @kconfig{CONFIG_NRF_CLOUD_SEND_DEVICE_STATUS} is enabled.
*/
const char *application_version;
/** Callback of type @ref dfu_target_reset_cb_t for resetting the SMP device to enter
* MCUboot recovery mode.
* Used if @kconfig{CONFIG_NRF_CLOUD_FOTA_SMP} is enabled.
*/
void *smp_reset_cb;
};
/**
* @brief Initialize the module.
*
* @note This API must be called prior to using nRF Cloud
* and it must return successfully.
*
* @param[in] param Initialization parameters.
*
* @retval 0 If successful.
* @retval -EACCES Already initialized or @ref nrf_cloud_uninit is in progress.
* @return A negative value indicates an error.
*/
int nrf_cloud_init(const struct nrf_cloud_init_param *param);
/**
* @brief Uninitialize nRF Cloud; disconnects cloud connection
* and cleans up allocated memory.
*
* @note If nRF Cloud FOTA is enabled and a FOTA job is active
* uninit will not be performed.
*
* @note This function is solely intended to allow this library to be deactivated when
* no longer needed. You can recover from any error state you may encounter without calling this
* function. See @ref nrf_cloud_disconnect for a way to reset the nRF Cloud connection state
* without uninitializing the whole library.
*
* @retval 0 If successful.
* @retval -EBUSY If a FOTA job is in progress.
* @retval -EISCONN If the expected disconnect event did not occur.
* @retval -ETIME If @kconfig{CONFIG_NRF_CLOUD_CONNECTION_POLL_THREAD} is enabled and
* the connection poll thread did not become inactive.
* @return A negative value indicates an error.
*/
int nrf_cloud_uninit(void);
/**
* @brief Print details about cloud connection.
*
* If @kconfig{CONFIG_NRF_CLOUD_VERBOSE_DETAILS} is not enabled,
* only print the device id. If enabled, also print the protocol,
* sec tag, and host name.
*
* @return A negative value indicates an error.
*/
int nrf_cloud_print_details(void);
/**
* @brief Print details about cloud connection after connected.
*
* Some information is only available after the device is connected.
* When using MQTT, the tenant will be printed.
*
* When using CoAP and REST, there is no further information to print.
*
* @return A negative value indicates an error.
*/
int nrf_cloud_print_cloud_details(void);
/**
* @brief Retrieve the IMEI.
*
* If @kconfig{CONFIG_NRF_MODEM_LIB} is not enabled, returns an error.
*
* @param[in,out] buf A pointer in which to store the IMEI string.
* @param[in] buf_sz The size of the buffer. It should be at least 22
* to include the 15 bytes for the IMEI and 7 for AT
* command overhead.
*
* @retval 0 If successful.
* @retval -ENOTSUP If the modem library is not available.
* @return A negative value indicates an error.
*/
int nrf_cloud_get_imei(char *buf, size_t buf_sz);
/**
* @brief Retrieve the device's UUID.
*
* If @kconfig{CONFIG_NRF_MODEM_LIB} is not enabled, returns an error.
*
* @param[in,out] buf A pointer in which to store the UUID string.
* @param[in] buf_sz The size of the buffer. It should be at least
* NRF_DEVICE_UUID_STR_LEN + 1 bytes in size.
*
* @retval 0 If successful.
* @retval -ENOTSUP If the modem library is not available.
* @retval -EINVAL buf cannot be NULL.
* @retval -ENOMEM buf_sz was too small.
* @return A negative value indicates an error.
*/
int nrf_cloud_get_uuid(char *buf, size_t buf_sz);
/**
* @brief Retrieve the Modem firmware version.
*
* If @kconfig{CONFIG_NRF_MODEM_LIB} is not enabled, returns an error.
*
* @param[in,out] buf A pointer in which to store the mfw string.
* @param[in] buf_sz The size of the buffer. The required size could
* be up to 2048, but 32 should be sufficient.
*
* @retval 0 If successful.
* @retval -ENOTSUP If the modem library is not available.
* @return A negative value indicates an error.
*/
int nrf_cloud_get_modem_fw(char *buf, size_t buf_sz);
/**
* @brief Connect to the cloud.
*
* The @ref NRF_CLOUD_EVT_TRANSPORT_CONNECTED event indicates
* that the cloud connection has been established.
* In any stage of connecting to the cloud, an @ref NRF_CLOUD_EVT_ERROR
* might be received.
* If it is received before @ref NRF_CLOUD_EVT_TRANSPORT_CONNECTED,
* the application may repeat the call to @ref nrf_cloud_connect to try again.
*
* @retval Connect result defined by enum nrf_cloud_connect_result.
*/
int nrf_cloud_connect(void);
/**
* @brief Send sensor data reliably.
*
* This API should only be called after receiving an
* @ref NRF_CLOUD_EVT_READY event.
* If the API succeeds, you can expect the
* @ref NRF_CLOUD_EVT_SENSOR_DATA_ACK event for data sent with
* a valid tag value.
*
* @param[in] param Sensor data; the data pointed to by param->data.ptr
* must be a string.
*
* @retval 0 If successful.
* @retval -EACCES Cloud connection is not established; wait for @ref NRF_CLOUD_EVT_READY.
* @return A negative value indicates an error.
*/
int nrf_cloud_sensor_data_send(const struct nrf_cloud_sensor_data *param);
/**
* @brief Update the device status in the shadow.
*
* @param[in] dev_status Device status to be encoded.
*
* @retval 0 If successful.
* @retval -EACCES Cloud connection is not established; wait for @ref NRF_CLOUD_EVT_READY.
* @return A negative value indicates an error.
*/
int nrf_cloud_shadow_device_status_update(const struct nrf_cloud_device_status * const dev_status);
/**
* @brief Stream sensor data. Uses lowest QoS; no acknowledgment,
*
* This API should only be called after receiving an
* @ref NRF_CLOUD_EVT_READY event.
*
* @param[in] param Sensor data; tag value is ignored.
*
* @retval 0 If successful.
* @retval -EACCES Cloud connection is not established; wait for @ref NRF_CLOUD_EVT_READY.
* @return A negative value indicates an error.
*/
int nrf_cloud_sensor_data_stream(const struct nrf_cloud_sensor_data *param);
/**
* @brief Send data to nRF Cloud.
*
* This API is used for sending data to nRF Cloud.
*
* @param[in] msg Pointer to a structure containing data and topic
* information.
*
* @retval 0 If successful.
* @retval -EACCES Cloud connection is not established; wait for @ref NRF_CLOUD_EVT_READY.
* @retval -EIO Error; failed to encode data.
* @return A negative value indicates an error.
*/
int nrf_cloud_send(const struct nrf_cloud_tx_data *msg);
/**
* @brief Update the device's shadow with the data from the provided object.
*
* @param[in] shadow_obj Object containing data to be written to the device's shadow.
*
* @retval 0 If successful.
* @retval -EINVAL Error; invalid parameter.
* @retval -EACCES Cloud connection is not established; wait for @ref NRF_CLOUD_EVT_READY.
* @retval -EIO Error; failed to encode data.
* @return A negative value indicates an error.
*/
int nrf_cloud_obj_shadow_update(struct nrf_cloud_obj *const shadow_obj);
/**
* @brief Request shadow data over MQTT using a JSONata expression.
* For example, to request the reported device info section, the transform would be:
* "state.reported.device.deviceInfo".
* The application will receive response data in an
* @ref NRF_CLOUD_EVT_RX_DATA_SHADOW event.
* The @ref nrf_cloud_obj_shadow_data will be of the type @ref NRF_CLOUD_OBJ_SHADOW_TYPE_TF.
*
* @param transform The JSONata expression.
* @param max_response_len The maximum allowable length of the cloud's response.
* Set to 0 to use the default length:
* @ref NRF_CLOUD_TRANSFORM_MAX_RESPONSE_LEN.
*
* @retval 0 Request was sent successfully.
* @retval -ENOTSUP Error; @kconfig{CONFIG_NRF_CLOUD_MQTT_SHADOW_TRANSFORMS} is not enabled.
* @retval -EINVAL Error; invalid parameter.
* @return A negative value indicates an error.
*/
int nrf_cloud_shadow_transform_request(char const *const transform, const size_t max_response_len);
/**
* @brief Disconnect from the cloud.
*
* This API may be called any time after receiving the
* @ref NRF_CLOUD_EVT_TRANSPORT_CONNECTED event.
* The @ref NRF_CLOUD_EVT_TRANSPORT_DISCONNECTED event indicates
* that the disconnect has completed successfully.
*
* @retval 0 If successful.
* @retval -EACCES Cloud connection is not established; wait for
* @ref NRF_CLOUD_EVT_TRANSPORT_CONNECTED.
* @return A negative value indicates an error.
*/
int nrf_cloud_disconnect(void);
/**
* @brief Function that must be called periodically to keep the module
* functional.
*
* @retval 0 If successful.
* @return A negative value indicates an error.
*/
int nrf_cloud_process(void);
/**
* @brief The application has handled reinit after a modem FOTA update and the
* LTE link has been reestablished.
* This function must be called in order to complete the modem update.
* Depends on @kconfig{CONFIG_NRF_CLOUD_FOTA}.
*
* @param[in] fota_success true if modem update was successful, false otherwise.
*
* @retval 0 If successful.
* @return A negative value indicates an error.
*/
int nrf_cloud_modem_fota_completed(const bool fota_success);
/**
* @brief Retrieve the current device ID.
*
* @param[in,out] id_buf Buffer to receive the device ID as a null-terminated string.
* @param[in] id_buf_sz Size of buffer, maximum size is NRF_CLOUD_CLIENT_ID_MAX_LEN + 1.
*
* @retval 0 If successful.
* @retval -EINVAL The id_buf parameter is NULL and/or the id_buf_sz parameter is 0.
* @retval -EMSGSIZE The provided buffer is too small.
* @retval -EIO The client ID could not be initialized.
* @retval -ENXIO The Kconfig option @kconfig{CONFIG_NRF_CLOUD_CLIENT_ID_SRC_RUNTIME} is enabled
* but the runtime client ID has not been set.
* See @ref nrf_cloud_client_id_runtime_set.
* @return A negative value indicates an error.
*/
int nrf_cloud_client_id_get(char *id_buf, size_t id_buf_sz);
/**
* @brief Set the device ID at runtime.
* Requires @kconfig{CONFIG_NRF_CLOUD_CLIENT_ID_SRC_RUNTIME} to be enabled.
*
* @note This function does not perform any management of the device's connection to nRF Cloud.
*
* @param[in] client_id Null-terminated device ID string.
* Max string length is NRF_CLOUD_CLIENT_ID_MAX_LEN.
*
* @retval 0 If successful.
* @retval -EINVAL The length of the client_id provided exceeds the maximum allowed.
* @retval -ENODATA The client_id cannot be empty.
* @return A negative value indicates an error.
*/
int nrf_cloud_client_id_runtime_set(const char *const client_id);
/**
* @brief Retrieve the current customer tenant ID.
*
* @param[in,out] id_buf Buffer to receive the tenant ID.
* @param[in] id_len Size of buffer (NRF_CLOUD_TENANT_ID_MAX_LEN).
*
* @retval 0 If successful.
* @return A negative value indicates an error.
*/
int nrf_cloud_tenant_id_get(char *id_buf, size_t id_len);
/**
* @brief Generate a JWT to be used with nRF Cloud's REST API.
* This library's configured values for client id and sec tag (NRF_CLOUD_SEC_TAG)
* will be used for generating the JWT.
*
* @param[in] time_valid_s How long (seconds) the JWT will be valid. Maximum
* duration specified by @ref NRF_CLOUD_JWT_VALID_TIME_S_MAX.
* If zero, NRF_CLOUD_JWT_VALID_TIME_S_DEF will be used.
* @param[in,out] jwt_buf Buffer to hold the JWT.
* @param[in] jwt_buf_sz Size of the buffer (recommended size >= 600 bytes).
*
* @retval 0 JWT generated successfully.
* @retval -ETIME Modem does not have valid date/time, JWT not generated.
* @return A negative value indicates an error.
*/
int nrf_cloud_jwt_generate(uint32_t time_valid_s, char * const jwt_buf, size_t jwt_buf_sz);