diff --git a/Doxyfile b/Doxyfile index 31bf226..4949596 100644 --- a/Doxyfile +++ b/Doxyfile @@ -74,7 +74,7 @@ PROJECT_ICON = # entered, it will be relative to the location where doxygen was started. If # left blank the current directory will be used. -OUTPUT_DIRECTORY = F:/projects/hedrosistemas/ciot_c/doc +OUTPUT_DIRECTORY = F:/projects/hedrosistemas/ciot_c/docs # If the CREATE_SUBDIRS tag is set to YES then doxygen will create up to 4096 # sub-directories (in 2 levels) under the output directory of each output format @@ -1338,7 +1338,7 @@ GENERATE_HTML = YES # The default directory is: html. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_OUTPUT = html +HTML_OUTPUT = ../docs # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each # generated HTML page (for example: .htm, .php, .asp). @@ -1996,7 +1996,7 @@ EXTRA_SEARCH_MAPPINGS = # If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output. # The default value is: YES. -GENERATE_LATEX = YES +GENERATE_LATEX = NO # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of diff --git a/docs/_r_e_a_d_m_e_8md.html b/docs/_r_e_a_d_m_e_8md.html new file mode 100644 index 0000000..2ab8cd8 --- /dev/null +++ b/docs/_r_e_a_d_m_e_8md.html @@ -0,0 +1,108 @@ + + + + + + + +CioT: include/README.md File Reference + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
CioT 0.1.0 +
+
Connected IoT
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
include/README.md File Reference
+
+
+
+
+ + + + diff --git a/docs/ciot_8h_source.html b/docs/ciot_8h_source.html index cbd991b..69683c8 100644 --- a/docs/ciot_8h_source.html +++ b/docs/ciot_8h_source.html @@ -101,80 +101,80 @@
Go to the documentation of this file.
1
-
10#ifndef __CIOT__H__
-
11#define __CIOT__H__
-
12
-
13#ifdef __cplusplus
-
14extern "C" {
-
15#endif
-
16
-
17#include "ciot_err.h"
-
18#include "ciot_iface.h"
-
19#include "ciot_storage.h"
-
20#include "ciot_bridge.h"
-
21
-
22#define CIOT_IFACE_CFG_FILENAME "cfg%d.dat"
-
23
-
24#ifdef CIOT_TARGET_MONGOOSE
-
25
-
26extern struct mg_mgr mg;
-
27
-
28#define CIOT_HANDLE &mg
-
29
-
30#else
-
31
-
32#define CIOT_HANDLE NULL
-
33
-
34#endif
-
35
-
36#ifdef CIOT_TARGET_NRF
-
37
-
38#define app_main main
-
39
-
40#endif
-
41
-
42#ifdef CIOT_TARGET_ARDUINO
-
43
-
44#define app_main setup
-
45
-
46#endif //CIOT_TARGET_ARDUINO
-
47
-
48typedef struct ciot *ciot_t;
-
49
-
-
54typedef struct ciot_cfg
-
55{
- -
57 void **cfgs;
-
58 uint8_t count;
- +
11#ifndef __CIOT__H__
+
12#define __CIOT__H__
+
13
+
14#ifdef __cplusplus
+
15extern "C" {
+
16#endif
+
17
+
18#include "ciot_err.h"
+
19#include "ciot_iface.h"
+
20#include "ciot_storage.h"
+
21#include "ciot_bridge.h"
+
22
+
23#define CIOT_IFACE_CFG_FILENAME "cfg%d.dat"
+
24
+
25#ifdef CIOT_TARGET_MONGOOSE
+
26
+
27extern struct mg_mgr mg;
+
28
+
29#define CIOT_HANDLE &mg
+
30
+
31#else
+
32
+
33#define CIOT_HANDLE NULL
+
34
+
35#endif
+
36
+
37#ifdef CIOT_TARGET_NRF
+
38
+
39#define app_main main
+
40
+
41#endif
+
42
+
43#ifdef CIOT_TARGET_ARDUINO
+
44
+
45#define app_main setup
+
46
+
47#endif //CIOT_TARGET_ARDUINO
+
48
+
49typedef struct ciot *ciot_t;
+
50
+
+
55typedef struct ciot_cfg
+
56{
+ +
58 void **cfgs;
+
59 uint8_t count;
+
-
60
- -
67
- -
76
- -
85
-
94ciot_err_t ciot_register_event(ciot_t self, ciot_iface_event_handler_t event_handler, void *event_args);
-
95
- -
107
-
115ciot_err_t ciot_save_iface_cfg(ciot_t self, uint8_t iface_id);
-
116
- -
125
- -
133
-
134#ifdef __cplusplus
-
135}
-
136#endif
-
137
-
138#endif
+
61
+ +
68
+ +
77
+ +
86
+
95ciot_err_t ciot_register_event(ciot_t self, ciot_iface_event_handler_t event_handler, void *event_args);
+
96
+ +
108
+
116ciot_err_t ciot_save_iface_cfg(ciot_t self, uint8_t iface_id);
+
117
+ +
126
+ +
134
+
135#ifdef __cplusplus
+
136}
+
137#endif
+
138
+
139#endif
ciot_err_t ciot_task(ciot_t self)
Perform the CIOT network task.
ciot_err_t ciot_delete_iface_cfg(ciot_t self, uint8_t iface_id)
Delete the configuration of a specific interface in CIOT network.
ciot_err_t ciot_register_event(ciot_t self, ciot_iface_event_handler_t event_handler, void *event_args)
Register an event handler for CIOT network events.
-
struct ciot * ciot_t
CIOT network handle.
Definition ciot.h:48
+
struct ciot * ciot_t
CIOT network handle.
Definition ciot.h:49
ciot_err_t ciot_start(ciot_t self, ciot_cfg_t *cfg)
Start the CIOT network module.
ciot_err_t ciot_save_iface_cfg(ciot_t self, uint8_t iface_id)
Save the configuration of a specific interface in CIOT network.
ciot_err_t ciot_set_storage(ciot_t self, ciot_storage_t storage)
Set the storage for CIOT network data.
@@ -183,16 +183,16 @@
ciot_t ciot_new(void)
Create a new CIOT network instance.
Defines functions and types for CIOT Bridge module.
Header file for CIOT error handling.
-
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
+
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
Header file for the CIOT interface.
-
ciot_err_t ciot_iface_event_handler_t(ciot_iface_t *sender, ciot_iface_event_t *event, void *args)
Function pointer for handling interface events.
Definition ciot_iface.h:125
+
ciot_err_t ciot_iface_event_handler_t(ciot_iface_t *sender, ciot_iface_event_t *event, void *args)
Function pointer for handling interface events.
Definition ciot_iface.h:126
Header file for CIOT Storage module.
struct ciot_storage * ciot_storage_t
CIOT Storage instance pointer.
Definition ciot_storage.h:25
-
CIOT configuration structure.
Definition ciot.h:55
-
uint8_t count
Number of interfaces.
Definition ciot.h:58
-
void ** cfgs
Array of configurations for the interfaces.
Definition ciot.h:57
-
ciot_iface_t ** ifaces
Array of CIOT interfaces.
Definition ciot.h:56
-
Structure representing a CIOT interface.
Definition ciot_iface.h:130
+
CIOT configuration structure.
Definition ciot.h:56
+
uint8_t count
Number of interfaces.
Definition ciot.h:59
+
void ** cfgs
Array of configurations for the interfaces.
Definition ciot.h:58
+
ciot_iface_t ** ifaces
Array of CIOT interfaces.
Definition ciot.h:57
+
Structure representing a CIOT interface.
Definition ciot_iface.h:131
Structure for CIOT message interface information.
Definition ciot_msg_types.h:89
Structure for CIOT message.
Definition ciot_msg_types.h:142
diff --git a/docs/ciot__ble_8h_source.html b/docs/ciot__ble_8h_source.html index 9589ea1..523017e 100644 --- a/docs/ciot__ble_8h_source.html +++ b/docs/ciot__ble_8h_source.html @@ -186,7 +186,7 @@
struct ciot_ble_scn * ciot_ble_scn_t
Pointer to a CIOT BLE scanner object.
Definition ciot_ble_scn.h:23
Defines data types and structures for CIOT BLE.
Header file for CIOT error handling.
-
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
+
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
Structure for CIOT BLE configuration.
Definition ciot_ble_types.h:42
Structure for CIOT BLE interface configuration.
Definition ciot_ble.h:36
ciot_ble_scn_t scanner
Definition ciot_ble.h:37
diff --git a/docs/ciot__ble__scn_8h_source.html b/docs/ciot__ble__scn_8h_source.html index a002784..78294cd 100644 --- a/docs/ciot__ble__scn_8h_source.html +++ b/docs/ciot__ble__scn_8h_source.html @@ -150,7 +150,7 @@
ciot_err_t ciot_ble_scn_get_adv_info(ciot_ble_scn_t self, ciot_ble_scn_adv_info_t *adv_info)
Get advertising information from the CIOT BLE scanner.
Defines data types and structures for CIOT BLE SCN.
Header file for CIOT error handling.
-
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
+
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
Header file for the CIOT interface.
Structure for CIOT BLE SCN advertising information.
Definition ciot_ble_scn_types.h:55
Structure for CIOT BLE SCN configuration.
Definition ciot_ble_scn_types.h:42
diff --git a/docs/ciot__bridge_8h_source.html b/docs/ciot__bridge_8h_source.html index 8e5fecf..4d3e1d6 100644 --- a/docs/ciot__bridge_8h_source.html +++ b/docs/ciot__bridge_8h_source.html @@ -148,7 +148,7 @@
ciot_err_t ciot_bridge_process_req(ciot_bridge_t self, ciot_bridge_req_t *req)
Process a Bridge module request.
Defines data types and structures for CIOT bridge.
Header file for CIOT error handling.
-
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
+
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
Header file for the CIOT interface.
Structure for CIOT bridge configuration.
Definition ciot_bridge_types.h:42
Structure for CIOT bridge request.
Definition ciot_bridge_types.h:66
diff --git a/docs/ciot__dfu_8h_source.html b/docs/ciot__dfu_8h_source.html index 8382671..029166b 100644 --- a/docs/ciot__dfu_8h_source.html +++ b/docs/ciot__dfu_8h_source.html @@ -155,9 +155,9 @@
ciot_err_t ciot_dfu_stop(ciot_dfu_t self)
Stops the DFU process.
Defines data types and structures for CIOT DFU (Device Firmware Update).
Header file for CIOT error handling.
-
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
+
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
Header file for the CIOT interface.
-
@ CIOT_IFACE_EVENT_CUSTOM
Definition ciot_iface.h:44
+
@ CIOT_IFACE_EVENT_CUSTOM
Definition ciot_iface.h:45
Structure for CIOT DFU configuration.
Definition ciot_dfu_types.h:55
Structure for CIOT DFU request.
Definition ciot_dfu_types.h:83
Struct for DFU status message.
Definition ciot_dfu.h:34
diff --git a/docs/ciot__err_8h.html b/docs/ciot__err_8h.html index 5fff9f2..a37c8ff 100644 --- a/docs/ciot__err_8h.html +++ b/docs/ciot__err_8h.html @@ -96,7 +96,7 @@ Macros | Enumerations | Functions
-
ciot_err.h File Reference
+
ciot_err.h File Reference
@@ -242,8 +242,8 @@

CIOT_ERROR_LOG(ciot_err); \

} \
} while (0)
-
ciot_err_t
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
-
CIOT_OK
@ CIOT_OK
Definition ciot_err.h:72
+
ciot_err_t
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
+
CIOT_OK
@ CIOT_OK
Definition ciot_err.h:73

Macro to print an error message if an operation fails.

Parameters
@@ -305,7 +305,7 @@

Value:
if (x == NULL) \
-
@ CIOT_ERR_NULL_ARG
Definition ciot_err.h:73
+
@ CIOT_ERR_NULL_ARG
Definition ciot_err.h:74

Macro to check for a null pointer and return an error if found.

Parameters
diff --git a/docs/ciot__err_8h_source.html b/docs/ciot__err_8h_source.html index b0aedd2..e7075f5 100644 --- a/docs/ciot__err_8h_source.html +++ b/docs/ciot__err_8h_source.html @@ -101,121 +101,121 @@
Go to the documentation of this file.
1
-
10#ifndef __CIOT_ERR__H__
-
11#define __CIOT_ERR__H__
-
12
-
13#ifdef __cplusplus
-
14extern "C" {
-
15#endif
-
16
-
17#include "ciot_log.h"
-
18
-
22#define CIOT_ERR_BASE 0x0
-
23
-
28#define CIOT_ERROR_LOG(x) CIOT_LOGE(TAG, "%s:%d %s", __FILE__, __LINE__, ciot_err_to_message(ciot_err))
-
29
-
-
34#define CIOT_NULL_CHECK(x) \
-
35 if (x == NULL) \
-
36 return CIOT_ERR_NULL_ARG
+
11#ifndef __CIOT_ERR__H__
+
12#define __CIOT_ERR__H__
+
13
+
14#ifdef __cplusplus
+
15extern "C" {
+
16#endif
+
17
+
18#include "ciot_log.h"
+
19
+
23#define CIOT_ERR_BASE 0x0
+
24
+
29#define CIOT_ERROR_LOG(x) CIOT_LOGE(TAG, "%s:%d %s", __FILE__, __LINE__, ciot_err_to_message(ciot_err))
+
30
+
+
35#define CIOT_NULL_CHECK(x) \
+
36 if (x == NULL) \
+
37 return CIOT_ERR_NULL_ARG
-
37
-
-
42#define CIOT_ERROR_PRINT(x) \
-
43 do \
-
44 { \
-
45 ciot_err_t ciot_err = x; \
-
46 if (ciot_err != CIOT_OK) \
-
47 { \
-
48 CIOT_ERROR_LOG(ciot_err); \
-
49 } \
-
50 } while (0)
+
38
+
+
43#define CIOT_ERROR_PRINT(x) \
+
44 do \
+
45 { \
+
46 ciot_err_t ciot_err = x; \
+
47 if (ciot_err != CIOT_OK) \
+
48 { \
+
49 CIOT_ERROR_LOG(ciot_err); \
+
50 } \
+
51 } while (0)
-
51
-
-
56#define CIOT_ERROR_RETURN(x) \
-
57 do \
-
58 { \
-
59 ciot_err_t ciot_err = x; \
-
60 if (ciot_err != CIOT_OK) \
-
61 { \
-
62 CIOT_ERROR_LOG(ciot_err); \
-
63 return ciot_err; \
-
64 } \
-
65 } while (0)
+
52
+
+
57#define CIOT_ERROR_RETURN(x) \
+
58 do \
+
59 { \
+
60 ciot_err_t ciot_err = x; \
+
61 if (ciot_err != CIOT_OK) \
+
62 { \
+
63 CIOT_ERROR_LOG(ciot_err); \
+
64 return ciot_err; \
+
65 } \
+
66 } while (0)
-
66
-
-
70typedef enum {
-
71 CIOT_FAIL = -1,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - +
67
+ -
100
- -
107
-
108#ifdef __cplusplus
-
109}
-
110#endif
-
111
-
112#endif
+
101
+ +
108
+
109#ifdef __cplusplus
+
110}
+
111#endif
+
112
+
113#endif
const char * ciot_err_to_message(ciot_err_t err)
Converts a CIOT error code to a human-readable message.
-
#define CIOT_ERR_BASE
Base error code for CIOT library.
Definition ciot_err.h:22
-
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
-
@ CIOT_ERR_NO_MEMORY
Definition ciot_err.h:94
-
@ CIOT_ERR_RECV_DATA
Definition ciot_err.h:84
-
@ CIOT_ERR_CONNECTION
Definition ciot_err.h:89
-
@ CIOT_ERR_NOT_FOUND
Definition ciot_err.h:87
-
@ CIOT_ERR_INVALID_ID
Definition ciot_err.h:74
-
@ CIOT_ERR_SEND_DATA
Definition ciot_err.h:83
-
@ CIOT_ERR_EXCEPTION
Definition ciot_err.h:91
-
@ CIOT_OK
Definition ciot_err.h:72
-
@ CIOT_ERR_CLOSED
Definition ciot_err.h:86
-
@ CIOT_ERR_DISCONNECTION
Definition ciot_err.h:90
-
@ CIOT_ERR_TERMINATOR_MISSING
Definition ciot_err.h:92
-
@ CIOT_ERR_IMPOSSIBLE_OP
Definition ciot_err.h:97
-
@ CIOT_FAIL
Definition ciot_err.h:71
-
@ CIOT_ERR_INVALID_ARG
Definition ciot_err.h:93
-
@ CIOT_ERR_MONGOOSE
Definition ciot_err.h:96
-
@ CIOT_ERR_INVALID_STATE
Definition ciot_err.h:80
-
@ CIOT_ERR_BUSY
Definition ciot_err.h:79
-
@ CIOT_ERR_INVALID_TYPE
Definition ciot_err.h:75
-
@ CIOT_ERR_OVERFLOW
Definition ciot_err.h:76
-
@ CIOT_ERR_NULL_ARG
Definition ciot_err.h:73
-
@ CIOT_ERR_VALIDATION_FAILED
Definition ciot_err.h:88
-
@ CIOT_ERR_NOT_SUPPORTED
Definition ciot_err.h:78
-
@ CIOT_ERR_TIMEOUT
Definition ciot_err.h:95
-
@ CIOT_ERR_CHECKSUM
Definition ciot_err.h:98
-
@ CIOT_ERR_INVALID_SIZE
Definition ciot_err.h:85
-
@ CIOT_ERR_SERIALIZATION
Definition ciot_err.h:81
-
@ CIOT_ERR_DESERIALIZATION
Definition ciot_err.h:82
-
@ CIOT_ERR_NOT_IMPLEMENTED
Definition ciot_err.h:77
+
#define CIOT_ERR_BASE
Base error code for CIOT library.
Definition ciot_err.h:23
+
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
+
@ CIOT_ERR_NO_MEMORY
Definition ciot_err.h:95
+
@ CIOT_ERR_RECV_DATA
Definition ciot_err.h:85
+
@ CIOT_ERR_CONNECTION
Definition ciot_err.h:90
+
@ CIOT_ERR_NOT_FOUND
Definition ciot_err.h:88
+
@ CIOT_ERR_INVALID_ID
Definition ciot_err.h:75
+
@ CIOT_ERR_SEND_DATA
Definition ciot_err.h:84
+
@ CIOT_ERR_EXCEPTION
Definition ciot_err.h:92
+
@ CIOT_OK
Definition ciot_err.h:73
+
@ CIOT_ERR_CLOSED
Definition ciot_err.h:87
+
@ CIOT_ERR_DISCONNECTION
Definition ciot_err.h:91
+
@ CIOT_ERR_TERMINATOR_MISSING
Definition ciot_err.h:93
+
@ CIOT_ERR_IMPOSSIBLE_OP
Definition ciot_err.h:98
+
@ CIOT_FAIL
Definition ciot_err.h:72
+
@ CIOT_ERR_INVALID_ARG
Definition ciot_err.h:94
+
@ CIOT_ERR_MONGOOSE
Definition ciot_err.h:97
+
@ CIOT_ERR_INVALID_STATE
Definition ciot_err.h:81
+
@ CIOT_ERR_BUSY
Definition ciot_err.h:80
+
@ CIOT_ERR_INVALID_TYPE
Definition ciot_err.h:76
+
@ CIOT_ERR_OVERFLOW
Definition ciot_err.h:77
+
@ CIOT_ERR_NULL_ARG
Definition ciot_err.h:74
+
@ CIOT_ERR_VALIDATION_FAILED
Definition ciot_err.h:89
+
@ CIOT_ERR_NOT_SUPPORTED
Definition ciot_err.h:79
+
@ CIOT_ERR_TIMEOUT
Definition ciot_err.h:96
+
@ CIOT_ERR_CHECKSUM
Definition ciot_err.h:99
+
@ CIOT_ERR_INVALID_SIZE
Definition ciot_err.h:86
+
@ CIOT_ERR_SERIALIZATION
Definition ciot_err.h:82
+
@ CIOT_ERR_DESERIALIZATION
Definition ciot_err.h:83
+
@ CIOT_ERR_NOT_IMPLEMENTED
Definition ciot_err.h:78
Header file for CIOT logging functionality.
diff --git a/docs/ciot__eth_8h_source.html b/docs/ciot__eth_8h_source.html index 3fb9d87..57da50e 100644 --- a/docs/ciot__eth_8h_source.html +++ b/docs/ciot__eth_8h_source.html @@ -146,7 +146,7 @@
87
88#endif
Header file for CIOT error handling.
-
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
+
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
ciot_eth_t ciot_eth_new(void *handle)
Creates a new CIOT Ethernet interface instance.
ciot_err_t ciot_eth_send_data(ciot_eth_t self, uint8_t *data, int size)
Sends data over the CIOT Ethernet interface.
struct ciot_eth * ciot_eth_t
Structure representing the CIOT Ethernet interface.
Definition ciot_eth.h:25
@@ -159,7 +159,7 @@
@ CIOT_ETH_EVENT_STOP
Definition ciot_eth.h:32
ciot_err_t ciot_eth_stop(ciot_eth_t self)
Stops the CIOT Ethernet interface.
Header file for the CIOT interface.
-
@ CIOT_IFACE_EVENT_CUSTOM
Definition ciot_iface.h:44
+
@ CIOT_IFACE_EVENT_CUSTOM
Definition ciot_iface.h:45
Defines data types and structures for CIOT TCP functionality.
Structure representing the CIOT Ethernet status message.
Definition ciot_eth.h:40
ciot_tcp_status_t status
Definition ciot_eth.h:42
diff --git a/docs/ciot__gpio_8h_source.html b/docs/ciot__gpio_8h_source.html index f072f07..9dad6f9 100644 --- a/docs/ciot__gpio_8h_source.html +++ b/docs/ciot__gpio_8h_source.html @@ -141,7 +141,7 @@
94
95#endif
Header file for CIOT error handling.
-
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
+
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
ciot_err_t ciot_gpio_process_req(ciot_gpio_t self, ciot_gpio_req_t *req)
Processes a request for the CIOT GPIO interface.
ciot_err_t ciot_gpio_set_state(ciot_gpio_t self, int gpio, ciot_gpio_state_t state)
Sets the state of a GPIO pin.
ciot_gpio_state_t ciot_gpio_get_state(ciot_gpio_t self, int gpio)
Gets the state of a GPIO pin.
diff --git a/docs/ciot__httpc_8h_source.html b/docs/ciot__httpc_8h_source.html index 44e7abf..77d2682 100644 --- a/docs/ciot__httpc_8h_source.html +++ b/docs/ciot__httpc_8h_source.html @@ -144,7 +144,7 @@
84
85#endif
Header file for CIOT error handling.
-
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
+
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
struct ciot_httpc * ciot_httpc_t
Structure representing the CIOT HTTP client interface.
Definition ciot_httpc.h:24
ciot_err_t ciot_httpc_stop(ciot_httpc_t self)
Stops the CIOT HTTP client interface.
ciot_err_t ciot_httpc_start(ciot_httpc_t self, ciot_httpc_cfg_t *cfg)
Starts the CIOT HTTP client interface.
@@ -157,7 +157,7 @@
ciot_err_t ciot_httpc_process_req(ciot_httpc_t self, ciot_httpc_req_t *req)
Processes a request for the CIOT HTTP client interface.
Defines data types and structures for CIOT HTTP client.
Header file for the CIOT interface.
-
@ CIOT_IFACE_EVENT_CUSTOM
Definition ciot_iface.h:44
+
@ CIOT_IFACE_EVENT_CUSTOM
Definition ciot_iface.h:45
Structure for CIOT HTTP client configuration.
Definition ciot_httpc_types.h:97
Structure for CIOT HTTP client request.
Definition ciot_httpc_types.h:145
Structure representing the CIOT HTTP client status message.
Definition ciot_httpc.h:37
diff --git a/docs/ciot__https_8h_source.html b/docs/ciot__https_8h_source.html index e6443e7..0a0e4c7 100644 --- a/docs/ciot__https_8h_source.html +++ b/docs/ciot__https_8h_source.html @@ -143,7 +143,7 @@
84
85#endif
Header file for CIOT error handling.
-
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
+
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
ciot_err_t ciot_https_stop(ciot_https_t self)
Stops the CIOT HTTP server interface.
enum ciot_https_event_id ciot_https_event_id_t
Enumeration of HTTP server event IDs.
ciot_err_t ciot_https_start(ciot_https_t self, ciot_https_cfg_t *cfg)
Starts the CIOT HTTP server interface.
@@ -155,7 +155,7 @@
struct ciot_https * ciot_https_t
Structure representing the CIOT HTTP server interface.
Definition ciot_https.h:25
Defines data types and structures for CIOT HTTP server.
Header file for the CIOT interface.
-
@ CIOT_IFACE_EVENT_CUSTOM
Definition ciot_iface.h:44
+
@ CIOT_IFACE_EVENT_CUSTOM
Definition ciot_iface.h:45
Structure for CIOT HTTP server configuration.
Definition ciot_https_types.h:51
Structure for CIOT HTTP server request.
Definition ciot_https_types.h:78
Structure representing the CIOT HTTP server status message.
Definition ciot_https.h:37
diff --git a/docs/ciot__iface_8h.html b/docs/ciot__iface_8h.html index 221fe4b..b384ed0 100644 --- a/docs/ciot__iface_8h.html +++ b/docs/ciot__iface_8h.html @@ -97,7 +97,7 @@ Typedefs | Enumerations | Functions
-
ciot_iface.h File Reference
+
ciot_iface.h File Reference
diff --git a/docs/ciot__iface_8h_source.html b/docs/ciot__iface_8h_source.html index 9a83cf8..912992a 100644 --- a/docs/ciot__iface_8h_source.html +++ b/docs/ciot__iface_8h_source.html @@ -101,153 +101,153 @@
Go to the documentation of this file.
1
-
10#ifndef __CIOT_IFACE__H__
-
11#define __CIOT_IFACE__H__
-
12
-
13#ifdef __cplusplus
-
14extern "C" {
-
15#endif
-
16
-
17#include <stdbool.h>
-
18
-
19#include "ciot_err.h"
- -
21#include "ciot_serializer.h"
-
22
-
- - - - - +
11#ifndef __CIOT_IFACE__H__
+
12#define __CIOT_IFACE__H__
+
13
+
14#ifdef __cplusplus
+
15extern "C" {
+
16#endif
+
17
+
18#include <stdbool.h>
+
19
+
20#include "ciot_err.h"
+ +
22#include "ciot_serializer.h"
+
23
+ -
31
-
- - - - - - - - - - - +
32
+ -
46
-
-
50typedef union __attribute__((packed)) {
- -
52 uint8_t payload[sizeof(ciot_msg_t)];
- +
47
+
+
51typedef union __attribute__((packed)) {
+ +
53 uint8_t payload[sizeof(ciot_msg_t)];
+
-
54
-
-
58typedef struct __attribute__((packed)) {
- - -
61 uint16_t size;
- +
55
+
+
59typedef struct __attribute__((packed)) {
+ + +
62 uint16_t size;
+
-
63
-
67typedef ciot_err_t (ciot_iface_start_fn)(void *iface, ciot_msg_data_u *cfg);
-
68
-
72typedef ciot_err_t (ciot_iface_stop_fn)(void *iface);
-
73
- -
78
-
82typedef ciot_err_t (ciot_iface_send_data_fn)(void *iface, void *data, int size);
-
83
-
-
87typedef struct ciot_iface_base_data {
-
88 void *ptr;
-
89 uint16_t size;
- +
64
+
68typedef ciot_err_t (ciot_iface_start_fn)(void *iface, ciot_msg_data_u *cfg);
+
69
+
73typedef ciot_err_t (ciot_iface_stop_fn)(void *iface);
+
74
+ +
79
+
83typedef ciot_err_t (ciot_iface_send_data_fn)(void *iface, void *data, int size);
+
84
+
+
88typedef struct ciot_iface_base_data {
+
89 void *ptr;
+
90 uint16_t size;
+
-
91
-
-
95typedef struct ciot_iface_req_info {
- -
97 uint8_t id;
- - -
100 uint16_t response_size;
- +
92
+ -
102
-
-
106typedef struct ciot_iface_base {
-
107 void *ptr;
- - - - - - - - +
103
+ -
116
- -
121
- -
126
-
- - - - - - -
136};
+
117
+ +
122
+ +
127
+ -
137
- -
145
- -
152
- -
160
- -
168
-
176ciot_err_t ciot_iface_get_info(ciot_iface_t *iface, void *info, int size);
-
177
- -
186
- -
195
-
203ciot_err_t ciot_iface_send_data(ciot_iface_t *self, void *data, int size);
-
204
- -
213
- -
222
- -
231
- -
240
- -
247
- -
257
- -
265
- -
271
-
277const char *ciot_iface_to_str(ciot_iface_t *iface);
-
278
- -
285
- -
292
-
293#ifdef __cplusplus
-
294}
-
295#endif
-
296
-
297#endif
+
138
+ +
146
+ +
153
+ +
161
+ +
169
+
177ciot_err_t ciot_iface_get_info(ciot_iface_t *iface, void *info, int size);
+
178
+ +
187
+ +
196
+
204ciot_err_t ciot_iface_send_data(ciot_iface_t *self, void *data, int size);
+
205
+ +
214
+ +
223
+ +
232
+ +
241
+ +
248
+ +
258
+ +
266
+ +
272
+
278const char *ciot_iface_to_str(ciot_iface_t *iface);
+
279
+ +
286
+ +
293
+
294#ifdef __cplusplus
+
295}
+
296#endif
+
297
+
298#endif
Header file for CIOT error handling.
-
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
+
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
struct ciot_iface_base_data ciot_iface_base_data_t
Structure representing base data for an interface.
ciot_err_t ciot_iface_start(ciot_iface_t *self, ciot_msg_data_u *cfg)
Starts the CIOT interface.
ciot_err_t ciot_iface_process_msg(ciot_iface_t *self, ciot_msg_t *msg, void *sender)
Processes a message on the CIOT interface.
@@ -261,21 +261,21 @@
ciot_err_t ciot_iface_get_status(ciot_iface_t *self, void *status)
Gets the status of the CIOT interface.
uint8_t ciot_iface_get_msg_id(void)
Gets the message ID for the CIOT interface.
const char * ciot_iface_event_to_str(ciot_iface_event_t *event)
Converts a CIOT interface event to a string representation.
-
ciot_iface_req_status
Enumeration for the status of interface requests.
Definition ciot_iface.h:26
-
@ CIOT_IFACE_REQ_STATUS_RECEIVED
Definition ciot_iface.h:29
-
@ CIOT_IFACE_REQ_STATUS_IDLE
Definition ciot_iface.h:27
-
@ CIOT_IFACE_REQ_STATUS_SENDED
Definition ciot_iface.h:28
-
ciot_err_t ciot_iface_event_handler_t(ciot_iface_t *sender, ciot_iface_event_t *event, void *args)
Function pointer for handling interface events.
Definition ciot_iface.h:125
-
ciot_iface_event_type
Enumeration for CIOT interface event types.
Definition ciot_iface.h:35
-
@ CIOT_IFACE_EVENT_DATA
Definition ciot_iface.h:42
-
@ CIOT_IFACE_EVENT_REQUEST
Definition ciot_iface.h:41
-
@ CIOT_IFACE_EVENT_STARTED
Definition ciot_iface.h:38
-
@ CIOT_IFACE_EVENT_CUSTOM
Definition ciot_iface.h:44
-
@ CIOT_IFACE_EVENT_UNKNOWN
Definition ciot_iface.h:37
-
@ CIOT_IFACE_EVENT_ERROR
Definition ciot_iface.h:40
-
@ CIOT_IFACE_EVENT_STOPPED
Definition ciot_iface.h:39
-
@ CIOT_IFACE_EVENT_DONE
Definition ciot_iface.h:43
-
@ CIOT_IFACE_EVENT_INTERNAL
Definition ciot_iface.h:36
+
ciot_iface_req_status
Enumeration for the status of interface requests.
Definition ciot_iface.h:27
+
@ CIOT_IFACE_REQ_STATUS_RECEIVED
Definition ciot_iface.h:30
+
@ CIOT_IFACE_REQ_STATUS_IDLE
Definition ciot_iface.h:28
+
@ CIOT_IFACE_REQ_STATUS_SENDED
Definition ciot_iface.h:29
+
ciot_err_t ciot_iface_event_handler_t(ciot_iface_t *sender, ciot_iface_event_t *event, void *args)
Function pointer for handling interface events.
Definition ciot_iface.h:126
+
ciot_iface_event_type
Enumeration for CIOT interface event types.
Definition ciot_iface.h:36
+
@ CIOT_IFACE_EVENT_DATA
Definition ciot_iface.h:43
+
@ CIOT_IFACE_EVENT_REQUEST
Definition ciot_iface.h:42
+
@ CIOT_IFACE_EVENT_STARTED
Definition ciot_iface.h:39
+
@ CIOT_IFACE_EVENT_CUSTOM
Definition ciot_iface.h:45
+
@ CIOT_IFACE_EVENT_UNKNOWN
Definition ciot_iface.h:38
+
@ CIOT_IFACE_EVENT_ERROR
Definition ciot_iface.h:41
+
@ CIOT_IFACE_EVENT_STOPPED
Definition ciot_iface.h:40
+
@ CIOT_IFACE_EVENT_DONE
Definition ciot_iface.h:44
+
@ CIOT_IFACE_EVENT_INTERNAL
Definition ciot_iface.h:37
enum ciot_iface_event_type ciot_iface_event_type_t
Enumeration for CIOT interface event types.
ciot_err_t ciot_iface_process_req(ciot_iface_t *self, ciot_msg_data_u *req, void *sender)
Processes a request on the CIOT interface.
ciot_err_t ciot_iface_register_event(ciot_iface_t *self, ciot_iface_event_handler_t event_handler, void *event_args)
Registers an event handler for the CIOT interface.
@@ -284,50 +284,50 @@
ciot_err_t ciot_iface_set_serializer(ciot_iface_t *self, ciot_serializer_t serializer)
Sets the serializer for the CIOT interface.
ciot_err_t ciot_iface_register_request(ciot_iface_t *self, ciot_msg_iface_info_t *iface, ciot_msg_t *msg, ciot_iface_req_status_t status)
Registers a request on the CIOT interface.
const char * ciot_iface_to_str(ciot_iface_t *iface)
Converts a CIOT interface instance to a string representation.
-
ciot_err_t ciot_iface_stop_fn(void *iface)
Function pointer for stopping an interface.
Definition ciot_iface.h:72
-
ciot_err_t ciot_iface_process_req_fn(void *iface, ciot_msg_data_u *req)
Function pointer for processing a request on an interface.
Definition ciot_iface.h:77
+
ciot_err_t ciot_iface_stop_fn(void *iface)
Function pointer for stopping an interface.
Definition ciot_iface.h:73
+
ciot_err_t ciot_iface_process_req_fn(void *iface, ciot_msg_data_u *req)
Function pointer for processing a request on an interface.
Definition ciot_iface.h:78
ciot_err_t ciot_iface_send_rsp(ciot_iface_t *self, ciot_msg_t *rsp, int size)
Sends a response on the CIOT interface.
ciot_err_t ciot_iface_get_cfg(ciot_iface_t *self, ciot_msg_data_u *cfg)
Gets the configuration of the CIOT interface.
ciot_err_t ciot_iface_reset_request(ciot_iface_t *self)
Resets a request on the CIOT interface.
-
ciot_err_t ciot_iface_start_fn(void *iface, ciot_msg_data_u *cfg)
Function pointer for starting an interface.
Definition ciot_iface.h:67
-
ciot_err_t ciot_iface_send_data_fn(void *iface, void *data, int size)
Function pointer for sending data on an interface.
Definition ciot_iface.h:82
+
ciot_err_t ciot_iface_start_fn(void *iface, ciot_msg_data_u *cfg)
Function pointer for starting an interface.
Definition ciot_iface.h:68
+
ciot_err_t ciot_iface_send_data_fn(void *iface, void *data, int size)
Function pointer for sending data on an interface.
Definition ciot_iface.h:83
Defines data types and structures for CIOT messaging.
ciot_msg_type_t
Enumeration for CIOT message types.
Definition ciot_msg_types.h:46
ciot_msg_iface_type_t
Enumeration for CIOT message interface types.
Definition ciot_msg_types.h:62
Header file for CIOT Serializer module.
-
Structure representing base data for an interface.
Definition ciot_iface.h:87
-
uint16_t size
Definition ciot_iface.h:89
-
void * ptr
Definition ciot_iface.h:88
-
Structure representing the base of an interface.
Definition ciot_iface.h:106
-
ciot_iface_base_data_t cfg
Definition ciot_iface.h:112
-
ciot_iface_req_info_t req
Definition ciot_iface.h:114
-
ciot_iface_start_fn * start
Definition ciot_iface.h:108
-
ciot_iface_base_data_t status
Definition ciot_iface.h:113
-
ciot_iface_stop_fn * stop
Definition ciot_iface.h:109
-
ciot_iface_send_data_fn * send_data
Definition ciot_iface.h:111
-
void * ptr
Definition ciot_iface.h:107
-
ciot_iface_process_req_fn * process_req
Definition ciot_iface.h:110
-
Structure representing an interface event.
Definition ciot_iface.h:58
-
ciot_iface_event_type_t type
Definition ciot_iface.h:59
-
ciot_iface_event_data_u * data
Definition ciot_iface.h:60
-
uint16_t size
Definition ciot_iface.h:61
-
Structure representing request information for an interface.
Definition ciot_iface.h:95
-
uint16_t response_size
Definition ciot_iface.h:100
-
uint8_t id
Definition ciot_iface.h:97
-
ciot_iface_req_status_t status
Definition ciot_iface.h:96
-
ciot_msg_iface_info_t iface
Definition ciot_iface.h:99
-
ciot_msg_type_t type
Definition ciot_iface.h:98
-
Structure representing a CIOT interface.
Definition ciot_iface.h:130
-
ciot_msg_iface_info_t info
Definition ciot_iface.h:132
-
ciot_iface_event_handler_t * event_handler
Definition ciot_iface.h:133
-
void * event_args
Definition ciot_iface.h:135
-
ciot_iface_base_t base
Definition ciot_iface.h:131
-
ciot_serializer_t serializer
Definition ciot_iface.h:134
+
Structure representing base data for an interface.
Definition ciot_iface.h:88
+
uint16_t size
Definition ciot_iface.h:90
+
void * ptr
Definition ciot_iface.h:89
+
Structure representing the base of an interface.
Definition ciot_iface.h:107
+
ciot_iface_base_data_t cfg
Definition ciot_iface.h:113
+
ciot_iface_req_info_t req
Definition ciot_iface.h:115
+
ciot_iface_start_fn * start
Definition ciot_iface.h:109
+
ciot_iface_base_data_t status
Definition ciot_iface.h:114
+
ciot_iface_stop_fn * stop
Definition ciot_iface.h:110
+
ciot_iface_send_data_fn * send_data
Definition ciot_iface.h:112
+
void * ptr
Definition ciot_iface.h:108
+
ciot_iface_process_req_fn * process_req
Definition ciot_iface.h:111
+
Structure representing an interface event.
Definition ciot_iface.h:59
+
ciot_iface_event_type_t type
Definition ciot_iface.h:60
+
ciot_iface_event_data_u * data
Definition ciot_iface.h:61
+
uint16_t size
Definition ciot_iface.h:62
+
Structure representing request information for an interface.
Definition ciot_iface.h:96
+
uint16_t response_size
Definition ciot_iface.h:101
+
uint8_t id
Definition ciot_iface.h:98
+
ciot_iface_req_status_t status
Definition ciot_iface.h:97
+
ciot_msg_iface_info_t iface
Definition ciot_iface.h:100
+
ciot_msg_type_t type
Definition ciot_iface.h:99
+
Structure representing a CIOT interface.
Definition ciot_iface.h:131
+
ciot_msg_iface_info_t info
Definition ciot_iface.h:133
+
ciot_iface_event_handler_t * event_handler
Definition ciot_iface.h:134
+
void * event_args
Definition ciot_iface.h:136
+
ciot_iface_base_t base
Definition ciot_iface.h:132
+
ciot_serializer_t serializer
Definition ciot_iface.h:135
Structure for CIOT message interface information.
Definition ciot_msg_types.h:89
Structure for CIOT message.
Definition ciot_msg_types.h:142
-
CIOT Serializer structure.
Definition ciot_serializer.h:58
-
Union for CIOT interface event data.
Definition ciot_iface.h:50
-
ciot_msg_t msg
Definition ciot_iface.h:51
+
CIOT Serializer structure.
Definition ciot_serializer.h:59
+
Union for CIOT interface event data.
Definition ciot_iface.h:51
+
ciot_msg_t msg
Definition ciot_iface.h:52
Union for CIOT message data.
Definition ciot_msg_types.h:107
diff --git a/docs/ciot__ifaces_8h_source.html b/docs/ciot__ifaces_8h_source.html index 1be6411..8f07c63 100644 --- a/docs/ciot__ifaces_8h_source.html +++ b/docs/ciot__ifaces_8h_source.html @@ -168,7 +168,7 @@
76
77#endif
-
struct ciot * ciot_t
CIOT network handle.
Definition ciot.h:48
+
struct ciot * ciot_t
CIOT network handle.
Definition ciot.h:49
Defines functions and types for CIOT Bluetooth Low Energy (BLE) module.
struct ciot_ble * ciot_ble_t
Pointer to a CIOT BLE object.
Definition ciot_ble.h:23
Defines functions and types for CIOT Bluetooth Low Energy (BLE) scanner.
diff --git a/docs/ciot__lib_8h.html b/docs/ciot__lib_8h.html index eb70794..7ce18d7 100644 --- a/docs/ciot__lib_8h.html +++ b/docs/ciot__lib_8h.html @@ -98,7 +98,11 @@

CioT library header file. More...

-
#include "types/ciot_ble_types.h"
+
#include "ciot.h"
+#include "ciot_iface.h"
+#include "ciot_err.h"
+#include "ciot_log.h"
+#include "types/ciot_ble_types.h"
#include "types/ciot_ble_scn_types.h"
#include "types/ciot_tcp_types.h"
#include "types/ciot_gpio_types.h"
@@ -134,6 +138,10 @@ #include "ciot_opcuas.h"
#include "ciot_ota.h"
#include "ciot_sys.h"
+#include "ciot_s.h"
+#include "ciot_serializer.h"
+#include "ciot_timer.h"
+#include "ciot_utils.h"

Go to the source code of this file.

Detailed Description

diff --git a/docs/ciot__lib_8h_source.html b/docs/ciot__lib_8h_source.html index 630342f..ca352da 100644 --- a/docs/ciot__lib_8h_source.html +++ b/docs/ciot__lib_8h_source.html @@ -104,49 +104,60 @@
12#ifndef __CIOT_LIB__H__
13#define __CIOT_LIB__H__
14
- - - - - - - - - -
28
-
33#include "ciot_ble.h"
-
34#include "ciot_ble_scn.h"
-
35#include "ciot_eth.h"
-
36#include "ciot_gpio.h"
-
37#include "ciot_tcp.h"
-
38#include "ciot_wifi.h"
-
39#include "ciot_storage.h"
-
40#include "ciot_uart.h"
-
41#include "ciot_usb.h"
-
42
- - - - - - - - - -
56
-
61#include "ciot_bridge.h"
-
62#include "ciot_dfu.h"
-
63#include "ciot_httpc.h"
-
64#include "ciot_https.h"
-
65#include "ciot_mqttc.h"
-
66#include "ciot_nrf_dfu.h"
-
67#include "ciot_ntp.h"
-
68#include "ciot_opcuas.h"
-
69#include "ciot_opcuas.h"
-
70#include "ciot_ota.h"
-
71#include "ciot_sys.h"
-
72
-
73#endif
+
19#include "ciot.h"
+
20#include "ciot_iface.h"
+
21#include "ciot_err.h"
+
22#include "ciot_log.h"
+
23
+ + + + + + + + + +
37
+
42#include "ciot_ble.h"
+
43#include "ciot_ble_scn.h"
+
44#include "ciot_eth.h"
+
45#include "ciot_gpio.h"
+
46#include "ciot_tcp.h"
+
47#include "ciot_wifi.h"
+
48#include "ciot_storage.h"
+
49#include "ciot_uart.h"
+
50#include "ciot_usb.h"
+
51
+ + + + + + + + + +
65
+
70#include "ciot_bridge.h"
+
71#include "ciot_dfu.h"
+
72#include "ciot_httpc.h"
+
73#include "ciot_https.h"
+
74#include "ciot_mqttc.h"
+
75#include "ciot_nrf_dfu.h"
+
76#include "ciot_ntp.h"
+
77#include "ciot_opcuas.h"
+
78#include "ciot_opcuas.h"
+
79#include "ciot_ota.h"
+
80#include "ciot_sys.h"
+
81
+
86#include "ciot_s.h"
+
87#include "ciot_serializer.h"
+
88#include "ciot_timer.h"
+
89#include "ciot_utils.h"
+
90
+
91#endif
+
Defines functions and types for CIOT Bluetooth Low Energy (BLE) module.
Defines functions and types for CIOT Bluetooth Low Energy (BLE) scanner.
Defines data types and structures for CIOT BLE SCN.
@@ -155,6 +166,7 @@
Defines data types and structures for CIOT bridge.
Header file for Device Firmware Update (DFU) functionality in CIOT library.
Defines data types and structures for CIOT DFU (Device Firmware Update).
+
Header file for CIOT error handling.
Header file for CIOT Ethernet interface.
Header file for CIOT GPIO interface.
Defines data types and structures for CIOT GPIO (General Purpose Input/Output).
@@ -162,6 +174,8 @@
Defines data types and structures for CIOT HTTP client.
Header file for CIOT HTTP server interface.
Defines data types and structures for CIOT HTTP server.
+
Header file for the CIOT interface.
+
Header file for CIOT logging functionality.
Defines data types and structures for CIOT MQTT client.
Header file for CIOT Nordic DFU functionality.
@@ -171,16 +185,20 @@
Defines data types and structures for CIOT OPC UA Server functionality.
Header file for CIOT OTA (Over-the-Air) functionality.
Defines data types and structures for CIOT Over-The-Air (OTA) functionality.
+
Header file for CIOT_S (Communication Interface Over Transport) module.
+
Header file for CIOT Serializer module.
Header file for CIOT Storage module.
Defines data types and structures for CIOT storage functionality.
Header file for CIOT System module.
Defines data types and structures for CIOT system functionality.
Header file for CIOT TCP module.
Defines data types and structures for CIOT TCP functionality.
+
Header file for CIOT timer module.
Header file for CIOT UART module.
Defines data structures and types for CIOT UART functionality.
Header file for CIOT USB module.
Defines data structures and types for CIOT USB functionality.
+
Header file for CIOT Wi-Fi module.
Defines data structures and types for CIOT WiFi functionality.
diff --git a/docs/ciot__log_8h.html b/docs/ciot__log_8h.html index 39e0b14..fd94735 100644 --- a/docs/ciot__log_8h.html +++ b/docs/ciot__log_8h.html @@ -96,7 +96,7 @@ Macros | Typedefs | Enumerations
-
ciot_log.h File Reference
+
ciot_log.h File Reference
@@ -229,7 +229,7 @@

} \

} while (0)
#define CIOT_CONFIG_LOG_LEVEL
Definition ciot_config.h:38
-
@ CIOT_LOG_LEVEL_DEBUG
Definition ciot_log.h:30
+
@ CIOT_LOG_LEVEL_DEBUG
Definition ciot_log.h:31

Macro to log hexadecimal data.

@@ -399,7 +399,7 @@

printf("\n"); \

} \
} while (0)
-
@ CIOT_LOG_LEVEL_ERROR
Definition ciot_log.h:26
+
@ CIOT_LOG_LEVEL_ERROR
Definition ciot_log.h:27

Macro to log error level messages.

@@ -437,7 +437,7 @@

printf("\n"); \

} \
} while (0)
-
@ CIOT_LOG_LEVEL_INFO
Definition ciot_log.h:28
+
@ CIOT_LOG_LEVEL_INFO
Definition ciot_log.h:29

Macro to log info level messages.

@@ -475,7 +475,7 @@

printf("\n"); \
} \
} while (0)
-
@ CIOT_LOG_LEVEL_VERBOSE
Definition ciot_log.h:29
+
@ CIOT_LOG_LEVEL_VERBOSE
Definition ciot_log.h:30

Macro to log verbose level messages.

@@ -513,7 +513,7 @@

printf("\n"); \
} \
} while (0)
-
@ CIOT_LOG_LEVEL_WARNING
Definition ciot_log.h:27
+
@ CIOT_LOG_LEVEL_WARNING
Definition ciot_log.h:28

Macro to log warning level messages.

diff --git a/docs/ciot__log_8h_source.html b/docs/ciot__log_8h_source.html index 4f0387a..4f42767 100644 --- a/docs/ciot__log_8h_source.html +++ b/docs/ciot__log_8h_source.html @@ -101,166 +101,166 @@
Go to the documentation of this file.
1
-
10#ifndef __CIOT_LOG__H__
-
11#define __CIOT_LOG__H__
-
12
-
13#include "ciot_config.h"
-
14
-
15#ifdef __cplusplus
-
16extern "C"
-
17{
-
18#endif
-
19
-
-
23 typedef enum ciot_log_level
-
24 {
- - - - - - - +
11#ifndef __CIOT_LOG__H__
+
12#define __CIOT_LOG__H__
+
13
+
14#include "ciot_config.h"
+
15
+
16#ifdef __cplusplus
+
17extern "C"
+
18{
+
19#endif
+
20
+ -
32
-
33#ifdef IDF_VER
-
34
-
35#include "esp_log.h"
-
36
-
37// Forwarding logging macros to ESP-IDF logging macros
-
38#define CIOT_LOGD ESP_LOGD
-
39#define CIOT_LOGV ESP_LOGV
-
40#define CIOT_LOGI ESP_LOGI
-
41#define CIOT_LOGW ESP_LOGW
-
42#define CIOT_LOGE ESP_LOGE
-
43#define CIOT_LOG_BUFFER_HEX(tag, data, size) ESP_LOG_BUFFER_HEX_LEVEL(tag, data, size, ESP_LOG_DEBUG)
-
44
-
45#else
-
46
-
47#include <stdio.h>
-
48
-
52#define CIOT_LOG_BUFFER_HEX(TAG, data, size) CIOT_LOG_HEX(TAG, data, size)
-
53
-
-
57#define CIOT_LOGD(TAG, MASK, ...) \
-
58 do \
-
59 { \
-
60 if (CIOT_CONFIG_LOG_LEVEL >= CIOT_LOG_LEVEL_DEBUG) \
-
61 { \
-
62 printf("[%s] <DBG>: ", TAG); \
-
63 printf(MASK, ##__VA_ARGS__); \
-
64 printf("\n"); \
-
65 } \
-
66 } while (0)
+
33
+
34#ifdef IDF_VER
+
35
+
36#include "esp_log.h"
+
37
+
38// Forwarding logging macros to ESP-IDF logging macros
+
39#define CIOT_LOGD ESP_LOGD
+
40#define CIOT_LOGV ESP_LOGV
+
41#define CIOT_LOGI ESP_LOGI
+
42#define CIOT_LOGW ESP_LOGW
+
43#define CIOT_LOGE ESP_LOGE
+
44#define CIOT_LOG_BUFFER_HEX(tag, data, size) ESP_LOG_BUFFER_HEX_LEVEL(tag, data, size, ESP_LOG_DEBUG)
+
45
+
46#else
+
47
+
48#include <stdio.h>
+
49
+
53#define CIOT_LOG_BUFFER_HEX(TAG, data, size) CIOT_LOG_HEX(TAG, data, size)
+
54
+
+
58#define CIOT_LOGD(TAG, MASK, ...) \
+
59 do \
+
60 { \
+
61 if (CIOT_CONFIG_LOG_LEVEL >= CIOT_LOG_LEVEL_DEBUG) \
+
62 { \
+
63 printf("[%s] <DBG>: ", TAG); \
+
64 printf(MASK, ##__VA_ARGS__); \
+
65 printf("\n"); \
+
66 } \
+
67 } while (0)
-
67
-
-
71#define CIOT_LOGV(TAG, MASK, ...) \
-
72 do \
-
73 { \
-
74 if (CIOT_CONFIG_LOG_LEVEL >= CIOT_LOG_LEVEL_VERBOSE) \
-
75 { \
-
76 printf("[%s] <VRB>: ", TAG); \
-
77 printf(MASK, ##__VA_ARGS__); \
-
78 printf("\n"); \
-
79 } \
-
80 } while (0)
+
68
+
+
72#define CIOT_LOGV(TAG, MASK, ...) \
+
73 do \
+
74 { \
+
75 if (CIOT_CONFIG_LOG_LEVEL >= CIOT_LOG_LEVEL_VERBOSE) \
+
76 { \
+
77 printf("[%s] <VRB>: ", TAG); \
+
78 printf(MASK, ##__VA_ARGS__); \
+
79 printf("\n"); \
+
80 } \
+
81 } while (0)
-
81
-
-
85#define CIOT_LOGI(TAG, MASK, ...) \
-
86 do \
-
87 { \
-
88 if (CIOT_CONFIG_LOG_LEVEL >= CIOT_LOG_LEVEL_INFO) \
-
89 { \
-
90 printf("[%s] <INF>: ", TAG); \
-
91 printf(MASK, ##__VA_ARGS__); \
-
92 printf("\n"); \
-
93 } \
-
94 } while (0)
+
82
+
+
86#define CIOT_LOGI(TAG, MASK, ...) \
+
87 do \
+
88 { \
+
89 if (CIOT_CONFIG_LOG_LEVEL >= CIOT_LOG_LEVEL_INFO) \
+
90 { \
+
91 printf("[%s] <INF>: ", TAG); \
+
92 printf(MASK, ##__VA_ARGS__); \
+
93 printf("\n"); \
+
94 } \
+
95 } while (0)
-
95
-
-
99#define CIOT_LOGW(TAG, MASK, ...) \
-
100 do \
-
101 { \
-
102 if (CIOT_CONFIG_LOG_LEVEL >= CIOT_LOG_LEVEL_WARNING) \
-
103 { \
-
104 printf("[%s] <WRN>: ", TAG); \
-
105 printf(MASK, ##__VA_ARGS__); \
-
106 printf("\n"); \
-
107 } \
-
108 } while (0)
+
96
+
+
100#define CIOT_LOGW(TAG, MASK, ...) \
+
101 do \
+
102 { \
+
103 if (CIOT_CONFIG_LOG_LEVEL >= CIOT_LOG_LEVEL_WARNING) \
+
104 { \
+
105 printf("[%s] <WRN>: ", TAG); \
+
106 printf(MASK, ##__VA_ARGS__); \
+
107 printf("\n"); \
+
108 } \
+
109 } while (0)
-
109
-
-
113#define CIOT_LOGE(TAG, MASK, ...) \
-
114 do \
-
115 { \
-
116 if (CIOT_CONFIG_LOG_LEVEL >= CIOT_LOG_LEVEL_ERROR) \
-
117 { \
-
118 printf("[%s] <ERR>: ", TAG); \
-
119 printf(MASK, ##__VA_ARGS__); \
-
120 printf("\n"); \
-
121 } \
-
122 } while (0)
+
110
+
+
114#define CIOT_LOGE(TAG, MASK, ...) \
+
115 do \
+
116 { \
+
117 if (CIOT_CONFIG_LOG_LEVEL >= CIOT_LOG_LEVEL_ERROR) \
+
118 { \
+
119 printf("[%s] <ERR>: ", TAG); \
+
120 printf(MASK, ##__VA_ARGS__); \
+
121 printf("\n"); \
+
122 } \
+
123 } while (0)
-
123
-
124#endif // IDF_VER
-
125
-
-
129#define CIOT_LOG_MSG(TAG, LOG_MACRO, header, sender, msg) \
-
130 LOG_MACRO(TAG, header "id:%d %d:%s %d:%s %d:%s", \
-
131 msg.id, \
-
132 sender->info.id, \
-
133 ciot_iface_to_str(sender), \
-
134 msg.type, \
-
135 ciot_msg_type_to_str(&msg), \
-
136 msg.iface.id, \
-
137 ciot_iface_type_to_str(msg.iface.type))
+
124
+
125#endif // IDF_VER
+
126
+
+
130#define CIOT_LOG_MSG(TAG, LOG_MACRO, header, sender, msg) \
+
131 LOG_MACRO(TAG, header "id:%d %d:%s %d:%s %d:%s", \
+
132 msg.id, \
+
133 sender->info.id, \
+
134 ciot_iface_to_str(sender), \
+
135 msg.type, \
+
136 ciot_msg_type_to_str(&msg), \
+
137 msg.iface.id, \
+
138 ciot_iface_type_to_str(msg.iface.type))
-
138
-
-
142#define CIOT_LOG_MSG_P(TAG, LOG_MACRO, header, sender, msg) \
-
143 LOG_MACRO(TAG, header "id:%d %d:%s %d:%s %d:%s", \
-
144 msg->id, \
-
145 sender->info.id, \
-
146 ciot_iface_to_str(sender), \
-
147 msg->type, \
-
148 ciot_msg_type_to_str(msg), \
-
149 msg->iface.id, \
-
150 ciot_iface_type_to_str(msg->iface.type))
+
139
+
+
143#define CIOT_LOG_MSG_P(TAG, LOG_MACRO, header, sender, msg) \
+
144 LOG_MACRO(TAG, header "id:%d %d:%s %d:%s %d:%s", \
+
145 msg->id, \
+
146 sender->info.id, \
+
147 ciot_iface_to_str(sender), \
+
148 msg->type, \
+
149 ciot_msg_type_to_str(msg), \
+
150 msg->iface.id, \
+
151 ciot_iface_type_to_str(msg->iface.type))
-
151
-
-
155#define CIOT_LOG_HEX(TAG, data, size) \
-
156 do \
-
157 { \
-
158 if (CIOT_CONFIG_LOG_LEVEL >= CIOT_LOG_LEVEL_DEBUG) \
-
159 { \
-
160 uint8_t *u8ptr = data; \
-
161 for (size_t i = 0; i < size; i++) \
-
162 { \
-
163 printf("%02X", u8ptr[i]); \
-
164 } \
-
165 printf("\n"); \
-
166 } \
-
167 } while (0)
+
152
+
+
156#define CIOT_LOG_HEX(TAG, data, size) \
+
157 do \
+
158 { \
+
159 if (CIOT_CONFIG_LOG_LEVEL >= CIOT_LOG_LEVEL_DEBUG) \
+
160 { \
+
161 uint8_t *u8ptr = data; \
+
162 for (size_t i = 0; i < size; i++) \
+
163 { \
+
164 printf("%02X", u8ptr[i]); \
+
165 } \
+
166 printf("\n"); \
+
167 } \
+
168 } while (0)
-
168
-
169#ifdef __cplusplus
-
170}
-
171#endif
-
172
-
173#endif
+
169
+
170#ifdef __cplusplus
+
171}
+
172#endif
+
173
+
174#endif
Configuration options for the CIOT library.
-
ciot_log_level
Enumeration for CIOT log levels.
Definition ciot_log.h:24
-
@ CIOT_LOG_LEVEL_ERROR
Definition ciot_log.h:26
-
@ CIOT_LOG_LEVEL_DEBUG
Definition ciot_log.h:30
-
@ CIOT_LOG_LEVEL_VERBOSE
Definition ciot_log.h:29
-
@ CIOT_LOG_LEVEL_INFO
Definition ciot_log.h:28
-
@ CIOT_LOG_LEVEL_NONE
Definition ciot_log.h:25
-
@ CIOT_LOG_LEVEL_WARNING
Definition ciot_log.h:27
+
ciot_log_level
Enumeration for CIOT log levels.
Definition ciot_log.h:25
+
@ CIOT_LOG_LEVEL_ERROR
Definition ciot_log.h:27
+
@ CIOT_LOG_LEVEL_DEBUG
Definition ciot_log.h:31
+
@ CIOT_LOG_LEVEL_VERBOSE
Definition ciot_log.h:30
+
@ CIOT_LOG_LEVEL_INFO
Definition ciot_log.h:29
+
@ CIOT_LOG_LEVEL_NONE
Definition ciot_log.h:26
+
@ CIOT_LOG_LEVEL_WARNING
Definition ciot_log.h:28
enum ciot_log_level ciot_log_level_t
Enumeration for CIOT log levels.
diff --git a/docs/ciot__mqttc_8h_source.html b/docs/ciot__mqttc_8h_source.html index 6a65c86..cb33f87 100644 --- a/docs/ciot__mqttc_8h_source.html +++ b/docs/ciot__mqttc_8h_source.html @@ -153,9 +153,9 @@
115
116#endif
Header file for CIOT error handling.
-
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
+
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
Header file for the CIOT interface.
-
@ CIOT_IFACE_EVENT_CUSTOM
Definition ciot_iface.h:44
+
@ CIOT_IFACE_EVENT_CUSTOM
Definition ciot_iface.h:45
struct ciot_mqttc * ciot_mqttc_t
Structure representing a CIOT MQTT client instance.
Definition ciot_mqttc.h:25
ciot_err_t ciot_mqttc_start(ciot_mqttc_t self, ciot_mqttc_cfg_t *cfg)
Starts the CIOT MQTT client.
enum ciot_mqttc_event_id ciot_mqttc_event_id_t
Enumeration for CIOT MQTT client event IDs.
diff --git a/docs/ciot__nrf__dfu_8h_source.html b/docs/ciot__nrf__dfu_8h_source.html index e99ecc8..0c99b7c 100644 --- a/docs/ciot__nrf__dfu_8h_source.html +++ b/docs/ciot__nrf__dfu_8h_source.html @@ -239,7 +239,7 @@
229#endif
Header file for Device Firmware Update (DFU) functionality in CIOT library.
struct ciot_dfu * ciot_dfu_t
Definition ciot_dfu.h:22
-
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
+
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
enum ciot_nrf_dfu_result ciot_nrf_dfu_result_t
Enumeration for CIOT Nordic DFU results.
enum ciot_nrf_dfu_ext_error_code ciot_nrf_dfu_ext_error_code_t
Enumeration for CIOT Nordic DFU extended error codes.
ciot_nrf_dfu_result
Enumeration for CIOT Nordic DFU results.
Definition ciot_nrf_dfu.h:66
@@ -316,7 +316,7 @@
ciot_err_t ciot_nrf_dfu_send_data(ciot_dfu_t self, uint8_t *data, int size)
Send data for CIOT Nordic DFU.
Structure for CIOT DFU configuration.
Definition ciot_dfu_types.h:55
Structure for CIOT DFU request.
Definition ciot_dfu_types.h:83
-
Structure representing a CIOT interface.
Definition ciot_iface.h:130
+
Structure representing a CIOT interface.
Definition ciot_iface.h:131
Structure for CIOT Nordic DFU configuration.
Definition ciot_nrf_dfu.h:134
ciot_nrf_dfu_packet_t app_image
Definition ciot_nrf_dfu.h:137
ciot_dfu_cfg_t dfu
Definition ciot_nrf_dfu.h:135
diff --git a/docs/ciot__ntp_8h_source.html b/docs/ciot__ntp_8h_source.html index bc8ce79..0d7e0b0 100644 --- a/docs/ciot__ntp_8h_source.html +++ b/docs/ciot__ntp_8h_source.html @@ -140,7 +140,7 @@
91
92#endif
Header file for CIOT error handling.
-
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
+
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
Header file for the CIOT interface.
ciot_err_t ciot_ntp_send_data(ciot_ntp_t self, uint8_t *data, int size)
Send data for CIOT NTP.
ciot_ntp_t ciot_ntp_new(void *handle)
Create a new CIOT NTP instance.
diff --git a/docs/ciot__opcuas_8h_source.html b/docs/ciot__opcuas_8h_source.html index 1de1e8b..ded248e 100644 --- a/docs/ciot__opcuas_8h_source.html +++ b/docs/ciot__opcuas_8h_source.html @@ -140,7 +140,7 @@
95
96#endif
Header file for CIOT error handling.
-
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
+
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
Header file for the CIOT interface.
ciot_err_t ciot_opcuas_add_node(ciot_opcuas_t self, uint16_t type, char *localization, char *display_name, char *node_id)
Add a node to CIOT OPCUAS.
ciot_err_t ciot_opcuas_process_req(ciot_opcuas_t self, ciot_opcuas_req_t *req)
Process OPCUAS request for CIOT OPCUAS.
diff --git a/docs/ciot__ota_8h_source.html b/docs/ciot__ota_8h_source.html index 1759caf..e029658 100644 --- a/docs/ciot__ota_8h_source.html +++ b/docs/ciot__ota_8h_source.html @@ -164,9 +164,9 @@
116
117#endif
Header file for CIOT error handling.
-
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
+
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
Header file for the CIOT interface.
-
@ CIOT_IFACE_EVENT_CUSTOM
Definition ciot_iface.h:44
+
@ CIOT_IFACE_EVENT_CUSTOM
Definition ciot_iface.h:45
ciot_ota_t ciot_ota_new(void *handle)
Create a new CIOT OTA instance.
ciot_ota_event_id
Enumeration of CIOT OTA event IDs.
Definition ciot_ota.h:44
@ CIOT_OTA_EVENT_DECRYPTING
Definition ciot_ota.h:47
diff --git a/docs/ciot__s_8h.html b/docs/ciot__s_8h.html index 6b3f877..efb4b49 100644 --- a/docs/ciot__s_8h.html +++ b/docs/ciot__s_8h.html @@ -98,7 +98,7 @@ Typedefs | Enumerations | Functions
-
ciot_s.h File Reference
+
ciot_s.h File Reference
diff --git a/docs/ciot__s_8h_source.html b/docs/ciot__s_8h_source.html index 3890d7d..3c7aac7 100644 --- a/docs/ciot__s_8h_source.html +++ b/docs/ciot__s_8h_source.html @@ -101,92 +101,92 @@
Go to the documentation of this file.
1
-
10#ifndef __CIOT_S__H__
-
11#define __CIOT_S__H__
-
12
-
13#ifdef __cplusplus
-
14extern "C" {
-
15#endif
-
16
-
17#include <inttypes.h>
-
18
-
19#include "ciot_err.h"
-
20#include "ciot_iface.h"
-
21
-
22#if CIOT_CONFIG_FEATURE_TIMER
-
23#include "ciot_timer.h"
-
24#endif
-
25
-
26#define CIOT_S_BASE_ERR 0x0
-
27#define CIOT_S_START_CH '{'
-
28#define CIOT_S_LENGHT_SIZE 2
-
29#define CIOT_S_END_CH '}'
-
30#define CIOT_S_BUF_SIZE 512
-
31#define CIOT_S_HEADER_SIZE 3
-
36typedef struct ciot_s *ciot_s_t;
-
37
-
-
41typedef enum ciot_s_status
-
42{
- - - - - +
11#ifndef __CIOT_S__H__
+
12#define __CIOT_S__H__
+
13
+
14#ifdef __cplusplus
+
15extern "C" {
+
16#endif
+
17
+
18#include <inttypes.h>
+
19
+
20#include "ciot_err.h"
+
21#include "ciot_iface.h"
+
22
+
23#if CIOT_CONFIG_FEATURE_TIMER
+
24#include "ciot_timer.h"
+
25#endif
+
26
+
27#define CIOT_S_BASE_ERR 0x0
+
28#define CIOT_S_START_CH '{'
+
29#define CIOT_S_LENGHT_SIZE 2
+
30#define CIOT_S_END_CH '}'
+
31#define CIOT_S_BUF_SIZE 512
+
32#define CIOT_S_HEADER_SIZE 3
+
37typedef struct ciot_s *ciot_s_t;
+
38
+ -
48
-
52typedef ciot_err_t(ciot_s_msg_handler_t)(ciot_iface_t *iface, uint8_t *data, int size);
-
53
-
-
57typedef struct ciot_s_cfg
-
58{
- - - - - +
49
+
53typedef ciot_err_t(ciot_s_msg_handler_t)(ciot_iface_t *iface, uint8_t *data, int size);
+
54
+ -
64
- -
72
-
81ciot_err_t ciot_s_send(ciot_s_t self, uint8_t *data, int size);
-
82
- -
91
- -
100
-
101#if CIOT_CONFIG_FEATURE_TIMER
-
108ciot_err_t ciot_s_check_timeout(ciot_s_t self);
-
109#endif
-
110
-
111#ifdef __cplusplus
-
112}
-
113#endif
-
114
-
115#endif
+
65
+ +
73
+
82ciot_err_t ciot_s_send(ciot_s_t self, uint8_t *data, int size);
+
83
+ +
92
+ +
101
+
102#if CIOT_CONFIG_FEATURE_TIMER
+
109ciot_err_t ciot_s_check_timeout(ciot_s_t self);
+
110#endif
+
111
+
112#ifdef __cplusplus
+
113}
+
114#endif
+
115
+
116#endif
Header file for CIOT error handling.
-
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
+
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
Header file for the CIOT interface.
ciot_err_t ciot_s_send(ciot_s_t self, uint8_t *data, int size)
Send data using CIOT_S.
enum ciot_s_status ciot_s_status_t
CIOT_S status.
ciot_err_t ciot_s_set_bridge_mode(ciot_s_t self, bool mode)
Set bridge mode for CIOT_S.
ciot_s_t ciot_s_new(ciot_s_cfg_t *cfg)
Create a new CIOT_S instance.
ciot_err_t ciot_s_process_byte(ciot_s_t self, uint8_t byte)
Process a byte received by CIOT_S.
-
ciot_err_t ciot_s_msg_handler_t(ciot_iface_t *iface, uint8_t *data, int size)
Message handler function type definition.
Definition ciot_s.h:52
-
struct ciot_s * ciot_s_t
CIOT_S private struct typedef.
Definition ciot_s.h:36
+
ciot_err_t ciot_s_msg_handler_t(ciot_iface_t *iface, uint8_t *data, int size)
Message handler function type definition.
Definition ciot_s.h:53
+
struct ciot_s * ciot_s_t
CIOT_S private struct typedef.
Definition ciot_s.h:37
struct ciot_s_cfg ciot_s_cfg_t
CIOT_S config struct.
-
ciot_s_status
CIOT_S status.
Definition ciot_s.h:42
-
@ CIOT_S_STATUS_TIMEOUT
Definition ciot_s.h:46
-
@ CIOT_S_STATUS_READ_DATA
Definition ciot_s.h:45
-
@ CIOT_S_STATUS_WAIT_START_DATA
Definition ciot_s.h:43
-
@ CIOT_S_STATUS_WAIT_SIZE
Definition ciot_s.h:44
+
ciot_s_status
CIOT_S status.
Definition ciot_s.h:43
+
@ CIOT_S_STATUS_TIMEOUT
Definition ciot_s.h:47
+
@ CIOT_S_STATUS_READ_DATA
Definition ciot_s.h:46
+
@ CIOT_S_STATUS_WAIT_START_DATA
Definition ciot_s.h:44
+
@ CIOT_S_STATUS_WAIT_SIZE
Definition ciot_s.h:45
Header file for CIOT timer module.
-
Structure representing a CIOT interface.
Definition ciot_iface.h:130
-
CIOT_S config struct.
Definition ciot_s.h:58
-
ciot_s_msg_handler_t * on_message_cb
Definition ciot_s.h:60
-
bool bridge_mode
Definition ciot_s.h:62
-
ciot_s_msg_handler_t * send_bytes
Definition ciot_s.h:59
-
ciot_iface_t * iface
Definition ciot_s.h:61
+
Structure representing a CIOT interface.
Definition ciot_iface.h:131
+
CIOT_S config struct.
Definition ciot_s.h:59
+
ciot_s_msg_handler_t * on_message_cb
Definition ciot_s.h:61
+
bool bridge_mode
Definition ciot_s.h:63
+
ciot_s_msg_handler_t * send_bytes
Definition ciot_s.h:60
+
ciot_iface_t * iface
Definition ciot_s.h:62
diff --git a/docs/ciot__serializer_8h.html b/docs/ciot__serializer_8h.html index 9ea0bae..317ab31 100644 --- a/docs/ciot__serializer_8h.html +++ b/docs/ciot__serializer_8h.html @@ -97,7 +97,7 @@ Typedefs | Enumerations | Functions
-
ciot_serializer.h File Reference
+
ciot_serializer.h File Reference
diff --git a/docs/ciot__serializer_8h_source.html b/docs/ciot__serializer_8h_source.html index 906ef56..bc6bb9a 100644 --- a/docs/ciot__serializer_8h_source.html +++ b/docs/ciot__serializer_8h_source.html @@ -101,65 +101,65 @@
Go to the documentation of this file.
1
-
10#ifndef __CIOT_SERIALIZER__H__
-
11#define __CIOT_SERIALIZER__H__
-
12
-
13#include <inttypes.h>
- -
15
-
16#ifdef __cplusplus
-
17extern "C" {
-
18#endif
-
19
- -
24
-
32typedef int (ciot_serializer_to_bytes_fn)(uint8_t *bytes, ciot_msg_t *msg);
-
33
-
42typedef int (ciot_serializer_from_bytes_fn)(ciot_msg_t *msg, uint8_t *bytes, int size);
-
43
-
- -
48{
- - - - +
11#ifndef __CIOT_SERIALIZER__H__
+
12#define __CIOT_SERIALIZER__H__
+
13
+
14#include <inttypes.h>
+ +
16
+
17#ifdef __cplusplus
+
18extern "C" {
+
19#endif
+
20
+ +
25
+
33typedef int (ciot_serializer_to_bytes_fn)(uint8_t *bytes, ciot_msg_t *msg);
+
34
+
43typedef int (ciot_serializer_from_bytes_fn)(ciot_msg_t *msg, uint8_t *bytes, int size);
+
44
+ -
53
-
- -
58{
- - - -
62};
+
54
+ -
63
- -
73
-
83int ciot_serializer_from_bytes(ciot_serializer_t self, ciot_msg_t *msg, uint8_t *bytes, int size);
-
84
-
85#ifdef __cplusplus
-
86}
-
87#endif
-
88
-
89#endif
+
64
+ +
74
+
84int ciot_serializer_from_bytes(ciot_serializer_t self, ciot_msg_t *msg, uint8_t *bytes, int size);
+
85
+
86#ifdef __cplusplus
+
87}
+
88#endif
+
89
+
90#endif
Defines data types and structures for CIOT messaging.
int ciot_serializer_from_bytes(ciot_serializer_t self, ciot_msg_t *msg, uint8_t *bytes, int size)
Deserialize bytes to a CIOT message using the specified serializer.
enum ciot_serializer_type ciot_serializer_type_t
Enum representing CIOT Serializer types.
int ciot_serializer_to_bytes(ciot_serializer_t self, uint8_t *bytes, ciot_msg_t *msg)
Serialize a CIOT message to bytes using the specified serializer.
-
int ciot_serializer_from_bytes_fn(ciot_msg_t *msg, uint8_t *bytes, int size)
Function pointer type for deserializing from bytes.
Definition ciot_serializer.h:42
-
int ciot_serializer_to_bytes_fn(uint8_t *bytes, ciot_msg_t *msg)
Function pointer type for serializing to bytes.
Definition ciot_serializer.h:32
-
struct ciot_serializer * ciot_serializer_t
CIOT Serializer instance pointer.
Definition ciot_serializer.h:23
-
ciot_serializer_type
Enum representing CIOT Serializer types.
Definition ciot_serializer.h:48
-
@ CIOT_SERIALIZER_TYPE_PROTOBUF
Definition ciot_serializer.h:50
-
@ CIOT_SERIALIZER_TYPE_NONE
Definition ciot_serializer.h:49
-
@ CIOT_SERIALIZER_TYPE_CUSTOM
Definition ciot_serializer.h:51
+
int ciot_serializer_from_bytes_fn(ciot_msg_t *msg, uint8_t *bytes, int size)
Function pointer type for deserializing from bytes.
Definition ciot_serializer.h:43
+
int ciot_serializer_to_bytes_fn(uint8_t *bytes, ciot_msg_t *msg)
Function pointer type for serializing to bytes.
Definition ciot_serializer.h:33
+
struct ciot_serializer * ciot_serializer_t
CIOT Serializer instance pointer.
Definition ciot_serializer.h:24
+
ciot_serializer_type
Enum representing CIOT Serializer types.
Definition ciot_serializer.h:49
+
@ CIOT_SERIALIZER_TYPE_PROTOBUF
Definition ciot_serializer.h:51
+
@ CIOT_SERIALIZER_TYPE_NONE
Definition ciot_serializer.h:50
+
@ CIOT_SERIALIZER_TYPE_CUSTOM
Definition ciot_serializer.h:52
Structure for CIOT message.
Definition ciot_msg_types.h:142
-
CIOT Serializer structure.
Definition ciot_serializer.h:58
-
ciot_serializer_to_bytes_fn * to_bytes
Definition ciot_serializer.h:60
-
ciot_serializer_from_bytes_fn * from_bytes
Definition ciot_serializer.h:61
-
ciot_serializer_type_t type
Definition ciot_serializer.h:59
+
CIOT Serializer structure.
Definition ciot_serializer.h:59
+
ciot_serializer_to_bytes_fn * to_bytes
Definition ciot_serializer.h:61
+
ciot_serializer_from_bytes_fn * from_bytes
Definition ciot_serializer.h:62
+
ciot_serializer_type_t type
Definition ciot_serializer.h:60
diff --git a/docs/ciot__storage_8h_source.html b/docs/ciot__storage_8h_source.html index 2d86e84..72fd390 100644 --- a/docs/ciot__storage_8h_source.html +++ b/docs/ciot__storage_8h_source.html @@ -148,7 +148,7 @@
129
130#endif
Header file for CIOT error handling.
-
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
+
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
Header file for the CIOT interface.
ciot_err_t ciot_storage_init(void)
Initialize the CIOT Storage module.
ciot_err_t ciot_storage_format(ciot_storage_t self)
Format the storage.
diff --git a/docs/ciot__sys_8h_source.html b/docs/ciot__sys_8h_source.html index 3f0baa1..50d33cb 100644 --- a/docs/ciot__sys_8h_source.html +++ b/docs/ciot__sys_8h_source.html @@ -152,7 +152,7 @@
135
136#endif
Header file for CIOT error handling.
-
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
+
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
Header file for the CIOT interface.
struct ciot_sys * ciot_sys_t
CIOT System instance pointer.
Definition ciot_sys.h:30
ciot_err_t ciot_sys_process_req(ciot_sys_t self, ciot_sys_req_t *req)
Process a system request.
diff --git a/docs/ciot__tcp_8h_source.html b/docs/ciot__tcp_8h_source.html index 29c1315..dcd5f3d 100644 --- a/docs/ciot__tcp_8h_source.html +++ b/docs/ciot__tcp_8h_source.html @@ -163,9 +163,9 @@
130
131#endif
Header file for CIOT error handling.
-
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
+
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
Header file for the CIOT interface.
-
ciot_err_t ciot_iface_event_handler_t(ciot_iface_t *sender, ciot_iface_event_t *event, void *args)
Function pointer for handling interface events.
Definition ciot_iface.h:125
+
ciot_err_t ciot_iface_event_handler_t(ciot_iface_t *sender, ciot_iface_event_t *event, void *args)
Function pointer for handling interface events.
Definition ciot_iface.h:126
ciot_err_t ciot_tcp_send_data(ciot_tcp_t self, uint8_t *data, int size)
Send data using the CIOT TCP module.
ciot_tcp_type
Enumeration of CIOT TCP connection types.
Definition ciot_tcp.h:26
@ CIOT_TCP_TYPE_WIFI_STA
Definition ciot_tcp.h:28
diff --git a/docs/ciot__timer_8h.html b/docs/ciot__timer_8h.html index 347953d..1b30049 100644 --- a/docs/ciot__timer_8h.html +++ b/docs/ciot__timer_8h.html @@ -96,7 +96,7 @@ Data Structures | Typedefs | Functions
-
ciot_timer.h File Reference
+
ciot_timer.h File Reference
diff --git a/docs/ciot__timer_8h_source.html b/docs/ciot__timer_8h_source.html index 66748be..531eae3 100644 --- a/docs/ciot__timer_8h_source.html +++ b/docs/ciot__timer_8h_source.html @@ -101,41 +101,41 @@
Go to the documentation of this file.
1
-
10#ifndef __CIOT_TIMER__H__
-
11#define __CIOT_TIMER__H__
-
12
-
13#include <inttypes.h>
-
14#include <stdbool.h>
-
15
-
16#include "ciot_err.h"
-
17
-
23typedef void (*ciot_timer_event_handler_t)(void *args);
-
24
-
-
28typedef struct ciot_timer_cfg
-
29{
- -
31 void *event_args;
- +
11#ifndef __CIOT_TIMER__H__
+
12#define __CIOT_TIMER__H__
+
13
+
14#include <inttypes.h>
+
15#include <stdbool.h>
+
16
+
17#include "ciot_err.h"
+
18
+
24typedef void (*ciot_timer_event_handler_t)(void *args);
+
25
+ -
33
- -
41
-
47uint64_t ciot_timer_get(void);
-
48
-
56bool ciot_timer_compare(uint64_t *timer, uint16_t interval);
-
57
-
58#endif
+
34
+ +
42
+
48uint64_t ciot_timer_get(void);
+
49
+
57bool ciot_timer_compare(uint64_t *timer, uint16_t interval);
+
58
+
59#endif
Header file for CIOT error handling.
-
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
+
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
ciot_err_t ciot_timer_start(ciot_timer_cfg_t *cfg)
Start the CIOT timer module with the given configuration.
uint64_t ciot_timer_get(void)
Get the current timestamp from the CIOT timer.
struct ciot_timer_cfg ciot_timer_cfg_t
Configuration structure for CIOT timer.
-
void(* ciot_timer_event_handler_t)(void *args)
Event handler function type definition for CIOT timer module.
Definition ciot_timer.h:23
+
void(* ciot_timer_event_handler_t)(void *args)
Event handler function type definition for CIOT timer module.
Definition ciot_timer.h:24
bool ciot_timer_compare(uint64_t *timer, uint16_t interval)
Compare the current timer value with an interval.
-
Configuration structure for CIOT timer.
Definition ciot_timer.h:29
-
void * event_args
Definition ciot_timer.h:31
-
ciot_timer_event_handler_t event_handler
Definition ciot_timer.h:30
+
Configuration structure for CIOT timer.
Definition ciot_timer.h:30
+
void * event_args
Definition ciot_timer.h:32
+
ciot_timer_event_handler_t event_handler
Definition ciot_timer.h:31
diff --git a/docs/ciot__uart_8h_source.html b/docs/ciot__uart_8h_source.html index 41db5c5..8bd35a5 100644 --- a/docs/ciot__uart_8h_source.html +++ b/docs/ciot__uart_8h_source.html @@ -181,11 +181,11 @@
152
153#endif
Header file for CIOT error handling.
-
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
+
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
Header file for the CIOT interface.
-
@ CIOT_IFACE_EVENT_CUSTOM
Definition ciot_iface.h:44
+
@ CIOT_IFACE_EVENT_CUSTOM
Definition ciot_iface.h:45
Header file for CIOT_S (Communication Interface Over Transport) module.
-
struct ciot_s * ciot_s_t
CIOT_S private struct typedef.
Definition ciot_s.h:36
+
struct ciot_s * ciot_s_t
CIOT_S private struct typedef.
Definition ciot_s.h:37
ciot_uart_event_id
Event ID enumeration for CIOT UART module.
Definition ciot_uart.h:54
@ CIOT_UART_EVENT_DATA
Definition ciot_uart.h:55
ciot_err_t ciot_uart_start(ciot_uart_t self, ciot_uart_cfg_t *cfg)
Start the CIOT UART module with the given configuration.
@@ -200,7 +200,7 @@
ciot_err_t ciot_uart_task(ciot_uart_t self)
Task function for the CIOT UART module.
ciot_err_t ciot_uart_send_bytes(ciot_iface_t *self, uint8_t *bytes, int size)
Send bytes through the CIOT UART interface.
Defines data structures and types for CIOT UART functionality.
-
Structure representing a CIOT interface.
Definition ciot_iface.h:130
+
Structure representing a CIOT interface.
Definition ciot_iface.h:131
Structure for CIOT message header.
Definition ciot_msg_types.h:132
Base structure for CIOT UART module.
Definition ciot_uart.h:62
ciot_iface_t iface
Definition ciot_uart.h:63
diff --git a/docs/ciot__usb_8h_source.html b/docs/ciot__usb_8h_source.html index d9d5981..52408ad 100644 --- a/docs/ciot__usb_8h_source.html +++ b/docs/ciot__usb_8h_source.html @@ -177,9 +177,9 @@
144
145#endif
Header file for CIOT error handling.
-
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
+
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
Header file for the CIOT interface.
-
@ CIOT_IFACE_EVENT_CUSTOM
Definition ciot_iface.h:44
+
@ CIOT_IFACE_EVENT_CUSTOM
Definition ciot_iface.h:45
enum ciot_usb_event_id ciot_usb_event_id_t
Event ID enumeration for CIOT USB module.
ciot_usb_event_id
Event ID enumeration for CIOT USB module.
Definition ciot_usb.h:33
@ CIOT_USB_EVENT_DATA
Definition ciot_usb.h:58
@@ -217,7 +217,7 @@
ciot_err_t ciot_usb_set_bridge_mode(ciot_usb_t self, bool mode)
Set bridge mode for the CIOT USB module.
ciot_err_t ciot_usb_stop(ciot_usb_t self)
Stop the CIOT USB module.
Defines data structures and types for CIOT USB functionality.
-
Structure representing a CIOT interface.
Definition ciot_iface.h:130
+
Structure representing a CIOT interface.
Definition ciot_iface.h:131
Structure for CIOT message header.
Definition ciot_msg_types.h:132
Structure for CIOT USB configuration.
Definition ciot_usb_types.h:43
Structure for CIOT USB request.
Definition ciot_usb_types.h:67
diff --git a/docs/ciot__utils_8h_source.html b/docs/ciot__utils_8h_source.html index b477643..88b2d99 100644 --- a/docs/ciot__utils_8h_source.html +++ b/docs/ciot__utils_8h_source.html @@ -101,26 +101,26 @@
Go to the documentation of this file.
1
-
10#ifndef __CIOT_UTILS__H__
-
11#define __CIOT_UTILS__H__
-
12
-
13#ifdef __cplusplus
-
14extern "C" {
-
15#endif
-
16
-
17#include <stdlib.h>
-
18#include <inttypes.h>
-
19#include <stdbool.h>
-
20
-
29void bytes_to_hex(char *dst, uint8_t *src, size_t size, bool reverse);
-
30
-
39uint32_t crc32_compute(uint8_t const *p_data, uint32_t size, uint32_t const *p_crc);
-
40
-
41#ifdef __cplusplus
-
42}
-
43#endif
-
44
-
45#endif
+
11#ifndef __CIOT_UTILS__H__
+
12#define __CIOT_UTILS__H__
+
13
+
14#ifdef __cplusplus
+
15extern "C" {
+
16#endif
+
17
+
18#include <stdlib.h>
+
19#include <inttypes.h>
+
20#include <stdbool.h>
+
21
+
30void bytes_to_hex(char *dst, uint8_t *src, size_t size, bool reverse);
+
31
+
40uint32_t crc32_compute(uint8_t const *p_data, uint32_t size, uint32_t const *p_crc);
+
41
+
42#ifdef __cplusplus
+
43}
+
44#endif
+
45
+
46#endif
uint32_t crc32_compute(uint8_t const *p_data, uint32_t size, uint32_t const *p_crc)
Compute CRC32 checksum for the given data.
void bytes_to_hex(char *dst, uint8_t *src, size_t size, bool reverse)
Convert bytes to hexadecimal representation.
diff --git a/docs/ciot__wifi_8h_source.html b/docs/ciot__wifi_8h_source.html index 0c0eae1..efc768f 100644 --- a/docs/ciot__wifi_8h_source.html +++ b/docs/ciot__wifi_8h_source.html @@ -163,9 +163,9 @@
129
130#endif
Header file for CIOT error handling.
-
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:70
+
ciot_err_t
Enumeration of CIOT error codes.
Definition ciot_err.h:71
Header file for the CIOT interface.
-
@ CIOT_IFACE_EVENT_CUSTOM
Definition ciot_iface.h:44
+
@ CIOT_IFACE_EVENT_CUSTOM
Definition ciot_iface.h:45
ciot_wifi_t ciot_wifi_new(void *handle)
Create a new CIOT Wi-Fi instance.
ciot_err_t ciot_wifi_send_data(ciot_wifi_t self, uint8_t *data, int size)
Send data over Wi-Fi.
ciot_wifi_event_id
Enumeration of Wi-Fi event IDs.
Definition ciot_wifi.h:37
diff --git a/docs/dir_d44c64559bbebec7f509842c48db8b23.html b/docs/dir_d44c64559bbebec7f509842c48db8b23.html index 3643915..fa4cc45 100644 --- a/docs/dir_d44c64559bbebec7f509842c48db8b23.html +++ b/docs/dir_d44c64559bbebec7f509842c48db8b23.html @@ -201,6 +201,9 @@  ciot_wifi.h  Header file for CIOT Wi-Fi module.
  + mainpage.h + Definition of class Template.
diff --git a/docs/dir_d44c64559bbebec7f509842c48db8b23.js b/docs/dir_d44c64559bbebec7f509842c48db8b23.js index db4d409..eb17ad3 100644 --- a/docs/dir_d44c64559bbebec7f509842c48db8b23.js +++ b/docs/dir_d44c64559bbebec7f509842c48db8b23.js @@ -34,5 +34,6 @@ var dir_d44c64559bbebec7f509842c48db8b23 = [ "ciot_uart.h", "ciot__uart_8h.html", "ciot__uart_8h" ], [ "ciot_usb.h", "ciot__usb_8h.html", "ciot__usb_8h" ], [ "ciot_utils.h", "ciot__utils_8h.html", "ciot__utils_8h" ], - [ "ciot_wifi.h", "ciot__wifi_8h.html", "ciot__wifi_8h" ] + [ "ciot_wifi.h", "ciot__wifi_8h.html", "ciot__wifi_8h" ], + [ "mainpage.h", "mainpage_8h.html", null ] ]; \ No newline at end of file diff --git a/docs/doxygen_crawl.html b/docs/doxygen_crawl.html index 91a8b56..67477c0 100644 --- a/docs/doxygen_crawl.html +++ b/docs/doxygen_crawl.html @@ -42,6 +42,7 @@ + @@ -96,6 +97,7 @@ + @@ -116,10 +118,13 @@ + + + @@ -293,6 +298,7 @@ + diff --git a/docs/files.html b/docs/files.html index e0d1c6d..69293ab 100644 --- a/docs/files.html +++ b/docs/files.html @@ -153,6 +153,7 @@  ciot_usb.hHeader file for CIOT USB module  ciot_utils.h  ciot_wifi.hHeader file for CIOT Wi-Fi module + mainpage.hDefinition of class Template
diff --git a/docs/group__core.html b/docs/group__core.html new file mode 100644 index 0000000..39cabf6 --- /dev/null +++ b/docs/group__core.html @@ -0,0 +1,127 @@ + + + + + + + +CioT: Core + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
CioT 0.1.0 +
+
Connected IoT
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
Core
+
+
+ +

The core of CIoT library. +More...

+ + + + + + + + + + + +

+Files

file  ciot_err.h
 Header file for CIOT error handling.
 
file  ciot_iface.h
 Header file for the CIOT interface.
 
file  ciot_log.h
 Header file for CIOT logging functionality.
 
+

Detailed Description

+

The core of CIoT library.

+
+
+ + + + diff --git a/docs/group__core.js b/docs/group__core.js new file mode 100644 index 0000000..8b68212 --- /dev/null +++ b/docs/group__core.js @@ -0,0 +1,6 @@ +var group__core = +[ + [ "ciot_err.h", "ciot__err_8h.html", null ], + [ "ciot_iface.h", "ciot__iface_8h.html", null ], + [ "ciot_log.h", "ciot__log_8h.html", null ] +]; \ No newline at end of file diff --git a/docs/group__hardware__interfaces.html b/docs/group__hardware__interfaces.html index 9b380cb..39c3c10 100644 --- a/docs/group__hardware__interfaces.html +++ b/docs/group__hardware__interfaces.html @@ -98,7 +98,7 @@
-

Interfaces that implements hardware resources. +

Interfaces that represents a hardware abstraction. More...

@@ -132,7 +132,7 @@

 

Detailed Description

-

Interfaces that implements hardware resources.

+

Interfaces that represents a hardware abstraction.

diff --git a/docs/group__hardware__types.html b/docs/group__hardware__types.html index adf7dcf..30006de 100644 --- a/docs/group__hardware__types.html +++ b/docs/group__hardware__types.html @@ -98,7 +98,7 @@
-

Types definitions of hardware resources. +

Types related to hardware abstraction interfaces. More...

@@ -129,7 +129,7 @@

 

Detailed Description

-

Types definitions of hardware resources.

+

Types related to hardware abstraction interfaces.

diff --git a/docs/group__software__interfaces.html b/docs/group__software__interfaces.html index ef5cb51..5f63c4a 100644 --- a/docs/group__software__interfaces.html +++ b/docs/group__software__interfaces.html @@ -98,7 +98,7 @@
-

Interfaces that implements software resources. +

Interfaces that represents a software abstraction. More...

@@ -129,7 +129,7 @@

 

Detailed Description

-

Interfaces that implements software resources.

+

Interfaces that represents a software abstraction.

diff --git a/docs/group__software__types.html b/docs/group__software__types.html index 231f768..8cc967f 100644 --- a/docs/group__software__types.html +++ b/docs/group__software__types.html @@ -98,7 +98,7 @@
-

Types definitions of software resources. +

Types related to software abstraction interfaces. More...

@@ -132,7 +132,7 @@

 

Detailed Description

-

Types definitions of software resources.

+

Types related to software abstraction interfaces.

diff --git a/docs/group__utils.html b/docs/group__utils.html new file mode 100644 index 0000000..bd35300 --- /dev/null +++ b/docs/group__utils.html @@ -0,0 +1,127 @@ + + + + + + + +CioT: Utils + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
CioT 0.1.0 +
+
Connected IoT
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
Utils
+
+
+ +

Auxilliary implementations like encoding/decoding, serialization/deserialization, conversions, math operations, etc. +More...

+ + + + + + + + + + + +

+Files

file  ciot_s.h
 Header file for CIOT_S (Communication Interface Over Transport) module.
 
file  ciot_serializer.h
 Header file for CIOT Serializer module.
 
file  ciot_timer.h
 Header file for CIOT timer module.
 
+

Detailed Description

+

Auxilliary implementations like encoding/decoding, serialization/deserialization, conversions, math operations, etc.

+
+
+ + + + diff --git a/docs/group__utils.js b/docs/group__utils.js new file mode 100644 index 0000000..48218c8 --- /dev/null +++ b/docs/group__utils.js @@ -0,0 +1,6 @@ +var group__utils = +[ + [ "ciot_s.h", "ciot__s_8h.html", null ], + [ "ciot_serializer.h", "ciot__serializer_8h.html", null ], + [ "ciot_timer.h", "ciot__timer_8h.html", null ] +]; \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 90538bf..210adfd 100644 --- a/docs/index.html +++ b/docs/index.html @@ -5,7 +5,7 @@ -CioT: Main Page +CioT: CIoT - Programming Guide @@ -91,10 +91,46 @@ -
-
CioT Documentation
+
+
CIoT - Programming Guide
+
Authors
Wesley José Santos
+

+Introduction

+

This is the documentation for Connected IoT (CIOT). CIoT is a library created to facilitate the implementation of IoT devices. This document describes how to use CIoT APIs. This library is based on interfaces implementations. Each interface have it own tyes. CIoT implementations are divided in four topics:

    +
  • Core: CIoT core implementation
  • +
  • Hardware types: types related to hardware abstraction interfaces
  • +
  • Hardware interfaces: interfaces that represents a hardware abstraction
  • +
  • Software types: types related to software abstraction interfaces
  • +
  • Software interfaces: interfaces that represents a software abstraction
  • +
  • Utils: auxilliary implementations like encoding/decondig, serialization/deserialization, math operations, timers, etc.
  • +
+

Each interface implementation follow an general common abstraction defined by the CIoT Core. An interface header file must implement the following methods:

    +
  • ciot_iface_new(handle): Create a new interface instance
  • +
  • ciot_iface_start(self, cfg): Start the interface using the specified configuration
  • +
  • ciot_iface_stop(self): Stop the interface
  • +
  • ciot_iface_process_req(self, req): Use the interface to process an external request
  • +
  • ciot_iface_send_data(self, data, size): User the interface to send data
    +
  • +
+

+Release notes

+

This software is under development. Use at your own risk.


+

+Requirements

+
- Mingw32 for Windows
+- ESP IDF for Espressif devices
+- nRF5 SDK 17 for Nordic devices 
+

+
Todo

Create a more detailed version of this documentation

+

Implement ciot_mbus interface

+

Implement ciot_opcuas interface

+

Implement ciot_opcuac interface

+

Implement unit tests

+

Create GHA to generate TAGs and Releases

+
+
diff --git a/docs/index.js b/docs/index.js new file mode 100644 index 0000000..f237493 --- /dev/null +++ b/docs/index.js @@ -0,0 +1,6 @@ +var index = +[ + [ "Introduction", "index.html#intro", null ], + [ "Release notes", "index.html#notes", null ], + [ "Requirements", "index.html#requirements", null ] +]; \ No newline at end of file diff --git a/docs/mainpage_8h.html b/docs/mainpage_8h.html new file mode 100644 index 0000000..6fa7c7c --- /dev/null +++ b/docs/mainpage_8h.html @@ -0,0 +1,116 @@ + + + + + + + +CioT: include/mainpage.h File Reference + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
CioT 0.1.0 +
+
Connected IoT
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
mainpage.h File Reference
+
+
+ +

Definition of class Template. +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Definition of class Template.

+
Header
/nfs/slac/g/glast/ground/cvs/workbook/pages/advanced_doxygen/usingDoxygen.htm,v 1.1.1.1 2007/06/29 15:03:16 chuckp Exp
+
+
+ + + + diff --git a/docs/mainpage_8h_source.html b/docs/mainpage_8h_source.html new file mode 100644 index 0000000..7c3a5ff --- /dev/null +++ b/docs/mainpage_8h_source.html @@ -0,0 +1,115 @@ + + + + + + + +CioT: include/mainpage.h Source File + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
CioT 0.1.0 +
+
Connected IoT
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
mainpage.h
+
+ +
+ + + + diff --git a/docs/md_include_2_r_e_a_d_m_e.html b/docs/md_include_2_r_e_a_d_m_e.html new file mode 100644 index 0000000..795b1f1 --- /dev/null +++ b/docs/md_include_2_r_e_a_d_m_e.html @@ -0,0 +1,108 @@ + + + + + + + +CioT: CIoT - Connected IoT + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
CioT 0.1.0 +
+
Connected IoT
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
CIoT - Connected IoT
+
+
+
+
+
+ + + + diff --git a/docs/menudata.js b/docs/menudata.js index c2ef56d..dd16810 100644 --- a/docs/menudata.js +++ b/docs/menudata.js @@ -24,6 +24,7 @@ */ var menudata={children:[ {text:"Main Page",url:"index.html"}, +{text:"Related Pages",url:"pages.html"}, {text:"Topics",url:"topics.html"}, {text:"Data Structures",url:"annotated.html",children:[ {text:"Data Structures",url:"annotated.html"}, diff --git a/docs/navtreedata.js b/docs/navtreedata.js index 97534a2..5413cc9 100644 --- a/docs/navtreedata.js +++ b/docs/navtreedata.js @@ -25,6 +25,8 @@ var NAVTREE = [ [ "CioT", "index.html", [ + [ "CIoT - Programming Guide", "index.html", "index" ], + [ "Todo List", "todo.html", null ], [ "Topics", "topics.html", "topics" ], [ "Data Structures", "annotated.html", [ [ "Data Structures", "annotated.html", "annotated_dup" ], @@ -51,10 +53,9 @@ var NAVTREE = var NAVTREEINDEX = [ "annotated.html", -"ciot__log_8h.html#a1576040bae89b4db49ec4fa591cc058f", -"structciot__ble__status__msg__t.html", -"structciot__opcuas__req__t.html", -"unionciot__httpc__req__data.html#aa49303f9ec122aab28d291d44dcd0da5" +"ciot__types_8h.html#a03b3036727499342240dda078a6c69a3ad5565cc1fd1218de2af439243c69aad9", +"structciot__iface__event__t.html#aaba88b24a21a6c70c895c0d55f4a69a0", +"structciot__tcp__req__t.html#ab9836dbdec18617a3ddefdeb64d68c5f" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/docs/navtreeindex0.js b/docs/navtreeindex0.js index b6233fb..3546478 100644 --- a/docs/navtreeindex0.js +++ b/docs/navtreeindex0.js @@ -1,253 +1,253 @@ var NAVTREEINDEX0 = { -"annotated.html":[1,0], -"ciot_8h.html":[2,0,0,1], -"ciot_8h.html#a06001434900c2b315cf793e5356f2836":[2,0,0,1,1], -"ciot_8h.html#a27c376712b0d3594c545846834d24d25":[2,0,0,1,12], -"ciot_8h.html#a2de16f3df26c78b69f64cf6e20050d4e":[2,0,0,1,5], -"ciot_8h.html#a69a23dd0ffa7b32ceaa106938030c108":[2,0,0,1,2], -"ciot_8h.html#a6d0892881a59cab0baba866d2dfdaa33":[2,0,0,1,8], -"ciot_8h.html#a8543fc73092a47512369c90b44059bb6":[2,0,0,1,4], -"ciot_8h.html#a9ed835b9b7224f7757b9382061afc97c":[2,0,0,1,11], -"ciot_8h.html#aa11d77071edcfb2ae57b26f92cda2e06":[2,0,0,1,9], -"ciot_8h.html#ab1f4ff509841bbca90c9a29e870a23fd":[2,0,0,1,10], -"ciot_8h.html#ad09537300f192bf4861b07202f6ed5fe":[2,0,0,1,3], -"ciot_8h.html#af32f995ccbb96d62688e73df1f2998a9":[2,0,0,1,7], -"ciot_8h.html#af5987ba03fd375f7441ab9bf2c53f5f0":[2,0,0,1,6], -"ciot_8h_source.html":[2,0,0,1], -"ciot__ble_8h.html":[0,1,0], -"ciot__ble__scn_8h.html":[0,1,1], -"ciot__ble__scn__types_8h.html":[0,0,0], -"ciot__ble__types_8h.html":[0,0,1], -"ciot__bridge_8h.html":[0,3,0], -"ciot__bridge__types_8h.html":[0,2,0], -"ciot__common__types_8h.html":[2,0,0,5], -"ciot__common__types_8h.html#aacdc43deb8af6baf83220c9c6a29c32e":[2,0,0,5,1], -"ciot__common__types_8h_source.html":[2,0,0,5], -"ciot__config_8h.html":[2,0,0,6], -"ciot__config_8h.html#a02f813de273571624eb6c96c1899f757":[2,0,0,6,14], -"ciot__config_8h.html#a0fcb171a0d3b1eac51cf9bfa90d906cc":[2,0,0,6,11], -"ciot__config_8h.html#a186bc96636ade48237ab070f06addc99":[2,0,0,6,0], -"ciot__config_8h.html#a2363f926f2104cad3b5cd5f1b1699f44":[2,0,0,6,20], -"ciot__config_8h.html#a246a5924c487a75e59a9e7a3d3dc971b":[2,0,0,6,17], -"ciot__config_8h.html#a251d01d6a87722ff3112f7c3e19eb675":[2,0,0,6,3], -"ciot__config_8h.html#a2a51fc859e13b6f8377f6675583c6dd1":[2,0,0,6,19], -"ciot__config_8h.html#a308e001caa7470a8d08a2e85a4d96b8b":[2,0,0,6,22], -"ciot__config_8h.html#a4c4a996f1746ebd2d7346e64a93f69f3":[2,0,0,6,9], -"ciot__config_8h.html#a4d3353714ceeeb9fb3c9194e3836f0fd":[2,0,0,6,8], -"ciot__config_8h.html#a4f43c64c17f3778334fd48cee3edf44b":[2,0,0,6,15], -"ciot__config_8h.html#a595e79e3b6eb41743c2ca97fbd867929":[2,0,0,6,7], -"ciot__config_8h.html#a6dc948a124871514166a7af7e6183803":[2,0,0,6,1], -"ciot__config_8h.html#a8df4e58b5652a4de40cd958e782df114":[2,0,0,6,6], -"ciot__config_8h.html#a9b9559cad470869eca1c6c6a8210d9cd":[2,0,0,6,10], -"ciot__config_8h.html#a9c1d5b23b81041e39ec83946d85e565d":[2,0,0,6,2], -"ciot__config_8h.html#a9d4899595ff9cdd8c920802d34e4c4aa":[2,0,0,6,21], -"ciot__config_8h.html#aa2894556fa44adea617f243356083f21":[2,0,0,6,16], -"ciot__config_8h.html#abd191e184bd878220a70d25c4ad08abf":[2,0,0,6,5], -"ciot__config_8h.html#ad140ac0bec42207439a532c0ad082366":[2,0,0,6,12], -"ciot__config_8h.html#aedfdd865ecfa805d726fb9eca008c4b7":[2,0,0,6,18], -"ciot__config_8h.html#afb001a0ca89034fb9080542d74d24680":[2,0,0,6,13], -"ciot__config_8h.html#aff28490be76958e49cbc2b2ef1e0eb20":[2,0,0,6,4], -"ciot__config_8h_source.html":[2,0,0,6], -"ciot__crc_8h.html":[2,0,0,7], -"ciot__crc_8h.html#a39da2d632baf462933f90f3fbe7a63e7":[2,0,0,7,5], -"ciot__crc_8h.html#a5d59ce0d0ffe65eaf7944d695bde59e3":[2,0,0,7,0], -"ciot__crc_8h.html#a73a6ce791d6f000bad7ee2eedd0d8350":[2,0,0,7,1], -"ciot__crc_8h.html#ad020e1771e2ff7a25a068ccc1b3d1331":[2,0,0,7,3], -"ciot__crc_8h.html#ae831c4d3ed93d649df5ed07e5b9d1c46":[2,0,0,7,4], -"ciot__crc_8h.html#aeed9b1c0c84b16c8e4e4b65be0787ae4":[2,0,0,7,2], -"ciot__crc_8h_source.html":[2,0,0,7], -"ciot__data__model__types_8h.html":[2,0,0,0,3], -"ciot__data__model__types_8h.html#a07451ab717eebb18aa8bd2b63252454c":[2,0,0,0,3,5], -"ciot__data__model__types_8h.html#a07451ab717eebb18aa8bd2b63252454ca7c15c82a2c513452266ef7531a5d1eda":[2,0,0,0,3,5,0], -"ciot__data__model__types_8h.html#a08dca9e6529c70ebf13cda514ebbf05a":[2,0,0,0,3,6], -"ciot__data__model__types_8h.html#a08dca9e6529c70ebf13cda514ebbf05aa3d6e53393cdb43053723613fd71b0be5":[2,0,0,0,3,6,0], -"ciot__data__model__types_8h_source.html":[2,0,0,0,3], -"ciot__default_8h.html":[2,0,0,8], -"ciot__default_8h.html#a030e60462692de23e6989b3b23d894eb":[2,0,0,8,53], -"ciot__default_8h.html#a04e894147896f6ba01229a76c6c1f976":[2,0,0,8,10], -"ciot__default_8h.html#a0aa6817a5c88e8290142061b6b933252":[2,0,0,8,32], -"ciot__default_8h.html#a0b574bd3271269a00ef9a3364564a650":[2,0,0,8,37], -"ciot__default_8h.html#a0bb103892cbaabdd15fb9f93ef6ebfb8":[2,0,0,8,15], -"ciot__default_8h.html#a0dad743975d309bddcfe83e7db9f4c43":[2,0,0,8,12], -"ciot__default_8h.html#a132bac5d5f62fa38121a52690971284c":[2,0,0,8,52], -"ciot__default_8h.html#a195751f0292e7d1046fa7a4b08e5fc23":[2,0,0,8,50], -"ciot__default_8h.html#a1a18adba17f39adbcca041afd38dc988":[2,0,0,8,6], -"ciot__default_8h.html#a26d8ac3e34dcb0faaf41977b7dc54607":[2,0,0,8,30], -"ciot__default_8h.html#a27de0c03a642d79eb31e712994646733":[2,0,0,8,43], -"ciot__default_8h.html#a33bf5b2e0676207bb01e529a4adcf59e":[2,0,0,8,16], -"ciot__default_8h.html#a39b5dff57834d4a9f00b09ff9d7e0586":[2,0,0,8,35], -"ciot__default_8h.html#a3ae1f5c8551422aca407ba0e0d7d051a":[2,0,0,8,14], -"ciot__default_8h.html#a47a6c4735b406987793ff61a3748c356":[2,0,0,8,41], -"ciot__default_8h.html#a59fb15004027f7b6a0be6bda1b0568b1":[2,0,0,8,26], -"ciot__default_8h.html#a5e191db9399c301be511e6024b2f402d":[2,0,0,8,36], -"ciot__default_8h.html#a66e76a6c3a0b20620bee393047c462e6":[2,0,0,8,11], -"ciot__default_8h.html#a67e3c6ac14d049d86edac23aeae48833":[2,0,0,8,7], -"ciot__default_8h.html#a69173d99aec57142ba91edc18300f781":[2,0,0,8,49], -"ciot__default_8h.html#a7a33c55b1ce3269738b939eeb19cb71b":[2,0,0,8,0], -"ciot__default_8h.html#a7c09f75e4ebc749a5c225c760c2befde":[2,0,0,8,47], -"ciot__default_8h.html#a7e2f6267fdbe83b93e2220a3733f9774":[2,0,0,8,18], -"ciot__default_8h.html#a7f79abe5ea5f7e3260843192069bdcaa":[2,0,0,8,45], -"ciot__default_8h.html#a81124436ceaf4bdbf7fd16ec51729aa7":[2,0,0,8,22], -"ciot__default_8h.html#a82cca16f86e1276f9a325ebbd1ec5d68":[2,0,0,8,46], -"ciot__default_8h.html#a86eea122295995d6664aae9037c34a1d":[2,0,0,8,51], -"ciot__default_8h.html#a89cc8bb6906a26e085cd6d79e881717f":[2,0,0,8,48], -"ciot__default_8h.html#a9835f697325cb7920259cad52e13b0a1":[2,0,0,8,13], -"ciot__default_8h.html#aa196f69c014910ca0e0f37d44b83ad30":[2,0,0,8,28], -"ciot__default_8h.html#aae6ed2cc1f62936138b7b12cb78eab19":[2,0,0,8,33], -"ciot__default_8h.html#ab26205cfa1af914695c961fe6a7c37f7":[2,0,0,8,3], -"ciot__default_8h.html#ab361b51c2b4bb8324a0767a6680cab25":[2,0,0,8,31], -"ciot__default_8h.html#ab398686897078b551d637f058ec072f7":[2,0,0,8,23], -"ciot__default_8h.html#ab4fbb783d249bcf33ad25052b6072474":[2,0,0,8,21], -"ciot__default_8h.html#ab7eacba51c8ae0c580dbe9fbf5996cc1":[2,0,0,8,8], -"ciot__default_8h.html#ab853f3aa6a7e0229c80b1f5a4fae0fbf":[2,0,0,8,20], -"ciot__default_8h.html#abc5eb2049e9aab488e1bb1846c71b481":[2,0,0,8,29], -"ciot__default_8h.html#abe942f163ef66924c29e63adb6e91cc3":[2,0,0,8,27], -"ciot__default_8h.html#abf9505c4cab01e148100b048a372663f":[2,0,0,8,2], -"ciot__default_8h.html#ac64f70fbc40557ffc7f0f6c9d4aed430":[2,0,0,8,34], -"ciot__default_8h.html#ac7f8eb636e1dfd5e75ca8a2ccf174981":[2,0,0,8,9], -"ciot__default_8h.html#ac915c58485a09a470ab105dcd7fdb438":[2,0,0,8,40], -"ciot__default_8h.html#ac9389de4857fca429528b43c0e70bc08":[2,0,0,8,24], -"ciot__default_8h.html#ad1c730d9022fce47870a8de547c63721":[2,0,0,8,25], -"ciot__default_8h.html#ad52d4acc5014fec93b596267a4267489":[2,0,0,8,17], -"ciot__default_8h.html#ad5a0b532b36ce2e64548273d4694de52":[2,0,0,8,39], -"ciot__default_8h.html#ade7f6e32e02db936bfd97768500c7c74":[2,0,0,8,19], -"ciot__default_8h.html#ae166c8150eec3860c86266fbafa30164":[2,0,0,8,4], -"ciot__default_8h.html#ae5e243b358058e660e46de4d92ec23dd":[2,0,0,8,5], -"ciot__default_8h.html#aef3854df37260fcf01c87b0acabf03dd":[2,0,0,8,1], -"ciot__default_8h.html#af9d6ddc888416ceda770bd6ba0666adf":[2,0,0,8,38], -"ciot__default_8h.html#afdccac291d2c1de6425402fec83189cf":[2,0,0,8,44], -"ciot__default_8h.html#afe80a6e24ff36484761b8a0740e21cd3":[2,0,0,8,42], -"ciot__default_8h_source.html":[2,0,0,8], -"ciot__dfu_8h.html":[0,3,1], -"ciot__dfu__types_8h.html":[0,2,1], -"ciot__err_8h.html":[2,0,0,10], -"ciot__err_8h.html#a1806dc8280a05018951cee099f371d2d":[2,0,0,10,3], -"ciot__err_8h.html#a1d1753e50e3d86f2a58cf488442b5f4c":[2,0,0,10,6], -"ciot__err_8h.html#a2d5c5535c945cd775e34e309019df360":[2,0,0,10,2], -"ciot__err_8h.html#a5c83da3390515076963e6de67984fff5":[2,0,0,10,0], -"ciot__err_8h.html#aa26e80d640e682764d732b12782cc7a3":[2,0,0,10,4], -"ciot__err_8h.html#ad14d33778f6214b2efd5d62bf6c6e3f2":[2,0,0,10,1], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8":[2,0,0,10,5], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a134ff0d5fe0ca3d4d834e797cbf94bde":[2,0,0,10,5,23], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a26c7b6aac6b34bf51f17571df94876bc":[2,0,0,10,5,13], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a2c1218c0f210769b6a92052cb87aef3e":[2,0,0,10,5,18], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a2e6c77a112c02b82bf99b3c0ec247b6b":[2,0,0,10,5,16], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a37a385918af7cb9c2a488bd82addef9a":[2,0,0,10,5,3], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a4c98aa1cfd3dd9cdce9d0a9f6f5b5a74":[2,0,0,10,5,12], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a54bf87c72caefdedb6407028ba041fcf":[2,0,0,10,5,20], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a608f016995435f4c5f758dc42f5c28dc":[2,0,0,10,5,1], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a671951c11518830a673c4e01f89059bd":[2,0,0,10,5,15], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a699674cfe223dd193c22bd43b040e6ee":[2,0,0,10,5,19], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a6a5c8b52d640c541101f6669f412dc3b":[2,0,0,10,5,21], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a6d5e8817f2b08fcf3e7a18678b397fba":[2,0,0,10,5,26], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a71470ad3a7d23f316a2c6de561694646":[2,0,0,10,5,0], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a7b81bbef8df280eaf950be25a97d6b0f":[2,0,0,10,5,22], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a811422a99ed9205e5c17a426012b2914":[2,0,0,10,5,25], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a87486b88023e82004f4cc7bd8c91a587":[2,0,0,10,5,9], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a8a64d46b6f851cbea6f4be9827fa5719":[2,0,0,10,5,8], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a92a85995ffcf6be5cd10ed9677827304":[2,0,0,10,5,4], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a9b5fa45b99fba67d690588956d52f7b0":[2,0,0,10,5,5], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a9e389c8626c35577967cf7e312b3a45a":[2,0,0,10,5,2], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8ab36d19cffa587308a172dc9d67e9ebf0":[2,0,0,10,5,17], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8ab80d9a08671e6164cae2d7ecf66af1cf":[2,0,0,10,5,7], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8abe6f4938ab424fc41b067a153ac1105c":[2,0,0,10,5,24], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8ad5d03221253b6f9e2e632dea64791478":[2,0,0,10,5,27], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8add84c2b5f1832e3842e6639686ca342e":[2,0,0,10,5,14], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8ae9b9cea99e0d51f7e70b70f11d2d8025":[2,0,0,10,5,10], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8aedd08488ef3c685bb1e2c47c14a80cb9":[2,0,0,10,5,11], -"ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8af592c215972533cd90b05e02f8e8d6cd":[2,0,0,10,5,6], -"ciot__err_8h_source.html":[2,0,0,10], -"ciot__eth_8h.html":[0,1,2], -"ciot__gpio_8h.html":[0,1,3], -"ciot__gpio__types_8h.html":[0,0,2], -"ciot__httpc_8h.html":[2,0,0,13], -"ciot__httpc_8h.html#a2c213f8a3a59ead35d64cf064f894fe1":[2,0,0,13,2], -"ciot__httpc_8h.html#a34deca8f36a9ebbb7b47663a026efc71":[2,0,0,13,8], -"ciot__httpc_8h.html#a46df5188166f70dba4fdff5393db031e":[2,0,0,13,7], -"ciot__httpc_8h.html#a7867b22f4a59e270cd0aadf3165804a8":[2,0,0,13,3], -"ciot__httpc_8h.html#a7867b22f4a59e270cd0aadf3165804a8a3f5ae57e03d9b825c8fb4733c15359db":[2,0,0,13,3,1], -"ciot__httpc_8h.html#a7867b22f4a59e270cd0aadf3165804a8afb97828385b4f79444b7ebfc7640bde9":[2,0,0,13,3,0], -"ciot__httpc_8h.html#a8992ff730daa4b1341950e1fcc062095":[2,0,0,13,1], -"ciot__httpc_8h.html#a8b0903c7bdf6e8928d3753c06f13c564":[2,0,0,13,6], -"ciot__httpc_8h.html#aa56416d08a9bcfbc90b3732204f02e4c":[2,0,0,13,4], -"ciot__httpc_8h.html#aeb4ac97854627dc732459e7c0b60a900":[2,0,0,13,5], -"ciot__httpc_8h_source.html":[2,0,0,13], -"ciot__httpc__types_8h.html":[0,2,2], -"ciot__https_8h.html":[0,3,2], -"ciot__https__types_8h.html":[0,2,3], -"ciot__iface_8h.html":[2,0,0,15], -"ciot__iface_8h.html#a107b2c0cf1b5767a1b482f19bc3fb0ae":[2,0,0,15,6], -"ciot__iface_8h.html#a15efdb74520f75fe9f0a695a349f07e0":[2,0,0,15,34], -"ciot__iface_8h.html#a1838217e75528a5d17f7e3b640c58321":[2,0,0,15,24], -"ciot__iface_8h.html#a3c7fbbc6d64e6ea8584c014743e20fb9":[2,0,0,15,11], -"ciot__iface_8h.html#a53ef55e31fed0fb7bbc727b4b45c8b18":[2,0,0,15,12], -"ciot__iface_8h.html#a5e15dc97b9b45855f868dee02c69c166":[2,0,0,15,30], -"ciot__iface_8h.html#a5f8b92fd30cad0f550ef9976e037b93e":[2,0,0,15,31], -"ciot__iface_8h.html#a6411ae488746c99b42a7970dcbe6b042":[2,0,0,15,37], -"ciot__iface_8h.html#a6b87395146fdad575079c47979fe1cc5":[2,0,0,15,21], -"ciot__iface_8h.html#a7ad3131a637f86ed8d9a4655f060deca":[2,0,0,15,35], -"ciot__iface_8h.html#a7c59fa4a32c0662de361fd89847ab62b":[2,0,0,15,23], -"ciot__iface_8h.html#aa0070d90be5933f14530c81fca52fcfd":[2,0,0,15,22], -"ciot__iface_8h.html#aa3ff9b2090848d0920e0a69de86f6250":[2,0,0,15,19], -"ciot__iface_8h.html#aa73c62bfec675d5d722fab4532b753ca":[2,0,0,15,18], -"ciot__iface_8h.html#aa73c62bfec675d5d722fab4532b753caa52b88fef2a02a82b04031ad4ba09d0ef":[2,0,0,15,18,2], -"ciot__iface_8h.html#aa73c62bfec675d5d722fab4532b753caa6fad5b037b43a54a8d8e8f70c6e30eb6":[2,0,0,15,18,0], -"ciot__iface_8h.html#aa73c62bfec675d5d722fab4532b753caac426693d5012b5aed25f77d2e8bedda5":[2,0,0,15,18,1], -"ciot__iface_8h.html#aa95e39f8029362c17172c4ab860b9b2c":[2,0,0,15,8], -"ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cb":[2,0,0,15,17], -"ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cba080fca556c9a023720751526ecad8ccc":[2,0,0,15,17,6], -"ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cba0f80ad7aed1ba3eecf1922446cbdde95":[2,0,0,15,17,5], -"ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cba2b18a98e307314d7257854b3f09700a6":[2,0,0,15,17,2], -"ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cba7682c08bf60ddc6f695e62b7b2344a4f":[2,0,0,15,17,8], -"ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cba783c8ee8ead4e6638b0454ffbe5fe009":[2,0,0,15,17,1], -"ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cba98063df9c53273544ed5b5424a05024e":[2,0,0,15,17,4], -"ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cbab52a8702f0eaf2aed031a3ca78468a71":[2,0,0,15,17,3], -"ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cbab9bcdc77d1e0c80fdca8b60528af9d81":[2,0,0,15,17,7], -"ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cbad1b206ed7fad45c5e6630dc78d91844d":[2,0,0,15,17,0], -"ciot__iface_8h.html#ab7cf61a0bac326bd528c23e6ce924c57":[2,0,0,15,9], -"ciot__iface_8h.html#abc404557e0571e7e5ea0c5db63fa8c23":[2,0,0,15,25], -"ciot__iface_8h.html#abded5657da5e3c7e38c1185b4b14a4a8":[2,0,0,15,26], -"ciot__iface_8h.html#abe9d78b6b8e29546fe52054115bea7a0":[2,0,0,15,7], -"ciot__iface_8h.html#ac30f4e1e8fcb5a66822b04c384890c58":[2,0,0,15,29], -"ciot__iface_8h.html#ac6198bf9f283fff84839fcba7aaa0682":[2,0,0,15,33], -"ciot__iface_8h.html#ac87bf8f245c1f7cc82f57bc87de9ad71":[2,0,0,15,16], -"ciot__iface_8h.html#acfdf034f3291c65ee6798ffc860b6f1a":[2,0,0,15,27], -"ciot__iface_8h.html#ad4bea4982fb363829998c5fa64f76ccb":[2,0,0,15,36], -"ciot__iface_8h.html#adbb3382dd13c68ed5090d0021bfd8f29":[2,0,0,15,15], -"ciot__iface_8h.html#ae586597c42a97043136f6afe51e7ebe8":[2,0,0,15,10], -"ciot__iface_8h.html#ae6a255f29e6adcc8a7325c29abba6844":[2,0,0,15,32], -"ciot__iface_8h.html#aef1dd87e5c3111ca65fa4e63ca2c9213":[2,0,0,15,20], -"ciot__iface_8h.html#aefceafcf049557b64450785501b2470a":[2,0,0,15,28], -"ciot__iface_8h.html#afa768ec7c39932d18718c66358303d16":[2,0,0,15,14], -"ciot__iface_8h.html#affffc532ae0b36b941fc0ed0376a0a5a":[2,0,0,15,13], -"ciot__iface_8h_source.html":[2,0,0,15], -"ciot__ifaces_8h.html":[2,0,0,16], -"ciot__ifaces_8h.html#a689f38bac0aaf012140f11da651c8c0f":[2,0,0,16,2], -"ciot__ifaces_8h.html#a81dae521394bdd3a9d8b848740f5433a":[2,0,0,16,1], -"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1e":[2,0,0,16,3], -"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea050d0909d9275b2785e13e92ee6db35d":[2,0,0,16,3,11], -"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea10242eda2c41ddb76f3d05a8d3507c14":[2,0,0,16,3,16], -"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea2a08ed7ae7a1cc621cb4708a6dd0e396":[2,0,0,16,3,9], -"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea2c1db03e2628aba552b741a079c4f3b6":[2,0,0,16,3,12], -"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea38e855c72e72086bdc9b45543981b9d3":[2,0,0,16,3,18], -"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea46a519b30f420e680495d99a0f013b02":[2,0,0,16,3,3], -"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea49cfed8646f3de92a34287bb413e85ef":[2,0,0,16,3,1], -"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea663fe58cdc4d896f7729e953d709b9ea":[2,0,0,16,3,14], -"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea6ff4fdc5bf330bfbde15f71646b3a14f":[2,0,0,16,3,8], -"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea70e4ffdab38e4c017b0e82199aceb028":[2,0,0,16,3,4], -"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea77a9be4a3d71157a99b3931ecb890760":[2,0,0,16,3,13], -"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea7f3c5f3d0ad4f1dfd3d783241d99db3f":[2,0,0,16,3,10], -"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1eab83be87e2b46a1081b4213c560c25426":[2,0,0,16,3,0], -"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1eac8eeadb10c436b739b7bb180d65b053a":[2,0,0,16,3,17], -"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1eace465d93bac433735d3cb4f4256743ea":[2,0,0,16,3,6], -"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ead428622f610ad7bf11f8c881108a2430":[2,0,0,16,3,5], -"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1eadeaee2994eba2268fbf880938d75ce9e":[2,0,0,16,3,15], -"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1eae58f8ebc9e8233810e0507dcc8cf3de5":[2,0,0,16,3,7], -"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1eaf73e60bfa3d2bfe988000062e4a6fb5a":[2,0,0,16,3,2], -"ciot__ifaces_8h_source.html":[2,0,0,16], -"ciot__lib_8h.html":[2,0,0,17], -"ciot__lib_8h_source.html":[2,0,0,17], -"ciot__log_8h.html":[2,0,0,18], -"ciot__log_8h.html#a017fce4c69c3715ce3301383a4b34510":[2,0,0,18,0] +"annotated.html":[3,0], +"ciot_8h.html":[4,0,0,1], +"ciot_8h.html#a06001434900c2b315cf793e5356f2836":[4,0,0,1,1], +"ciot_8h.html#a27c376712b0d3594c545846834d24d25":[4,0,0,1,12], +"ciot_8h.html#a2de16f3df26c78b69f64cf6e20050d4e":[4,0,0,1,5], +"ciot_8h.html#a69a23dd0ffa7b32ceaa106938030c108":[4,0,0,1,2], +"ciot_8h.html#a6d0892881a59cab0baba866d2dfdaa33":[4,0,0,1,8], +"ciot_8h.html#a8543fc73092a47512369c90b44059bb6":[4,0,0,1,4], +"ciot_8h.html#a9ed835b9b7224f7757b9382061afc97c":[4,0,0,1,11], +"ciot_8h.html#aa11d77071edcfb2ae57b26f92cda2e06":[4,0,0,1,9], +"ciot_8h.html#ab1f4ff509841bbca90c9a29e870a23fd":[4,0,0,1,10], +"ciot_8h.html#ad09537300f192bf4861b07202f6ed5fe":[4,0,0,1,3], +"ciot_8h.html#af32f995ccbb96d62688e73df1f2998a9":[4,0,0,1,7], +"ciot_8h.html#af5987ba03fd375f7441ab9bf2c53f5f0":[4,0,0,1,6], +"ciot_8h_source.html":[4,0,0,1], +"ciot__ble_8h.html":[2,2,0], +"ciot__ble__scn_8h.html":[2,2,1], +"ciot__ble__scn__types_8h.html":[2,1,0], +"ciot__ble__types_8h.html":[2,1,1], +"ciot__bridge_8h.html":[2,4,0], +"ciot__bridge__types_8h.html":[2,3,0], +"ciot__common__types_8h.html":[4,0,0,5], +"ciot__common__types_8h.html#aacdc43deb8af6baf83220c9c6a29c32e":[4,0,0,5,1], +"ciot__common__types_8h_source.html":[4,0,0,5], +"ciot__config_8h.html":[4,0,0,6], +"ciot__config_8h.html#a02f813de273571624eb6c96c1899f757":[4,0,0,6,14], +"ciot__config_8h.html#a0fcb171a0d3b1eac51cf9bfa90d906cc":[4,0,0,6,11], +"ciot__config_8h.html#a186bc96636ade48237ab070f06addc99":[4,0,0,6,0], +"ciot__config_8h.html#a2363f926f2104cad3b5cd5f1b1699f44":[4,0,0,6,20], +"ciot__config_8h.html#a246a5924c487a75e59a9e7a3d3dc971b":[4,0,0,6,17], +"ciot__config_8h.html#a251d01d6a87722ff3112f7c3e19eb675":[4,0,0,6,3], +"ciot__config_8h.html#a2a51fc859e13b6f8377f6675583c6dd1":[4,0,0,6,19], +"ciot__config_8h.html#a308e001caa7470a8d08a2e85a4d96b8b":[4,0,0,6,22], +"ciot__config_8h.html#a4c4a996f1746ebd2d7346e64a93f69f3":[4,0,0,6,9], +"ciot__config_8h.html#a4d3353714ceeeb9fb3c9194e3836f0fd":[4,0,0,6,8], +"ciot__config_8h.html#a4f43c64c17f3778334fd48cee3edf44b":[4,0,0,6,15], +"ciot__config_8h.html#a595e79e3b6eb41743c2ca97fbd867929":[4,0,0,6,7], +"ciot__config_8h.html#a6dc948a124871514166a7af7e6183803":[4,0,0,6,1], +"ciot__config_8h.html#a8df4e58b5652a4de40cd958e782df114":[4,0,0,6,6], +"ciot__config_8h.html#a9b9559cad470869eca1c6c6a8210d9cd":[4,0,0,6,10], +"ciot__config_8h.html#a9c1d5b23b81041e39ec83946d85e565d":[4,0,0,6,2], +"ciot__config_8h.html#a9d4899595ff9cdd8c920802d34e4c4aa":[4,0,0,6,21], +"ciot__config_8h.html#aa2894556fa44adea617f243356083f21":[4,0,0,6,16], +"ciot__config_8h.html#abd191e184bd878220a70d25c4ad08abf":[4,0,0,6,5], +"ciot__config_8h.html#ad140ac0bec42207439a532c0ad082366":[4,0,0,6,12], +"ciot__config_8h.html#aedfdd865ecfa805d726fb9eca008c4b7":[4,0,0,6,18], +"ciot__config_8h.html#afb001a0ca89034fb9080542d74d24680":[4,0,0,6,13], +"ciot__config_8h.html#aff28490be76958e49cbc2b2ef1e0eb20":[4,0,0,6,4], +"ciot__config_8h_source.html":[4,0,0,6], +"ciot__crc_8h.html":[4,0,0,7], +"ciot__crc_8h.html#a39da2d632baf462933f90f3fbe7a63e7":[4,0,0,7,5], +"ciot__crc_8h.html#a5d59ce0d0ffe65eaf7944d695bde59e3":[4,0,0,7,0], +"ciot__crc_8h.html#a73a6ce791d6f000bad7ee2eedd0d8350":[4,0,0,7,1], +"ciot__crc_8h.html#ad020e1771e2ff7a25a068ccc1b3d1331":[4,0,0,7,3], +"ciot__crc_8h.html#ae831c4d3ed93d649df5ed07e5b9d1c46":[4,0,0,7,4], +"ciot__crc_8h.html#aeed9b1c0c84b16c8e4e4b65be0787ae4":[4,0,0,7,2], +"ciot__crc_8h_source.html":[4,0,0,7], +"ciot__data__model__types_8h.html":[4,0,0,0,3], +"ciot__data__model__types_8h.html#a07451ab717eebb18aa8bd2b63252454c":[4,0,0,0,3,5], +"ciot__data__model__types_8h.html#a07451ab717eebb18aa8bd2b63252454ca7c15c82a2c513452266ef7531a5d1eda":[4,0,0,0,3,5,0], +"ciot__data__model__types_8h.html#a08dca9e6529c70ebf13cda514ebbf05a":[4,0,0,0,3,6], +"ciot__data__model__types_8h.html#a08dca9e6529c70ebf13cda514ebbf05aa3d6e53393cdb43053723613fd71b0be5":[4,0,0,0,3,6,0], +"ciot__data__model__types_8h_source.html":[4,0,0,0,3], +"ciot__default_8h.html":[4,0,0,8], +"ciot__default_8h.html#a030e60462692de23e6989b3b23d894eb":[4,0,0,8,53], +"ciot__default_8h.html#a04e894147896f6ba01229a76c6c1f976":[4,0,0,8,10], +"ciot__default_8h.html#a0aa6817a5c88e8290142061b6b933252":[4,0,0,8,32], +"ciot__default_8h.html#a0b574bd3271269a00ef9a3364564a650":[4,0,0,8,37], +"ciot__default_8h.html#a0bb103892cbaabdd15fb9f93ef6ebfb8":[4,0,0,8,15], +"ciot__default_8h.html#a0dad743975d309bddcfe83e7db9f4c43":[4,0,0,8,12], +"ciot__default_8h.html#a132bac5d5f62fa38121a52690971284c":[4,0,0,8,52], +"ciot__default_8h.html#a195751f0292e7d1046fa7a4b08e5fc23":[4,0,0,8,50], +"ciot__default_8h.html#a1a18adba17f39adbcca041afd38dc988":[4,0,0,8,6], +"ciot__default_8h.html#a26d8ac3e34dcb0faaf41977b7dc54607":[4,0,0,8,30], +"ciot__default_8h.html#a27de0c03a642d79eb31e712994646733":[4,0,0,8,43], +"ciot__default_8h.html#a33bf5b2e0676207bb01e529a4adcf59e":[4,0,0,8,16], +"ciot__default_8h.html#a39b5dff57834d4a9f00b09ff9d7e0586":[4,0,0,8,35], +"ciot__default_8h.html#a3ae1f5c8551422aca407ba0e0d7d051a":[4,0,0,8,14], +"ciot__default_8h.html#a47a6c4735b406987793ff61a3748c356":[4,0,0,8,41], +"ciot__default_8h.html#a59fb15004027f7b6a0be6bda1b0568b1":[4,0,0,8,26], +"ciot__default_8h.html#a5e191db9399c301be511e6024b2f402d":[4,0,0,8,36], +"ciot__default_8h.html#a66e76a6c3a0b20620bee393047c462e6":[4,0,0,8,11], +"ciot__default_8h.html#a67e3c6ac14d049d86edac23aeae48833":[4,0,0,8,7], +"ciot__default_8h.html#a69173d99aec57142ba91edc18300f781":[4,0,0,8,49], +"ciot__default_8h.html#a7a33c55b1ce3269738b939eeb19cb71b":[4,0,0,8,0], +"ciot__default_8h.html#a7c09f75e4ebc749a5c225c760c2befde":[4,0,0,8,47], +"ciot__default_8h.html#a7e2f6267fdbe83b93e2220a3733f9774":[4,0,0,8,18], +"ciot__default_8h.html#a7f79abe5ea5f7e3260843192069bdcaa":[4,0,0,8,45], +"ciot__default_8h.html#a81124436ceaf4bdbf7fd16ec51729aa7":[4,0,0,8,22], +"ciot__default_8h.html#a82cca16f86e1276f9a325ebbd1ec5d68":[4,0,0,8,46], +"ciot__default_8h.html#a86eea122295995d6664aae9037c34a1d":[4,0,0,8,51], +"ciot__default_8h.html#a89cc8bb6906a26e085cd6d79e881717f":[4,0,0,8,48], +"ciot__default_8h.html#a9835f697325cb7920259cad52e13b0a1":[4,0,0,8,13], +"ciot__default_8h.html#aa196f69c014910ca0e0f37d44b83ad30":[4,0,0,8,28], +"ciot__default_8h.html#aae6ed2cc1f62936138b7b12cb78eab19":[4,0,0,8,33], +"ciot__default_8h.html#ab26205cfa1af914695c961fe6a7c37f7":[4,0,0,8,3], +"ciot__default_8h.html#ab361b51c2b4bb8324a0767a6680cab25":[4,0,0,8,31], +"ciot__default_8h.html#ab398686897078b551d637f058ec072f7":[4,0,0,8,23], +"ciot__default_8h.html#ab4fbb783d249bcf33ad25052b6072474":[4,0,0,8,21], +"ciot__default_8h.html#ab7eacba51c8ae0c580dbe9fbf5996cc1":[4,0,0,8,8], +"ciot__default_8h.html#ab853f3aa6a7e0229c80b1f5a4fae0fbf":[4,0,0,8,20], +"ciot__default_8h.html#abc5eb2049e9aab488e1bb1846c71b481":[4,0,0,8,29], +"ciot__default_8h.html#abe942f163ef66924c29e63adb6e91cc3":[4,0,0,8,27], +"ciot__default_8h.html#abf9505c4cab01e148100b048a372663f":[4,0,0,8,2], +"ciot__default_8h.html#ac64f70fbc40557ffc7f0f6c9d4aed430":[4,0,0,8,34], +"ciot__default_8h.html#ac7f8eb636e1dfd5e75ca8a2ccf174981":[4,0,0,8,9], +"ciot__default_8h.html#ac915c58485a09a470ab105dcd7fdb438":[4,0,0,8,40], +"ciot__default_8h.html#ac9389de4857fca429528b43c0e70bc08":[4,0,0,8,24], +"ciot__default_8h.html#ad1c730d9022fce47870a8de547c63721":[4,0,0,8,25], +"ciot__default_8h.html#ad52d4acc5014fec93b596267a4267489":[4,0,0,8,17], +"ciot__default_8h.html#ad5a0b532b36ce2e64548273d4694de52":[4,0,0,8,39], +"ciot__default_8h.html#ade7f6e32e02db936bfd97768500c7c74":[4,0,0,8,19], +"ciot__default_8h.html#ae166c8150eec3860c86266fbafa30164":[4,0,0,8,4], +"ciot__default_8h.html#ae5e243b358058e660e46de4d92ec23dd":[4,0,0,8,5], +"ciot__default_8h.html#aef3854df37260fcf01c87b0acabf03dd":[4,0,0,8,1], +"ciot__default_8h.html#af9d6ddc888416ceda770bd6ba0666adf":[4,0,0,8,38], +"ciot__default_8h.html#afdccac291d2c1de6425402fec83189cf":[4,0,0,8,44], +"ciot__default_8h.html#afe80a6e24ff36484761b8a0740e21cd3":[4,0,0,8,42], +"ciot__default_8h_source.html":[4,0,0,8], +"ciot__dfu_8h.html":[2,4,1], +"ciot__dfu__types_8h.html":[2,3,1], +"ciot__err_8h.html":[2,0,0], +"ciot__eth_8h.html":[2,2,2], +"ciot__gpio_8h.html":[2,2,3], +"ciot__gpio__types_8h.html":[2,1,2], +"ciot__httpc_8h.html":[4,0,0,13], +"ciot__httpc_8h.html#a2c213f8a3a59ead35d64cf064f894fe1":[4,0,0,13,2], +"ciot__httpc_8h.html#a34deca8f36a9ebbb7b47663a026efc71":[4,0,0,13,8], +"ciot__httpc_8h.html#a46df5188166f70dba4fdff5393db031e":[4,0,0,13,7], +"ciot__httpc_8h.html#a7867b22f4a59e270cd0aadf3165804a8":[4,0,0,13,3], +"ciot__httpc_8h.html#a7867b22f4a59e270cd0aadf3165804a8a3f5ae57e03d9b825c8fb4733c15359db":[4,0,0,13,3,1], +"ciot__httpc_8h.html#a7867b22f4a59e270cd0aadf3165804a8afb97828385b4f79444b7ebfc7640bde9":[4,0,0,13,3,0], +"ciot__httpc_8h.html#a8992ff730daa4b1341950e1fcc062095":[4,0,0,13,1], +"ciot__httpc_8h.html#a8b0903c7bdf6e8928d3753c06f13c564":[4,0,0,13,6], +"ciot__httpc_8h.html#aa56416d08a9bcfbc90b3732204f02e4c":[4,0,0,13,4], +"ciot__httpc_8h.html#aeb4ac97854627dc732459e7c0b60a900":[4,0,0,13,5], +"ciot__httpc_8h_source.html":[4,0,0,13], +"ciot__httpc__types_8h.html":[2,3,2], +"ciot__https_8h.html":[2,4,2], +"ciot__https__types_8h.html":[2,3,3], +"ciot__iface_8h.html":[2,0,1], +"ciot__ifaces_8h.html":[4,0,0,16], +"ciot__ifaces_8h.html#a689f38bac0aaf012140f11da651c8c0f":[4,0,0,16,2], +"ciot__ifaces_8h.html#a81dae521394bdd3a9d8b848740f5433a":[4,0,0,16,1], +"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1e":[4,0,0,16,3], +"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea050d0909d9275b2785e13e92ee6db35d":[4,0,0,16,3,11], +"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea10242eda2c41ddb76f3d05a8d3507c14":[4,0,0,16,3,16], +"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea2a08ed7ae7a1cc621cb4708a6dd0e396":[4,0,0,16,3,9], +"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea2c1db03e2628aba552b741a079c4f3b6":[4,0,0,16,3,12], +"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea38e855c72e72086bdc9b45543981b9d3":[4,0,0,16,3,18], +"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea46a519b30f420e680495d99a0f013b02":[4,0,0,16,3,3], +"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea49cfed8646f3de92a34287bb413e85ef":[4,0,0,16,3,1], +"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea663fe58cdc4d896f7729e953d709b9ea":[4,0,0,16,3,14], +"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea6ff4fdc5bf330bfbde15f71646b3a14f":[4,0,0,16,3,8], +"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea70e4ffdab38e4c017b0e82199aceb028":[4,0,0,16,3,4], +"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea77a9be4a3d71157a99b3931ecb890760":[4,0,0,16,3,13], +"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea7f3c5f3d0ad4f1dfd3d783241d99db3f":[4,0,0,16,3,10], +"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1eab83be87e2b46a1081b4213c560c25426":[4,0,0,16,3,0], +"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1eac8eeadb10c436b739b7bb180d65b053a":[4,0,0,16,3,17], +"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1eace465d93bac433735d3cb4f4256743ea":[4,0,0,16,3,6], +"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ead428622f610ad7bf11f8c881108a2430":[4,0,0,16,3,5], +"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1eadeaee2994eba2268fbf880938d75ce9e":[4,0,0,16,3,15], +"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1eae58f8ebc9e8233810e0507dcc8cf3de5":[4,0,0,16,3,7], +"ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1eaf73e60bfa3d2bfe988000062e4a6fb5a":[4,0,0,16,3,2], +"ciot__ifaces_8h_source.html":[4,0,0,16], +"ciot__lib_8h.html":[4,0,0,17], +"ciot__lib_8h_source.html":[4,0,0,17], +"ciot__log_8h.html":[2,0,2], +"ciot__mqttc_8h.html":[4,0,0,19], +"ciot__mqttc_8h.html#a1952c9049b9ddd9b40368e332dec8374":[4,0,0,19,2], +"ciot__mqttc_8h.html#a19c183447b4f862cb53f6ae127a80db0":[4,0,0,19,9], +"ciot__mqttc_8h.html#a366b460dc8e7ec1e3f89c9247882842a":[4,0,0,19,1], +"ciot__mqttc_8h.html#a55aab38479c4242b37397c51e15dad37":[4,0,0,19,6], +"ciot__mqttc_8h.html#aa04b6f015e9bbc8ab614027c460f899d":[4,0,0,19,8], +"ciot__mqttc_8h.html#aa6ac15e5f6cfb3346cff3247dd25c279":[4,0,0,19,4], +"ciot__mqttc_8h.html#aba9394c6a08cb0c2087ffdc537f75125":[4,0,0,19,5], +"ciot__mqttc_8h.html#ad7bcb714dbb489d3b8508cb7acf72b27":[4,0,0,19,7], +"ciot__mqttc_8h.html#aee005c5cae5b325548b381df58613742":[4,0,0,19,11], +"ciot__mqttc_8h.html#af81da24c4d251706f5f901e810752597":[4,0,0,19,10], +"ciot__mqttc_8h.html#afc1eb0a89e9bcff163827db2fb32b898":[4,0,0,19,3], +"ciot__mqttc_8h.html#afc1eb0a89e9bcff163827db2fb32b898a6cefc05e924cb723d9f72f2e674e5ef7":[4,0,0,19,3,2], +"ciot__mqttc_8h.html#afc1eb0a89e9bcff163827db2fb32b898a7fdb135e2a3ea11cafe0449a29a16d0d":[4,0,0,19,3,0], +"ciot__mqttc_8h.html#afc1eb0a89e9bcff163827db2fb32b898aa028c2dfe1e1b2a3a3efb1cc698a6b68":[4,0,0,19,3,1], +"ciot__mqttc_8h_source.html":[4,0,0,19], +"ciot__mqttc__types_8h.html":[2,3,4], +"ciot__msg__types_8h.html":[4,0,0,0,9], +"ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cb":[4,0,0,0,9,9], +"ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba07a7987e3b4a2f82eb41213b25068458":[4,0,0,0,9,9,7], +"ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba168673ee4b498d56024c3c46d5d6d53a":[4,0,0,0,9,9,5], +"ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba2161a50e60627d09f6278819d93cb4f8":[4,0,0,0,9,9,8], +"ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba5ca3e5de0b2ddc69c53654a0d13d713a":[4,0,0,0,9,9,6], +"ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba65c33be2457e343493460c29d3b03e0e":[4,0,0,0,9,9,0], +"ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba8ebce537fc418c0a5dc2231de2660d5e":[4,0,0,0,9,9,4], +"ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba9ca32ac07611a36e17181e4e2dee5ba7":[4,0,0,0,9,9,3], +"ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cbacada4954ca221fdc25c2c478625d6a9e":[4,0,0,0,9,9,1], +"ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cbae01a23d279f8674eb8e7fbc4c8b30a28":[4,0,0,0,9,9,2], +"ciot__msg__types_8h.html#a3c8f8294a63f46a7a7ed043ba8dacc93":[4,0,0,0,9,7], +"ciot__msg__types_8h.html#a9ba863166c0f0c740fef8994c7f21598":[4,0,0,0,9,5], +"ciot__msg__types_8h.html#aa577da47450d2b604f58ee6e957c7b1a":[4,0,0,0,9,6], +"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608":[4,0,0,0,9,8], +"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a08b41fe63e5a4b8ea4710adaac89f8b8":[4,0,0,0,9,8,12], +"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a22891d22cf46370531f6eb833b037235":[4,0,0,0,9,8,11], +"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a2c76f658f22fa29ed49d56c697215918":[4,0,0,0,9,8,5], +"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a3065d35cd0a10d31382d9c5b38249ca5":[4,0,0,0,9,8,17], +"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a327aeede0ef7fba282b1911dfa988d28":[4,0,0,0,9,8,3], +"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a53e8d8ba26c3663e0a7f9d8a70aa2770":[4,0,0,0,9,8,8], +"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a613cf065591c3e8300a4fe009a044aec":[4,0,0,0,9,8,2], +"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a67c77e20c41ae475451f4f01a3b2fdb4":[4,0,0,0,9,8,19], +"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a75837371354fe9353d77acc9fc49ee6d":[4,0,0,0,9,8,0], +"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a7ca4cc3f201a9ce47e80e5e6685e6fd5":[4,0,0,0,9,8,9], +"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a9d8b8db1db47ef5baf0a7894264e364c":[4,0,0,0,9,8,10], +"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608aa3dce94aa5a8e8a6c1a0592f59cdb747":[4,0,0,0,9,8,7], +"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608ab013ddfd461842f9031bed420c5720bc":[4,0,0,0,9,8,6], +"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608ab3a691e3ca526bb17bd62366d83bbcd7":[4,0,0,0,9,8,4], +"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608ab91f2d2aa5ecf13c79d0028a487584ca":[4,0,0,0,9,8,16], +"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608acf86ce5e05bba2ba30d275ce78438806":[4,0,0,0,9,8,14], +"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608ad57b9f27f19fb7d16c08c4857ae7291d":[4,0,0,0,9,8,1], +"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608ad89e327f418602211b2202c414291750":[4,0,0,0,9,8,15], +"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608ae07a8e59d7924852ed66075eefcd1c3d":[4,0,0,0,9,8,13], +"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608aff200c36869c4d69a1cb8edf4d45202a":[4,0,0,0,9,8,18], +"ciot__msg__types_8h.html#ad74fa5c942e63dc4c806fbfd6414db45":[4,0,0,0,9,10], +"ciot__msg__types_8h_source.html":[4,0,0,0,9], +"ciot__nrf__dfu_8h.html":[2,4,3], +"ciot__ntp_8h.html":[2,4,4], +"ciot__ntp__types_8h.html":[2,3,5], +"ciot__opcuas_8h.html":[2,4,5], +"ciot__opcuas__types_8h.html":[2,3,6], +"ciot__ota_8h.html":[2,4,6], +"ciot__ota__types_8h.html":[2,3,7], +"ciot__s_8h.html":[2,5,0], +"ciot__serializer_8h.html":[2,5,1], +"ciot__slip_8h.html":[4,0,0,26], +"ciot__slip_8h.html#a13b065e0e7ef6b2b98aa59e136929654":[4,0,0,26,2], +"ciot__slip_8h.html#a290de618dbd8ce83c3c43ec2e9c393a1":[4,0,0,26,1], +"ciot__slip_8h.html#a290de618dbd8ce83c3c43ec2e9c393a1a6eac8f93f0b78328812025bc26c2515e":[4,0,0,26,1,0], +"ciot__slip_8h.html#a290de618dbd8ce83c3c43ec2e9c393a1a788289583399742eda50d8bd9e88fb06":[4,0,0,26,1,2], +"ciot__slip_8h.html#a290de618dbd8ce83c3c43ec2e9c393a1af7e80dc7da481b7a5541ba44c10a1834":[4,0,0,26,1,1], +"ciot__slip_8h.html#a31ccb83d79170663a4a74c3a073b6d45":[4,0,0,26,3], +"ciot__slip_8h_source.html":[4,0,0,26], +"ciot__storage_8h.html":[2,2,4], +"ciot__storage__types_8h.html":[2,1,3], +"ciot__sys_8h.html":[2,4,7], +"ciot__sys__types_8h.html":[2,3,8], +"ciot__tcp_8h.html":[2,2,5], +"ciot__tcp__types_8h.html":[2,1,4], +"ciot__timer_8h.html":[2,5,2], +"ciot__types_8h.html":[4,0,0,0,16], +"ciot__types_8h.html#a03b3036727499342240dda078a6c69a3":[4,0,0,0,16,10], +"ciot__types_8h.html#a03b3036727499342240dda078a6c69a3a5bfc3b86697b77d7813e8f762e92b4ea":[4,0,0,0,16,10,0], +"ciot__types_8h.html#a03b3036727499342240dda078a6c69a3aab488cccdc1e9e5009926c15766ebf2c":[4,0,0,0,16,10,3] }; diff --git a/docs/navtreeindex1.js b/docs/navtreeindex1.js index 408b2f2..0285141 100644 --- a/docs/navtreeindex1.js +++ b/docs/navtreeindex1.js @@ -1,253 +1,253 @@ var NAVTREEINDEX1 = { -"ciot__log_8h.html#a1576040bae89b4db49ec4fa591cc058f":[2,0,0,18,4], -"ciot__log_8h.html#a1e7ff68dc9676c1a06338c170fd52dbc":[2,0,0,18,7], -"ciot__log_8h.html#a2707adc47298b0e7b3a09627ff04a020":[2,0,0,18,5], -"ciot__log_8h.html#a2907f8630cc580826a1ec21930c511d3":[2,0,0,18,3], -"ciot__log_8h.html#a2f7e6eb84773996a18fc43ccada98dc4":[2,0,0,18,2], -"ciot__log_8h.html#a399d3388116ce0479b91f0fdb5b56432":[2,0,0,18,10], -"ciot__log_8h.html#a399d3388116ce0479b91f0fdb5b56432a05dd8f3fe5ca95cc5e1da78333e58356":[2,0,0,18,10,1], -"ciot__log_8h.html#a399d3388116ce0479b91f0fdb5b56432a1c854b20829665b670feca84ed8f0260":[2,0,0,18,10,5], -"ciot__log_8h.html#a399d3388116ce0479b91f0fdb5b56432a2acc86c1f4f9cc2ff727d0d59f235162":[2,0,0,18,10,4], -"ciot__log_8h.html#a399d3388116ce0479b91f0fdb5b56432a5f57b5ccf4a45d424a48b7edfc305a6b":[2,0,0,18,10,3], -"ciot__log_8h.html#a399d3388116ce0479b91f0fdb5b56432a77fe66f0cf4772e333512b1f009c460d":[2,0,0,18,10,0], -"ciot__log_8h.html#a399d3388116ce0479b91f0fdb5b56432af9392e21b089c518e0a9dc1be3d4a799":[2,0,0,18,10,2], -"ciot__log_8h.html#a95d4dba62da56d115efe881b38c73da6":[2,0,0,18,8], -"ciot__log_8h.html#a9e6947da6e5c522adbadd7dea5242e5f":[2,0,0,18,6], -"ciot__log_8h.html#af003b1fbcac6bc1f6fb1c90d3e89f1ac":[2,0,0,18,1], -"ciot__log_8h.html#af095bb48295769c5ebc399890c12cb93":[2,0,0,18,9], -"ciot__log_8h_source.html":[2,0,0,18], -"ciot__mqttc_8h.html":[2,0,0,19], -"ciot__mqttc_8h.html#a1952c9049b9ddd9b40368e332dec8374":[2,0,0,19,2], -"ciot__mqttc_8h.html#a19c183447b4f862cb53f6ae127a80db0":[2,0,0,19,9], -"ciot__mqttc_8h.html#a366b460dc8e7ec1e3f89c9247882842a":[2,0,0,19,1], -"ciot__mqttc_8h.html#a55aab38479c4242b37397c51e15dad37":[2,0,0,19,6], -"ciot__mqttc_8h.html#aa04b6f015e9bbc8ab614027c460f899d":[2,0,0,19,8], -"ciot__mqttc_8h.html#aa6ac15e5f6cfb3346cff3247dd25c279":[2,0,0,19,4], -"ciot__mqttc_8h.html#aba9394c6a08cb0c2087ffdc537f75125":[2,0,0,19,5], -"ciot__mqttc_8h.html#ad7bcb714dbb489d3b8508cb7acf72b27":[2,0,0,19,7], -"ciot__mqttc_8h.html#aee005c5cae5b325548b381df58613742":[2,0,0,19,11], -"ciot__mqttc_8h.html#af81da24c4d251706f5f901e810752597":[2,0,0,19,10], -"ciot__mqttc_8h.html#afc1eb0a89e9bcff163827db2fb32b898":[2,0,0,19,3], -"ciot__mqttc_8h.html#afc1eb0a89e9bcff163827db2fb32b898a6cefc05e924cb723d9f72f2e674e5ef7":[2,0,0,19,3,2], -"ciot__mqttc_8h.html#afc1eb0a89e9bcff163827db2fb32b898a7fdb135e2a3ea11cafe0449a29a16d0d":[2,0,0,19,3,0], -"ciot__mqttc_8h.html#afc1eb0a89e9bcff163827db2fb32b898aa028c2dfe1e1b2a3a3efb1cc698a6b68":[2,0,0,19,3,1], -"ciot__mqttc_8h_source.html":[2,0,0,19], -"ciot__mqttc__types_8h.html":[0,2,4], -"ciot__msg__types_8h.html":[2,0,0,0,9], -"ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cb":[2,0,0,0,9,9], -"ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba07a7987e3b4a2f82eb41213b25068458":[2,0,0,0,9,9,7], -"ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba168673ee4b498d56024c3c46d5d6d53a":[2,0,0,0,9,9,5], -"ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba2161a50e60627d09f6278819d93cb4f8":[2,0,0,0,9,9,8], -"ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba5ca3e5de0b2ddc69c53654a0d13d713a":[2,0,0,0,9,9,6], -"ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba65c33be2457e343493460c29d3b03e0e":[2,0,0,0,9,9,0], -"ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba8ebce537fc418c0a5dc2231de2660d5e":[2,0,0,0,9,9,4], -"ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba9ca32ac07611a36e17181e4e2dee5ba7":[2,0,0,0,9,9,3], -"ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cbacada4954ca221fdc25c2c478625d6a9e":[2,0,0,0,9,9,1], -"ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cbae01a23d279f8674eb8e7fbc4c8b30a28":[2,0,0,0,9,9,2], -"ciot__msg__types_8h.html#a3c8f8294a63f46a7a7ed043ba8dacc93":[2,0,0,0,9,7], -"ciot__msg__types_8h.html#a9ba863166c0f0c740fef8994c7f21598":[2,0,0,0,9,5], -"ciot__msg__types_8h.html#aa577da47450d2b604f58ee6e957c7b1a":[2,0,0,0,9,6], -"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608":[2,0,0,0,9,8], -"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a08b41fe63e5a4b8ea4710adaac89f8b8":[2,0,0,0,9,8,12], -"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a22891d22cf46370531f6eb833b037235":[2,0,0,0,9,8,11], -"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a2c76f658f22fa29ed49d56c697215918":[2,0,0,0,9,8,5], -"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a3065d35cd0a10d31382d9c5b38249ca5":[2,0,0,0,9,8,17], -"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a327aeede0ef7fba282b1911dfa988d28":[2,0,0,0,9,8,3], -"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a53e8d8ba26c3663e0a7f9d8a70aa2770":[2,0,0,0,9,8,8], -"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a613cf065591c3e8300a4fe009a044aec":[2,0,0,0,9,8,2], -"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a67c77e20c41ae475451f4f01a3b2fdb4":[2,0,0,0,9,8,19], -"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a75837371354fe9353d77acc9fc49ee6d":[2,0,0,0,9,8,0], -"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a7ca4cc3f201a9ce47e80e5e6685e6fd5":[2,0,0,0,9,8,9], -"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a9d8b8db1db47ef5baf0a7894264e364c":[2,0,0,0,9,8,10], -"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608aa3dce94aa5a8e8a6c1a0592f59cdb747":[2,0,0,0,9,8,7], -"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608ab013ddfd461842f9031bed420c5720bc":[2,0,0,0,9,8,6], -"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608ab3a691e3ca526bb17bd62366d83bbcd7":[2,0,0,0,9,8,4], -"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608ab91f2d2aa5ecf13c79d0028a487584ca":[2,0,0,0,9,8,16], -"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608acf86ce5e05bba2ba30d275ce78438806":[2,0,0,0,9,8,14], -"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608ad57b9f27f19fb7d16c08c4857ae7291d":[2,0,0,0,9,8,1], -"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608ad89e327f418602211b2202c414291750":[2,0,0,0,9,8,15], -"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608ae07a8e59d7924852ed66075eefcd1c3d":[2,0,0,0,9,8,13], -"ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608aff200c36869c4d69a1cb8edf4d45202a":[2,0,0,0,9,8,18], -"ciot__msg__types_8h.html#ad74fa5c942e63dc4c806fbfd6414db45":[2,0,0,0,9,10], -"ciot__msg__types_8h_source.html":[2,0,0,0,9], -"ciot__nrf__dfu_8h.html":[0,3,3], -"ciot__ntp_8h.html":[0,3,4], -"ciot__ntp__types_8h.html":[0,2,5], -"ciot__opcuas_8h.html":[0,3,5], -"ciot__opcuas__types_8h.html":[0,2,6], -"ciot__ota_8h.html":[0,3,6], -"ciot__ota__types_8h.html":[0,2,7], -"ciot__s_8h.html":[2,0,0,24], -"ciot__s_8h.html#a00fdcbb4aebbad8f80bf1bf1e732a9cb":[2,0,0,24,14], -"ciot__s_8h.html#a061479d073e577bea43e5f500abb7fa3":[2,0,0,24,9], -"ciot__s_8h.html#a08b8e7174adadc6c5d23fd15348fa0f3":[2,0,0,24,2], -"ciot__s_8h.html#a0c8d7eee4ad76474e1a795d539af7489":[2,0,0,24,6], -"ciot__s_8h.html#a14867c1134859ec897f2ecf11af41793":[2,0,0,24,15], -"ciot__s_8h.html#a2f0fd14f043350f0bb586e527d72d4ca":[2,0,0,24,1], -"ciot__s_8h.html#a451d99c99313941fbfef451a7a830341":[2,0,0,24,4], -"ciot__s_8h.html#a454cbf8a51c076e297148719f8ad4f03":[2,0,0,24,5], -"ciot__s_8h.html#a47e024d9119662842e62f2b993b7511c":[2,0,0,24,12], -"ciot__s_8h.html#a4d7f4cef42ccdb61d1ab7dd6adafc391":[2,0,0,24,13], -"ciot__s_8h.html#a4ed3963449a508259fadfdd0842d7c5d":[2,0,0,24,8], -"ciot__s_8h.html#a4fb0c1250873e751db7adffc9620b776":[2,0,0,24,10], -"ciot__s_8h.html#a958b5b763c873fb977a8cf2dc15dd69f":[2,0,0,24,3], -"ciot__s_8h.html#a9e2f0df6038e3db27a8f0fa1724cfa74":[2,0,0,24,7], -"ciot__s_8h.html#abf179a683c9ec625bcd80eeffc5225f2":[2,0,0,24,11], -"ciot__s_8h.html#abf179a683c9ec625bcd80eeffc5225f2a2221c4f133239b0c83c498778a24aada":[2,0,0,24,11,3], -"ciot__s_8h.html#abf179a683c9ec625bcd80eeffc5225f2a51cd1ce663428588f8aaa47f17822b12":[2,0,0,24,11,2], -"ciot__s_8h.html#abf179a683c9ec625bcd80eeffc5225f2a7aadbf38530370cb4ba0d27b44a54306":[2,0,0,24,11,0], -"ciot__s_8h.html#abf179a683c9ec625bcd80eeffc5225f2ae053def601f16100aeb60fb82b3c65f8":[2,0,0,24,11,1], -"ciot__s_8h_source.html":[2,0,0,24], -"ciot__serializer_8h.html":[2,0,0,25], -"ciot__serializer_8h.html#a2e6ad3f65b3277042564ae00d1ea9522":[2,0,0,25,6], -"ciot__serializer_8h.html#a3c892bb829d28086be610a8f850066f7":[2,0,0,25,4], -"ciot__serializer_8h.html#acce586f0c1adcf56d07b5c09e1df2c17":[2,0,0,25,7], -"ciot__serializer_8h.html#ad4e6ec6f4f6b2794af860108e701a284":[2,0,0,25,1], -"ciot__serializer_8h.html#ad5f4d77f37d8f97c45e7ac3684c6240d":[2,0,0,25,3], -"ciot__serializer_8h.html#ad996f78559d787df7e8f20e6e2c837ac":[2,0,0,25,2], -"ciot__serializer_8h.html#ae62dc58498158eda5c753d6c3397702b":[2,0,0,25,5], -"ciot__serializer_8h.html#ae62dc58498158eda5c753d6c3397702ba0f0db27db7f111da963526dfface091e":[2,0,0,25,5,1], -"ciot__serializer_8h.html#ae62dc58498158eda5c753d6c3397702ba1628b71e70eb2dcf89b24e63d9d86289":[2,0,0,25,5,0], -"ciot__serializer_8h.html#ae62dc58498158eda5c753d6c3397702ba6d5cb551c26a7529e01e27c64dbc2a7a":[2,0,0,25,5,2], -"ciot__serializer_8h_source.html":[2,0,0,25], -"ciot__slip_8h.html":[2,0,0,26], -"ciot__slip_8h.html#a13b065e0e7ef6b2b98aa59e136929654":[2,0,0,26,2], -"ciot__slip_8h.html#a290de618dbd8ce83c3c43ec2e9c393a1":[2,0,0,26,1], -"ciot__slip_8h.html#a290de618dbd8ce83c3c43ec2e9c393a1a6eac8f93f0b78328812025bc26c2515e":[2,0,0,26,1,0], -"ciot__slip_8h.html#a290de618dbd8ce83c3c43ec2e9c393a1a788289583399742eda50d8bd9e88fb06":[2,0,0,26,1,2], -"ciot__slip_8h.html#a290de618dbd8ce83c3c43ec2e9c393a1af7e80dc7da481b7a5541ba44c10a1834":[2,0,0,26,1,1], -"ciot__slip_8h.html#a31ccb83d79170663a4a74c3a073b6d45":[2,0,0,26,3], -"ciot__slip_8h_source.html":[2,0,0,26], -"ciot__storage_8h.html":[0,1,4], -"ciot__storage__types_8h.html":[0,0,3], -"ciot__sys_8h.html":[0,3,7], -"ciot__sys__types_8h.html":[0,2,8], -"ciot__tcp_8h.html":[0,1,5], -"ciot__tcp__types_8h.html":[0,0,4], -"ciot__timer_8h.html":[2,0,0,30], -"ciot__timer_8h.html#a8d0e55ce9c38fa27cb6cbf0adf38ea85":[2,0,0,30,5], -"ciot__timer_8h.html#ade8ee212546acd7193d5b55b803f64ac":[2,0,0,30,4], -"ciot__timer_8h.html#ae019e659b7b831fe1d18d0cc25a2947a":[2,0,0,30,1], -"ciot__timer_8h.html#ae11839d456d62e3e384c7122812fcefc":[2,0,0,30,2], -"ciot__timer_8h.html#aed2d654f1ff37f47c42c87a8de300b19":[2,0,0,30,3], -"ciot__timer_8h_source.html":[2,0,0,30], -"ciot__types_8h.html":[2,0,0,0,16], -"ciot__types_8h.html#a03b3036727499342240dda078a6c69a3":[2,0,0,0,16,10], -"ciot__types_8h.html#a03b3036727499342240dda078a6c69a3a5bfc3b86697b77d7813e8f762e92b4ea":[2,0,0,0,16,10,0], -"ciot__types_8h.html#a03b3036727499342240dda078a6c69a3aab488cccdc1e9e5009926c15766ebf2c":[2,0,0,0,16,10,3], -"ciot__types_8h.html#a03b3036727499342240dda078a6c69a3ad5565cc1fd1218de2af439243c69aad9":[2,0,0,0,16,10,2], -"ciot__types_8h.html#a03b3036727499342240dda078a6c69a3aede746db7e9dbee372ee79789d83fbc0":[2,0,0,0,16,10,1], -"ciot__types_8h.html#a95856e0042526f191649883a3a46dfe2":[2,0,0,0,16,11], -"ciot__types_8h.html#a95856e0042526f191649883a3a46dfe2a073c800d62d834a591038d5894ad81a1":[2,0,0,0,16,11,2], -"ciot__types_8h.html#a95856e0042526f191649883a3a46dfe2a39d9db01f73111913fe49087fc809be9":[2,0,0,0,16,11,1], -"ciot__types_8h.html#a95856e0042526f191649883a3a46dfe2a7b1b50cf522d03e22820f35c9b615dbc":[2,0,0,0,16,11,0], -"ciot__types_8h_source.html":[2,0,0,0,16], -"ciot__uart_8h.html":[0,1,6], -"ciot__uart__types_8h.html":[0,0,5], -"ciot__usb_8h.html":[0,1,7], -"ciot__usb__types_8h.html":[0,0,6], -"ciot__utils_8h.html":[2,0,0,33], -"ciot__utils_8h.html#a3c925cbabcbf9b62b099a9c5d5a054ad":[2,0,0,33,1], -"ciot__utils_8h.html#aa302b5f9f162b83148b624c132ff56a6":[2,0,0,33,0], -"ciot__utils_8h_source.html":[2,0,0,33], -"ciot__wifi_8h.html":[0,1,8], -"ciot__wifi__types_8h.html":[0,0,7], -"classes.html":[1,1], -"dir_0ad255a918b7fba820a1ddafed6fa637.html":[2,0,0,0], -"dir_d44c64559bbebec7f509842c48db8b23.html":[2,0,0], -"files.html":[2,0], -"functions.html":[1,2,0,0], -"functions.html":[1,2,0], -"functions_b.html":[1,2,0,1], -"functions_c.html":[1,2,0,2], -"functions_d.html":[1,2,0,3], -"functions_e.html":[1,2,0,4], -"functions_f.html":[1,2,0,5], -"functions_g.html":[1,2,0,6], -"functions_h.html":[1,2,0,7], -"functions_i.html":[1,2,0,8], -"functions_l.html":[1,2,0,9], -"functions_m.html":[1,2,0,10], -"functions_n.html":[1,2,0,11], -"functions_o.html":[1,2,0,12], -"functions_p.html":[1,2,0,13], -"functions_q.html":[1,2,0,14], -"functions_r.html":[1,2,0,15], -"functions_s.html":[1,2,0,16], -"functions_t.html":[1,2,0,17], -"functions_u.html":[1,2,0,18], -"functions_v.html":[1,2,0,19], -"functions_vars.html":[1,2,1,0], -"functions_vars.html":[1,2,1], -"functions_vars_b.html":[1,2,1,1], -"functions_vars_c.html":[1,2,1,2], -"functions_vars_d.html":[1,2,1,3], -"functions_vars_e.html":[1,2,1,4], -"functions_vars_f.html":[1,2,1,5], -"functions_vars_g.html":[1,2,1,6], -"functions_vars_h.html":[1,2,1,7], -"functions_vars_i.html":[1,2,1,8], -"functions_vars_l.html":[1,2,1,9], -"functions_vars_m.html":[1,2,1,10], -"functions_vars_n.html":[1,2,1,11], -"functions_vars_o.html":[1,2,1,12], -"functions_vars_p.html":[1,2,1,13], -"functions_vars_q.html":[1,2,1,14], -"functions_vars_r.html":[1,2,1,15], -"functions_vars_s.html":[1,2,1,16], -"functions_vars_t.html":[1,2,1,17], -"functions_vars_u.html":[1,2,1,18], -"functions_vars_v.html":[1,2,1,19], -"functions_vars_w.html":[1,2,1,20], -"functions_w.html":[1,2,0,20], -"globals.html":[2,1,0], -"globals.html":[2,1,0,0], -"globals_c.html":[2,1,0,1], -"globals_defs.html":[2,1,5], -"globals_enum.html":[2,1,3], -"globals_eval.html":[2,1,4], -"globals_eval.html":[2,1,4,0], -"globals_eval_h.html":[2,1,4,1], -"globals_eval_n.html":[2,1,4,2], -"globals_func.html":[2,1,1], -"globals_h.html":[2,1,0,2], -"globals_n.html":[2,1,0,3], -"globals_type.html":[2,1,2], -"group__hardware__interfaces.html":[0,1], -"group__hardware__types.html":[0,0], -"group__software__interfaces.html":[0,3], -"group__software__types.html":[0,2], +"ciot__types_8h.html#a03b3036727499342240dda078a6c69a3ad5565cc1fd1218de2af439243c69aad9":[4,0,0,0,16,10,2], +"ciot__types_8h.html#a03b3036727499342240dda078a6c69a3aede746db7e9dbee372ee79789d83fbc0":[4,0,0,0,16,10,1], +"ciot__types_8h.html#a95856e0042526f191649883a3a46dfe2":[4,0,0,0,16,11], +"ciot__types_8h.html#a95856e0042526f191649883a3a46dfe2a073c800d62d834a591038d5894ad81a1":[4,0,0,0,16,11,2], +"ciot__types_8h.html#a95856e0042526f191649883a3a46dfe2a39d9db01f73111913fe49087fc809be9":[4,0,0,0,16,11,1], +"ciot__types_8h.html#a95856e0042526f191649883a3a46dfe2a7b1b50cf522d03e22820f35c9b615dbc":[4,0,0,0,16,11,0], +"ciot__types_8h_source.html":[4,0,0,0,16], +"ciot__uart_8h.html":[2,2,6], +"ciot__uart__types_8h.html":[2,1,5], +"ciot__usb_8h.html":[2,2,7], +"ciot__usb__types_8h.html":[2,1,6], +"ciot__utils_8h.html":[4,0,0,33], +"ciot__utils_8h.html#a3c925cbabcbf9b62b099a9c5d5a054ad":[4,0,0,33,1], +"ciot__utils_8h.html#aa302b5f9f162b83148b624c132ff56a6":[4,0,0,33,0], +"ciot__utils_8h_source.html":[4,0,0,33], +"ciot__wifi_8h.html":[2,2,8], +"ciot__wifi__types_8h.html":[2,1,7], +"classes.html":[3,1], +"dir_0ad255a918b7fba820a1ddafed6fa637.html":[4,0,0,0], +"dir_d44c64559bbebec7f509842c48db8b23.html":[4,0,0], +"files.html":[4,0], +"functions.html":[3,2,0], +"functions.html":[3,2,0,0], +"functions_b.html":[3,2,0,1], +"functions_c.html":[3,2,0,2], +"functions_d.html":[3,2,0,3], +"functions_e.html":[3,2,0,4], +"functions_f.html":[3,2,0,5], +"functions_g.html":[3,2,0,6], +"functions_h.html":[3,2,0,7], +"functions_i.html":[3,2,0,8], +"functions_l.html":[3,2,0,9], +"functions_m.html":[3,2,0,10], +"functions_n.html":[3,2,0,11], +"functions_o.html":[3,2,0,12], +"functions_p.html":[3,2,0,13], +"functions_q.html":[3,2,0,14], +"functions_r.html":[3,2,0,15], +"functions_s.html":[3,2,0,16], +"functions_t.html":[3,2,0,17], +"functions_u.html":[3,2,0,18], +"functions_v.html":[3,2,0,19], +"functions_vars.html":[3,2,1,0], +"functions_vars.html":[3,2,1], +"functions_vars_b.html":[3,2,1,1], +"functions_vars_c.html":[3,2,1,2], +"functions_vars_d.html":[3,2,1,3], +"functions_vars_e.html":[3,2,1,4], +"functions_vars_f.html":[3,2,1,5], +"functions_vars_g.html":[3,2,1,6], +"functions_vars_h.html":[3,2,1,7], +"functions_vars_i.html":[3,2,1,8], +"functions_vars_l.html":[3,2,1,9], +"functions_vars_m.html":[3,2,1,10], +"functions_vars_n.html":[3,2,1,11], +"functions_vars_o.html":[3,2,1,12], +"functions_vars_p.html":[3,2,1,13], +"functions_vars_q.html":[3,2,1,14], +"functions_vars_r.html":[3,2,1,15], +"functions_vars_s.html":[3,2,1,16], +"functions_vars_t.html":[3,2,1,17], +"functions_vars_u.html":[3,2,1,18], +"functions_vars_v.html":[3,2,1,19], +"functions_vars_w.html":[3,2,1,20], +"functions_w.html":[3,2,0,20], +"globals.html":[4,1,0,0], +"globals.html":[4,1,0], +"globals_c.html":[4,1,0,1], +"globals_defs.html":[4,1,5], +"globals_enum.html":[4,1,3], +"globals_eval.html":[4,1,4,0], +"globals_eval.html":[4,1,4], +"globals_eval_h.html":[4,1,4,1], +"globals_eval_n.html":[4,1,4,2], +"globals_func.html":[4,1,1], +"globals_h.html":[4,1,0,2], +"globals_n.html":[4,1,0,3], +"globals_type.html":[4,1,2], +"group__core.html":[2,0], +"group__hardware__interfaces.html":[2,2], +"group__hardware__types.html":[2,1], +"group__software__interfaces.html":[2,4], +"group__software__types.html":[2,3], +"group__utils.html":[2,5], "index.html":[], +"index.html":[0], +"index.html#intro":[0,0], +"index.html#notes":[0,1], +"index.html#requirements":[0,2], +"mainpage_8h.html":[4,0,0,35], +"mainpage_8h_source.html":[4,0,0,35], "pages.html":[], -"structciot__ble__cfg__t.html":[1,0,0], -"structciot__ble__cfg__t.html#a2f32c75fb4bc7ba39243ef4a9f8eacc1":[1,0,0,0], -"structciot__ble__ifaces.html":[1,0,2], -"structciot__ble__ifaces.html#a9ef3a8d93d750f948c6a3db1563132b4":[1,0,2,0], -"structciot__ble__info__t.html":[1,0,3], -"structciot__ble__info__t.html#a21008d923a4d8cacdc7622aae81197aa":[1,0,3,1], -"structciot__ble__info__t.html#a42c07f83a6226da7e6271b3f070ac0d7":[1,0,3,0], -"structciot__ble__req__t.html":[1,0,5], -"structciot__ble__req__t.html#a1387b7c38bc20d7cf6308e7cbecff167":[1,0,5,1], -"structciot__ble__req__t.html#af05fffb7425971f74862815fe4169b7d":[1,0,5,0], -"structciot__ble__scn__adv__info__t.html":[1,0,6], -"structciot__ble__scn__adv__info__t.html#a2f32c75fb4bc7ba39243ef4a9f8eacc1":[1,0,6,0], -"structciot__ble__scn__adv__info__t.html#a3b962e67ba74725bd60ca3c29f785abe":[1,0,6,1], -"structciot__ble__scn__cfg__t.html":[1,0,7], -"structciot__ble__scn__cfg__t.html#a05c940dbc220f5a723afd70071aebff8":[1,0,7,0], -"structciot__ble__scn__cfg__t.html#a6b307b5083cf92aca29549d780b44bd5":[1,0,7,5], -"structciot__ble__scn__cfg__t.html#a6c52a3d605c056768b59164ce8df8334":[1,0,7,2], -"structciot__ble__scn__cfg__t.html#a7f1ad43d3bf79b40bc39dbb5a6c3a5ae":[1,0,7,4], -"structciot__ble__scn__cfg__t.html#acb7bc06bed6f6408d719334fc41698c7":[1,0,7,3], -"structciot__ble__scn__cfg__t.html#ad44fdec90acd6e513033d8af6d0a7774":[1,0,7,1], -"structciot__ble__scn__req__t.html":[1,0,10], -"structciot__ble__scn__req__t.html#abc70ef515ab30b52d6a58e0c72ee3688":[1,0,10,1], -"structciot__ble__scn__req__t.html#ad255c0633c486a2ba3c6d2875d5a7fe5":[1,0,10,0], -"structciot__ble__scn__status__msg__t.html":[1,0,11], -"structciot__ble__scn__status__msg__t.html#aa7ad441170fdff42b419665a6652a09f":[1,0,11,1], -"structciot__ble__scn__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[1,0,11,0], -"structciot__ble__scn__status__t.html":[1,0,12], -"structciot__ble__scn__status__t.html#a18c05079c393f6c94543830ac5360604":[1,0,12,1], -"structciot__ble__scn__status__t.html#a9b3c50f82a67373296513704001266bb":[1,0,12,2], -"structciot__ble__scn__status__t.html#a9c267320c088f215b9649f93a8d955c1":[1,0,12,0] +"structciot__ble__cfg__t.html":[3,0,0], +"structciot__ble__cfg__t.html#a2f32c75fb4bc7ba39243ef4a9f8eacc1":[3,0,0,0], +"structciot__ble__ifaces.html":[3,0,2], +"structciot__ble__ifaces.html#a9ef3a8d93d750f948c6a3db1563132b4":[3,0,2,0], +"structciot__ble__info__t.html":[3,0,3], +"structciot__ble__info__t.html#a21008d923a4d8cacdc7622aae81197aa":[3,0,3,1], +"structciot__ble__info__t.html#a42c07f83a6226da7e6271b3f070ac0d7":[3,0,3,0], +"structciot__ble__req__t.html":[3,0,5], +"structciot__ble__req__t.html#a1387b7c38bc20d7cf6308e7cbecff167":[3,0,5,1], +"structciot__ble__req__t.html#af05fffb7425971f74862815fe4169b7d":[3,0,5,0], +"structciot__ble__scn__adv__info__t.html":[3,0,6], +"structciot__ble__scn__adv__info__t.html#a2f32c75fb4bc7ba39243ef4a9f8eacc1":[3,0,6,0], +"structciot__ble__scn__adv__info__t.html#a3b962e67ba74725bd60ca3c29f785abe":[3,0,6,1], +"structciot__ble__scn__cfg__t.html":[3,0,7], +"structciot__ble__scn__cfg__t.html#a05c940dbc220f5a723afd70071aebff8":[3,0,7,0], +"structciot__ble__scn__cfg__t.html#a6b307b5083cf92aca29549d780b44bd5":[3,0,7,5], +"structciot__ble__scn__cfg__t.html#a6c52a3d605c056768b59164ce8df8334":[3,0,7,2], +"structciot__ble__scn__cfg__t.html#a7f1ad43d3bf79b40bc39dbb5a6c3a5ae":[3,0,7,4], +"structciot__ble__scn__cfg__t.html#acb7bc06bed6f6408d719334fc41698c7":[3,0,7,3], +"structciot__ble__scn__cfg__t.html#ad44fdec90acd6e513033d8af6d0a7774":[3,0,7,1], +"structciot__ble__scn__req__t.html":[3,0,10], +"structciot__ble__scn__req__t.html#abc70ef515ab30b52d6a58e0c72ee3688":[3,0,10,1], +"structciot__ble__scn__req__t.html#ad255c0633c486a2ba3c6d2875d5a7fe5":[3,0,10,0], +"structciot__ble__scn__status__msg__t.html":[3,0,11], +"structciot__ble__scn__status__msg__t.html#aa7ad441170fdff42b419665a6652a09f":[3,0,11,1], +"structciot__ble__scn__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[3,0,11,0], +"structciot__ble__scn__status__t.html":[3,0,12], +"structciot__ble__scn__status__t.html#a18c05079c393f6c94543830ac5360604":[3,0,12,1], +"structciot__ble__scn__status__t.html#a9b3c50f82a67373296513704001266bb":[3,0,12,2], +"structciot__ble__scn__status__t.html#a9c267320c088f215b9649f93a8d955c1":[3,0,12,0], +"structciot__ble__status__msg__t.html":[3,0,13], +"structciot__ble__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[3,0,13,0], +"structciot__ble__status__msg__t.html#ae334becb4d9815b900b4cc43b5b9e49b":[3,0,13,1], +"structciot__ble__status__t.html":[3,0,14], +"structciot__ble__status__t.html#a18c05079c393f6c94543830ac5360604":[3,0,14,0], +"structciot__ble__status__t.html#a7a8ead7f37f7534cd955cbefd78043ce":[3,0,14,1], +"structciot__ble__status__t.html#aa5d08015bd3ed92217c40487bd42e433":[3,0,14,2], +"structciot__bridge__cfg__t.html":[3,0,15], +"structciot__bridge__cfg__t.html#a56eef1c57392c0c3144874c536410da1":[3,0,15,0], +"structciot__bridge__req__t.html":[3,0,18], +"structciot__bridge__req__t.html#a2ef6bd06414538f347bd722b6c4e064c":[3,0,18,1], +"structciot__bridge__req__t.html#a2f53bd6c51629c8cac0040526230998e":[3,0,18,0], +"structciot__bridge__status__msg__t.html":[3,0,19], +"structciot__bridge__status__msg__t.html#ab50a6b7e2887ecb6625b540edae99138":[3,0,19,1], +"structciot__bridge__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[3,0,19,0], +"structciot__bridge__status__t.html":[3,0,20], +"structciot__bridge__status__t.html#a75d538f4bd5c29ec545f1e37dae43f0e":[3,0,20,0], +"structciot__cfg.html":[3,0,21], +"structciot__cfg.html#a20302e2c99a60d3f612dba57e3f6333b":[3,0,21,1], +"structciot__cfg.html#a428c51338631d897b42d617f8db50410":[3,0,21,0], +"structciot__cfg.html#abcdb687b2ecbb5e6f9125c1ea584bb68":[3,0,21,2], +"structciot__data__model__cfg__t.html":[3,0,22], +"structciot__data__model__req__t.html":[3,0,25], +"structciot__data__model__req__t.html#a1cc8da72a2d329be4f8ff647f04884a0":[3,0,25,1], +"structciot__data__model__req__t.html#adbf84251d29a448cb6b3f3b4b402ebd0":[3,0,25,0], +"structciot__data__model__status__t.html":[3,0,26], +"structciot__data__model__status__t.html#a350c6a3720c9b7d1b3300e38430117e7":[3,0,26,0], +"structciot__dfu__cfg__t.html":[3,0,28], +"structciot__dfu__cfg__t.html#afa34dcfb78399ee2321831a93d8bce73":[3,0,28,0], +"structciot__dfu__req__t.html":[3,0,31], +"structciot__dfu__req__t.html#a1d31b0b31c62cd6a2a3c3b5193efd5f9":[3,0,31,0], +"structciot__dfu__req__t.html#adb76936a18a28e534879c6f9d6f07868":[3,0,31,1], +"structciot__dfu__status__msg__t.html":[3,0,32], +"structciot__dfu__status__msg__t.html#a9fb48f785812375d586c71a02b453e64":[3,0,32,1], +"structciot__dfu__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[3,0,32,0], +"structciot__dfu__status__t.html":[3,0,33], +"structciot__dfu__status__t.html#a11614f44ef4d939bdd984953346a7572":[3,0,33,1], +"structciot__dfu__status__t.html#a42539ea8650b094f66be7a689243c5ef":[3,0,33,3], +"structciot__dfu__status__t.html#a45a5b7c00a796a23f01673cef1dbe0a9":[3,0,33,0], +"structciot__dfu__status__t.html#a587d059d905fdf8cceb8643720812de4":[3,0,33,4], +"structciot__dfu__status__t.html#a990d41db67b3605c9184428e72edcea1":[3,0,33,2], +"structciot__eth__status__msg__t.html":[3,0,34], +"structciot__eth__status__msg__t.html#a290455b77155aab0d086fb8c69f76364":[3,0,34,1], +"structciot__eth__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[3,0,34,0], +"structciot__event__data.html":[3,0,35], +"structciot__event__data.html#a439227feff9d7f55384e8780cfc2eb82":[3,0,35,1], +"structciot__event__data.html#aaa8222c604b0b520bc2205ddcc42d855":[3,0,35,0], +"structciot__gpio__cfg__t.html":[3,0,36], +"structciot__gpio__cfg__t.html#a3feeb7044549691a36c39cc7c9b2ed2c":[3,0,36,1], +"structciot__gpio__cfg__t.html#a5ee68c0e31fa06f342fad371023bdc4e":[3,0,36,2], +"structciot__gpio__cfg__t.html#a7d76e224ede8a4fa709cc3a505a81975":[3,0,36,0], +"structciot__gpio__req__get__state__t.html":[3,0,39], +"structciot__gpio__req__get__state__t.html#a7beea8f6745c478347f244cadef771c2":[3,0,39,0], +"structciot__gpio__req__t.html":[3,0,40], +"structciot__gpio__req__t.html#a8742485122a2b9e44392d5d51ddc2076":[3,0,40,0], +"structciot__gpio__req__t.html#ab949dccfc732240972d8a27cf46f3e76":[3,0,40,1], +"structciot__gpio__state__info__t.html":[3,0,41], +"structciot__gpio__state__info__t.html#a7beea8f6745c478347f244cadef771c2":[3,0,41,0], +"structciot__gpio__state__info__t.html#a939fe9a85b37a0ce4a0701b655c799ea":[3,0,41,1], +"structciot__gpio__status__msg__t.html":[3,0,42], +"structciot__gpio__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[3,0,42,0], +"structciot__gpio__status__msg__t.html#af7b93aeb68c1648ccb2617ff8217e7b0":[3,0,42,1], +"structciot__gpio__status__t.html":[3,0,43], +"structciot__gpio__status__t.html#af557caa253a733e218e1e71c2a91eef4":[3,0,43,0], +"structciot__httpc__cfg__t.html":[3,0,44], +"structciot__httpc__cfg__t.html#a7e007ade3b5b7cfcc2ee06d35d52d4e1":[3,0,44,2], +"structciot__httpc__cfg__t.html#a7f1ad43d3bf79b40bc39dbb5a6c3a5ae":[3,0,44,1], +"structciot__httpc__cfg__t.html#aa37877f676f256b0b0989f354000a1bf":[3,0,44,3], +"structciot__httpc__cfg__t.html#ad10985b96579c7c2030050715bcad45d":[3,0,44,0], +"structciot__httpc__event__data.html":[3,0,47], +"structciot__httpc__event__data.html#ab135e5154c1828bef226a3df98ee3333":[3,0,47,1], +"structciot__httpc__event__data.html#ac824ce50cc96c6354577281b657d14b6":[3,0,47,0], +"structciot__httpc__req__send__t.html":[3,0,49], +"structciot__httpc__req__send__t.html#a301d9747f184171d8a1ee19d25d8e4ab":[3,0,49,1], +"structciot__httpc__req__send__t.html#a675a47f46ecd9d8ec01c738e04c28cbe":[3,0,49,2], +"structciot__httpc__req__send__t.html#afc1b0964d9fa89030c055cbc08315c58":[3,0,49,0], +"structciot__httpc__req__set__header__t.html":[3,0,50], +"structciot__httpc__req__set__header__t.html#a376ba7d15e815aecda5b6276de7ff292":[3,0,50,0], +"structciot__httpc__req__set__header__t.html#a82c2b14036a5b80ae9b5a4a6e2812a44":[3,0,50,1], +"structciot__httpc__req__t.html":[3,0,51], +"structciot__httpc__req__t.html#a3623cfec7a7da849fd22ce7ec1c3e10f":[3,0,51,0], +"structciot__httpc__req__t.html#ac4330d2b9fc6473e00966f8dd66a477c":[3,0,51,1], +"structciot__httpc__status__msg__t.html":[3,0,52], +"structciot__httpc__status__msg__t.html#ac5c1eb82650b9d0161a399175c459ad3":[3,0,52,1], +"structciot__httpc__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[3,0,52,0], +"structciot__httpc__status__t.html":[3,0,53], +"structciot__httpc__status__t.html#a11614f44ef4d939bdd984953346a7572":[3,0,53,0], +"structciot__httpc__status__t.html#a37c663f5a0040d827e450c52efe59882":[3,0,53,1], +"structciot__https__cfg__t.html":[3,0,54], +"structciot__https__cfg__t.html#a63c89c04d1feae07ca35558055155ffb":[3,0,54,1], +"structciot__https__cfg__t.html#a98bcbc9e1ebf74ba486f246d76f5bac1":[3,0,54,2], +"structciot__https__cfg__t.html#aaf2deef29cfe3fe5b18f00f49ff23d42":[3,0,54,0], +"structciot__https__event.html":[3,0,56], +"structciot__https__event.html#af26174e3b6aead3c5f7d4deea8ea6fc0":[3,0,56,0], +"structciot__https__event__data.html":[3,0,57], +"structciot__https__event__data.html#ac824ce50cc96c6354577281b657d14b6":[3,0,57,0], +"structciot__https__event__data.html#ad31b04303ebf9721f2537ea359199783":[3,0,57,2], +"structciot__https__event__data.html#af63c670f07c4a0a799e8581e95d4810e":[3,0,57,1], +"structciot__https__req__t.html":[3,0,59], +"structciot__https__req__t.html#adf00e5263d183b9b74cd9dd06dd98856":[3,0,59,0], +"structciot__https__status__msg__t.html":[3,0,60], +"structciot__https__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[3,0,60,0], +"structciot__https__status__msg__t.html#ae71d44b4ec9b04f2b3eb183ae791f6ca":[3,0,60,1], +"structciot__https__status__t.html":[3,0,61], +"structciot__https__status__t.html#a11614f44ef4d939bdd984953346a7572":[3,0,61,0], +"structciot__https__status__t.html#a28c09b101362530d97e51b712b741f63":[3,0,61,1], +"structciot__iface.html":[3,0,62], +"structciot__iface.html#a3d19d97719cf13cda1f021cf5dbaabb6":[3,0,62,3], +"structciot__iface.html#a6c29272de72de0546f7cb703993eb1f5":[3,0,62,2], +"structciot__iface.html#a702f51681c5c1dd8d6ad5aaa41d80f29":[3,0,62,1], +"structciot__iface.html#a853cb7e7d6095705dfa3c0cef66ec736":[3,0,62,0], +"structciot__iface.html#ae1afa3b8277cc9c96f891782785c4b34":[3,0,62,4], +"structciot__iface__base.html":[3,0,63], +"structciot__iface__base.html#a6894fb208d021352bc4a53806a2a38dc":[3,0,63,0], +"structciot__iface__base.html#aa04a90d2225ba674bcdc0c62f4a78c2c":[3,0,63,3], +"structciot__iface__base.html#abd070cd5170ccae6d490974e511dd41b":[3,0,63,5], +"structciot__iface__base.html#ac0223aea9839f62092995675d1e38339":[3,0,63,6], +"structciot__iface__base.html#ac99445311cef9672f346b7a3ab22d879":[3,0,63,7], +"structciot__iface__base.html#ad0e5b143f45f5ccb026a527086ddb15f":[3,0,63,4], +"structciot__iface__base.html#add9af9569af79ec26dd741fb226b38ba":[3,0,63,2], +"structciot__iface__base.html#ae2b271bbc55ea5a64e70f8566010f2cb":[3,0,63,1], +"structciot__iface__base__data.html":[3,0,64], +"structciot__iface__base__data.html#aaba88b24a21a6c70c895c0d55f4a69a0":[3,0,64,1], +"structciot__iface__base__data.html#add9af9569af79ec26dd741fb226b38ba":[3,0,64,0], +"structciot__iface__cfg__t.html":[3,0,65], +"structciot__iface__event__t.html":[3,0,67], +"structciot__iface__event__t.html#a5cd16071ec4ec2b6bb4c625e53b07c5b":[3,0,67,2], +"structciot__iface__event__t.html#a6714610a8d6e593a48b14b3c5600fef0":[3,0,67,0] }; diff --git a/docs/navtreeindex2.js b/docs/navtreeindex2.js index 301fa22..de50edb 100644 --- a/docs/navtreeindex2.js +++ b/docs/navtreeindex2.js @@ -1,253 +1,253 @@ var NAVTREEINDEX2 = { -"structciot__ble__status__msg__t.html":[1,0,13], -"structciot__ble__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[1,0,13,0], -"structciot__ble__status__msg__t.html#ae334becb4d9815b900b4cc43b5b9e49b":[1,0,13,1], -"structciot__ble__status__t.html":[1,0,14], -"structciot__ble__status__t.html#a18c05079c393f6c94543830ac5360604":[1,0,14,0], -"structciot__ble__status__t.html#a7a8ead7f37f7534cd955cbefd78043ce":[1,0,14,1], -"structciot__ble__status__t.html#aa5d08015bd3ed92217c40487bd42e433":[1,0,14,2], -"structciot__bridge__cfg__t.html":[1,0,15], -"structciot__bridge__cfg__t.html#a56eef1c57392c0c3144874c536410da1":[1,0,15,0], -"structciot__bridge__req__t.html":[1,0,18], -"structciot__bridge__req__t.html#a2ef6bd06414538f347bd722b6c4e064c":[1,0,18,1], -"structciot__bridge__req__t.html#a2f53bd6c51629c8cac0040526230998e":[1,0,18,0], -"structciot__bridge__status__msg__t.html":[1,0,19], -"structciot__bridge__status__msg__t.html#ab50a6b7e2887ecb6625b540edae99138":[1,0,19,1], -"structciot__bridge__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[1,0,19,0], -"structciot__bridge__status__t.html":[1,0,20], -"structciot__bridge__status__t.html#a75d538f4bd5c29ec545f1e37dae43f0e":[1,0,20,0], -"structciot__cfg.html":[1,0,21], -"structciot__cfg.html#a20302e2c99a60d3f612dba57e3f6333b":[1,0,21,1], -"structciot__cfg.html#a428c51338631d897b42d617f8db50410":[1,0,21,0], -"structciot__cfg.html#abcdb687b2ecbb5e6f9125c1ea584bb68":[1,0,21,2], -"structciot__data__model__cfg__t.html":[1,0,22], -"structciot__data__model__req__t.html":[1,0,25], -"structciot__data__model__req__t.html#a1cc8da72a2d329be4f8ff647f04884a0":[1,0,25,1], -"structciot__data__model__req__t.html#adbf84251d29a448cb6b3f3b4b402ebd0":[1,0,25,0], -"structciot__data__model__status__t.html":[1,0,26], -"structciot__data__model__status__t.html#a350c6a3720c9b7d1b3300e38430117e7":[1,0,26,0], -"structciot__dfu__cfg__t.html":[1,0,28], -"structciot__dfu__cfg__t.html#afa34dcfb78399ee2321831a93d8bce73":[1,0,28,0], -"structciot__dfu__req__t.html":[1,0,31], -"structciot__dfu__req__t.html#a1d31b0b31c62cd6a2a3c3b5193efd5f9":[1,0,31,0], -"structciot__dfu__req__t.html#adb76936a18a28e534879c6f9d6f07868":[1,0,31,1], -"structciot__dfu__status__msg__t.html":[1,0,32], -"structciot__dfu__status__msg__t.html#a9fb48f785812375d586c71a02b453e64":[1,0,32,1], -"structciot__dfu__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[1,0,32,0], -"structciot__dfu__status__t.html":[1,0,33], -"structciot__dfu__status__t.html#a11614f44ef4d939bdd984953346a7572":[1,0,33,1], -"structciot__dfu__status__t.html#a42539ea8650b094f66be7a689243c5ef":[1,0,33,3], -"structciot__dfu__status__t.html#a45a5b7c00a796a23f01673cef1dbe0a9":[1,0,33,0], -"structciot__dfu__status__t.html#a587d059d905fdf8cceb8643720812de4":[1,0,33,4], -"structciot__dfu__status__t.html#a990d41db67b3605c9184428e72edcea1":[1,0,33,2], -"structciot__eth__status__msg__t.html":[1,0,34], -"structciot__eth__status__msg__t.html#a290455b77155aab0d086fb8c69f76364":[1,0,34,1], -"structciot__eth__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[1,0,34,0], -"structciot__event__data.html":[1,0,35], -"structciot__event__data.html#a439227feff9d7f55384e8780cfc2eb82":[1,0,35,1], -"structciot__event__data.html#aaa8222c604b0b520bc2205ddcc42d855":[1,0,35,0], -"structciot__gpio__cfg__t.html":[1,0,36], -"structciot__gpio__cfg__t.html#a3feeb7044549691a36c39cc7c9b2ed2c":[1,0,36,1], -"structciot__gpio__cfg__t.html#a5ee68c0e31fa06f342fad371023bdc4e":[1,0,36,2], -"structciot__gpio__cfg__t.html#a7d76e224ede8a4fa709cc3a505a81975":[1,0,36,0], -"structciot__gpio__req__get__state__t.html":[1,0,39], -"structciot__gpio__req__get__state__t.html#a7beea8f6745c478347f244cadef771c2":[1,0,39,0], -"structciot__gpio__req__t.html":[1,0,40], -"structciot__gpio__req__t.html#a8742485122a2b9e44392d5d51ddc2076":[1,0,40,0], -"structciot__gpio__req__t.html#ab949dccfc732240972d8a27cf46f3e76":[1,0,40,1], -"structciot__gpio__state__info__t.html":[1,0,41], -"structciot__gpio__state__info__t.html#a7beea8f6745c478347f244cadef771c2":[1,0,41,0], -"structciot__gpio__state__info__t.html#a939fe9a85b37a0ce4a0701b655c799ea":[1,0,41,1], -"structciot__gpio__status__msg__t.html":[1,0,42], -"structciot__gpio__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[1,0,42,0], -"structciot__gpio__status__msg__t.html#af7b93aeb68c1648ccb2617ff8217e7b0":[1,0,42,1], -"structciot__gpio__status__t.html":[1,0,43], -"structciot__gpio__status__t.html#af557caa253a733e218e1e71c2a91eef4":[1,0,43,0], -"structciot__httpc__cfg__t.html":[1,0,44], -"structciot__httpc__cfg__t.html#a7e007ade3b5b7cfcc2ee06d35d52d4e1":[1,0,44,2], -"structciot__httpc__cfg__t.html#a7f1ad43d3bf79b40bc39dbb5a6c3a5ae":[1,0,44,1], -"structciot__httpc__cfg__t.html#aa37877f676f256b0b0989f354000a1bf":[1,0,44,3], -"structciot__httpc__cfg__t.html#ad10985b96579c7c2030050715bcad45d":[1,0,44,0], -"structciot__httpc__event__data.html":[1,0,47], -"structciot__httpc__event__data.html#ab135e5154c1828bef226a3df98ee3333":[1,0,47,1], -"structciot__httpc__event__data.html#ac824ce50cc96c6354577281b657d14b6":[1,0,47,0], -"structciot__httpc__req__send__t.html":[1,0,49], -"structciot__httpc__req__send__t.html#a301d9747f184171d8a1ee19d25d8e4ab":[1,0,49,1], -"structciot__httpc__req__send__t.html#a675a47f46ecd9d8ec01c738e04c28cbe":[1,0,49,2], -"structciot__httpc__req__send__t.html#afc1b0964d9fa89030c055cbc08315c58":[1,0,49,0], -"structciot__httpc__req__set__header__t.html":[1,0,50], -"structciot__httpc__req__set__header__t.html#a376ba7d15e815aecda5b6276de7ff292":[1,0,50,0], -"structciot__httpc__req__set__header__t.html#a82c2b14036a5b80ae9b5a4a6e2812a44":[1,0,50,1], -"structciot__httpc__req__t.html":[1,0,51], -"structciot__httpc__req__t.html#a3623cfec7a7da849fd22ce7ec1c3e10f":[1,0,51,0], -"structciot__httpc__req__t.html#ac4330d2b9fc6473e00966f8dd66a477c":[1,0,51,1], -"structciot__httpc__status__msg__t.html":[1,0,52], -"structciot__httpc__status__msg__t.html#ac5c1eb82650b9d0161a399175c459ad3":[1,0,52,1], -"structciot__httpc__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[1,0,52,0], -"structciot__httpc__status__t.html":[1,0,53], -"structciot__httpc__status__t.html#a11614f44ef4d939bdd984953346a7572":[1,0,53,0], -"structciot__httpc__status__t.html#a37c663f5a0040d827e450c52efe59882":[1,0,53,1], -"structciot__https__cfg__t.html":[1,0,54], -"structciot__https__cfg__t.html#a63c89c04d1feae07ca35558055155ffb":[1,0,54,1], -"structciot__https__cfg__t.html#a98bcbc9e1ebf74ba486f246d76f5bac1":[1,0,54,2], -"structciot__https__cfg__t.html#aaf2deef29cfe3fe5b18f00f49ff23d42":[1,0,54,0], -"structciot__https__event.html":[1,0,56], -"structciot__https__event.html#af26174e3b6aead3c5f7d4deea8ea6fc0":[1,0,56,0], -"structciot__https__event__data.html":[1,0,57], -"structciot__https__event__data.html#ac824ce50cc96c6354577281b657d14b6":[1,0,57,0], -"structciot__https__event__data.html#ad31b04303ebf9721f2537ea359199783":[1,0,57,2], -"structciot__https__event__data.html#af63c670f07c4a0a799e8581e95d4810e":[1,0,57,1], -"structciot__https__req__t.html":[1,0,59], -"structciot__https__req__t.html#adf00e5263d183b9b74cd9dd06dd98856":[1,0,59,0], -"structciot__https__status__msg__t.html":[1,0,60], -"structciot__https__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[1,0,60,0], -"structciot__https__status__msg__t.html#ae71d44b4ec9b04f2b3eb183ae791f6ca":[1,0,60,1], -"structciot__https__status__t.html":[1,0,61], -"structciot__https__status__t.html#a11614f44ef4d939bdd984953346a7572":[1,0,61,0], -"structciot__https__status__t.html#a28c09b101362530d97e51b712b741f63":[1,0,61,1], -"structciot__iface.html":[1,0,62], -"structciot__iface.html#a3d19d97719cf13cda1f021cf5dbaabb6":[1,0,62,3], -"structciot__iface.html#a6c29272de72de0546f7cb703993eb1f5":[1,0,62,2], -"structciot__iface.html#a702f51681c5c1dd8d6ad5aaa41d80f29":[1,0,62,1], -"structciot__iface.html#a853cb7e7d6095705dfa3c0cef66ec736":[1,0,62,0], -"structciot__iface.html#ae1afa3b8277cc9c96f891782785c4b34":[1,0,62,4], -"structciot__iface__base.html":[1,0,63], -"structciot__iface__base.html#a6894fb208d021352bc4a53806a2a38dc":[1,0,63,0], -"structciot__iface__base.html#aa04a90d2225ba674bcdc0c62f4a78c2c":[1,0,63,3], -"structciot__iface__base.html#abd070cd5170ccae6d490974e511dd41b":[1,0,63,5], -"structciot__iface__base.html#ac0223aea9839f62092995675d1e38339":[1,0,63,6], -"structciot__iface__base.html#ac99445311cef9672f346b7a3ab22d879":[1,0,63,7], -"structciot__iface__base.html#ad0e5b143f45f5ccb026a527086ddb15f":[1,0,63,4], -"structciot__iface__base.html#add9af9569af79ec26dd741fb226b38ba":[1,0,63,2], -"structciot__iface__base.html#ae2b271bbc55ea5a64e70f8566010f2cb":[1,0,63,1], -"structciot__iface__base__data.html":[1,0,64], -"structciot__iface__base__data.html#aaba88b24a21a6c70c895c0d55f4a69a0":[1,0,64,1], -"structciot__iface__base__data.html#add9af9569af79ec26dd741fb226b38ba":[1,0,64,0], -"structciot__iface__cfg__t.html":[1,0,65], -"structciot__iface__event__t.html":[1,0,67], -"structciot__iface__event__t.html#a5cd16071ec4ec2b6bb4c625e53b07c5b":[1,0,67,2], -"structciot__iface__event__t.html#a6714610a8d6e593a48b14b3c5600fef0":[1,0,67,0], -"structciot__iface__event__t.html#aaba88b24a21a6c70c895c0d55f4a69a0":[1,0,67,1], -"structciot__iface__req__info.html":[1,0,68], -"structciot__iface__req__info.html#a0b61a5ca677a324b62936d18d21ff362":[1,0,68,2], -"structciot__iface__req__info.html#a1e6927fa1486224044e568f9c370519b":[1,0,68,0], -"structciot__iface__req__info.html#a2a773bc681a41b29b21f8c106c0161ef":[1,0,68,3], -"structciot__iface__req__info.html#a3501e3667f1031fb2f00b333b7b2269a":[1,0,68,1], -"structciot__iface__req__info.html#ac3305f4a165c4d898ce7988191102e46":[1,0,68,4], -"structciot__ifaces.html":[1,0,69], -"structciot__ifaces.html#a114aac4c4bd60245dda949be0febdcd2":[1,0,69,13], -"structciot__ifaces.html#a1ed8d43c3f1f21fa7c17cc87a6fe7797":[1,0,69,6], -"structciot__ifaces.html#a3ee37815964e9fd49d2dfee631dacedf":[1,0,69,8], -"structciot__ifaces.html#a54c2caecbbbf05be0157f3ab02cc7d24":[1,0,69,5], -"structciot__ifaces.html#a56416f6eac2692c41c82d053ba002af2":[1,0,69,3], -"structciot__ifaces.html#a5cd7a867e5e008c3dd064684a180a470":[1,0,69,11], -"structciot__ifaces.html#a5d16ffd7a66e7e0e0c5fd07876f5a964":[1,0,69,14], -"structciot__ifaces.html#a688b2e35a1af524849eab17acfc86317":[1,0,69,15], -"structciot__ifaces.html#a72c8d347d1c888290c5c6c8ecd4c58c5":[1,0,69,9], -"structciot__ifaces.html#aaed783b786fd40c5690a32bebe9f0326":[1,0,69,10], -"structciot__ifaces.html#ab20831600cb6d38f235145fee948813b":[1,0,69,4], -"structciot__ifaces.html#ab80591df7743604e3f3961fc9c52b0e3":[1,0,69,2], -"structciot__ifaces.html#abac8466359f1900dd232e80aaa8f8069":[1,0,69,1], -"structciot__ifaces.html#ac80889c5f3c6d9ed2cd6bba3616bdf4f":[1,0,69,12], -"structciot__ifaces.html#ae23a932dbacce6377227a4654618111e":[1,0,69,0], -"structciot__ifaces.html#afda8467a92fbc5a6bb84aa0703cf6605":[1,0,69,7], -"structciot__info__t.html":[1,0,70], -"structciot__info__t.html#a857436941aa8d7df5abfa34bcd054d35":[1,0,70,0], -"structciot__mqttc__cfg__t.html":[1,0,71], -"structciot__mqttc__cfg__t.html#a0559811c61c36a1df8aa9ac0c4d56d53":[1,0,71,1], -"structciot__mqttc__cfg__t.html#a2a5888184d23c617efb05a871a705673":[1,0,71,4], -"structciot__mqttc__cfg__t.html#a40c9809e1d381340b5d342ef3a838715":[1,0,71,7], -"structciot__mqttc__cfg__t.html#a65ee2b4b16f25052c441ff9959dcc7e7":[1,0,71,3], -"structciot__mqttc__cfg__t.html#a71a2e48797aa4b94b9164ea22564c158":[1,0,71,0], -"structciot__mqttc__cfg__t.html#a83a04ad582de2b7d36b96f9db429c2c6":[1,0,71,2], -"structciot__mqttc__cfg__t.html#a86d66ae1379f0dead7b0744b77d4f4f4":[1,0,71,6], -"structciot__mqttc__cfg__t.html#addf4bba19daf5bd5b49b033e239931da":[1,0,71,5], -"structciot__mqttc__error__t.html":[1,0,73], -"structciot__mqttc__error__t.html#a2d16d2a81fde684b4c79c0d71f8090b5":[1,0,73,4], -"structciot__mqttc__error__t.html#a45a5b7c00a796a23f01673cef1dbe0a9":[1,0,73,0], -"structciot__mqttc__error__t.html#a9006960d969e505489e2a46434d60ebb":[1,0,73,3], -"structciot__mqttc__error__t.html#abde2f3e27511cfb7307766339fed98e9":[1,0,73,1], -"structciot__mqttc__error__t.html#ac765329451135abec74c45e1897abf26":[1,0,73,5], -"structciot__mqttc__error__t.html#af8b9db3223039d525df4371413d3c2f3":[1,0,73,2], -"structciot__mqttc__event.html":[1,0,74], -"structciot__mqttc__event.html#acd187e9c28c27f14c5eb518411a273cb":[1,0,74,0], -"structciot__mqttc__event__data.html":[1,0,75], -"structciot__mqttc__event__data.html#a2dbb61af8fd36dccbf3662d0c7a64839":[1,0,75,0], -"structciot__mqttc__event__data.html#affecb48e716753e10b44feac31f12529":[1,0,75,1], -"structciot__mqttc__req__publish__t.html":[1,0,77], -"structciot__mqttc__req__publish__t.html#a2a544a28a9461b0de1f303ca407c459f":[1,0,77,0], -"structciot__mqttc__req__publish__t.html#a439227feff9d7f55384e8780cfc2eb82":[1,0,77,2], -"structciot__mqttc__req__publish__t.html#a65ee2b4b16f25052c441ff9959dcc7e7":[1,0,77,1], -"structciot__mqttc__req__publish__t.html#adb8c125563b301bb6f5b4f57f6547bc0":[1,0,77,3], -"structciot__mqttc__req__subscribe__t.html":[1,0,78], -"structciot__mqttc__req__subscribe__t.html#a65ee2b4b16f25052c441ff9959dcc7e7":[1,0,78,0], -"structciot__mqttc__req__subscribe__t.html#adb8c125563b301bb6f5b4f57f6547bc0":[1,0,78,1], -"structciot__mqttc__req__t.html":[1,0,79], -"structciot__mqttc__req__t.html#a8e287bd3b319b246d8346f46ed6c4580":[1,0,79,1], -"structciot__mqttc__req__t.html#ad609e57ec1fe769dd7f41602cae320ca":[1,0,79,0], -"structciot__mqttc__status__msg__t.html":[1,0,80], -"structciot__mqttc__status__msg__t.html#a0bd4162002c890f2775878d4da138c03":[1,0,80,1], -"structciot__mqttc__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[1,0,80,0], -"structciot__mqttc__status__t.html":[1,0,81], -"structciot__mqttc__status__t.html#a28daf783134e0bed0e611de3ea451e4a":[1,0,81,4], -"structciot__mqttc__status__t.html#a44794759868576e0404c9cf629863797":[1,0,81,3], -"structciot__mqttc__status__t.html#acaf4be12cb0cee4fbea5e8e121f6d2e4":[1,0,81,0], -"structciot__mqttc__status__t.html#acee85046d884f9e69d341dafac56cd22":[1,0,81,2], -"structciot__mqttc__status__t.html#af7750329f3654d2f6fe5a20adeae49dd":[1,0,81,1], -"structciot__mqttc__topics__cfg__t.html":[1,0,82], -"structciot__mqttc__topics__cfg__t.html#a6b1fde5b6926d1fec0c3102bbf1ada9f":[1,0,82,1], -"structciot__mqttc__topics__cfg__t.html#a7e49cda0ef28302730e05911cb7a9d3c":[1,0,82,0], -"structciot__msg__error__t.html":[1,0,84], -"structciot__msg__error__t.html#a61e21da913274adbd45e28f694651b11":[1,0,84,1], -"structciot__msg__error__t.html#afe73fa7a655419b386e0a10c7beaace3":[1,0,84,0], -"structciot__msg__header__t.html":[1,0,85], -"structciot__msg__header__t.html#a1e6927fa1486224044e568f9c370519b":[1,0,85,0], -"structciot__msg__header__t.html#a3501e3667f1031fb2f00b333b7b2269a":[1,0,85,1], -"structciot__msg__header__t.html#ac3305f4a165c4d898ce7988191102e46":[1,0,85,2], -"structciot__msg__iface__info__t.html":[1,0,86], -"structciot__msg__iface__info__t.html#a1e6927fa1486224044e568f9c370519b":[1,0,86,0], -"structciot__msg__iface__info__t.html#ab9b24d9114ce832a5b9cbc962c9cea28":[1,0,86,1], -"structciot__msg__t.html":[1,0,87], -"structciot__msg__t.html#a1e6927fa1486224044e568f9c370519b":[1,0,87,1], -"structciot__msg__t.html#a3501e3667f1031fb2f00b333b7b2269a":[1,0,87,2], -"structciot__msg__t.html#ac3305f4a165c4d898ce7988191102e46":[1,0,87,3], -"structciot__msg__t.html#ac498d2909bc3de66ee0b1a597fa8e0b6":[1,0,87,0], -"structciot__nrf__dfu__cfg.html":[1,0,88], -"structciot__nrf__dfu__cfg.html#a22016a576f391282c8806fc79a64b1f2":[1,0,88,0], -"structciot__nrf__dfu__cfg.html#a6c2ee01676a3fac944277ac66f411267":[1,0,88,1], -"structciot__nrf__dfu__cfg.html#a795b5a3aa5d9214e635ad47549f52f15":[1,0,88,3], -"structciot__nrf__dfu__cfg.html#a9e30754c48462959a3efdef7ac582744":[1,0,88,4], -"structciot__nrf__dfu__cfg.html#add0d24e0065c33f7e1da60ac94e6988b":[1,0,88,2], -"structciot__nrf__dfu__packet.html":[1,0,89], -"structciot__nrf__dfu__packet.html#a3e7bef03191254ebdc38d44d1c2dad91":[1,0,89,2], -"structciot__nrf__dfu__packet.html#a50c8cebed3105b196315a23d0634f1a5":[1,0,89,3], -"structciot__nrf__dfu__packet.html#ab2c6b258f02add8fdf4cfc7c371dd772":[1,0,89,1], -"structciot__nrf__dfu__packet.html#abe222f6d3581e7920dcad5306cc906a8":[1,0,89,0], -"structciot__ntp__cfg__t.html":[1,0,90], -"structciot__ntp__cfg__t.html#a4dc1e4fba8f7fec6b1579961829b34f7":[1,0,90,4], -"structciot__ntp__cfg__t.html#a5150de065f0b170644b21514c7530542":[1,0,90,2], -"structciot__ntp__cfg__t.html#ab80672fab5b8d7864411603053aaffa4":[1,0,90,1], -"structciot__ntp__cfg__t.html#ac752937b32320cf191fe3abd0e8daed6":[1,0,90,3], -"structciot__ntp__cfg__t.html#aec948fb30e99b1eda7e3d9ff741d417a":[1,0,90,0], -"structciot__ntp__req__t.html":[1,0,93], -"structciot__ntp__req__t.html#a54590843a59febd0e8055f9249974adc":[1,0,93,1], -"structciot__ntp__req__t.html#a9401df5c514eae3e23f4468d8ca7795e":[1,0,93,0], -"structciot__ntp__status__msg__t.html":[1,0,94], -"structciot__ntp__status__msg__t.html#a95d5fa474c00a79ee883e78048ea7c4c":[1,0,94,1], -"structciot__ntp__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[1,0,94,0], -"structciot__ntp__status__t.html":[1,0,95], -"structciot__ntp__status__t.html#a1fd97d69dc5fc2ad2bd7be4f1d6e1a3d":[1,0,95,1], -"structciot__ntp__status__t.html#a28ce8249c3bcacad6a7698b7697739b8":[1,0,95,3], -"structciot__ntp__status__t.html#a49f666045d24aa8becc5244bc2396aca":[1,0,95,0], -"structciot__ntp__status__t.html#a69671f26529c8f6076d53b96a1e1627f":[1,0,95,5], -"structciot__ntp__status__t.html#ac6c17ab632a9c78bc9fa846e9baeea7b":[1,0,95,2], -"structciot__ntp__status__t.html#adb4b09387463cd61bf8f7217366310ef":[1,0,95,4], -"structciot__opcuas__cfg__t.html":[1,0,96], -"structciot__opcuas__cfg__t.html#a83a04ad582de2b7d36b96f9db429c2c6":[1,0,96,0], -"structciot__opcuas__req__add__node__t.html":[1,0,98], -"structciot__opcuas__req__add__node__t.html#a381f93ba5743e8813f554bda3c272257":[1,0,98,2], -"structciot__opcuas__req__add__node__t.html#aa5f4b442eedc591f6e6e03787e6343bc":[1,0,98,1], -"structciot__opcuas__req__add__node__t.html#acb5cfd209ba75c853d03f701e7f91679":[1,0,98,3], -"structciot__opcuas__req__add__node__t.html#acfcef1819c1ec84a215884bb45ed99b6":[1,0,98,0] +"structciot__iface__event__t.html#aaba88b24a21a6c70c895c0d55f4a69a0":[3,0,67,1], +"structciot__iface__req__info.html":[3,0,68], +"structciot__iface__req__info.html#a0b61a5ca677a324b62936d18d21ff362":[3,0,68,2], +"structciot__iface__req__info.html#a1e6927fa1486224044e568f9c370519b":[3,0,68,0], +"structciot__iface__req__info.html#a2a773bc681a41b29b21f8c106c0161ef":[3,0,68,3], +"structciot__iface__req__info.html#a3501e3667f1031fb2f00b333b7b2269a":[3,0,68,1], +"structciot__iface__req__info.html#ac3305f4a165c4d898ce7988191102e46":[3,0,68,4], +"structciot__ifaces.html":[3,0,69], +"structciot__ifaces.html#a114aac4c4bd60245dda949be0febdcd2":[3,0,69,13], +"structciot__ifaces.html#a1ed8d43c3f1f21fa7c17cc87a6fe7797":[3,0,69,6], +"structciot__ifaces.html#a3ee37815964e9fd49d2dfee631dacedf":[3,0,69,8], +"structciot__ifaces.html#a54c2caecbbbf05be0157f3ab02cc7d24":[3,0,69,5], +"structciot__ifaces.html#a56416f6eac2692c41c82d053ba002af2":[3,0,69,3], +"structciot__ifaces.html#a5cd7a867e5e008c3dd064684a180a470":[3,0,69,11], +"structciot__ifaces.html#a5d16ffd7a66e7e0e0c5fd07876f5a964":[3,0,69,14], +"structciot__ifaces.html#a688b2e35a1af524849eab17acfc86317":[3,0,69,15], +"structciot__ifaces.html#a72c8d347d1c888290c5c6c8ecd4c58c5":[3,0,69,9], +"structciot__ifaces.html#aaed783b786fd40c5690a32bebe9f0326":[3,0,69,10], +"structciot__ifaces.html#ab20831600cb6d38f235145fee948813b":[3,0,69,4], +"structciot__ifaces.html#ab80591df7743604e3f3961fc9c52b0e3":[3,0,69,2], +"structciot__ifaces.html#abac8466359f1900dd232e80aaa8f8069":[3,0,69,1], +"structciot__ifaces.html#ac80889c5f3c6d9ed2cd6bba3616bdf4f":[3,0,69,12], +"structciot__ifaces.html#ae23a932dbacce6377227a4654618111e":[3,0,69,0], +"structciot__ifaces.html#afda8467a92fbc5a6bb84aa0703cf6605":[3,0,69,7], +"structciot__info__t.html":[3,0,70], +"structciot__info__t.html#a857436941aa8d7df5abfa34bcd054d35":[3,0,70,0], +"structciot__mqttc__cfg__t.html":[3,0,71], +"structciot__mqttc__cfg__t.html#a0559811c61c36a1df8aa9ac0c4d56d53":[3,0,71,1], +"structciot__mqttc__cfg__t.html#a2a5888184d23c617efb05a871a705673":[3,0,71,4], +"structciot__mqttc__cfg__t.html#a40c9809e1d381340b5d342ef3a838715":[3,0,71,7], +"structciot__mqttc__cfg__t.html#a65ee2b4b16f25052c441ff9959dcc7e7":[3,0,71,3], +"structciot__mqttc__cfg__t.html#a71a2e48797aa4b94b9164ea22564c158":[3,0,71,0], +"structciot__mqttc__cfg__t.html#a83a04ad582de2b7d36b96f9db429c2c6":[3,0,71,2], +"structciot__mqttc__cfg__t.html#a86d66ae1379f0dead7b0744b77d4f4f4":[3,0,71,6], +"structciot__mqttc__cfg__t.html#addf4bba19daf5bd5b49b033e239931da":[3,0,71,5], +"structciot__mqttc__error__t.html":[3,0,73], +"structciot__mqttc__error__t.html#a2d16d2a81fde684b4c79c0d71f8090b5":[3,0,73,4], +"structciot__mqttc__error__t.html#a45a5b7c00a796a23f01673cef1dbe0a9":[3,0,73,0], +"structciot__mqttc__error__t.html#a9006960d969e505489e2a46434d60ebb":[3,0,73,3], +"structciot__mqttc__error__t.html#abde2f3e27511cfb7307766339fed98e9":[3,0,73,1], +"structciot__mqttc__error__t.html#ac765329451135abec74c45e1897abf26":[3,0,73,5], +"structciot__mqttc__error__t.html#af8b9db3223039d525df4371413d3c2f3":[3,0,73,2], +"structciot__mqttc__event.html":[3,0,74], +"structciot__mqttc__event.html#acd187e9c28c27f14c5eb518411a273cb":[3,0,74,0], +"structciot__mqttc__event__data.html":[3,0,75], +"structciot__mqttc__event__data.html#a2dbb61af8fd36dccbf3662d0c7a64839":[3,0,75,0], +"structciot__mqttc__event__data.html#affecb48e716753e10b44feac31f12529":[3,0,75,1], +"structciot__mqttc__req__publish__t.html":[3,0,77], +"structciot__mqttc__req__publish__t.html#a2a544a28a9461b0de1f303ca407c459f":[3,0,77,0], +"structciot__mqttc__req__publish__t.html#a439227feff9d7f55384e8780cfc2eb82":[3,0,77,2], +"structciot__mqttc__req__publish__t.html#a65ee2b4b16f25052c441ff9959dcc7e7":[3,0,77,1], +"structciot__mqttc__req__publish__t.html#adb8c125563b301bb6f5b4f57f6547bc0":[3,0,77,3], +"structciot__mqttc__req__subscribe__t.html":[3,0,78], +"structciot__mqttc__req__subscribe__t.html#a65ee2b4b16f25052c441ff9959dcc7e7":[3,0,78,0], +"structciot__mqttc__req__subscribe__t.html#adb8c125563b301bb6f5b4f57f6547bc0":[3,0,78,1], +"structciot__mqttc__req__t.html":[3,0,79], +"structciot__mqttc__req__t.html#a8e287bd3b319b246d8346f46ed6c4580":[3,0,79,1], +"structciot__mqttc__req__t.html#ad609e57ec1fe769dd7f41602cae320ca":[3,0,79,0], +"structciot__mqttc__status__msg__t.html":[3,0,80], +"structciot__mqttc__status__msg__t.html#a0bd4162002c890f2775878d4da138c03":[3,0,80,1], +"structciot__mqttc__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[3,0,80,0], +"structciot__mqttc__status__t.html":[3,0,81], +"structciot__mqttc__status__t.html#a28daf783134e0bed0e611de3ea451e4a":[3,0,81,4], +"structciot__mqttc__status__t.html#a44794759868576e0404c9cf629863797":[3,0,81,3], +"structciot__mqttc__status__t.html#acaf4be12cb0cee4fbea5e8e121f6d2e4":[3,0,81,0], +"structciot__mqttc__status__t.html#acee85046d884f9e69d341dafac56cd22":[3,0,81,2], +"structciot__mqttc__status__t.html#af7750329f3654d2f6fe5a20adeae49dd":[3,0,81,1], +"structciot__mqttc__topics__cfg__t.html":[3,0,82], +"structciot__mqttc__topics__cfg__t.html#a6b1fde5b6926d1fec0c3102bbf1ada9f":[3,0,82,1], +"structciot__mqttc__topics__cfg__t.html#a7e49cda0ef28302730e05911cb7a9d3c":[3,0,82,0], +"structciot__msg__error__t.html":[3,0,84], +"structciot__msg__error__t.html#a61e21da913274adbd45e28f694651b11":[3,0,84,1], +"structciot__msg__error__t.html#afe73fa7a655419b386e0a10c7beaace3":[3,0,84,0], +"structciot__msg__header__t.html":[3,0,85], +"structciot__msg__header__t.html#a1e6927fa1486224044e568f9c370519b":[3,0,85,0], +"structciot__msg__header__t.html#a3501e3667f1031fb2f00b333b7b2269a":[3,0,85,1], +"structciot__msg__header__t.html#ac3305f4a165c4d898ce7988191102e46":[3,0,85,2], +"structciot__msg__iface__info__t.html":[3,0,86], +"structciot__msg__iface__info__t.html#a1e6927fa1486224044e568f9c370519b":[3,0,86,0], +"structciot__msg__iface__info__t.html#ab9b24d9114ce832a5b9cbc962c9cea28":[3,0,86,1], +"structciot__msg__t.html":[3,0,87], +"structciot__msg__t.html#a1e6927fa1486224044e568f9c370519b":[3,0,87,1], +"structciot__msg__t.html#a3501e3667f1031fb2f00b333b7b2269a":[3,0,87,2], +"structciot__msg__t.html#ac3305f4a165c4d898ce7988191102e46":[3,0,87,3], +"structciot__msg__t.html#ac498d2909bc3de66ee0b1a597fa8e0b6":[3,0,87,0], +"structciot__nrf__dfu__cfg.html":[3,0,88], +"structciot__nrf__dfu__cfg.html#a22016a576f391282c8806fc79a64b1f2":[3,0,88,0], +"structciot__nrf__dfu__cfg.html#a6c2ee01676a3fac944277ac66f411267":[3,0,88,1], +"structciot__nrf__dfu__cfg.html#a795b5a3aa5d9214e635ad47549f52f15":[3,0,88,3], +"structciot__nrf__dfu__cfg.html#a9e30754c48462959a3efdef7ac582744":[3,0,88,4], +"structciot__nrf__dfu__cfg.html#add0d24e0065c33f7e1da60ac94e6988b":[3,0,88,2], +"structciot__nrf__dfu__packet.html":[3,0,89], +"structciot__nrf__dfu__packet.html#a3e7bef03191254ebdc38d44d1c2dad91":[3,0,89,2], +"structciot__nrf__dfu__packet.html#a50c8cebed3105b196315a23d0634f1a5":[3,0,89,3], +"structciot__nrf__dfu__packet.html#ab2c6b258f02add8fdf4cfc7c371dd772":[3,0,89,1], +"structciot__nrf__dfu__packet.html#abe222f6d3581e7920dcad5306cc906a8":[3,0,89,0], +"structciot__ntp__cfg__t.html":[3,0,90], +"structciot__ntp__cfg__t.html#a4dc1e4fba8f7fec6b1579961829b34f7":[3,0,90,4], +"structciot__ntp__cfg__t.html#a5150de065f0b170644b21514c7530542":[3,0,90,2], +"structciot__ntp__cfg__t.html#ab80672fab5b8d7864411603053aaffa4":[3,0,90,1], +"structciot__ntp__cfg__t.html#ac752937b32320cf191fe3abd0e8daed6":[3,0,90,3], +"structciot__ntp__cfg__t.html#aec948fb30e99b1eda7e3d9ff741d417a":[3,0,90,0], +"structciot__ntp__req__t.html":[3,0,93], +"structciot__ntp__req__t.html#a54590843a59febd0e8055f9249974adc":[3,0,93,1], +"structciot__ntp__req__t.html#a9401df5c514eae3e23f4468d8ca7795e":[3,0,93,0], +"structciot__ntp__status__msg__t.html":[3,0,94], +"structciot__ntp__status__msg__t.html#a95d5fa474c00a79ee883e78048ea7c4c":[3,0,94,1], +"structciot__ntp__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[3,0,94,0], +"structciot__ntp__status__t.html":[3,0,95], +"structciot__ntp__status__t.html#a1fd97d69dc5fc2ad2bd7be4f1d6e1a3d":[3,0,95,1], +"structciot__ntp__status__t.html#a28ce8249c3bcacad6a7698b7697739b8":[3,0,95,3], +"structciot__ntp__status__t.html#a49f666045d24aa8becc5244bc2396aca":[3,0,95,0], +"structciot__ntp__status__t.html#a69671f26529c8f6076d53b96a1e1627f":[3,0,95,5], +"structciot__ntp__status__t.html#ac6c17ab632a9c78bc9fa846e9baeea7b":[3,0,95,2], +"structciot__ntp__status__t.html#adb4b09387463cd61bf8f7217366310ef":[3,0,95,4], +"structciot__opcuas__cfg__t.html":[3,0,96], +"structciot__opcuas__cfg__t.html#a83a04ad582de2b7d36b96f9db429c2c6":[3,0,96,0], +"structciot__opcuas__req__add__node__t.html":[3,0,98], +"structciot__opcuas__req__add__node__t.html#a381f93ba5743e8813f554bda3c272257":[3,0,98,2], +"structciot__opcuas__req__add__node__t.html#aa5f4b442eedc591f6e6e03787e6343bc":[3,0,98,1], +"structciot__opcuas__req__add__node__t.html#acb5cfd209ba75c853d03f701e7f91679":[3,0,98,3], +"structciot__opcuas__req__add__node__t.html#acfcef1819c1ec84a215884bb45ed99b6":[3,0,98,0], +"structciot__opcuas__req__t.html":[3,0,100], +"structciot__opcuas__req__t.html#a18e3465478724c7b699bb5077661ea35":[3,0,100,0], +"structciot__opcuas__req__t.html#a6a535362b7c81b40f3ed9f6cb292a469":[3,0,100,1], +"structciot__opcuas__status__msg__t.html":[3,0,101], +"structciot__opcuas__status__msg__t.html#ac3be6c0c62c2999a9dd9fa0099945876":[3,0,101,1], +"structciot__opcuas__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[3,0,101,0], +"structciot__opcuas__status__t.html":[3,0,102], +"structciot__opcuas__status__t.html#a584e26c042d8a98bf6161b7aa27ba4cf":[3,0,102,0], +"structciot__ota__cfg__t.html":[3,0,103], +"structciot__ota__cfg__t.html#a153935e13b871590c5521d1b258d017f":[3,0,103,4], +"structciot__ota__cfg__t.html#a268d99c2d888dd67e8ea77d3be0a5021":[3,0,103,1], +"structciot__ota__cfg__t.html#a63de528fa8d98b79adfe7f9f68880c17":[3,0,103,3], +"structciot__ota__cfg__t.html#acb7bc06bed6f6408d719334fc41698c7":[3,0,103,2], +"structciot__ota__cfg__t.html#afe60ab2756fb1ea1c1de6f3ec6dbea98":[3,0,103,0], +"structciot__ota__req__t.html":[3,0,106], +"structciot__ota__req__t.html#a19605616d62f4ee24f6aefb6c34480e2":[3,0,106,1], +"structciot__ota__req__t.html#a77dc06e65f4b0aed4a3f44e1b6a32aa0":[3,0,106,0], +"structciot__ota__status__msg__t.html":[3,0,107], +"structciot__ota__status__msg__t.html#a86de670b32fc6ad5c7a44fefb41e6e3a":[3,0,107,1], +"structciot__ota__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[3,0,107,0], +"structciot__ota__status__t.html":[3,0,108], +"structciot__ota__status__t.html#a11614f44ef4d939bdd984953346a7572":[3,0,108,0], +"structciot__ota__status__t.html#a42539ea8650b094f66be7a689243c5ef":[3,0,108,2], +"structciot__ota__status__t.html#a796f1aeb4c800b653ee018b20c818804":[3,0,108,3], +"structciot__ota__status__t.html#a990d41db67b3605c9184428e72edcea1":[3,0,108,1], +"structciot__req__delete__iface__cfg__t.html":[3,0,110], +"structciot__req__delete__iface__cfg__t.html#a5aca650808126ada7193361ab8921e7a":[3,0,110,0], +"structciot__req__proxy__msg__t.html":[3,0,111], +"structciot__req__proxy__msg__t.html#a71ed92c04817c761b6de921899b330d6":[3,0,111,0], +"structciot__req__proxy__msg__t.html#a82eb8e84b1ff534e368a647470a626c3":[3,0,111,1], +"structciot__req__proxy__msg__t.html#aaba88b24a21a6c70c895c0d55f4a69a0":[3,0,111,2], +"structciot__req__result__t.html":[3,0,112], +"structciot__req__result__t.html#a2dd2df43c7a23b9fb91e6e462c592477":[3,0,112,0], +"structciot__req__result__t.html#a5aca650808126ada7193361ab8921e7a":[3,0,112,1], +"structciot__req__save__iface__cfg__t.html":[3,0,113], +"structciot__req__save__iface__cfg__t.html#a5aca650808126ada7193361ab8921e7a":[3,0,113,0], +"structciot__req__t.html":[3,0,114], +"structciot__req__t.html#a55a6010bd818c4c1b94eca45963f09a9":[3,0,114,1], +"structciot__req__t.html#aeecdef82363bc7b7d7ba9bf5f8f51908":[3,0,114,0], +"structciot__s__cfg.html":[3,0,115], +"structciot__s__cfg.html#a104dd7ebfd24bb8b26a683a795e169d2":[3,0,115,2], +"structciot__s__cfg.html#a4e8946f8a10777bc88814da1c657815c":[3,0,115,0], +"structciot__s__cfg.html#a8a3b67e9e535387d32be766122edf704":[3,0,115,3], +"structciot__s__cfg.html#add0d24e0065c33f7e1da60ac94e6988b":[3,0,115,1], +"structciot__serializer.html":[3,0,116], +"structciot__serializer.html#a5134e67f23ff9c0bf8efd1e393d8d2c1":[3,0,116,1], +"structciot__serializer.html#a54d8784095e9490e44f8ddc37679ef81":[3,0,116,0], +"structciot__serializer.html#a592dc1023ebe4d8247de4f601b4c20f5":[3,0,116,2], +"structciot__slip__t.html":[3,0,117], +"structciot__slip__t.html#a247b6cc8b5cd8bd49b0c4c62ed59f7b8":[3,0,117,2], +"structciot__slip__t.html#a899cec1e08bcfa497396baa3584d18e1":[3,0,117,0], +"structciot__slip__t.html#accaf0db15b7c2817f00fed318f13fe5b":[3,0,117,3], +"structciot__slip__t.html#ad1e3bc5a59e7ed48387fb95383fae12f":[3,0,117,1], +"structciot__status__t.html":[3,0,118], +"structciot__status__t.html#a92c867a7e919ec76d2e58647718b633a":[3,0,118,0], +"structciot__status__t.html#ab3a7653fc8a3bfebedb322cceec24c38":[3,0,118,1], +"structciot__storage__cfg__t.html":[3,0,119], +"structciot__storage__cfg__t.html#aa03a710482f738f9fe6095f1d4c6774a":[3,0,119,0], +"structciot__storage__req__file__data__t.html":[3,0,121], +"structciot__storage__req__file__data__t.html#ace45f567511d3f9ff978c679ae38b5b0":[3,0,121,1], +"structciot__storage__req__file__data__t.html#ae5dc6ffcd9b7605c7787791e40cc6bb0":[3,0,121,2], +"structciot__storage__req__file__data__t.html#afe23ad4b14c014e0c70c96d93e44005c":[3,0,121,0], +"structciot__storage__req__t.html":[3,0,122], +"structciot__storage__req__t.html#a6b5e08e2800e812e2ee5294c83ac9fe6":[3,0,122,0], +"structciot__storage__req__t.html#a7b3cbcb3aea8c25ecc00d1316d1a79d6":[3,0,122,1], +"structciot__storage__status__msg__t.html":[3,0,123], +"structciot__storage__status__msg__t.html#ac1a66aa256f203858bb2477b812e36fb":[3,0,123,1], +"structciot__storage__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[3,0,123,0], +"structciot__storage__status__t.html":[3,0,124], +"structciot__storage__status__t.html#aabc97b8fe1b1624b67ee7bc472d5b0b0":[3,0,124,0], +"structciot__sys__cfg__t.html":[3,0,125], +"structciot__sys__features__t.html":[3,0,127], +"structciot__sys__features__t.html#a68d421729d1895d3b9a6f4cc1dedbb42":[3,0,127,0], +"structciot__sys__features__t.html#aeb930ea2d960351877d7ef0a126173ff":[3,0,127,1], +"structciot__sys__hw__features__t.html":[3,0,128], +"structciot__sys__hw__features__t.html#a2e90afcc174ac8d99edf7229774986db":[3,0,128,5], +"structciot__sys__hw__features__t.html#a3541968d9c0a8b544893692fb34cfdee":[3,0,128,0], +"structciot__sys__hw__features__t.html#a5a6ed8c04a3db86066924b1a1bf4dad3":[3,0,128,3], +"structciot__sys__hw__features__t.html#a633be9f96069e4c7cb47b431f80ca974":[3,0,128,2], +"structciot__sys__hw__features__t.html#a634aacbacba6e5a795fbebf904d6f827":[3,0,128,1], +"structciot__sys__hw__features__t.html#a71f3331b8fa338b8bb771e9c60142df8":[3,0,128,7], +"structciot__sys__hw__features__t.html#ab56ae378dca42f3463d9dab3f4462045":[3,0,128,6], +"structciot__sys__hw__features__t.html#ab8549384ff6a90d5fedec40cd3535ebf":[3,0,128,4], +"structciot__sys__hw__features__t.html#abf7485e5a2b2214d69dd780eddc62f39":[3,0,128,8], +"structciot__sys__info__t.html":[3,0,129], +"structciot__sys__info__t.html#a08bf5c347b3e2c3525c382eaab3d6f97":[3,0,129,1], +"structciot__sys__info__t.html#a33414ac5d16ad70f9ff7696f7922beec":[3,0,129,0], +"structciot__sys__info__t.html#a978e0f986a3de1feb66ebf37cd43b274":[3,0,129,2], +"structciot__sys__info__t.html#adc57848c0c5ba85f8662d618bcbd80a7":[3,0,129,3], +"structciot__sys__req__t.html":[3,0,131], +"structciot__sys__req__t.html#a3acb986a68044c354bb4e34cb18e4d3c":[3,0,131,0], +"structciot__sys__req__t.html#a4341eac7e0a50f29b2101e5b7584db32":[3,0,131,1], +"structciot__sys__status__msg__t.html":[3,0,132], +"structciot__sys__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[3,0,132,0], +"structciot__sys__status__msg__t.html#ad3dbfc73fddab4d58bde12f27edab41b":[3,0,132,1], +"structciot__sys__status__t.html":[3,0,133], +"structciot__sys__status__t.html#a29734819b12e849f2f27b8663d023d8f":[3,0,133,1], +"structciot__sys__status__t.html#a569e06e92ec3d06c5ebf7f40d7f9a84e":[3,0,133,2], +"structciot__sys__status__t.html#aa455685612d3d0967fd32c32256a8bd3":[3,0,133,0], +"structciot__sys__status__t.html#aa4f71758f86d92d3ae60a541335f579d":[3,0,133,4], +"structciot__sys__status__t.html#acc644e0c68521fc2c21bdf5acb5f5812":[3,0,133,3], +"structciot__sys__sw__features__t.html":[3,0,134], +"structciot__sys__sw__features__t.html#a1f1d5466bff3ee92c8a67e4b067159a2":[3,0,134,3], +"structciot__sys__sw__features__t.html#a34018b7bbca3d89088500ca3a47a66fd":[3,0,134,4], +"structciot__sys__sw__features__t.html#a5a6ed8c04a3db86066924b1a1bf4dad3":[3,0,134,6], +"structciot__sys__sw__features__t.html#a6adae5024e1ef3cf7e6209bf7f0c58a0":[3,0,134,0], +"structciot__sys__sw__features__t.html#a720e2a2aba3a8aa7ec09162d3a522d60":[3,0,134,7], +"structciot__sys__sw__features__t.html#a8081e8e6e70c0ae11cc3996fe07f6dde":[3,0,134,2], +"structciot__sys__sw__features__t.html#aa20473f3745555bec85f491e13188f4e":[3,0,134,5], +"structciot__sys__sw__features__t.html#ae536bd73f6eaace274e55d4779276e5e":[3,0,134,1], +"structciot__sys__sw__features__t.html#aea00c2c1dec6e8f58532f25c65210d9e":[3,0,134,8], +"structciot__tcp__cfg__t.html":[3,0,135], +"structciot__tcp__cfg__t.html#a0beca1eecd2529c061a6dc4cb8a412fd":[3,0,135,2], +"structciot__tcp__cfg__t.html#a689764758640d8f794e755c07c602667":[3,0,135,0], +"structciot__tcp__cfg__t.html#a9bf249fa42db4caf84d05f92ed1f9718":[3,0,135,1], +"structciot__tcp__cfg__t.html#ada50f0e7b89816d02459e3e520b018bf":[3,0,135,4], +"structciot__tcp__cfg__t.html#ae81515e082f9bc33e8968181945586da":[3,0,135,3], +"structciot__tcp__dhcp__status__t.html":[3,0,137], +"structciot__tcp__dhcp__status__t.html#acb22641cf860e836e7394d14b9adae4b":[3,0,137,0], +"structciot__tcp__dhcp__status__t.html#afdb30da7a1b29e70c8b5051adcaf649b":[3,0,137,1], +"structciot__tcp__handle.html":[3,0,138], +"structciot__tcp__handle.html#a1f53b649c735819db1618409eec01b05":[3,0,138,2], +"structciot__tcp__handle.html#a34be4afa8e4bf3487bbf19439633a0f8":[3,0,138,0], +"structciot__tcp__handle.html#af47c5ec8385375f1765e2728e856714a":[3,0,138,1], +"structciot__tcp__info__t.html":[3,0,139], +"structciot__tcp__info__t.html#a2f32c75fb4bc7ba39243ef4a9f8eacc1":[3,0,139,1], +"structciot__tcp__info__t.html#ae81515e082f9bc33e8968181945586da":[3,0,139,0], +"structciot__tcp__req__t.html":[3,0,141] }; diff --git a/docs/navtreeindex3.js b/docs/navtreeindex3.js index a59685c..f44bc57 100644 --- a/docs/navtreeindex3.js +++ b/docs/navtreeindex3.js @@ -1,253 +1,222 @@ var NAVTREEINDEX3 = { -"structciot__opcuas__req__t.html":[1,0,100], -"structciot__opcuas__req__t.html#a18e3465478724c7b699bb5077661ea35":[1,0,100,0], -"structciot__opcuas__req__t.html#a6a535362b7c81b40f3ed9f6cb292a469":[1,0,100,1], -"structciot__opcuas__status__msg__t.html":[1,0,101], -"structciot__opcuas__status__msg__t.html#ac3be6c0c62c2999a9dd9fa0099945876":[1,0,101,1], -"structciot__opcuas__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[1,0,101,0], -"structciot__opcuas__status__t.html":[1,0,102], -"structciot__opcuas__status__t.html#a584e26c042d8a98bf6161b7aa27ba4cf":[1,0,102,0], -"structciot__ota__cfg__t.html":[1,0,103], -"structciot__ota__cfg__t.html#a153935e13b871590c5521d1b258d017f":[1,0,103,4], -"structciot__ota__cfg__t.html#a268d99c2d888dd67e8ea77d3be0a5021":[1,0,103,1], -"structciot__ota__cfg__t.html#a63de528fa8d98b79adfe7f9f68880c17":[1,0,103,3], -"structciot__ota__cfg__t.html#acb7bc06bed6f6408d719334fc41698c7":[1,0,103,2], -"structciot__ota__cfg__t.html#afe60ab2756fb1ea1c1de6f3ec6dbea98":[1,0,103,0], -"structciot__ota__req__t.html":[1,0,106], -"structciot__ota__req__t.html#a19605616d62f4ee24f6aefb6c34480e2":[1,0,106,1], -"structciot__ota__req__t.html#a77dc06e65f4b0aed4a3f44e1b6a32aa0":[1,0,106,0], -"structciot__ota__status__msg__t.html":[1,0,107], -"structciot__ota__status__msg__t.html#a86de670b32fc6ad5c7a44fefb41e6e3a":[1,0,107,1], -"structciot__ota__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[1,0,107,0], -"structciot__ota__status__t.html":[1,0,108], -"structciot__ota__status__t.html#a11614f44ef4d939bdd984953346a7572":[1,0,108,0], -"structciot__ota__status__t.html#a42539ea8650b094f66be7a689243c5ef":[1,0,108,2], -"structciot__ota__status__t.html#a796f1aeb4c800b653ee018b20c818804":[1,0,108,3], -"structciot__ota__status__t.html#a990d41db67b3605c9184428e72edcea1":[1,0,108,1], -"structciot__req__delete__iface__cfg__t.html":[1,0,110], -"structciot__req__delete__iface__cfg__t.html#a5aca650808126ada7193361ab8921e7a":[1,0,110,0], -"structciot__req__proxy__msg__t.html":[1,0,111], -"structciot__req__proxy__msg__t.html#a71ed92c04817c761b6de921899b330d6":[1,0,111,0], -"structciot__req__proxy__msg__t.html#a82eb8e84b1ff534e368a647470a626c3":[1,0,111,1], -"structciot__req__proxy__msg__t.html#aaba88b24a21a6c70c895c0d55f4a69a0":[1,0,111,2], -"structciot__req__result__t.html":[1,0,112], -"structciot__req__result__t.html#a2dd2df43c7a23b9fb91e6e462c592477":[1,0,112,0], -"structciot__req__result__t.html#a5aca650808126ada7193361ab8921e7a":[1,0,112,1], -"structciot__req__save__iface__cfg__t.html":[1,0,113], -"structciot__req__save__iface__cfg__t.html#a5aca650808126ada7193361ab8921e7a":[1,0,113,0], -"structciot__req__t.html":[1,0,114], -"structciot__req__t.html#a55a6010bd818c4c1b94eca45963f09a9":[1,0,114,1], -"structciot__req__t.html#aeecdef82363bc7b7d7ba9bf5f8f51908":[1,0,114,0], -"structciot__s__cfg.html":[1,0,115], -"structciot__s__cfg.html#a104dd7ebfd24bb8b26a683a795e169d2":[1,0,115,2], -"structciot__s__cfg.html#a4e8946f8a10777bc88814da1c657815c":[1,0,115,0], -"structciot__s__cfg.html#a8a3b67e9e535387d32be766122edf704":[1,0,115,3], -"structciot__s__cfg.html#add0d24e0065c33f7e1da60ac94e6988b":[1,0,115,1], -"structciot__serializer.html":[1,0,116], -"structciot__serializer.html#a5134e67f23ff9c0bf8efd1e393d8d2c1":[1,0,116,1], -"structciot__serializer.html#a54d8784095e9490e44f8ddc37679ef81":[1,0,116,0], -"structciot__serializer.html#a592dc1023ebe4d8247de4f601b4c20f5":[1,0,116,2], -"structciot__slip__t.html":[1,0,117], -"structciot__slip__t.html#a247b6cc8b5cd8bd49b0c4c62ed59f7b8":[1,0,117,2], -"structciot__slip__t.html#a899cec1e08bcfa497396baa3584d18e1":[1,0,117,0], -"structciot__slip__t.html#accaf0db15b7c2817f00fed318f13fe5b":[1,0,117,3], -"structciot__slip__t.html#ad1e3bc5a59e7ed48387fb95383fae12f":[1,0,117,1], -"structciot__status__t.html":[1,0,118], -"structciot__status__t.html#a92c867a7e919ec76d2e58647718b633a":[1,0,118,0], -"structciot__status__t.html#ab3a7653fc8a3bfebedb322cceec24c38":[1,0,118,1], -"structciot__storage__cfg__t.html":[1,0,119], -"structciot__storage__cfg__t.html#aa03a710482f738f9fe6095f1d4c6774a":[1,0,119,0], -"structciot__storage__req__file__data__t.html":[1,0,121], -"structciot__storage__req__file__data__t.html#ace45f567511d3f9ff978c679ae38b5b0":[1,0,121,1], -"structciot__storage__req__file__data__t.html#ae5dc6ffcd9b7605c7787791e40cc6bb0":[1,0,121,2], -"structciot__storage__req__file__data__t.html#afe23ad4b14c014e0c70c96d93e44005c":[1,0,121,0], -"structciot__storage__req__t.html":[1,0,122], -"structciot__storage__req__t.html#a6b5e08e2800e812e2ee5294c83ac9fe6":[1,0,122,0], -"structciot__storage__req__t.html#a7b3cbcb3aea8c25ecc00d1316d1a79d6":[1,0,122,1], -"structciot__storage__status__msg__t.html":[1,0,123], -"structciot__storage__status__msg__t.html#ac1a66aa256f203858bb2477b812e36fb":[1,0,123,1], -"structciot__storage__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[1,0,123,0], -"structciot__storage__status__t.html":[1,0,124], -"structciot__storage__status__t.html#aabc97b8fe1b1624b67ee7bc472d5b0b0":[1,0,124,0], -"structciot__sys__cfg__t.html":[1,0,125], -"structciot__sys__features__t.html":[1,0,127], -"structciot__sys__features__t.html#a68d421729d1895d3b9a6f4cc1dedbb42":[1,0,127,0], -"structciot__sys__features__t.html#aeb930ea2d960351877d7ef0a126173ff":[1,0,127,1], -"structciot__sys__hw__features__t.html":[1,0,128], -"structciot__sys__hw__features__t.html#a2e90afcc174ac8d99edf7229774986db":[1,0,128,5], -"structciot__sys__hw__features__t.html#a3541968d9c0a8b544893692fb34cfdee":[1,0,128,0], -"structciot__sys__hw__features__t.html#a5a6ed8c04a3db86066924b1a1bf4dad3":[1,0,128,3], -"structciot__sys__hw__features__t.html#a633be9f96069e4c7cb47b431f80ca974":[1,0,128,2], -"structciot__sys__hw__features__t.html#a634aacbacba6e5a795fbebf904d6f827":[1,0,128,1], -"structciot__sys__hw__features__t.html#a71f3331b8fa338b8bb771e9c60142df8":[1,0,128,7], -"structciot__sys__hw__features__t.html#ab56ae378dca42f3463d9dab3f4462045":[1,0,128,6], -"structciot__sys__hw__features__t.html#ab8549384ff6a90d5fedec40cd3535ebf":[1,0,128,4], -"structciot__sys__hw__features__t.html#abf7485e5a2b2214d69dd780eddc62f39":[1,0,128,8], -"structciot__sys__info__t.html":[1,0,129], -"structciot__sys__info__t.html#a08bf5c347b3e2c3525c382eaab3d6f97":[1,0,129,1], -"structciot__sys__info__t.html#a33414ac5d16ad70f9ff7696f7922beec":[1,0,129,0], -"structciot__sys__info__t.html#a978e0f986a3de1feb66ebf37cd43b274":[1,0,129,2], -"structciot__sys__info__t.html#adc57848c0c5ba85f8662d618bcbd80a7":[1,0,129,3], -"structciot__sys__req__t.html":[1,0,131], -"structciot__sys__req__t.html#a3acb986a68044c354bb4e34cb18e4d3c":[1,0,131,0], -"structciot__sys__req__t.html#a4341eac7e0a50f29b2101e5b7584db32":[1,0,131,1], -"structciot__sys__status__msg__t.html":[1,0,132], -"structciot__sys__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[1,0,132,0], -"structciot__sys__status__msg__t.html#ad3dbfc73fddab4d58bde12f27edab41b":[1,0,132,1], -"structciot__sys__status__t.html":[1,0,133], -"structciot__sys__status__t.html#a29734819b12e849f2f27b8663d023d8f":[1,0,133,1], -"structciot__sys__status__t.html#a569e06e92ec3d06c5ebf7f40d7f9a84e":[1,0,133,2], -"structciot__sys__status__t.html#aa455685612d3d0967fd32c32256a8bd3":[1,0,133,0], -"structciot__sys__status__t.html#aa4f71758f86d92d3ae60a541335f579d":[1,0,133,4], -"structciot__sys__status__t.html#acc644e0c68521fc2c21bdf5acb5f5812":[1,0,133,3], -"structciot__sys__sw__features__t.html":[1,0,134], -"structciot__sys__sw__features__t.html#a1f1d5466bff3ee92c8a67e4b067159a2":[1,0,134,3], -"structciot__sys__sw__features__t.html#a34018b7bbca3d89088500ca3a47a66fd":[1,0,134,4], -"structciot__sys__sw__features__t.html#a5a6ed8c04a3db86066924b1a1bf4dad3":[1,0,134,6], -"structciot__sys__sw__features__t.html#a6adae5024e1ef3cf7e6209bf7f0c58a0":[1,0,134,0], -"structciot__sys__sw__features__t.html#a720e2a2aba3a8aa7ec09162d3a522d60":[1,0,134,7], -"structciot__sys__sw__features__t.html#a8081e8e6e70c0ae11cc3996fe07f6dde":[1,0,134,2], -"structciot__sys__sw__features__t.html#aa20473f3745555bec85f491e13188f4e":[1,0,134,5], -"structciot__sys__sw__features__t.html#ae536bd73f6eaace274e55d4779276e5e":[1,0,134,1], -"structciot__sys__sw__features__t.html#aea00c2c1dec6e8f58532f25c65210d9e":[1,0,134,8], -"structciot__tcp__cfg__t.html":[1,0,135], -"structciot__tcp__cfg__t.html#a0beca1eecd2529c061a6dc4cb8a412fd":[1,0,135,2], -"structciot__tcp__cfg__t.html#a689764758640d8f794e755c07c602667":[1,0,135,0], -"structciot__tcp__cfg__t.html#a9bf249fa42db4caf84d05f92ed1f9718":[1,0,135,1], -"structciot__tcp__cfg__t.html#ada50f0e7b89816d02459e3e520b018bf":[1,0,135,4], -"structciot__tcp__cfg__t.html#ae81515e082f9bc33e8968181945586da":[1,0,135,3], -"structciot__tcp__dhcp__status__t.html":[1,0,137], -"structciot__tcp__dhcp__status__t.html#acb22641cf860e836e7394d14b9adae4b":[1,0,137,0], -"structciot__tcp__dhcp__status__t.html#afdb30da7a1b29e70c8b5051adcaf649b":[1,0,137,1], -"structciot__tcp__handle.html":[1,0,138], -"structciot__tcp__handle.html#a1f53b649c735819db1618409eec01b05":[1,0,138,2], -"structciot__tcp__handle.html#a34be4afa8e4bf3487bbf19439633a0f8":[1,0,138,0], -"structciot__tcp__handle.html#af47c5ec8385375f1765e2728e856714a":[1,0,138,1], -"structciot__tcp__info__t.html":[1,0,139], -"structciot__tcp__info__t.html#a2f32c75fb4bc7ba39243ef4a9f8eacc1":[1,0,139,1], -"structciot__tcp__info__t.html#ae81515e082f9bc33e8968181945586da":[1,0,139,0], -"structciot__tcp__req__t.html":[1,0,141], -"structciot__tcp__req__t.html#ab9836dbdec18617a3ddefdeb64d68c5f":[1,0,141,0], -"structciot__tcp__req__t.html#acd8fb37e86ba410b191b31dc8cf154c3":[1,0,141,1], -"structciot__tcp__status__msg__t.html":[1,0,142], -"structciot__tcp__status__msg__t.html#a290455b77155aab0d086fb8c69f76364":[1,0,142,1], -"structciot__tcp__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[1,0,142,0], -"structciot__tcp__status__t.html":[1,0,143], -"structciot__tcp__status__t.html#a086ac86c52dfa147af9f5afed658c7cb":[1,0,143,2], -"structciot__tcp__status__t.html#a771cb8893000d5d94fc8bc2d21347412":[1,0,143,3], -"structciot__tcp__status__t.html#acaf4be12cb0cee4fbea5e8e121f6d2e4":[1,0,143,0], -"structciot__tcp__status__t.html#acf265b9f6bf6e80f8d16a9aaade7e8cd":[1,0,143,1], -"structciot__timer__cfg.html":[1,0,144], -"structciot__timer__cfg.html#a702f51681c5c1dd8d6ad5aaa41d80f29":[1,0,144,0], -"structciot__timer__cfg.html#ac792c2b1c6a52954e47c8a9ed5ac8582":[1,0,144,1], -"structciot__uart__base.html":[1,0,145], -"structciot__uart__base.html#a05aee9079d36e8f1c1f55a4803c9048f":[1,0,145,1], -"structciot__uart__base.html#a233ade82acc15e44b91d5b225bb2ba98":[1,0,145,2], -"structciot__uart__base.html#a3f98eeddc8b251dcbfd39459c99f9c72":[1,0,145,0], -"structciot__uart__base.html#aa311cb42bbd477c3bfd5371dd0b8bedd":[1,0,145,3], -"structciot__uart__cfg__t.html":[1,0,146], -"structciot__uart__cfg__t.html#a148f33bbcda8087a77d8ba30f7e3c502":[1,0,146,0], -"structciot__uart__cfg__t.html#a3c82534f71c473adbf7fa380db7badc2":[1,0,146,8], -"structciot__uart__cfg__t.html#a5b495a42fbde79adb797b1e9f6a4e039":[1,0,146,3], -"structciot__uart__cfg__t.html#a73580a66f00a6a0ea4a56441d529797f":[1,0,146,2], -"structciot__uart__cfg__t.html#a7550d74d56b36307b64a75f5d4eb8dad":[1,0,146,1], -"structciot__uart__cfg__t.html#a9498b6790752dd532f6465f3efb59cbf":[1,0,146,4], -"structciot__uart__cfg__t.html#ab461fda70a78750930429bcc68db5a98":[1,0,146,9], -"structciot__uart__cfg__t.html#abc8367b5354c54835c1d74192f355c1c":[1,0,146,10], -"structciot__uart__cfg__t.html#abea371f9030e15a5d2a4c181576833d8":[1,0,146,5], -"structciot__uart__cfg__t.html#acb7bc06bed6f6408d719334fc41698c7":[1,0,146,7], -"structciot__uart__cfg__t.html#ae5290e95682932917ab6a7fd7897abb4":[1,0,146,6], -"structciot__uart__req__send__data__t.html":[1,0,150], -"structciot__uart__req__send__data__t.html#ae5dc6ffcd9b7605c7787791e40cc6bb0":[1,0,150,1], -"structciot__uart__req__send__data__t.html#afe23ad4b14c014e0c70c96d93e44005c":[1,0,150,0], -"structciot__uart__req__t.html":[1,0,151], -"structciot__uart__req__t.html#a21d88bf4d17b9837d25893a4000044db":[1,0,151,1], -"structciot__uart__req__t.html#a8abbd25f85c295a54f54d2815908d273":[1,0,151,0], -"structciot__uart__status__msg__t.html":[1,0,152], -"structciot__uart__status__msg__t.html#aa311cb42bbd477c3bfd5371dd0b8bedd":[1,0,152,1], -"structciot__uart__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[1,0,152,0], -"structciot__uart__status__t.html":[1,0,153], -"structciot__uart__status__t.html#a00c2e8ab24db2cabd968dcd6aa86a7c3":[1,0,153,1], -"structciot__uart__status__t.html#ad02fff01b7a3add4e201ad4fd60bb06d":[1,0,153,0], -"structciot__usb__cfg__t.html":[1,0,154], -"structciot__usb__cfg__t.html#a4e8946f8a10777bc88814da1c657815c":[1,0,154,0], -"structciot__usb__req__t.html":[1,0,158], -"structciot__usb__req__t.html#a91cc22753d20b8e288bae1944e5c5fce":[1,0,158,0], -"structciot__usb__req__t.html#aa027ba4e6f58da1f5204e16dd15d5136":[1,0,158,1], -"structciot__usb__status__msg__t.html":[1,0,159], -"structciot__usb__status__msg__t.html#ab26791741e383cec2107fa1540a14342":[1,0,159,1], -"structciot__usb__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[1,0,159,0], -"structciot__usb__status__t.html":[1,0,160], -"structciot__usb__status__t.html#a3442f594ec1fc76781d93b1a28b55cba":[1,0,160,0], -"structciot__wifi__ap__info__t.html":[1,0,161], -"structciot__wifi__ap__info__t.html#a19c52baafe5797c359c5e0f5776499d7":[1,0,161,1], -"structciot__wifi__ap__info__t.html#a3b962e67ba74725bd60ca3c29f785abe":[1,0,161,2], -"structciot__wifi__ap__info__t.html#a62cb83d5528e0d152b4e179fea395cab":[1,0,161,0], -"structciot__wifi__ap__info__t.html#aa59121500c79646486524afe23a3593e":[1,0,161,3], -"structciot__wifi__cfg__t.html":[1,0,162], -"structciot__wifi__cfg__t.html#a35cbcdf247b4952f8c35e071bed5a1d8":[1,0,162,3], -"structciot__wifi__cfg__t.html#ad254d41fb741fd973215d202786b5737":[1,0,162,1], -"structciot__wifi__cfg__t.html#ae3a23efe266762659e03567d6afc26dd":[1,0,162,0], -"structciot__wifi__cfg__t.html#afa68a8b5194df4f630408f99085e4ab8":[1,0,162,2], -"structciot__wifi__req__t.html":[1,0,165], -"structciot__wifi__req__t.html#a01f8ce506c08d4070208e71aef019ff9":[1,0,165,0], -"structciot__wifi__req__t.html#a6f6c1937c79d949cdf73c68cf9ad3493":[1,0,165,1], -"structciot__wifi__scan__result__t.html":[1,0,166], -"structciot__wifi__scan__result__t.html#a1f0703f0199d2ac8ec80081ea898e0cf":[1,0,166,0], -"structciot__wifi__scan__result__t.html#a20302e2c99a60d3f612dba57e3f6333b":[1,0,166,1], -"structciot__wifi__status__msg__t.html":[1,0,167], -"structciot__wifi__status__msg__t.html#a09cb5a4aa60e39d810f1c21089103503":[1,0,167,1], -"structciot__wifi__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[1,0,167,0], -"structciot__wifi__status__t.html":[1,0,168], -"structciot__wifi__status__t.html#ac1b76e51a84c5050063165be909dd70a":[1,0,168,1], -"structciot__wifi__status__t.html#ac4061ebe19bc469e9a7569aa132010a8":[1,0,168,2], -"structciot__wifi__status__t.html#ae5b995148e44c51fc076af577ec1acc8":[1,0,168,0], -"topics.html":[0], -"unionciot__ble__data__u.html":[1,0,1], -"unionciot__ble__data__u.html#a3bb879297495825c0895764c1b7593b1":[1,0,1,0], -"unionciot__ble__data__u.html#a6aeefeee1b018d7d77c41f66f6015cf9":[1,0,1,1], -"unionciot__ble__data__u.html#ae334becb4d9815b900b4cc43b5b9e49b":[1,0,1,2], -"unionciot__ble__req__data__u.html":[1,0,4], -"unionciot__ble__req__data__u.html#a62a0efca13351bcf8980bde96c09854e":[1,0,4,0], -"unionciot__ble__scn__data__u.html":[1,0,8], -"unionciot__ble__scn__data__u.html#a4fff0375f4b234a60fcd5e6723d9c8a9":[1,0,8,1], -"unionciot__ble__scn__data__u.html#a77ffb25407771dd73e21b56e0976b3b7":[1,0,8,0], -"unionciot__ble__scn__data__u.html#aa7ad441170fdff42b419665a6652a09f":[1,0,8,2], -"unionciot__ble__scn__req__data__u.html":[1,0,9], -"unionciot__bridge__data__u.html":[1,0,16], -"unionciot__bridge__data__u.html#a21b1ec52268024ae8c4b0eca1dc2a491":[1,0,16,1], -"unionciot__bridge__data__u.html#a422a3539477ec835aea97b889564f22a":[1,0,16,0], -"unionciot__bridge__data__u.html#ab50a6b7e2887ecb6625b540edae99138":[1,0,16,2], -"unionciot__bridge__req__data__u.html":[1,0,17], -"unionciot__data__model__data__u.html":[1,0,23], -"unionciot__data__model__data__u.html#a0a7b5df86de5bd60d09108b02de9d89d":[1,0,23,0], -"unionciot__data__model__data__u.html#a3f4172ed60af91f49f998cde97dd28cb":[1,0,23,2], -"unionciot__data__model__data__u.html#a8342e156b9596a1154ff4ce550adb30f":[1,0,23,1], -"unionciot__data__model__req__data__u.html":[1,0,24], -"unionciot__data__u.html":[1,0,27], -"unionciot__data__u.html#a82e7ef84cdd4eb20f2da20f0df751fd3":[1,0,27,0], -"unionciot__data__u.html#a8975b1b5a295a8ee8669dfcce942dcd5":[1,0,27,1], -"unionciot__data__u.html#ac4db33ce66ac8ec09d4b5b088eb88ead":[1,0,27,2], -"unionciot__dfu__data__u.html":[1,0,29], -"unionciot__dfu__data__u.html#a8d4be68066e35bb11aecfff26e3cb30b":[1,0,29,0], -"unionciot__dfu__data__u.html#a9fb48f785812375d586c71a02b453e64":[1,0,29,2], -"unionciot__dfu__data__u.html#aeec32200114264e8556110d5c2ffc44c":[1,0,29,1], -"unionciot__dfu__req__data__u.html":[1,0,30], -"unionciot__gpio__data__u.html":[1,0,37], -"unionciot__gpio__data__u.html#a15039efacca36cdba57c2ccf7b0a3d4f":[1,0,37,0], -"unionciot__gpio__data__u.html#ac3fb50fe28f5e2ea50c6f662aa19beca":[1,0,37,1], -"unionciot__gpio__data__u.html#af7b93aeb68c1648ccb2617ff8217e7b0":[1,0,37,2], -"unionciot__gpio__req__data__u.html":[1,0,38], -"unionciot__gpio__req__data__u.html#a15039efacca36cdba57c2ccf7b0a3d4f":[1,0,38,0], -"unionciot__gpio__req__data__u.html#a5cc92c2a01be84c116055f80d77e5140":[1,0,38,2], -"unionciot__gpio__req__data__u.html#a93559a0f91d62042000a3276dc457506":[1,0,38,1], -"unionciot__httpc__data__u.html":[1,0,45], -"unionciot__httpc__data__u.html#a0ddab1f295ea5861939322623d313037":[1,0,45,0], -"unionciot__httpc__data__u.html#a28206abcb96418175c4998aaff04c99a":[1,0,45,1], -"unionciot__httpc__data__u.html#a57c784a27da9399f6d1a7bd2122a3c65":[1,0,45,2], -"unionciot__httpc__data__u.html#ac5c1eb82650b9d0161a399175c459ad3":[1,0,45,3], -"unionciot__httpc__event.html":[1,0,46], -"unionciot__httpc__event.html#a6ec8e644d05e4d629a77959492eee5d3":[1,0,46,0], -"unionciot__httpc__req__data.html":[1,0,48] +"structciot__tcp__req__t.html#ab9836dbdec18617a3ddefdeb64d68c5f":[3,0,141,0], +"structciot__tcp__req__t.html#acd8fb37e86ba410b191b31dc8cf154c3":[3,0,141,1], +"structciot__tcp__status__msg__t.html":[3,0,142], +"structciot__tcp__status__msg__t.html#a290455b77155aab0d086fb8c69f76364":[3,0,142,1], +"structciot__tcp__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[3,0,142,0], +"structciot__tcp__status__t.html":[3,0,143], +"structciot__tcp__status__t.html#a086ac86c52dfa147af9f5afed658c7cb":[3,0,143,2], +"structciot__tcp__status__t.html#a771cb8893000d5d94fc8bc2d21347412":[3,0,143,3], +"structciot__tcp__status__t.html#acaf4be12cb0cee4fbea5e8e121f6d2e4":[3,0,143,0], +"structciot__tcp__status__t.html#acf265b9f6bf6e80f8d16a9aaade7e8cd":[3,0,143,1], +"structciot__timer__cfg.html":[3,0,144], +"structciot__timer__cfg.html#a702f51681c5c1dd8d6ad5aaa41d80f29":[3,0,144,0], +"structciot__timer__cfg.html#ac792c2b1c6a52954e47c8a9ed5ac8582":[3,0,144,1], +"structciot__uart__base.html":[3,0,145], +"structciot__uart__base.html#a05aee9079d36e8f1c1f55a4803c9048f":[3,0,145,1], +"structciot__uart__base.html#a233ade82acc15e44b91d5b225bb2ba98":[3,0,145,2], +"structciot__uart__base.html#a3f98eeddc8b251dcbfd39459c99f9c72":[3,0,145,0], +"structciot__uart__base.html#aa311cb42bbd477c3bfd5371dd0b8bedd":[3,0,145,3], +"structciot__uart__cfg__t.html":[3,0,146], +"structciot__uart__cfg__t.html#a148f33bbcda8087a77d8ba30f7e3c502":[3,0,146,0], +"structciot__uart__cfg__t.html#a3c82534f71c473adbf7fa380db7badc2":[3,0,146,8], +"structciot__uart__cfg__t.html#a5b495a42fbde79adb797b1e9f6a4e039":[3,0,146,3], +"structciot__uart__cfg__t.html#a73580a66f00a6a0ea4a56441d529797f":[3,0,146,2], +"structciot__uart__cfg__t.html#a7550d74d56b36307b64a75f5d4eb8dad":[3,0,146,1], +"structciot__uart__cfg__t.html#a9498b6790752dd532f6465f3efb59cbf":[3,0,146,4], +"structciot__uart__cfg__t.html#ab461fda70a78750930429bcc68db5a98":[3,0,146,9], +"structciot__uart__cfg__t.html#abc8367b5354c54835c1d74192f355c1c":[3,0,146,10], +"structciot__uart__cfg__t.html#abea371f9030e15a5d2a4c181576833d8":[3,0,146,5], +"structciot__uart__cfg__t.html#acb7bc06bed6f6408d719334fc41698c7":[3,0,146,7], +"structciot__uart__cfg__t.html#ae5290e95682932917ab6a7fd7897abb4":[3,0,146,6], +"structciot__uart__req__send__data__t.html":[3,0,150], +"structciot__uart__req__send__data__t.html#ae5dc6ffcd9b7605c7787791e40cc6bb0":[3,0,150,1], +"structciot__uart__req__send__data__t.html#afe23ad4b14c014e0c70c96d93e44005c":[3,0,150,0], +"structciot__uart__req__t.html":[3,0,151], +"structciot__uart__req__t.html#a21d88bf4d17b9837d25893a4000044db":[3,0,151,1], +"structciot__uart__req__t.html#a8abbd25f85c295a54f54d2815908d273":[3,0,151,0], +"structciot__uart__status__msg__t.html":[3,0,152], +"structciot__uart__status__msg__t.html#aa311cb42bbd477c3bfd5371dd0b8bedd":[3,0,152,1], +"structciot__uart__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[3,0,152,0], +"structciot__uart__status__t.html":[3,0,153], +"structciot__uart__status__t.html#a00c2e8ab24db2cabd968dcd6aa86a7c3":[3,0,153,1], +"structciot__uart__status__t.html#ad02fff01b7a3add4e201ad4fd60bb06d":[3,0,153,0], +"structciot__usb__cfg__t.html":[3,0,154], +"structciot__usb__cfg__t.html#a4e8946f8a10777bc88814da1c657815c":[3,0,154,0], +"structciot__usb__req__t.html":[3,0,158], +"structciot__usb__req__t.html#a91cc22753d20b8e288bae1944e5c5fce":[3,0,158,0], +"structciot__usb__req__t.html#aa027ba4e6f58da1f5204e16dd15d5136":[3,0,158,1], +"structciot__usb__status__msg__t.html":[3,0,159], +"structciot__usb__status__msg__t.html#ab26791741e383cec2107fa1540a14342":[3,0,159,1], +"structciot__usb__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[3,0,159,0], +"structciot__usb__status__t.html":[3,0,160], +"structciot__usb__status__t.html#a3442f594ec1fc76781d93b1a28b55cba":[3,0,160,0], +"structciot__wifi__ap__info__t.html":[3,0,161], +"structciot__wifi__ap__info__t.html#a19c52baafe5797c359c5e0f5776499d7":[3,0,161,1], +"structciot__wifi__ap__info__t.html#a3b962e67ba74725bd60ca3c29f785abe":[3,0,161,2], +"structciot__wifi__ap__info__t.html#a62cb83d5528e0d152b4e179fea395cab":[3,0,161,0], +"structciot__wifi__ap__info__t.html#aa59121500c79646486524afe23a3593e":[3,0,161,3], +"structciot__wifi__cfg__t.html":[3,0,162], +"structciot__wifi__cfg__t.html#a35cbcdf247b4952f8c35e071bed5a1d8":[3,0,162,3], +"structciot__wifi__cfg__t.html#ad254d41fb741fd973215d202786b5737":[3,0,162,1], +"structciot__wifi__cfg__t.html#ae3a23efe266762659e03567d6afc26dd":[3,0,162,0], +"structciot__wifi__cfg__t.html#afa68a8b5194df4f630408f99085e4ab8":[3,0,162,2], +"structciot__wifi__req__t.html":[3,0,165], +"structciot__wifi__req__t.html#a01f8ce506c08d4070208e71aef019ff9":[3,0,165,0], +"structciot__wifi__req__t.html#a6f6c1937c79d949cdf73c68cf9ad3493":[3,0,165,1], +"structciot__wifi__scan__result__t.html":[3,0,166], +"structciot__wifi__scan__result__t.html#a1f0703f0199d2ac8ec80081ea898e0cf":[3,0,166,0], +"structciot__wifi__scan__result__t.html#a20302e2c99a60d3f612dba57e3f6333b":[3,0,166,1], +"structciot__wifi__status__msg__t.html":[3,0,167], +"structciot__wifi__status__msg__t.html#a09cb5a4aa60e39d810f1c21089103503":[3,0,167,1], +"structciot__wifi__status__msg__t.html#ac82086f11a03c9e8ff189f5ca9c26f0f":[3,0,167,0], +"structciot__wifi__status__t.html":[3,0,168], +"structciot__wifi__status__t.html#ac1b76e51a84c5050063165be909dd70a":[3,0,168,1], +"structciot__wifi__status__t.html#ac4061ebe19bc469e9a7569aa132010a8":[3,0,168,2], +"structciot__wifi__status__t.html#ae5b995148e44c51fc076af577ec1acc8":[3,0,168,0], +"todo.html":[1], +"topics.html":[2], +"unionciot__ble__data__u.html":[3,0,1], +"unionciot__ble__data__u.html#a3bb879297495825c0895764c1b7593b1":[3,0,1,0], +"unionciot__ble__data__u.html#a6aeefeee1b018d7d77c41f66f6015cf9":[3,0,1,1], +"unionciot__ble__data__u.html#ae334becb4d9815b900b4cc43b5b9e49b":[3,0,1,2], +"unionciot__ble__req__data__u.html":[3,0,4], +"unionciot__ble__req__data__u.html#a62a0efca13351bcf8980bde96c09854e":[3,0,4,0], +"unionciot__ble__scn__data__u.html":[3,0,8], +"unionciot__ble__scn__data__u.html#a4fff0375f4b234a60fcd5e6723d9c8a9":[3,0,8,1], +"unionciot__ble__scn__data__u.html#a77ffb25407771dd73e21b56e0976b3b7":[3,0,8,0], +"unionciot__ble__scn__data__u.html#aa7ad441170fdff42b419665a6652a09f":[3,0,8,2], +"unionciot__ble__scn__req__data__u.html":[3,0,9], +"unionciot__bridge__data__u.html":[3,0,16], +"unionciot__bridge__data__u.html#a21b1ec52268024ae8c4b0eca1dc2a491":[3,0,16,1], +"unionciot__bridge__data__u.html#a422a3539477ec835aea97b889564f22a":[3,0,16,0], +"unionciot__bridge__data__u.html#ab50a6b7e2887ecb6625b540edae99138":[3,0,16,2], +"unionciot__bridge__req__data__u.html":[3,0,17], +"unionciot__data__model__data__u.html":[3,0,23], +"unionciot__data__model__data__u.html#a0a7b5df86de5bd60d09108b02de9d89d":[3,0,23,0], +"unionciot__data__model__data__u.html#a3f4172ed60af91f49f998cde97dd28cb":[3,0,23,2], +"unionciot__data__model__data__u.html#a8342e156b9596a1154ff4ce550adb30f":[3,0,23,1], +"unionciot__data__model__req__data__u.html":[3,0,24], +"unionciot__data__u.html":[3,0,27], +"unionciot__data__u.html#a82e7ef84cdd4eb20f2da20f0df751fd3":[3,0,27,0], +"unionciot__data__u.html#a8975b1b5a295a8ee8669dfcce942dcd5":[3,0,27,1], +"unionciot__data__u.html#ac4db33ce66ac8ec09d4b5b088eb88ead":[3,0,27,2], +"unionciot__dfu__data__u.html":[3,0,29], +"unionciot__dfu__data__u.html#a8d4be68066e35bb11aecfff26e3cb30b":[3,0,29,0], +"unionciot__dfu__data__u.html#a9fb48f785812375d586c71a02b453e64":[3,0,29,2], +"unionciot__dfu__data__u.html#aeec32200114264e8556110d5c2ffc44c":[3,0,29,1], +"unionciot__dfu__req__data__u.html":[3,0,30], +"unionciot__gpio__data__u.html":[3,0,37], +"unionciot__gpio__data__u.html#a15039efacca36cdba57c2ccf7b0a3d4f":[3,0,37,0], +"unionciot__gpio__data__u.html#ac3fb50fe28f5e2ea50c6f662aa19beca":[3,0,37,1], +"unionciot__gpio__data__u.html#af7b93aeb68c1648ccb2617ff8217e7b0":[3,0,37,2], +"unionciot__gpio__req__data__u.html":[3,0,38], +"unionciot__gpio__req__data__u.html#a15039efacca36cdba57c2ccf7b0a3d4f":[3,0,38,0], +"unionciot__gpio__req__data__u.html#a5cc92c2a01be84c116055f80d77e5140":[3,0,38,2], +"unionciot__gpio__req__data__u.html#a93559a0f91d62042000a3276dc457506":[3,0,38,1], +"unionciot__httpc__data__u.html":[3,0,45], +"unionciot__httpc__data__u.html#a0ddab1f295ea5861939322623d313037":[3,0,45,0], +"unionciot__httpc__data__u.html#a28206abcb96418175c4998aaff04c99a":[3,0,45,1], +"unionciot__httpc__data__u.html#a57c784a27da9399f6d1a7bd2122a3c65":[3,0,45,2], +"unionciot__httpc__data__u.html#ac5c1eb82650b9d0161a399175c459ad3":[3,0,45,3], +"unionciot__httpc__event.html":[3,0,46], +"unionciot__httpc__event.html#a6ec8e644d05e4d629a77959492eee5d3":[3,0,46,0], +"unionciot__httpc__req__data.html":[3,0,48], +"unionciot__httpc__req__data.html#aa49303f9ec122aab28d291d44dcd0da5":[3,0,48,1], +"unionciot__httpc__req__data.html#ad6a0d166be37b6649d30122842622328":[3,0,48,0], +"unionciot__https__data__u.html":[3,0,55], +"unionciot__https__data__u.html#a07d1ec38980b47dde9caaa52c42163cf":[3,0,55,0], +"unionciot__https__data__u.html#ad463eb5d86dcaf2c866494686da9ce6e":[3,0,55,1], +"unionciot__https__data__u.html#ae71d44b4ec9b04f2b3eb183ae791f6ca":[3,0,55,3], +"unionciot__https__data__u.html#af4b02bc60804013ff8623f078ec43efe":[3,0,55,2], +"unionciot__https__req__data__u.html":[3,0,58], +"unionciot__iface__event__data__u.html":[3,0,66], +"unionciot__iface__event__data__u.html#a7aa0ef98c65d1029e00692392d89bebe":[3,0,66,1], +"unionciot__iface__event__data__u.html#abd6b36b1e2c07eaa53b376fdbf0e9345":[3,0,66,0], +"unionciot__mqttc__data__u.html":[3,0,72], +"unionciot__mqttc__data__u.html#a0bd4162002c890f2775878d4da138c03":[3,0,72,3], +"unionciot__mqttc__data__u.html#a79c158a8d9a5ddac01d944ca9485764b":[3,0,72,0], +"unionciot__mqttc__data__u.html#aea75f103343a18512b1024505e9766de":[3,0,72,1], +"unionciot__mqttc__data__u.html#af4d809ae5adfaf23b4229995212f0ded":[3,0,72,2], +"unionciot__mqttc__req__data__u.html":[3,0,76], +"unionciot__mqttc__req__data__u.html#a061e16f43670bc7f5d29c3971b4088c3":[3,0,76,1], +"unionciot__mqttc__req__data__u.html#ae7b5bde19c99952b5a737b600f3c21e6":[3,0,76,0], +"unionciot__msg__data__u.html":[3,0,83], +"unionciot__msg__data__u.html#a04c7e159105631b657e5b65f977a2c4a":[3,0,83,13], +"unionciot__msg__data__u.html#a2744efd5cf43b6d40d61ea66f7f620d3":[3,0,83,14], +"unionciot__msg__data__u.html#a2f12825330d395d82f01240cf84e6328":[3,0,83,2], +"unionciot__msg__data__u.html#a30ef17c042c5a942dc6491370179966c":[3,0,83,1], +"unionciot__msg__data__u.html#a460f5e2f775eebdacec0950914ab87a9":[3,0,83,5], +"unionciot__msg__data__u.html#a466cfd56b729d0efcfa70cff1a8b7b85":[3,0,83,10], +"unionciot__msg__data__u.html#a4c64bed640d14af56502dd8dceb9ab20":[3,0,83,12], +"unionciot__msg__data__u.html#a562d7a6cdd9053ec0bf7431017972903":[3,0,83,9], +"unionciot__msg__data__u.html#a57eed7a24887f5d1adba0df0ca8f29f5":[3,0,83,8], +"unionciot__msg__data__u.html#a6a8bc746dffc95f0f7b3c468023e10ae":[3,0,83,7], +"unionciot__msg__data__u.html#a7d6cac53c9bf51f572908dc2a5b383f0":[3,0,83,6], +"unionciot__msg__data__u.html#a818d9af5834bb69bdafd6513ae494405":[3,0,83,4], +"unionciot__msg__data__u.html#a8c90dd3961baa84d90870ce1f180006d":[3,0,83,0], +"unionciot__msg__data__u.html#aa1e13a945a02b050ffc85c83d3ebce1c":[3,0,83,11], +"unionciot__msg__data__u.html#ac06a3086376da2d8a84120762824336c":[3,0,83,17], +"unionciot__msg__data__u.html#acd0961872f365a2b54fef650ac190f50":[3,0,83,16], +"unionciot__msg__data__u.html#aeaf49cc638f1cc4fac1c69fa12502d32":[3,0,83,15], +"unionciot__msg__data__u.html#afedab1afecebfb5eb8554e3b1b056502":[3,0,83,3], +"unionciot__ntp__data__u.html":[3,0,91], +"unionciot__ntp__data__u.html#a0a55111acf65b88d386268c615a69499":[3,0,91,1], +"unionciot__ntp__data__u.html#a6c17383e9465f668d1e9dcb3cf8d4f4a":[3,0,91,0], +"unionciot__ntp__data__u.html#a95d5fa474c00a79ee883e78048ea7c4c":[3,0,91,2], +"unionciot__ntp__req__data__u.html":[3,0,92], +"unionciot__opcuas__data__u.html":[3,0,97], +"unionciot__opcuas__data__u.html#a66e033d989ec031368788f08deba7feb":[3,0,97,1], +"unionciot__opcuas__data__u.html#aa976951e468c754fef849731243b0acb":[3,0,97,0], +"unionciot__opcuas__data__u.html#ac3be6c0c62c2999a9dd9fa0099945876":[3,0,97,2], +"unionciot__opcuas__req__data__u.html":[3,0,99], +"unionciot__opcuas__req__data__u.html#a79aa371ccd92a505f5c26dcd8218a131":[3,0,99,0], +"unionciot__ota__data__u.html":[3,0,104], +"unionciot__ota__data__u.html#a4e22c6ea4c9d8fad6bbd0d3894c82627":[3,0,104,1], +"unionciot__ota__data__u.html#a62fb934187d712f56dc1289eda8f8cac":[3,0,104,0], +"unionciot__ota__data__u.html#a86de670b32fc6ad5c7a44fefb41e6e3a":[3,0,104,2], +"unionciot__ota__req__data__u.html":[3,0,105], +"unionciot__req__data__u.html":[3,0,109], +"unionciot__req__data__u.html#a778eb3ed59eb3397b9efad8d48d34b62":[3,0,109,1], +"unionciot__req__data__u.html#a90808ce2b0f0710bbe9799c64e8df0db":[3,0,109,2], +"unionciot__req__data__u.html#abaf229d7f984c35aa24c89632a544934":[3,0,109,0], +"unionciot__req__data__u.html#af24d10404fe7693abc12d43b4edea249":[3,0,109,3], +"unionciot__storage__data__u.html":[3,0,120], +"unionciot__storage__data__u.html#aabe6a902449529e66a1bb460116af784":[3,0,120,0], +"unionciot__storage__data__u.html#ac1a66aa256f203858bb2477b812e36fb":[3,0,120,2], +"unionciot__storage__data__u.html#ae35bc5d21998e1401aa886359cafd044":[3,0,120,1], +"unionciot__sys__data__u.html":[3,0,126], +"unionciot__sys__data__u.html#a7146ff86f43fac1f87c45f31c3a3bd20":[3,0,126,1], +"unionciot__sys__data__u.html#a9d2eb5a0a1a2ed5d529672a8229a8fe8":[3,0,126,0], +"unionciot__sys__data__u.html#ad3dbfc73fddab4d58bde12f27edab41b":[3,0,126,2], +"unionciot__sys__req__data__u.html":[3,0,130], +"unionciot__tcp__data__u.html":[3,0,136], +"unionciot__tcp__data__u.html#a290455b77155aab0d086fb8c69f76364":[3,0,136,2], +"unionciot__tcp__data__u.html#a71821427aa3817c68209a151bed81e56":[3,0,136,0], +"unionciot__tcp__data__u.html#aaf3b24e7b5d38ca3f76ca38e5e43ad7e":[3,0,136,1], +"unionciot__tcp__req__data__u.html":[3,0,140], +"unionciot__uart__data__u.html":[3,0,147], +"unionciot__uart__data__u.html#a107556abf8506af23fc4f92aa4d20cea":[3,0,147,0], +"unionciot__uart__data__u.html#aa311cb42bbd477c3bfd5371dd0b8bedd":[3,0,147,3], +"unionciot__uart__data__u.html#aeac55f9a4429aa466599b8875763ff38":[3,0,147,2], +"unionciot__uart__data__u.html#af5207c84edf0697170da962f465640a0":[3,0,147,1], +"unionciot__uart__event.html":[3,0,148], +"unionciot__uart__event.html#a998bffd5567753ef3f6b652a400de36b":[3,0,148,0], +"unionciot__uart__req__data__u.html":[3,0,149], +"unionciot__uart__req__data__u.html#a64001c4b28083877216a64df74dff823":[3,0,149,0], +"unionciot__usb__data__u.html":[3,0,155], +"unionciot__usb__data__u.html#a5a3eefbe6f21d662a5e318bbf323a00e":[3,0,155,0], +"unionciot__usb__data__u.html#ab26791741e383cec2107fa1540a14342":[3,0,155,3], +"unionciot__usb__data__u.html#abe630baacf2cedc1090a81ef4e39a081":[3,0,155,1], +"unionciot__usb__data__u.html#aebb2adef59fcdc91db3d185996066c6a":[3,0,155,2], +"unionciot__usb__event.html":[3,0,156], +"unionciot__usb__event.html#a998bffd5567753ef3f6b652a400de36b":[3,0,156,0], +"unionciot__usb__req__data__u.html":[3,0,157], +"unionciot__wifi__data__u.html":[3,0,163], +"unionciot__wifi__data__u.html#a09cb5a4aa60e39d810f1c21089103503":[3,0,163,2], +"unionciot__wifi__data__u.html#a711c5a971ab69b9cfa4850692e6bbaad":[3,0,163,0], +"unionciot__wifi__data__u.html#a95d1196af9ebc0b64f6f7e2842812448":[3,0,163,1], +"unionciot__wifi__req__data__u.html":[3,0,164], +"unionciot__wifi__req__data__u.html#a23723a81650d6544d7da572eb4bf33b9":[3,0,164,0] }; diff --git a/docs/navtreeindex4.js b/docs/navtreeindex4.js index c2a4f92..81b48e2 100644 --- a/docs/navtreeindex4.js +++ b/docs/navtreeindex4.js @@ -1,99 +1,106 @@ var NAVTREEINDEX4 = { -"unionciot__httpc__req__data.html#aa49303f9ec122aab28d291d44dcd0da5":[1,0,48,1], -"unionciot__httpc__req__data.html#ad6a0d166be37b6649d30122842622328":[1,0,48,0], -"unionciot__https__data__u.html":[1,0,55], -"unionciot__https__data__u.html#a07d1ec38980b47dde9caaa52c42163cf":[1,0,55,0], -"unionciot__https__data__u.html#ad463eb5d86dcaf2c866494686da9ce6e":[1,0,55,1], -"unionciot__https__data__u.html#ae71d44b4ec9b04f2b3eb183ae791f6ca":[1,0,55,3], -"unionciot__https__data__u.html#af4b02bc60804013ff8623f078ec43efe":[1,0,55,2], -"unionciot__https__req__data__u.html":[1,0,58], -"unionciot__iface__event__data__u.html":[1,0,66], -"unionciot__iface__event__data__u.html#a7aa0ef98c65d1029e00692392d89bebe":[1,0,66,1], -"unionciot__iface__event__data__u.html#abd6b36b1e2c07eaa53b376fdbf0e9345":[1,0,66,0], -"unionciot__mqttc__data__u.html":[1,0,72], -"unionciot__mqttc__data__u.html#a0bd4162002c890f2775878d4da138c03":[1,0,72,3], -"unionciot__mqttc__data__u.html#a79c158a8d9a5ddac01d944ca9485764b":[1,0,72,0], -"unionciot__mqttc__data__u.html#aea75f103343a18512b1024505e9766de":[1,0,72,1], -"unionciot__mqttc__data__u.html#af4d809ae5adfaf23b4229995212f0ded":[1,0,72,2], -"unionciot__mqttc__req__data__u.html":[1,0,76], -"unionciot__mqttc__req__data__u.html#a061e16f43670bc7f5d29c3971b4088c3":[1,0,76,1], -"unionciot__mqttc__req__data__u.html#ae7b5bde19c99952b5a737b600f3c21e6":[1,0,76,0], -"unionciot__msg__data__u.html":[1,0,83], -"unionciot__msg__data__u.html#a04c7e159105631b657e5b65f977a2c4a":[1,0,83,13], -"unionciot__msg__data__u.html#a2744efd5cf43b6d40d61ea66f7f620d3":[1,0,83,14], -"unionciot__msg__data__u.html#a2f12825330d395d82f01240cf84e6328":[1,0,83,2], -"unionciot__msg__data__u.html#a30ef17c042c5a942dc6491370179966c":[1,0,83,1], -"unionciot__msg__data__u.html#a460f5e2f775eebdacec0950914ab87a9":[1,0,83,5], -"unionciot__msg__data__u.html#a466cfd56b729d0efcfa70cff1a8b7b85":[1,0,83,10], -"unionciot__msg__data__u.html#a4c64bed640d14af56502dd8dceb9ab20":[1,0,83,12], -"unionciot__msg__data__u.html#a562d7a6cdd9053ec0bf7431017972903":[1,0,83,9], -"unionciot__msg__data__u.html#a57eed7a24887f5d1adba0df0ca8f29f5":[1,0,83,8], -"unionciot__msg__data__u.html#a6a8bc746dffc95f0f7b3c468023e10ae":[1,0,83,7], -"unionciot__msg__data__u.html#a7d6cac53c9bf51f572908dc2a5b383f0":[1,0,83,6], -"unionciot__msg__data__u.html#a818d9af5834bb69bdafd6513ae494405":[1,0,83,4], -"unionciot__msg__data__u.html#a8c90dd3961baa84d90870ce1f180006d":[1,0,83,0], -"unionciot__msg__data__u.html#aa1e13a945a02b050ffc85c83d3ebce1c":[1,0,83,11], -"unionciot__msg__data__u.html#ac06a3086376da2d8a84120762824336c":[1,0,83,17], -"unionciot__msg__data__u.html#acd0961872f365a2b54fef650ac190f50":[1,0,83,16], -"unionciot__msg__data__u.html#aeaf49cc638f1cc4fac1c69fa12502d32":[1,0,83,15], -"unionciot__msg__data__u.html#afedab1afecebfb5eb8554e3b1b056502":[1,0,83,3], -"unionciot__ntp__data__u.html":[1,0,91], -"unionciot__ntp__data__u.html#a0a55111acf65b88d386268c615a69499":[1,0,91,1], -"unionciot__ntp__data__u.html#a6c17383e9465f668d1e9dcb3cf8d4f4a":[1,0,91,0], -"unionciot__ntp__data__u.html#a95d5fa474c00a79ee883e78048ea7c4c":[1,0,91,2], -"unionciot__ntp__req__data__u.html":[1,0,92], -"unionciot__opcuas__data__u.html":[1,0,97], -"unionciot__opcuas__data__u.html#a66e033d989ec031368788f08deba7feb":[1,0,97,1], -"unionciot__opcuas__data__u.html#aa976951e468c754fef849731243b0acb":[1,0,97,0], -"unionciot__opcuas__data__u.html#ac3be6c0c62c2999a9dd9fa0099945876":[1,0,97,2], -"unionciot__opcuas__req__data__u.html":[1,0,99], -"unionciot__opcuas__req__data__u.html#a79aa371ccd92a505f5c26dcd8218a131":[1,0,99,0], -"unionciot__ota__data__u.html":[1,0,104], -"unionciot__ota__data__u.html#a4e22c6ea4c9d8fad6bbd0d3894c82627":[1,0,104,1], -"unionciot__ota__data__u.html#a62fb934187d712f56dc1289eda8f8cac":[1,0,104,0], -"unionciot__ota__data__u.html#a86de670b32fc6ad5c7a44fefb41e6e3a":[1,0,104,2], -"unionciot__ota__req__data__u.html":[1,0,105], -"unionciot__req__data__u.html":[1,0,109], -"unionciot__req__data__u.html#a778eb3ed59eb3397b9efad8d48d34b62":[1,0,109,1], -"unionciot__req__data__u.html#a90808ce2b0f0710bbe9799c64e8df0db":[1,0,109,2], -"unionciot__req__data__u.html#abaf229d7f984c35aa24c89632a544934":[1,0,109,0], -"unionciot__req__data__u.html#af24d10404fe7693abc12d43b4edea249":[1,0,109,3], -"unionciot__storage__data__u.html":[1,0,120], -"unionciot__storage__data__u.html#aabe6a902449529e66a1bb460116af784":[1,0,120,0], -"unionciot__storage__data__u.html#ac1a66aa256f203858bb2477b812e36fb":[1,0,120,2], -"unionciot__storage__data__u.html#ae35bc5d21998e1401aa886359cafd044":[1,0,120,1], -"unionciot__sys__data__u.html":[1,0,126], -"unionciot__sys__data__u.html#a7146ff86f43fac1f87c45f31c3a3bd20":[1,0,126,1], -"unionciot__sys__data__u.html#a9d2eb5a0a1a2ed5d529672a8229a8fe8":[1,0,126,0], -"unionciot__sys__data__u.html#ad3dbfc73fddab4d58bde12f27edab41b":[1,0,126,2], -"unionciot__sys__req__data__u.html":[1,0,130], -"unionciot__tcp__data__u.html":[1,0,136], -"unionciot__tcp__data__u.html#a290455b77155aab0d086fb8c69f76364":[1,0,136,2], -"unionciot__tcp__data__u.html#a71821427aa3817c68209a151bed81e56":[1,0,136,0], -"unionciot__tcp__data__u.html#aaf3b24e7b5d38ca3f76ca38e5e43ad7e":[1,0,136,1], -"unionciot__tcp__req__data__u.html":[1,0,140], -"unionciot__uart__data__u.html":[1,0,147], -"unionciot__uart__data__u.html#a107556abf8506af23fc4f92aa4d20cea":[1,0,147,0], -"unionciot__uart__data__u.html#aa311cb42bbd477c3bfd5371dd0b8bedd":[1,0,147,3], -"unionciot__uart__data__u.html#aeac55f9a4429aa466599b8875763ff38":[1,0,147,2], -"unionciot__uart__data__u.html#af5207c84edf0697170da962f465640a0":[1,0,147,1], -"unionciot__uart__event.html":[1,0,148], -"unionciot__uart__event.html#a998bffd5567753ef3f6b652a400de36b":[1,0,148,0], -"unionciot__uart__req__data__u.html":[1,0,149], -"unionciot__uart__req__data__u.html#a64001c4b28083877216a64df74dff823":[1,0,149,0], -"unionciot__usb__data__u.html":[1,0,155], -"unionciot__usb__data__u.html#a5a3eefbe6f21d662a5e318bbf323a00e":[1,0,155,0], -"unionciot__usb__data__u.html#ab26791741e383cec2107fa1540a14342":[1,0,155,3], -"unionciot__usb__data__u.html#abe630baacf2cedc1090a81ef4e39a081":[1,0,155,1], -"unionciot__usb__data__u.html#aebb2adef59fcdc91db3d185996066c6a":[1,0,155,2], -"unionciot__usb__event.html":[1,0,156], -"unionciot__usb__event.html#a998bffd5567753ef3f6b652a400de36b":[1,0,156,0], -"unionciot__usb__req__data__u.html":[1,0,157], -"unionciot__wifi__data__u.html":[1,0,163], -"unionciot__wifi__data__u.html#a09cb5a4aa60e39d810f1c21089103503":[1,0,163,2], -"unionciot__wifi__data__u.html#a711c5a971ab69b9cfa4850692e6bbaad":[1,0,163,0], -"unionciot__wifi__data__u.html#a95d1196af9ebc0b64f6f7e2842812448":[1,0,163,1], -"unionciot__wifi__req__data__u.html":[1,0,164], -"unionciot__wifi__req__data__u.html#a23723a81650d6544d7da572eb4bf33b9":[1,0,164,0] +"unionciot__httpc__data__u.html#a0ddab1f295ea5861939322623d313037":[3,0,45,0], +"unionciot__httpc__data__u.html#a28206abcb96418175c4998aaff04c99a":[3,0,45,1], +"unionciot__httpc__data__u.html#a57c784a27da9399f6d1a7bd2122a3c65":[3,0,45,2], +"unionciot__httpc__data__u.html#ac5c1eb82650b9d0161a399175c459ad3":[3,0,45,3], +"unionciot__httpc__event.html":[3,0,46], +"unionciot__httpc__event.html#a6ec8e644d05e4d629a77959492eee5d3":[3,0,46,0], +"unionciot__httpc__req__data.html":[3,0,48], +"unionciot__httpc__req__data.html#aa49303f9ec122aab28d291d44dcd0da5":[3,0,48,1], +"unionciot__httpc__req__data.html#ad6a0d166be37b6649d30122842622328":[3,0,48,0], +"unionciot__https__data__u.html":[3,0,55], +"unionciot__https__data__u.html#a07d1ec38980b47dde9caaa52c42163cf":[3,0,55,0], +"unionciot__https__data__u.html#ad463eb5d86dcaf2c866494686da9ce6e":[3,0,55,1], +"unionciot__https__data__u.html#ae71d44b4ec9b04f2b3eb183ae791f6ca":[3,0,55,3], +"unionciot__https__data__u.html#af4b02bc60804013ff8623f078ec43efe":[3,0,55,2], +"unionciot__https__req__data__u.html":[3,0,58], +"unionciot__iface__event__data__u.html":[3,0,66], +"unionciot__iface__event__data__u.html#a7aa0ef98c65d1029e00692392d89bebe":[3,0,66,1], +"unionciot__iface__event__data__u.html#abd6b36b1e2c07eaa53b376fdbf0e9345":[3,0,66,0], +"unionciot__mqttc__data__u.html":[3,0,72], +"unionciot__mqttc__data__u.html#a0bd4162002c890f2775878d4da138c03":[3,0,72,3], +"unionciot__mqttc__data__u.html#a79c158a8d9a5ddac01d944ca9485764b":[3,0,72,0], +"unionciot__mqttc__data__u.html#aea75f103343a18512b1024505e9766de":[3,0,72,1], +"unionciot__mqttc__data__u.html#af4d809ae5adfaf23b4229995212f0ded":[3,0,72,2], +"unionciot__mqttc__req__data__u.html":[3,0,76], +"unionciot__mqttc__req__data__u.html#a061e16f43670bc7f5d29c3971b4088c3":[3,0,76,1], +"unionciot__mqttc__req__data__u.html#ae7b5bde19c99952b5a737b600f3c21e6":[3,0,76,0], +"unionciot__msg__data__u.html":[3,0,83], +"unionciot__msg__data__u.html#a04c7e159105631b657e5b65f977a2c4a":[3,0,83,13], +"unionciot__msg__data__u.html#a2744efd5cf43b6d40d61ea66f7f620d3":[3,0,83,14], +"unionciot__msg__data__u.html#a2f12825330d395d82f01240cf84e6328":[3,0,83,2], +"unionciot__msg__data__u.html#a30ef17c042c5a942dc6491370179966c":[3,0,83,1], +"unionciot__msg__data__u.html#a460f5e2f775eebdacec0950914ab87a9":[3,0,83,5], +"unionciot__msg__data__u.html#a466cfd56b729d0efcfa70cff1a8b7b85":[3,0,83,10], +"unionciot__msg__data__u.html#a4c64bed640d14af56502dd8dceb9ab20":[3,0,83,12], +"unionciot__msg__data__u.html#a562d7a6cdd9053ec0bf7431017972903":[3,0,83,9], +"unionciot__msg__data__u.html#a57eed7a24887f5d1adba0df0ca8f29f5":[3,0,83,8], +"unionciot__msg__data__u.html#a6a8bc746dffc95f0f7b3c468023e10ae":[3,0,83,7], +"unionciot__msg__data__u.html#a7d6cac53c9bf51f572908dc2a5b383f0":[3,0,83,6], +"unionciot__msg__data__u.html#a818d9af5834bb69bdafd6513ae494405":[3,0,83,4], +"unionciot__msg__data__u.html#a8c90dd3961baa84d90870ce1f180006d":[3,0,83,0], +"unionciot__msg__data__u.html#aa1e13a945a02b050ffc85c83d3ebce1c":[3,0,83,11], +"unionciot__msg__data__u.html#ac06a3086376da2d8a84120762824336c":[3,0,83,17], +"unionciot__msg__data__u.html#acd0961872f365a2b54fef650ac190f50":[3,0,83,16], +"unionciot__msg__data__u.html#aeaf49cc638f1cc4fac1c69fa12502d32":[3,0,83,15], +"unionciot__msg__data__u.html#afedab1afecebfb5eb8554e3b1b056502":[3,0,83,3], +"unionciot__ntp__data__u.html":[3,0,91], +"unionciot__ntp__data__u.html#a0a55111acf65b88d386268c615a69499":[3,0,91,1], +"unionciot__ntp__data__u.html#a6c17383e9465f668d1e9dcb3cf8d4f4a":[3,0,91,0], +"unionciot__ntp__data__u.html#a95d5fa474c00a79ee883e78048ea7c4c":[3,0,91,2], +"unionciot__ntp__req__data__u.html":[3,0,92], +"unionciot__opcuas__data__u.html":[3,0,97], +"unionciot__opcuas__data__u.html#a66e033d989ec031368788f08deba7feb":[3,0,97,1], +"unionciot__opcuas__data__u.html#aa976951e468c754fef849731243b0acb":[3,0,97,0], +"unionciot__opcuas__data__u.html#ac3be6c0c62c2999a9dd9fa0099945876":[3,0,97,2], +"unionciot__opcuas__req__data__u.html":[3,0,99], +"unionciot__opcuas__req__data__u.html#a79aa371ccd92a505f5c26dcd8218a131":[3,0,99,0], +"unionciot__ota__data__u.html":[3,0,104], +"unionciot__ota__data__u.html#a4e22c6ea4c9d8fad6bbd0d3894c82627":[3,0,104,1], +"unionciot__ota__data__u.html#a62fb934187d712f56dc1289eda8f8cac":[3,0,104,0], +"unionciot__ota__data__u.html#a86de670b32fc6ad5c7a44fefb41e6e3a":[3,0,104,2], +"unionciot__ota__req__data__u.html":[3,0,105], +"unionciot__req__data__u.html":[3,0,109], +"unionciot__req__data__u.html#a778eb3ed59eb3397b9efad8d48d34b62":[3,0,109,1], +"unionciot__req__data__u.html#a90808ce2b0f0710bbe9799c64e8df0db":[3,0,109,2], +"unionciot__req__data__u.html#abaf229d7f984c35aa24c89632a544934":[3,0,109,0], +"unionciot__req__data__u.html#af24d10404fe7693abc12d43b4edea249":[3,0,109,3], +"unionciot__storage__data__u.html":[3,0,120], +"unionciot__storage__data__u.html#aabe6a902449529e66a1bb460116af784":[3,0,120,0], +"unionciot__storage__data__u.html#ac1a66aa256f203858bb2477b812e36fb":[3,0,120,2], +"unionciot__storage__data__u.html#ae35bc5d21998e1401aa886359cafd044":[3,0,120,1], +"unionciot__sys__data__u.html":[3,0,126], +"unionciot__sys__data__u.html#a7146ff86f43fac1f87c45f31c3a3bd20":[3,0,126,1], +"unionciot__sys__data__u.html#a9d2eb5a0a1a2ed5d529672a8229a8fe8":[3,0,126,0], +"unionciot__sys__data__u.html#ad3dbfc73fddab4d58bde12f27edab41b":[3,0,126,2], +"unionciot__sys__req__data__u.html":[3,0,130], +"unionciot__tcp__data__u.html":[3,0,136], +"unionciot__tcp__data__u.html#a290455b77155aab0d086fb8c69f76364":[3,0,136,2], +"unionciot__tcp__data__u.html#a71821427aa3817c68209a151bed81e56":[3,0,136,0], +"unionciot__tcp__data__u.html#aaf3b24e7b5d38ca3f76ca38e5e43ad7e":[3,0,136,1], +"unionciot__tcp__req__data__u.html":[3,0,140], +"unionciot__uart__data__u.html":[3,0,147], +"unionciot__uart__data__u.html#a107556abf8506af23fc4f92aa4d20cea":[3,0,147,0], +"unionciot__uart__data__u.html#aa311cb42bbd477c3bfd5371dd0b8bedd":[3,0,147,3], +"unionciot__uart__data__u.html#aeac55f9a4429aa466599b8875763ff38":[3,0,147,2], +"unionciot__uart__data__u.html#af5207c84edf0697170da962f465640a0":[3,0,147,1], +"unionciot__uart__event.html":[3,0,148], +"unionciot__uart__event.html#a998bffd5567753ef3f6b652a400de36b":[3,0,148,0], +"unionciot__uart__req__data__u.html":[3,0,149], +"unionciot__uart__req__data__u.html#a64001c4b28083877216a64df74dff823":[3,0,149,0], +"unionciot__usb__data__u.html":[3,0,155], +"unionciot__usb__data__u.html#a5a3eefbe6f21d662a5e318bbf323a00e":[3,0,155,0], +"unionciot__usb__data__u.html#ab26791741e383cec2107fa1540a14342":[3,0,155,3], +"unionciot__usb__data__u.html#abe630baacf2cedc1090a81ef4e39a081":[3,0,155,1], +"unionciot__usb__data__u.html#aebb2adef59fcdc91db3d185996066c6a":[3,0,155,2], +"unionciot__usb__event.html":[3,0,156], +"unionciot__usb__event.html#a998bffd5567753ef3f6b652a400de36b":[3,0,156,0], +"unionciot__usb__req__data__u.html":[3,0,157], +"unionciot__wifi__data__u.html":[3,0,163], +"unionciot__wifi__data__u.html#a09cb5a4aa60e39d810f1c21089103503":[3,0,163,2], +"unionciot__wifi__data__u.html#a711c5a971ab69b9cfa4850692e6bbaad":[3,0,163,0], +"unionciot__wifi__data__u.html#a95d1196af9ebc0b64f6f7e2842812448":[3,0,163,1], +"unionciot__wifi__req__data__u.html":[3,0,164], +"unionciot__wifi__req__data__u.html#a23723a81650d6544d7da572eb4bf33b9":[3,0,164,0] }; diff --git a/docs/pages.html b/docs/pages.html new file mode 100644 index 0000000..5a8df4b --- /dev/null +++ b/docs/pages.html @@ -0,0 +1,112 @@ + + + + + + + +CioT: Related Pages + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
CioT 0.1.0 +
+
Connected IoT
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Related Pages
+
+
+
Here is a list of all related documentation pages:
+ + +
 Todo List
+
+
+
+ + + + diff --git a/docs/search/all_11.js b/docs/search/all_11.js index e73fdb2..70f4cd8 100644 --- a/docs/search/all_11.js +++ b/docs/search/all_11.js @@ -8,11 +8,12 @@ var searchData= ['tls_5flast_5ferr_5',['tls_last_err',['../structciot__mqttc__error__t.html#af8b9db3223039d525df4371413d3c2f3',1,'ciot_mqttc_error_t']]], ['tls_5fstack_5ferr_6',['tls_stack_err',['../structciot__mqttc__error__t.html#a9006960d969e505489e2a46434d60ebb',1,'ciot_mqttc_error_t']]], ['to_5fbytes_7',['to_bytes',['../structciot__serializer.html#a5134e67f23ff9c0bf8efd1e393d8d2c1',1,'ciot_serializer']]], - ['topic_8',['topic',['../structciot__mqttc__req__publish__t.html#adb8c125563b301bb6f5b4f57f6547bc0',1,'ciot_mqttc_req_publish_t::topic'],['../structciot__mqttc__req__subscribe__t.html#adb8c125563b301bb6f5b4f57f6547bc0',1,'ciot_mqttc_req_subscribe_t::topic'],['../structciot__mqttc__event__data.html#affecb48e716753e10b44feac31f12529',1,'ciot_mqttc_event_data::topic']]], - ['topics_9',['topics',['../structciot__mqttc__cfg__t.html#a2a5888184d23c617efb05a871a705673',1,'ciot_mqttc_cfg_t']]], - ['transferred_10',['transferred',['../structciot__nrf__dfu__packet.html#a3e7bef03191254ebdc38d44d1c2dad91',1,'ciot_nrf_dfu_packet']]], - ['transport_11',['transport',['../structciot__httpc__cfg__t.html#a7e007ade3b5b7cfcc2ee06d35d52d4e1',1,'ciot_httpc_cfg_t::transport'],['../structciot__mqttc__cfg__t.html#addf4bba19daf5bd5b49b033e239931da',1,'ciot_mqttc_cfg_t::transport']]], - ['transport_5fsock_12',['transport_sock',['../structciot__mqttc__error__t.html#a2d16d2a81fde684b4c79c0d71f8090b5',1,'ciot_mqttc_error_t']]], - ['tx_5fpin_13',['tx_pin',['../structciot__uart__cfg__t.html#abc8367b5354c54835c1d74192f355c1c',1,'ciot_uart_cfg_t']]], - ['type_14',['type',['../structciot__iface__event__t.html#a5cd16071ec4ec2b6bb4c625e53b07c5b',1,'ciot_iface_event_t::type'],['../structciot__iface__req__info.html#ac3305f4a165c4d898ce7988191102e46',1,'ciot_iface_req_info::type'],['../structciot__nrf__dfu__packet.html#a50c8cebed3105b196315a23d0634f1a5',1,'ciot_nrf_dfu_packet::type'],['../structciot__serializer.html#a592dc1023ebe4d8247de4f601b4c20f5',1,'ciot_serializer::type'],['../structciot__ble__scn__req__t.html#abc70ef515ab30b52d6a58e0c72ee3688',1,'ciot_ble_scn_req_t::type'],['../structciot__ble__req__t.html#a1387b7c38bc20d7cf6308e7cbecff167',1,'ciot_ble_req_t::type'],['../structciot__bridge__req__t.html#a2ef6bd06414538f347bd722b6c4e064c',1,'ciot_bridge_req_t::type'],['../structciot__data__model__req__t.html#a1cc8da72a2d329be4f8ff647f04884a0',1,'ciot_data_model_req_t::type'],['../structciot__dfu__cfg__t.html#afa34dcfb78399ee2321831a93d8bce73',1,'ciot_dfu_cfg_t::type'],['../structciot__dfu__req__t.html#adb76936a18a28e534879c6f9d6f07868',1,'ciot_dfu_req_t::type'],['../structciot__gpio__req__t.html#ab949dccfc732240972d8a27cf46f3e76',1,'ciot_gpio_req_t::type'],['../structciot__httpc__req__t.html#ac4330d2b9fc6473e00966f8dd66a477c',1,'ciot_httpc_req_t::type'],['../structciot__https__req__t.html#adf00e5263d183b9b74cd9dd06dd98856',1,'ciot_https_req_t::type'],['../structciot__mqttc__error__t.html#ac765329451135abec74c45e1897abf26',1,'ciot_mqttc_error_t::type'],['../structciot__mqttc__req__t.html#a8e287bd3b319b246d8346f46ed6c4580',1,'ciot_mqttc_req_t::type'],['../structciot__msg__iface__info__t.html#ab9b24d9114ce832a5b9cbc962c9cea28',1,'ciot_msg_iface_info_t::type'],['../structciot__msg__header__t.html#ac3305f4a165c4d898ce7988191102e46',1,'ciot_msg_header_t::type'],['../structciot__msg__t.html#ac3305f4a165c4d898ce7988191102e46',1,'ciot_msg_t::type'],['../structciot__ntp__req__t.html#a54590843a59febd0e8055f9249974adc',1,'ciot_ntp_req_t::type'],['../structciot__opcuas__req__add__node__t.html#acb5cfd209ba75c853d03f701e7f91679',1,'ciot_opcuas_req_add_node_t::type'],['../structciot__opcuas__req__t.html#a6a535362b7c81b40f3ed9f6cb292a469',1,'ciot_opcuas_req_t::type'],['../structciot__ota__req__t.html#a19605616d62f4ee24f6aefb6c34480e2',1,'ciot_ota_req_t::type'],['../structciot__storage__cfg__t.html#aa03a710482f738f9fe6095f1d4c6774a',1,'ciot_storage_cfg_t::type'],['../structciot__storage__req__t.html#a7b3cbcb3aea8c25ecc00d1316d1a79d6',1,'ciot_storage_req_t::type'],['../structciot__sys__req__t.html#a4341eac7e0a50f29b2101e5b7584db32',1,'ciot_sys_req_t::type'],['../structciot__tcp__req__t.html#acd8fb37e86ba410b191b31dc8cf154c3',1,'ciot_tcp_req_t::type'],['../structciot__req__t.html#a55a6010bd818c4c1b94eca45963f09a9',1,'ciot_req_t::type'],['../structciot__uart__req__t.html#a21d88bf4d17b9837d25893a4000044db',1,'ciot_uart_req_t::type'],['../structciot__usb__req__t.html#aa027ba4e6f58da1f5204e16dd15d5136',1,'ciot_usb_req_t::type'],['../structciot__wifi__cfg__t.html#a35cbcdf247b4952f8c35e071bed5a1d8',1,'ciot_wifi_cfg_t::type'],['../structciot__wifi__req__t.html#a6f6c1937c79d949cdf73c68cf9ad3493',1,'ciot_wifi_req_t::type']]] + ['todo_20list_8',['Todo List',['../todo.html',1,'']]], + ['topic_9',['topic',['../structciot__mqttc__req__publish__t.html#adb8c125563b301bb6f5b4f57f6547bc0',1,'ciot_mqttc_req_publish_t::topic'],['../structciot__mqttc__req__subscribe__t.html#adb8c125563b301bb6f5b4f57f6547bc0',1,'ciot_mqttc_req_subscribe_t::topic'],['../structciot__mqttc__event__data.html#affecb48e716753e10b44feac31f12529',1,'ciot_mqttc_event_data::topic']]], + ['topics_10',['topics',['../structciot__mqttc__cfg__t.html#a2a5888184d23c617efb05a871a705673',1,'ciot_mqttc_cfg_t']]], + ['transferred_11',['transferred',['../structciot__nrf__dfu__packet.html#a3e7bef03191254ebdc38d44d1c2dad91',1,'ciot_nrf_dfu_packet']]], + ['transport_12',['transport',['../structciot__httpc__cfg__t.html#a7e007ade3b5b7cfcc2ee06d35d52d4e1',1,'ciot_httpc_cfg_t::transport'],['../structciot__mqttc__cfg__t.html#addf4bba19daf5bd5b49b033e239931da',1,'ciot_mqttc_cfg_t::transport']]], + ['transport_5fsock_13',['transport_sock',['../structciot__mqttc__error__t.html#a2d16d2a81fde684b4c79c0d71f8090b5',1,'ciot_mqttc_error_t']]], + ['tx_5fpin_14',['tx_pin',['../structciot__uart__cfg__t.html#abc8367b5354c54835c1d74192f355c1c',1,'ciot_uart_cfg_t']]], + ['type_15',['type',['../structciot__iface__event__t.html#a5cd16071ec4ec2b6bb4c625e53b07c5b',1,'ciot_iface_event_t::type'],['../structciot__iface__req__info.html#ac3305f4a165c4d898ce7988191102e46',1,'ciot_iface_req_info::type'],['../structciot__nrf__dfu__packet.html#a50c8cebed3105b196315a23d0634f1a5',1,'ciot_nrf_dfu_packet::type'],['../structciot__serializer.html#a592dc1023ebe4d8247de4f601b4c20f5',1,'ciot_serializer::type'],['../structciot__ble__scn__req__t.html#abc70ef515ab30b52d6a58e0c72ee3688',1,'ciot_ble_scn_req_t::type'],['../structciot__ble__req__t.html#a1387b7c38bc20d7cf6308e7cbecff167',1,'ciot_ble_req_t::type'],['../structciot__bridge__req__t.html#a2ef6bd06414538f347bd722b6c4e064c',1,'ciot_bridge_req_t::type'],['../structciot__data__model__req__t.html#a1cc8da72a2d329be4f8ff647f04884a0',1,'ciot_data_model_req_t::type'],['../structciot__dfu__cfg__t.html#afa34dcfb78399ee2321831a93d8bce73',1,'ciot_dfu_cfg_t::type'],['../structciot__dfu__req__t.html#adb76936a18a28e534879c6f9d6f07868',1,'ciot_dfu_req_t::type'],['../structciot__gpio__req__t.html#ab949dccfc732240972d8a27cf46f3e76',1,'ciot_gpio_req_t::type'],['../structciot__httpc__req__t.html#ac4330d2b9fc6473e00966f8dd66a477c',1,'ciot_httpc_req_t::type'],['../structciot__https__req__t.html#adf00e5263d183b9b74cd9dd06dd98856',1,'ciot_https_req_t::type'],['../structciot__mqttc__error__t.html#ac765329451135abec74c45e1897abf26',1,'ciot_mqttc_error_t::type'],['../structciot__mqttc__req__t.html#a8e287bd3b319b246d8346f46ed6c4580',1,'ciot_mqttc_req_t::type'],['../structciot__msg__iface__info__t.html#ab9b24d9114ce832a5b9cbc962c9cea28',1,'ciot_msg_iface_info_t::type'],['../structciot__msg__header__t.html#ac3305f4a165c4d898ce7988191102e46',1,'ciot_msg_header_t::type'],['../structciot__msg__t.html#ac3305f4a165c4d898ce7988191102e46',1,'ciot_msg_t::type'],['../structciot__ntp__req__t.html#a54590843a59febd0e8055f9249974adc',1,'ciot_ntp_req_t::type'],['../structciot__opcuas__req__add__node__t.html#acb5cfd209ba75c853d03f701e7f91679',1,'ciot_opcuas_req_add_node_t::type'],['../structciot__opcuas__req__t.html#a6a535362b7c81b40f3ed9f6cb292a469',1,'ciot_opcuas_req_t::type'],['../structciot__ota__req__t.html#a19605616d62f4ee24f6aefb6c34480e2',1,'ciot_ota_req_t::type'],['../structciot__storage__cfg__t.html#aa03a710482f738f9fe6095f1d4c6774a',1,'ciot_storage_cfg_t::type'],['../structciot__storage__req__t.html#a7b3cbcb3aea8c25ecc00d1316d1a79d6',1,'ciot_storage_req_t::type'],['../structciot__sys__req__t.html#a4341eac7e0a50f29b2101e5b7584db32',1,'ciot_sys_req_t::type'],['../structciot__tcp__req__t.html#acd8fb37e86ba410b191b31dc8cf154c3',1,'ciot_tcp_req_t::type'],['../structciot__req__t.html#a55a6010bd818c4c1b94eca45963f09a9',1,'ciot_req_t::type'],['../structciot__uart__req__t.html#a21d88bf4d17b9837d25893a4000044db',1,'ciot_uart_req_t::type'],['../structciot__usb__req__t.html#aa027ba4e6f58da1f5204e16dd15d5136',1,'ciot_usb_req_t::type'],['../structciot__wifi__cfg__t.html#a35cbcdf247b4952f8c35e071bed5a1d8',1,'ciot_wifi_cfg_t::type'],['../structciot__wifi__req__t.html#a6f6c1937c79d949cdf73c68cf9ad3493',1,'ciot_wifi_req_t::type']]] ]; diff --git a/docs/search/all_12.js b/docs/search/all_12.js index 9d9dd37..ab8f52a 100644 --- a/docs/search/all_12.js +++ b/docs/search/all_12.js @@ -3,5 +3,6 @@ var searchData= ['uart_0',['uart',['../structciot__ifaces.html#a114aac4c4bd60245dda949be0febdcd2',1,'ciot_ifaces::uart'],['../unionciot__msg__data__u.html#aeaf49cc638f1cc4fac1c69fa12502d32',1,'ciot_msg_data_u::uart'],['../structciot__sys__hw__features__t.html#ab56ae378dca42f3463d9dab3f4462045',1,'ciot_sys_hw_features_t::uart']]], ['url_1',['url',['../structciot__httpc__cfg__t.html#aa37877f676f256b0b0989f354000a1bf',1,'ciot_httpc_cfg_t::url'],['../structciot__httpc__event__data.html#ab135e5154c1828bef226a3df98ee3333',1,'ciot_httpc_event_data::url'],['../structciot__https__event__data.html#ad31b04303ebf9721f2537ea359199783',1,'ciot_https_event_data::url'],['../structciot__mqttc__cfg__t.html#a86d66ae1379f0dead7b0744b77d4f4f4',1,'ciot_mqttc_cfg_t::url'],['../structciot__ota__cfg__t.html#a153935e13b871590c5521d1b258d017f',1,'ciot_ota_cfg_t::url']]], ['usb_2',['usb',['../structciot__ifaces.html#a5d16ffd7a66e7e0e0c5fd07876f5a964',1,'ciot_ifaces::usb'],['../unionciot__msg__data__u.html#acd0961872f365a2b54fef650ac190f50',1,'ciot_msg_data_u::usb'],['../structciot__sys__hw__features__t.html#a71f3331b8fa338b8bb771e9c60142df8',1,'ciot_sys_hw_features_t::usb']]], - ['user_3',['user',['../structciot__mqttc__cfg__t.html#a40c9809e1d381340b5d342ef3a838715',1,'ciot_mqttc_cfg_t']]] + ['user_3',['user',['../structciot__mqttc__cfg__t.html#a40c9809e1d381340b5d342ef3a838715',1,'ciot_mqttc_cfg_t']]], + ['utils_4',['Utils',['../group__utils.html',1,'']]] ]; diff --git a/docs/search/all_2.js b/docs/search/all_2.js index e1f207d..c052795 100644 --- a/docs/search/all_2.js +++ b/docs/search/all_2.js @@ -3,1078 +3,1080 @@ var searchData= ['cfg_0',['cfg',['../structciot__iface__base.html#a6894fb208d021352bc4a53806a2a38dc',1,'ciot_iface_base::cfg'],['../structciot__tcp__handle.html#a34be4afa8e4bf3487bbf19439633a0f8',1,'ciot_tcp_handle::cfg'],['../structciot__uart__base.html#a3f98eeddc8b251dcbfd39459c99f9c72',1,'ciot_uart_base::cfg'],['../structciot__httpc__req__send__t.html#a301d9747f184171d8a1ee19d25d8e4ab',1,'ciot_httpc_req_send_t::cfg']]], ['cfgs_1',['cfgs',['../structciot__cfg.html#a428c51338631d897b42d617f8db50410',1,'ciot_cfg']]], ['ciot_2',['ciot',['../structciot__ifaces.html#a56416f6eac2692c41c82d053ba002af2',1,'ciot_ifaces::ciot'],['../unionciot__msg__data__u.html#afedab1afecebfb5eb8554e3b1b056502',1,'ciot_msg_data_u::ciot']]], - ['ciot_2eh_3',['ciot.h',['../ciot_8h.html',1,'']]], - ['ciot_5fble_2eh_4',['ciot_ble.h',['../ciot__ble_8h.html',1,'']]], - ['ciot_5fble_5fcfg_5ft_5',['ciot_ble_cfg_t',['../structciot__ble__cfg__t.html',1,'']]], - ['ciot_5fble_5fdata_5fu_6',['ciot_ble_data_u',['../unionciot__ble__data__u.html',1,'']]], - ['ciot_5fble_5fget_5fmac_7',['ciot_ble_get_mac',['../ciot__ble_8h.html#ada2bfd0d1620ed6addb4768df6e04a1a',1,'ciot_ble.h']]], - ['ciot_5fble_5fifaces_8',['ciot_ble_ifaces',['../structciot__ble__ifaces.html',1,'']]], - ['ciot_5fble_5fifaces_5ft_9',['ciot_ble_ifaces_t',['../ciot__ble_8h.html#a7e2846e13398ef6ffd6def913495f5c2',1,'ciot_ble.h']]], - ['ciot_5fble_5finfo_5ft_10',['ciot_ble_info_t',['../structciot__ble__info__t.html',1,'']]], - ['ciot_5fble_5fmac_5fis_5fvalid_11',['ciot_ble_mac_is_valid',['../ciot__ble_8h.html#afb9a5b45554f53c423a114f63e2b67fd',1,'ciot_ble.h']]], - ['ciot_5fble_5fmac_5ftype_12',['ciot_ble_mac_type',['../ciot__ble_8h.html#a8f93d371d8add01e842d3888601f65bb',1,'ciot_ble.h']]], - ['ciot_5fble_5fmac_5ftype_5fhardware_13',['CIOT_BLE_MAC_TYPE_HARDWARE',['../ciot__ble_8h.html#a8f93d371d8add01e842d3888601f65bba9863cb9813d17d8384e6a4a1d1040099',1,'ciot_ble.h']]], - ['ciot_5fble_5fmac_5ftype_5freal_14',['CIOT_BLE_MAC_TYPE_REAL',['../ciot__ble_8h.html#a8f93d371d8add01e842d3888601f65bba1620399b223e49561ca78b27fc34f548',1,'ciot_ble.h']]], - ['ciot_5fble_5fmac_5ftype_5fsoftware_15',['CIOT_BLE_MAC_TYPE_SOFTWARE',['../ciot__ble_8h.html#a8f93d371d8add01e842d3888601f65bbab0017c745f97c33b61ccf012a920f246',1,'ciot_ble.h']]], - ['ciot_5fble_5fmac_5ftype_5ft_16',['ciot_ble_mac_type_t',['../ciot__ble_8h.html#a05089e2e5330e0767d0ac074a0d48664',1,'ciot_ble.h']]], - ['ciot_5fble_5fmac_5ftype_5funknown_17',['CIOT_BLE_MAC_TYPE_UNKNOWN',['../ciot__ble_8h.html#a8f93d371d8add01e842d3888601f65bbae978837f99a7554a6ea2a13d470d3d33',1,'ciot_ble.h']]], - ['ciot_5fble_5fnew_18',['ciot_ble_new',['../ciot__ble_8h.html#ab9cc93352ac370bae80dc47d28a18f55',1,'ciot_ble.h']]], - ['ciot_5fble_5fprocess_5freq_19',['ciot_ble_process_req',['../ciot__ble_8h.html#aa0249bac01c064dddf3e9327224789d8',1,'ciot_ble.h']]], - ['ciot_5fble_5freq_5fdata_5fu_20',['ciot_ble_req_data_u',['../unionciot__ble__req__data__u.html',1,'']]], - ['ciot_5fble_5freq_5fset_5fmac_21',['CIOT_BLE_REQ_SET_MAC',['../ciot__ble__types_8h.html#a8807333f11d56d9ed98b547b14a73c0aa955a66939faa9e3aeffe11ef0285e61c',1,'ciot_ble_types.h']]], - ['ciot_5fble_5freq_5ft_22',['ciot_ble_req_t',['../structciot__ble__req__t.html',1,'']]], - ['ciot_5fble_5freq_5ftype_5ft_23',['ciot_ble_req_type_t',['../ciot__ble__types_8h.html#a8807333f11d56d9ed98b547b14a73c0a',1,'ciot_ble_types.h']]], - ['ciot_5fble_5freq_5funknown_24',['CIOT_BLE_REQ_UNKNOWN',['../ciot__ble__types_8h.html#a8807333f11d56d9ed98b547b14a73c0aa3e891c72e54ad509017d098852f6ab7e',1,'ciot_ble_types.h']]], - ['ciot_5fble_5fscn_2eh_25',['ciot_ble_scn.h',['../ciot__ble__scn_8h.html',1,'']]], - ['ciot_5fble_5fscn_5fadv_5finfo_5ft_26',['ciot_ble_scn_adv_info_t',['../structciot__ble__scn__adv__info__t.html',1,'']]], - ['ciot_5fble_5fscn_5fcfg_5ft_27',['ciot_ble_scn_cfg_t',['../structciot__ble__scn__cfg__t.html',1,'']]], - ['ciot_5fble_5fscn_5fdata_5fu_28',['ciot_ble_scn_data_u',['../unionciot__ble__scn__data__u.html',1,'']]], - ['ciot_5fble_5fscn_5fget_5fadv_5finfo_29',['ciot_ble_scn_get_adv_info',['../ciot__ble__scn_8h.html#af3c5072d04dee93723266acd2ae40bda',1,'ciot_ble_scn.h']]], - ['ciot_5fble_5fscn_5fhandle_5fevent_30',['ciot_ble_scn_handle_event',['../ciot__ble__scn_8h.html#ac868bbc26c4ba11695e5c3dcaa80b201',1,'ciot_ble_scn.h']]], - ['ciot_5fble_5fscn_5fnew_31',['ciot_ble_scn_new',['../ciot__ble__scn_8h.html#a412a0a86f5b189b653efb2f334d5613f',1,'ciot_ble_scn.h']]], - ['ciot_5fble_5fscn_5fprocess_5freq_32',['ciot_ble_scn_process_req',['../ciot__ble__scn_8h.html#a22b3f45a7f6909bc350f1e7dbee0c599',1,'ciot_ble_scn.h']]], - ['ciot_5fble_5fscn_5freq_5fdata_5fu_33',['ciot_ble_scn_req_data_u',['../unionciot__ble__scn__req__data__u.html',1,'']]], - ['ciot_5fble_5fscn_5freq_5ft_34',['ciot_ble_scn_req_t',['../structciot__ble__scn__req__t.html',1,'']]], - ['ciot_5fble_5fscn_5freq_5ftype_5ft_35',['ciot_ble_scn_req_type_t',['../ciot__ble__scn__types_8h.html#af3789825b72a0e08e09e4c8682a45aaa',1,'ciot_ble_scn_types.h']]], - ['ciot_5fble_5fscn_5freq_5funknown_36',['CIOT_BLE_SCN_REQ_UNKNOWN',['../ciot__ble__scn__types_8h.html#af3789825b72a0e08e09e4c8682a45aaaa49cc27b8e221b0140c8440a39b7c4230',1,'ciot_ble_scn_types.h']]], - ['ciot_5fble_5fscn_5fsend_5fdata_37',['ciot_ble_scn_send_data',['../ciot__ble__scn_8h.html#a2768bcd961a130564cf03a0d21123d91',1,'ciot_ble_scn.h']]], - ['ciot_5fble_5fscn_5fstart_38',['ciot_ble_scn_start',['../ciot__ble__scn_8h.html#a9c8db4404daa80df68b678a3b41aa9b4',1,'ciot_ble_scn.h']]], - ['ciot_5fble_5fscn_5fstate_5factive_39',['CIOT_BLE_SCN_STATE_ACTIVE',['../ciot__ble__scn__types_8h.html#a7c7da8f1c7400acef0666d271a0cae3ca580d5606561bd5a7bf6ece413c1d7216',1,'ciot_ble_scn_types.h']]], - ['ciot_5fble_5fscn_5fstate_5fidle_40',['CIOT_BLE_SCN_STATE_IDLE',['../ciot__ble__scn__types_8h.html#a7c7da8f1c7400acef0666d271a0cae3cab5e38affddd56ac8693c35fe87d3bd43',1,'ciot_ble_scn_types.h']]], - ['ciot_5fble_5fscn_5fstate_5fpassive_41',['CIOT_BLE_SCN_STATE_PASSIVE',['../ciot__ble__scn__types_8h.html#a7c7da8f1c7400acef0666d271a0cae3ca5cc9b57b36fc4add0d1468183936a625',1,'ciot_ble_scn_types.h']]], - ['ciot_5fble_5fscn_5fstate_5ft_42',['ciot_ble_scn_state_t',['../ciot__ble__scn__types_8h.html#a7c7da8f1c7400acef0666d271a0cae3c',1,'ciot_ble_scn_types.h']]], - ['ciot_5fble_5fscn_5fstatus_5fmsg_5ft_43',['ciot_ble_scn_status_msg_t',['../structciot__ble__scn__status__msg__t.html',1,'']]], - ['ciot_5fble_5fscn_5fstatus_5ft_44',['ciot_ble_scn_status_t',['../structciot__ble__scn__status__t.html',1,'']]], - ['ciot_5fble_5fscn_5fstop_45',['ciot_ble_scn_stop',['../ciot__ble__scn_8h.html#acb4c25e68c3ad8a3b3ca67dbcb6e89f2',1,'ciot_ble_scn.h']]], - ['ciot_5fble_5fscn_5ft_46',['ciot_ble_scn_t',['../ciot__ble__scn_8h.html#a2bd73555d4a7af0131f01560fb39e895',1,'ciot_ble_scn.h']]], - ['ciot_5fble_5fscn_5ftypes_2eh_47',['ciot_ble_scn_types.h',['../ciot__ble__scn__types_8h.html',1,'']]], - ['ciot_5fble_5fsend_5fdata_48',['ciot_ble_send_data',['../ciot__ble_8h.html#a4a6fad82ac94edb3e85476136784ae92',1,'ciot_ble.h']]], - ['ciot_5fble_5fset_5fifaces_49',['ciot_ble_set_ifaces',['../ciot__ble_8h.html#aa7915a6de7995a7b3ddb3fad62594ec4',1,'ciot_ble.h']]], - ['ciot_5fble_5fset_5fmac_50',['ciot_ble_set_mac',['../ciot__ble_8h.html#a7d43433b80be91b2ee1be13c7c26ea78',1,'ciot_ble.h']]], - ['ciot_5fble_5fstart_51',['ciot_ble_start',['../ciot__ble_8h.html#a03de82cf82dab2814fa4315b82fdb62c',1,'ciot_ble.h']]], - ['ciot_5fble_5fstate_5fidle_52',['CIOT_BLE_STATE_IDLE',['../ciot__ble__types_8h.html#a01d21e1f3012f0fb9ea61d858db2359ea2431d9b069b261be8bcf1856485b4c1c',1,'ciot_ble_types.h']]], - ['ciot_5fble_5fstate_5fstarted_53',['CIOT_BLE_STATE_STARTED',['../ciot__ble__types_8h.html#a01d21e1f3012f0fb9ea61d858db2359eae825183bbbe4671599dac35618a90d78',1,'ciot_ble_types.h']]], - ['ciot_5fble_5fstate_5ft_54',['ciot_ble_state_t',['../ciot__ble__types_8h.html#a01d21e1f3012f0fb9ea61d858db2359e',1,'ciot_ble_types.h']]], - ['ciot_5fble_5fstatus_5fmsg_5ft_55',['ciot_ble_status_msg_t',['../structciot__ble__status__msg__t.html',1,'']]], - ['ciot_5fble_5fstatus_5ft_56',['ciot_ble_status_t',['../structciot__ble__status__t.html',1,'']]], - ['ciot_5fble_5fstop_57',['ciot_ble_stop',['../ciot__ble_8h.html#a89c4a8b8eac676407cebe70daa7bbdee',1,'ciot_ble.h']]], - ['ciot_5fble_5ft_58',['ciot_ble_t',['../ciot__ble_8h.html#a04af8d5e1d4ca0f72ceacb6e313d9087',1,'ciot_ble.h']]], - ['ciot_5fble_5ftask_59',['ciot_ble_task',['../ciot__ble_8h.html#a3c3fffa1a77cc81312c4c81de699ef6b',1,'ciot_ble.h']]], - ['ciot_5fble_5ftypes_2eh_60',['ciot_ble_types.h',['../ciot__ble__types_8h.html',1,'']]], - ['ciot_5fbridge_2eh_61',['ciot_bridge.h',['../ciot__bridge_8h.html',1,'']]], - ['ciot_5fbridge_5fcfg_5ft_62',['ciot_bridge_cfg_t',['../structciot__bridge__cfg__t.html',1,'']]], - ['ciot_5fbridge_5fdata_5fu_63',['ciot_bridge_data_u',['../unionciot__bridge__data__u.html',1,'']]], - ['ciot_5fbridge_5fget_5ftarget_5fid_64',['ciot_bridge_get_target_id',['../ciot__bridge_8h.html#a3f22ac2c01ff5139c3d5206033259559',1,'ciot_bridge.h']]], - ['ciot_5fbridge_5fnew_65',['ciot_bridge_new',['../ciot__bridge_8h.html#a0dc495dc95e68b21d471d2f4d2c85a23',1,'ciot_bridge.h']]], - ['ciot_5fbridge_5fnull_5ftarget_66',['CIOT_BRIDGE_NULL_TARGET',['../ciot__bridge_8h.html#a3224a430fb71dfab6696211645a53774',1,'ciot_bridge.h']]], - ['ciot_5fbridge_5fprocess_5freq_67',['ciot_bridge_process_req',['../ciot__bridge_8h.html#af52f86ee9e077ab344d6d4e67657a4ec',1,'ciot_bridge.h']]], - ['ciot_5fbridge_5freq_5fdata_5fu_68',['ciot_bridge_req_data_u',['../unionciot__bridge__req__data__u.html',1,'']]], - ['ciot_5fbridge_5freq_5ft_69',['ciot_bridge_req_t',['../structciot__bridge__req__t.html',1,'']]], - ['ciot_5fbridge_5freq_5ftype_5ft_70',['ciot_bridge_req_type_t',['../ciot__bridge__types_8h.html#a2cf15072a075c300521fd081fe207f13',1,'ciot_bridge_types.h']]], - ['ciot_5fbridge_5freq_5funknown_71',['CIOT_BRIDGE_REQ_UNKNOWN',['../ciot__bridge__types_8h.html#a2cf15072a075c300521fd081fe207f13a91947281c4503d5af190b3c39478e32c',1,'ciot_bridge_types.h']]], - ['ciot_5fbridge_5fsend_5fdata_72',['ciot_bridge_send_data',['../ciot__bridge_8h.html#ab3d916e4bbdd0b6a4b5c8504eaa4a4c6',1,'ciot_bridge.h']]], - ['ciot_5fbridge_5fstart_73',['ciot_bridge_start',['../ciot__bridge_8h.html#a2ab34c59e732cf95f9f618d74a7fda9c',1,'ciot_bridge.h']]], - ['ciot_5fbridge_5fstate_5ferror_74',['CIOT_BRIDGE_STATE_ERROR',['../ciot__bridge__types_8h.html#a51ac52a0b49fa4695a6fe70fcdbee55da23ccfff2dd7b803c7221b137c040959b',1,'ciot_bridge_types.h']]], - ['ciot_5fbridge_5fstate_5fidle_75',['CIOT_BRIDGE_STATE_IDLE',['../ciot__bridge__types_8h.html#a51ac52a0b49fa4695a6fe70fcdbee55da7c87588279038f2adb2e81c7fa46c6cf',1,'ciot_bridge_types.h']]], - ['ciot_5fbridge_5fstate_5fstarted_76',['CIOT_BRIDGE_STATE_STARTED',['../ciot__bridge__types_8h.html#a51ac52a0b49fa4695a6fe70fcdbee55da02411a74aaac3fd6dad4ec51736e160c',1,'ciot_bridge_types.h']]], - ['ciot_5fbridge_5fstate_5ft_77',['ciot_bridge_state_t',['../ciot__bridge__types_8h.html#a51ac52a0b49fa4695a6fe70fcdbee55d',1,'ciot_bridge_types.h']]], - ['ciot_5fbridge_5fstatus_5fmsg_5ft_78',['ciot_bridge_status_msg_t',['../structciot__bridge__status__msg__t.html',1,'']]], - ['ciot_5fbridge_5fstatus_5ft_79',['ciot_bridge_status_t',['../structciot__bridge__status__t.html',1,'']]], - ['ciot_5fbridge_5fstop_80',['ciot_bridge_stop',['../ciot__bridge_8h.html#a445c0d9d20d8ebd685a1285b548d7b39',1,'ciot_bridge.h']]], - ['ciot_5fbridge_5ft_81',['ciot_bridge_t',['../ciot__bridge_8h.html#a7888ef6aa3b9be435a47e5658c32af8c',1,'ciot_bridge.h']]], - ['ciot_5fbridge_5ftypes_2eh_82',['ciot_bridge_types.h',['../ciot__bridge__types_8h.html',1,'']]], - ['ciot_5fcfg_83',['ciot_cfg',['../structciot__cfg.html',1,'']]], - ['ciot_5fcfg_5ft_84',['ciot_cfg_t',['../ciot_8h.html#ad09537300f192bf4861b07202f6ed5fe',1,'ciot.h']]], - ['ciot_5fcommon_5ftypes_2eh_85',['ciot_common_types.h',['../ciot__common__types_8h.html',1,'']]], - ['ciot_5fconfig_2eh_86',['ciot_config.h',['../ciot__config_8h.html',1,'']]], - ['ciot_5fconfig_5fapp_5fver_87',['CIOT_CONFIG_APP_VER',['../ciot__config_8h.html#a186bc96636ade48237ab070f06addc99',1,'ciot_config.h']]], - ['ciot_5fconfig_5feth_88',['CIOT_CONFIG_ETH',['../ciot__default_8h.html#a7a33c55b1ce3269738b939eeb19cb71b',1,'ciot_default.h']]], - ['ciot_5fconfig_5ffeature_5fble_5fscn_89',['CIOT_CONFIG_FEATURE_BLE_SCN',['../ciot__config_8h.html#a6dc948a124871514166a7af7e6183803',1,'ciot_config.h']]], - ['ciot_5fconfig_5ffeature_5fbridge_90',['CIOT_CONFIG_FEATURE_BRIDGE',['../ciot__config_8h.html#a9c1d5b23b81041e39ec83946d85e565d',1,'ciot_config.h']]], - ['ciot_5fconfig_5ffeature_5fdfu_91',['CIOT_CONFIG_FEATURE_DFU',['../ciot__config_8h.html#a251d01d6a87722ff3112f7c3e19eb675',1,'ciot_config.h']]], - ['ciot_5fconfig_5ffeature_5fethernet_92',['CIOT_CONFIG_FEATURE_ETHERNET',['../ciot__config_8h.html#aff28490be76958e49cbc2b2ef1e0eb20',1,'ciot_config.h']]], - ['ciot_5fconfig_5ffeature_5fhttpc_93',['CIOT_CONFIG_FEATURE_HTTPC',['../ciot__config_8h.html#abd191e184bd878220a70d25c4ad08abf',1,'ciot_config.h']]], - ['ciot_5fconfig_5ffeature_5fhttps_94',['CIOT_CONFIG_FEATURE_HTTPS',['../ciot__config_8h.html#a8df4e58b5652a4de40cd958e782df114',1,'ciot_config.h']]], - ['ciot_5fconfig_5ffeature_5fmqttc_95',['CIOT_CONFIG_FEATURE_MQTTC',['../ciot__config_8h.html#a595e79e3b6eb41743c2ca97fbd867929',1,'ciot_config.h']]], - ['ciot_5fconfig_5ffeature_5fntp_96',['CIOT_CONFIG_FEATURE_NTP',['../ciot__config_8h.html#a4d3353714ceeeb9fb3c9194e3836f0fd',1,'ciot_config.h']]], - ['ciot_5fconfig_5ffeature_5fota_97',['CIOT_CONFIG_FEATURE_OTA',['../ciot__config_8h.html#a4c4a996f1746ebd2d7346e64a93f69f3',1,'ciot_config.h']]], - ['ciot_5fconfig_5ffeature_5fserializer_98',['CIOT_CONFIG_FEATURE_SERIALIZER',['../ciot__config_8h.html#a9b9559cad470869eca1c6c6a8210d9cd',1,'ciot_config.h']]], - ['ciot_5fconfig_5ffeature_5fstorage_99',['CIOT_CONFIG_FEATURE_STORAGE',['../ciot__config_8h.html#a0fcb171a0d3b1eac51cf9bfa90d906cc',1,'ciot_config.h']]], - ['ciot_5fconfig_5ffeature_5fsystem_100',['CIOT_CONFIG_FEATURE_SYSTEM',['../ciot__config_8h.html#ad140ac0bec42207439a532c0ad082366',1,'ciot_config.h']]], - ['ciot_5fconfig_5ffeature_5ftimer_101',['CIOT_CONFIG_FEATURE_TIMER',['../ciot__config_8h.html#afb001a0ca89034fb9080542d74d24680',1,'ciot_config.h']]], - ['ciot_5fconfig_5ffeature_5fuart_102',['CIOT_CONFIG_FEATURE_UART',['../ciot__config_8h.html#a02f813de273571624eb6c96c1899f757',1,'ciot_config.h']]], - ['ciot_5fconfig_5ffeature_5fusb_103',['CIOT_CONFIG_FEATURE_USB',['../ciot__config_8h.html#a4f43c64c17f3778334fd48cee3edf44b',1,'ciot_config.h']]], - ['ciot_5fconfig_5ffeature_5fwifi_104',['CIOT_CONFIG_FEATURE_WIFI',['../ciot__config_8h.html#aa2894556fa44adea617f243356083f21',1,'ciot_config.h']]], - ['ciot_5fconfig_5fhardware_5fname_105',['CIOT_CONFIG_HARDWARE_NAME',['../ciot__config_8h.html#a246a5924c487a75e59a9e7a3d3dc971b',1,'ciot_config.h']]], - ['ciot_5fconfig_5fhttpc_106',['CIOT_CONFIG_HTTPC',['../ciot__default_8h.html#aef3854df37260fcf01c87b0acabf03dd',1,'ciot_default.h']]], - ['ciot_5fconfig_5fhttpc_5fmethod_107',['CIOT_CONFIG_HTTPC_METHOD',['../ciot__default_8h.html#abf9505c4cab01e148100b048a372663f',1,'ciot_default.h']]], - ['ciot_5fconfig_5fhttpc_5ftimeout_108',['CIOT_CONFIG_HTTPC_TIMEOUT',['../ciot__default_8h.html#ab26205cfa1af914695c961fe6a7c37f7',1,'ciot_default.h']]], - ['ciot_5fconfig_5fhttpc_5ftransport_109',['CIOT_CONFIG_HTTPC_TRANSPORT',['../ciot__default_8h.html#ae166c8150eec3860c86266fbafa30164',1,'ciot_default.h']]], - ['ciot_5fconfig_5fhttpc_5furl_110',['CIOT_CONFIG_HTTPC_URL',['../ciot__default_8h.html#ae5e243b358058e660e46de4d92ec23dd',1,'ciot_default.h']]], - ['ciot_5fconfig_5fhttps_5faddress_111',['CIOT_CONFIG_HTTPS_ADDRESS',['../ciot__default_8h.html#a1a18adba17f39adbcca041afd38dc988',1,'ciot_default.h']]], - ['ciot_5fconfig_5fhttps_5fport_112',['CIOT_CONFIG_HTTPS_PORT',['../ciot__default_8h.html#a67e3c6ac14d049d86edac23aeae48833',1,'ciot_default.h']]], - ['ciot_5fconfig_5fhttps_5froute_113',['CIOT_CONFIG_HTTPS_ROUTE',['../ciot__default_8h.html#ab7eacba51c8ae0c580dbe9fbf5996cc1',1,'ciot_default.h']]], - ['ciot_5fconfig_5flog_5flevel_114',['CIOT_CONFIG_LOG_LEVEL',['../ciot__config_8h.html#aedfdd865ecfa805d726fb9eca008c4b7',1,'ciot_config.h']]], - ['ciot_5fconfig_5fmessage_5flen_115',['CIOT_CONFIG_MESSAGE_LEN',['../ciot__config_8h.html#a2a51fc859e13b6f8377f6675583c6dd1',1,'ciot_config.h']]], - ['ciot_5fconfig_5fmessage_5fpayload_5flen_116',['CIOT_CONFIG_MESSAGE_PAYLOAD_LEN',['../ciot__config_8h.html#a2363f926f2104cad3b5cd5f1b1699f44',1,'ciot_config.h']]], - ['ciot_5fconfig_5fmqtt_5fclient_5fid_5flen_117',['CIOT_CONFIG_MQTT_CLIENT_ID_LEN',['../ciot__mqttc__types_8h.html#a6d8667859c659ff145c1ff7cc6a2296e',1,'ciot_mqttc_types.h']]], - ['ciot_5fconfig_5fmqtt_5fmsg_5flen_118',['CIOT_CONFIG_MQTT_MSG_LEN',['../ciot__mqttc__types_8h.html#a52eaecd264e5b7ce58372236bc489086',1,'ciot_mqttc_types.h']]], - ['ciot_5fconfig_5fmqtt_5fpass_5flen_119',['CIOT_CONFIG_MQTT_PASS_LEN',['../ciot__mqttc__types_8h.html#ac313545fb49c7e509b76bf009b915b50',1,'ciot_mqttc_types.h']]], - ['ciot_5fconfig_5fmqtt_5ftopic_5flen_120',['CIOT_CONFIG_MQTT_TOPIC_LEN',['../ciot__mqttc__types_8h.html#af67c4f0b899c64fc5cb38c9e920abde6',1,'ciot_mqttc_types.h']]], - ['ciot_5fconfig_5fmqtt_5furl_5flen_121',['CIOT_CONFIG_MQTT_URL_LEN',['../ciot__mqttc__types_8h.html#aeb924d17fcd585c2612e41f7f4ad9a1f',1,'ciot_mqttc_types.h']]], - ['ciot_5fconfig_5fmqtt_5fuser_5flen_122',['CIOT_CONFIG_MQTT_USER_LEN',['../ciot__mqttc__types_8h.html#a2612e7ea304728eebf26c76ba9a4935e',1,'ciot_mqttc_types.h']]], - ['ciot_5fconfig_5fmqttc_5fpass_123',['CIOT_CONFIG_MQTTC_PASS',['../ciot__default_8h.html#ac7f8eb636e1dfd5e75ca8a2ccf174981',1,'ciot_default.h']]], - ['ciot_5fconfig_5fmqttc_5fport_124',['CIOT_CONFIG_MQTTC_PORT',['../ciot__default_8h.html#a04e894147896f6ba01229a76c6c1f976',1,'ciot_default.h']]], - ['ciot_5fconfig_5fmqttc_5fqos_125',['CIOT_CONFIG_MQTTC_QOS',['../ciot__default_8h.html#a66e76a6c3a0b20620bee393047c462e6',1,'ciot_default.h']]], - ['ciot_5fconfig_5fmqttc_5ftopic_5fb2d_126',['CIOT_CONFIG_MQTTC_TOPIC_B2D',['../ciot__default_8h.html#a0dad743975d309bddcfe83e7db9f4c43',1,'ciot_default.h']]], - ['ciot_5fconfig_5fmqttc_5ftopic_5fd2b_127',['CIOT_CONFIG_MQTTC_TOPIC_D2B',['../ciot__default_8h.html#a9835f697325cb7920259cad52e13b0a1',1,'ciot_default.h']]], - ['ciot_5fconfig_5fmqttc_5furl_128',['CIOT_CONFIG_MQTTC_URL',['../ciot__default_8h.html#a3ae1f5c8551422aca407ba0e0d7d051a',1,'ciot_default.h']]], - ['ciot_5fconfig_5fmqttc_5fuser_129',['CIOT_CONFIG_MQTTC_USER',['../ciot__default_8h.html#a0bb103892cbaabdd15fb9f93ef6ebfb8',1,'ciot_default.h']]], - ['ciot_5fconfig_5fntp_5fop_5fmode_130',['CIOT_CONFIG_NTP_OP_MODE',['../ciot__default_8h.html#a33bf5b2e0676207bb01e529a4adcf59e',1,'ciot_default.h']]], - ['ciot_5fconfig_5fntp_5fserver1_131',['CIOT_CONFIG_NTP_SERVER1',['../ciot__default_8h.html#ad52d4acc5014fec93b596267a4267489',1,'ciot_default.h']]], - ['ciot_5fconfig_5fntp_5fserver2_132',['CIOT_CONFIG_NTP_SERVER2',['../ciot__default_8h.html#a7e2f6267fdbe83b93e2220a3733f9774',1,'ciot_default.h']]], - ['ciot_5fconfig_5fntp_5fserver3_133',['CIOT_CONFIG_NTP_SERVER3',['../ciot__default_8h.html#ade7f6e32e02db936bfd97768500c7c74',1,'ciot_default.h']]], - ['ciot_5fconfig_5fntp_5fservers_5fcount_134',['CIOT_CONFIG_NTP_SERVERS_COUNT',['../ciot__default_8h.html#ab853f3aa6a7e0229c80b1f5a4fae0fbf',1,'CIOT_CONFIG_NTP_SERVERS_COUNT: ciot_default.h'],['../ciot__ntp__types_8h.html#ab853f3aa6a7e0229c80b1f5a4fae0fbf',1,'CIOT_CONFIG_NTP_SERVERS_COUNT: ciot_ntp_types.h']]], - ['ciot_5fconfig_5fntp_5fsync_5finterval_135',['CIOT_CONFIG_NTP_SYNC_INTERVAL',['../ciot__default_8h.html#ab4fbb783d249bcf33ad25052b6072474',1,'ciot_default.h']]], - ['ciot_5fconfig_5fntp_5fsync_5fmode_136',['CIOT_CONFIG_NTP_SYNC_MODE',['../ciot__default_8h.html#a81124436ceaf4bdbf7fd16ec51729aa7',1,'ciot_default.h']]], - ['ciot_5fconfig_5fota_5fbuf_5fsize_137',['CIOT_CONFIG_OTA_BUF_SIZE',['../ciot__ota_8h.html#af99d5bbe46413966124b473f86fb852d',1,'ciot_ota.h']]], - ['ciot_5fconfig_5fota_5ftask_5fcore_5fid_138',['CIOT_CONFIG_OTA_TASK_CORE_ID',['../ciot__ota_8h.html#a3b57f51588da0ff44484f11d1f27a161',1,'ciot_ota.h']]], - ['ciot_5fconfig_5fota_5ftask_5fpriority_139',['CIOT_CONFIG_OTA_TASK_PRIORITY',['../ciot__ota_8h.html#adb91c2dbebfce89f1528cf9be880599e',1,'ciot_ota.h']]], - ['ciot_5fconfig_5fota_5ftask_5fstack_5fsize_140',['CIOT_CONFIG_OTA_TASK_STACK_SIZE',['../ciot__ota_8h.html#a58196a71cb679cde4bd1e5eea4532721',1,'ciot_ota.h']]], - ['ciot_5fconfig_5fstorage_141',['CIOT_CONFIG_STORAGE',['../ciot__default_8h.html#ab398686897078b551d637f058ec072f7',1,'ciot_default.h']]], - ['ciot_5fconfig_5fstorage_5ftype_142',['CIOT_CONFIG_STORAGE_TYPE',['../ciot__default_8h.html#ac9389de4857fca429528b43c0e70bc08',1,'ciot_default.h']]], - ['ciot_5fconfig_5fsys_143',['CIOT_CONFIG_SYS',['../ciot__default_8h.html#ad1c730d9022fce47870a8de547c63721',1,'ciot_default.h']]], - ['ciot_5fconfig_5ftcp_144',['CIOT_CONFIG_TCP',['../ciot__default_8h.html#a59fb15004027f7b6a0be6bda1b0568b1',1,'ciot_default.h']]], - ['ciot_5fconfig_5ftcp_5fdhcp_145',['CIOT_CONFIG_TCP_DHCP',['../ciot__default_8h.html#abe942f163ef66924c29e63adb6e91cc3',1,'ciot_default.h']]], - ['ciot_5fconfig_5ftcp_5fdns_146',['CIOT_CONFIG_TCP_DNS',['../ciot__default_8h.html#aa196f69c014910ca0e0f37d44b83ad30',1,'ciot_default.h']]], - ['ciot_5fconfig_5ftcp_5fgateway_147',['CIOT_CONFIG_TCP_GATEWAY',['../ciot__default_8h.html#abc5eb2049e9aab488e1bb1846c71b481',1,'ciot_default.h']]], - ['ciot_5fconfig_5ftcp_5fip_148',['CIOT_CONFIG_TCP_IP',['../ciot__default_8h.html#a26d8ac3e34dcb0faaf41977b7dc54607',1,'ciot_default.h']]], - ['ciot_5fconfig_5ftcp_5fmask_149',['CIOT_CONFIG_TCP_MASK',['../ciot__default_8h.html#ab361b51c2b4bb8324a0767a6680cab25',1,'ciot_default.h']]], - ['ciot_5fconfig_5fuart_150',['CIOT_CONFIG_UART',['../ciot__default_8h.html#a0aa6817a5c88e8290142061b6b933252',1,'ciot_default.h']]], - ['ciot_5fconfig_5fuart_5fbaud_5frate_151',['CIOT_CONFIG_UART_BAUD_RATE',['../ciot__default_8h.html#aae6ed2cc1f62936138b7b12cb78eab19',1,'ciot_default.h']]], - ['ciot_5fconfig_5fuart_5fbridge_5fmode_152',['CIOT_CONFIG_UART_BRIDGE_MODE',['../ciot__default_8h.html#ac64f70fbc40557ffc7f0f6c9d4aed430',1,'ciot_default.h']]], - ['ciot_5fconfig_5fuart_5fcts_5fpin_153',['CIOT_CONFIG_UART_CTS_PIN',['../ciot__default_8h.html#a39b5dff57834d4a9f00b09ff9d7e0586',1,'ciot_default.h']]], - ['ciot_5fconfig_5fuart_5fdtr_154',['CIOT_CONFIG_UART_DTR',['../ciot__default_8h.html#a5e191db9399c301be511e6024b2f402d',1,'ciot_default.h']]], - ['ciot_5fconfig_5fuart_5fflow_5fcontrol_155',['CIOT_CONFIG_UART_FLOW_CONTROL',['../ciot__default_8h.html#a0b574bd3271269a00ef9a3364564a650',1,'ciot_default.h']]], - ['ciot_5fconfig_5fuart_5fnum_156',['CIOT_CONFIG_UART_NUM',['../ciot__default_8h.html#af9d6ddc888416ceda770bd6ba0666adf',1,'ciot_default.h']]], - ['ciot_5fconfig_5fuart_5fparity_157',['CIOT_CONFIG_UART_PARITY',['../ciot__default_8h.html#ad5a0b532b36ce2e64548273d4694de52',1,'ciot_default.h']]], - ['ciot_5fconfig_5fuart_5fqueue_5fsize_158',['CIOT_CONFIG_UART_QUEUE_SIZE',['../ciot__uart_8h.html#a68ff35a9890306827119c13486c00137',1,'ciot_uart.h']]], - ['ciot_5fconfig_5fuart_5frts_5fpin_159',['CIOT_CONFIG_UART_RTS_PIN',['../ciot__default_8h.html#ac915c58485a09a470ab105dcd7fdb438',1,'ciot_default.h']]], - ['ciot_5fconfig_5fuart_5frx_5fbuf_5fsize_160',['CIOT_CONFIG_UART_RX_BUF_SIZE',['../ciot__uart_8h.html#ab3755cf621fe54476a2505e7da26fc01',1,'ciot_uart.h']]], - ['ciot_5fconfig_5fuart_5frx_5fpin_161',['CIOT_CONFIG_UART_RX_PIN',['../ciot__default_8h.html#a47a6c4735b406987793ff61a3748c356',1,'ciot_default.h']]], - ['ciot_5fconfig_5fuart_5ftask_5fcore_162',['CIOT_CONFIG_UART_TASK_CORE',['../ciot__uart_8h.html#a797dec8616d7fdc049d273a4d1eb967b',1,'ciot_uart.h']]], - ['ciot_5fconfig_5fuart_5ftask_5fprio_163',['CIOT_CONFIG_UART_TASK_PRIO',['../ciot__uart_8h.html#a2fa421cf8f26edbbb9c809761788e3f6',1,'ciot_uart.h']]], - ['ciot_5fconfig_5fuart_5ftask_5fsize_164',['CIOT_CONFIG_UART_TASK_SIZE',['../ciot__uart_8h.html#ad58f30c8c839283b62501b16212adcc7',1,'ciot_uart.h']]], - ['ciot_5fconfig_5fuart_5ftx_5fbuf_5fsize_165',['CIOT_CONFIG_UART_TX_BUF_SIZE',['../ciot__uart_8h.html#af725b689143a19b64eac902151957d69',1,'ciot_uart.h']]], - ['ciot_5fconfig_5fuart_5ftx_5fpin_166',['CIOT_CONFIG_UART_TX_PIN',['../ciot__default_8h.html#afe80a6e24ff36484761b8a0740e21cd3',1,'ciot_default.h']]], - ['ciot_5fconfig_5fwifi_5fap_167',['CIOT_CONFIG_WIFI_AP',['../ciot__default_8h.html#a27de0c03a642d79eb31e712994646733',1,'ciot_default.h']]], - ['ciot_5fconfig_5fwifi_5fap_5fauth_168',['CIOT_CONFIG_WIFI_AP_AUTH',['../ciot__wifi_8h.html#a42b035be0aacdd70d63a87058414db71',1,'ciot_wifi.h']]], - ['ciot_5fconfig_5fwifi_5fap_5fmax_5fconn_169',['CIOT_CONFIG_WIFI_AP_MAX_CONN',['../ciot__wifi_8h.html#a28cc7b020ea752969183284f9e2f4ddb',1,'ciot_wifi.h']]], - ['ciot_5fconfig_5fwifi_5fap_5fpassword_170',['CIOT_CONFIG_WIFI_AP_PASSWORD',['../ciot__default_8h.html#afdccac291d2c1de6425402fec83189cf',1,'ciot_default.h']]], - ['ciot_5fconfig_5fwifi_5fap_5fssid_171',['CIOT_CONFIG_WIFI_AP_SSID',['../ciot__default_8h.html#a7f79abe5ea5f7e3260843192069bdcaa',1,'ciot_default.h']]], - ['ciot_5fconfig_5fwifi_5fap_5ftcp_172',['CIOT_CONFIG_WIFI_AP_TCP',['../ciot__default_8h.html#a82cca16f86e1276f9a325ebbd1ec5d68',1,'ciot_default.h']]], - ['ciot_5fconfig_5fwifi_5fsta_173',['CIOT_CONFIG_WIFI_STA',['../ciot__default_8h.html#a7c09f75e4ebc749a5c225c760c2befde',1,'ciot_default.h']]], - ['ciot_5fconfig_5fwifi_5fsta_5fpassword_174',['CIOT_CONFIG_WIFI_STA_PASSWORD',['../ciot__default_8h.html#a89cc8bb6906a26e085cd6d79e881717f',1,'ciot_default.h']]], - ['ciot_5fconfig_5fwifi_5fsta_5fssid_175',['CIOT_CONFIG_WIFI_STA_SSID',['../ciot__default_8h.html#a69173d99aec57142ba91edc18300f781',1,'ciot_default.h']]], - ['ciot_5fconfig_5fwifi_5fsta_5ftcp_176',['CIOT_CONFIG_WIFI_STA_TCP',['../ciot__default_8h.html#a195751f0292e7d1046fa7a4b08e5fc23',1,'ciot_default.h']]], - ['ciot_5fcrc_2eh_177',['ciot_crc.h',['../ciot__crc_8h.html',1,'']]], - ['ciot_5fcrc16_5fbe_178',['ciot_crc16_be',['../ciot__crc_8h.html#a5d59ce0d0ffe65eaf7944d695bde59e3',1,'ciot_crc.h']]], - ['ciot_5fcrc16_5fle_179',['ciot_crc16_le',['../ciot__crc_8h.html#a73a6ce791d6f000bad7ee2eedd0d8350',1,'ciot_crc.h']]], - ['ciot_5fcrc32_5fbe_180',['ciot_crc32_be',['../ciot__crc_8h.html#aeed9b1c0c84b16c8e4e4b65be0787ae4',1,'ciot_crc.h']]], - ['ciot_5fcrc32_5fle_181',['ciot_crc32_le',['../ciot__crc_8h.html#ad020e1771e2ff7a25a068ccc1b3d1331',1,'ciot_crc.h']]], - ['ciot_5fcrc8_5fbe_182',['ciot_crc8_be',['../ciot__crc_8h.html#ae831c4d3ed93d649df5ed07e5b9d1c46',1,'ciot_crc.h']]], - ['ciot_5fcrc8_5fle_183',['ciot_crc8_le',['../ciot__crc_8h.html#a39da2d632baf462933f90f3fbe7a63e7',1,'ciot_crc.h']]], - ['ciot_5fdata_5fmodel_5fcfg_5ft_184',['ciot_data_model_cfg_t',['../structciot__data__model__cfg__t.html',1,'']]], - ['ciot_5fdata_5fmodel_5fdata_5fu_185',['ciot_data_model_data_u',['../unionciot__data__model__data__u.html',1,'']]], - ['ciot_5fdata_5fmodel_5freq_5fdata_5fu_186',['ciot_data_model_req_data_u',['../unionciot__data__model__req__data__u.html',1,'']]], - ['ciot_5fdata_5fmodel_5freq_5ft_187',['ciot_data_model_req_t',['../structciot__data__model__req__t.html',1,'']]], - ['ciot_5fdata_5fmodel_5freq_5ftype_5ft_188',['ciot_data_model_req_type_t',['../ciot__data__model__types_8h.html#a07451ab717eebb18aa8bd2b63252454c',1,'ciot_data_model_types.h']]], - ['ciot_5fdata_5fmodel_5freq_5funknown_189',['CIOT_DATA_MODEL_REQ_UNKNOWN',['../ciot__data__model__types_8h.html#a07451ab717eebb18aa8bd2b63252454ca7c15c82a2c513452266ef7531a5d1eda',1,'ciot_data_model_types.h']]], - ['ciot_5fdata_5fmodel_5fstate_5fidle_190',['CIOT_DATA_MODEL_STATE_IDLE',['../ciot__data__model__types_8h.html#a08dca9e6529c70ebf13cda514ebbf05aa3d6e53393cdb43053723613fd71b0be5',1,'ciot_data_model_types.h']]], - ['ciot_5fdata_5fmodel_5fstate_5ft_191',['ciot_data_model_state_t',['../ciot__data__model__types_8h.html#a08dca9e6529c70ebf13cda514ebbf05a',1,'ciot_data_model_types.h']]], - ['ciot_5fdata_5fmodel_5fstatus_5ft_192',['ciot_data_model_status_t',['../structciot__data__model__status__t.html',1,'']]], - ['ciot_5fdata_5fmodel_5ftypes_2eh_193',['ciot_data_model_types.h',['../ciot__data__model__types_8h.html',1,'']]], - ['ciot_5fdata_5fu_194',['ciot_data_u',['../unionciot__data__u.html',1,'']]], - ['ciot_5fdefault_2eh_195',['ciot_default.h',['../ciot__default_8h.html',1,'']]], - ['ciot_5fdelete_5fiface_5fcfg_196',['ciot_delete_iface_cfg',['../ciot_8h.html#a2de16f3df26c78b69f64cf6e20050d4e',1,'ciot.h']]], - ['ciot_5fdfu_2eh_197',['ciot_dfu.h',['../ciot__dfu_8h.html',1,'']]], - ['ciot_5fdfu_5fcfg_5ft_198',['ciot_dfu_cfg_t',['../structciot__dfu__cfg__t.html',1,'']]], - ['ciot_5fdfu_5fdata_5fu_199',['ciot_dfu_data_u',['../unionciot__dfu__data__u.html',1,'']]], - ['ciot_5fdfu_5fevent_5fid_200',['ciot_dfu_event_id',['../ciot__dfu_8h.html#a20fffb74034c28e3c7f56b2466d379fa',1,'ciot_dfu.h']]], - ['ciot_5fdfu_5fevent_5fid_5ft_201',['ciot_dfu_event_id_t',['../ciot__dfu_8h.html#a05b6b5e8d94559756412865daf115077',1,'ciot_dfu.h']]], - ['ciot_5fdfu_5fevent_5fstate_5fchanged_202',['CIOT_DFU_EVENT_STATE_CHANGED',['../ciot__dfu_8h.html#a20fffb74034c28e3c7f56b2466d379faa120fde02407033deee0ab692a65a7902',1,'ciot_dfu.h']]], - ['ciot_5fdfu_5fnew_203',['ciot_dfu_new',['../ciot__dfu_8h.html#a6552eb94e759a22b9fd3e3da8ed1d755',1,'ciot_dfu.h']]], - ['ciot_5fdfu_5fprocess_5freq_204',['ciot_dfu_process_req',['../ciot__dfu_8h.html#ad40861d034c57576a1bf3aaa3fbc2d9b',1,'ciot_dfu.h']]], - ['ciot_5fdfu_5freq_5fdata_5fu_205',['ciot_dfu_req_data_u',['../unionciot__dfu__req__data__u.html',1,'']]], - ['ciot_5fdfu_5freq_5fsend_5ffirmware_206',['CIOT_DFU_REQ_SEND_FIRMWARE',['../ciot__dfu__types_8h.html#a844cd7a14810224e2865786b830ec572a36e2397f2b518b59d8ee9b8d5dada729',1,'ciot_dfu_types.h']]], - ['ciot_5fdfu_5freq_5ft_207',['ciot_dfu_req_t',['../structciot__dfu__req__t.html',1,'']]], - ['ciot_5fdfu_5freq_5ftype_5ft_208',['ciot_dfu_req_type_t',['../ciot__dfu__types_8h.html#a844cd7a14810224e2865786b830ec572',1,'ciot_dfu_types.h']]], - ['ciot_5fdfu_5freq_5funknown_209',['CIOT_DFU_REQ_UNKNOWN',['../ciot__dfu__types_8h.html#a844cd7a14810224e2865786b830ec572a5f70da81c47429d85820f89a4c161485',1,'ciot_dfu_types.h']]], - ['ciot_5fdfu_5fsend_5fdata_210',['ciot_dfu_send_data',['../ciot__dfu_8h.html#a586e31131b7ab4e0acb3df32122a4564',1,'ciot_dfu.h']]], - ['ciot_5fdfu_5fstart_211',['ciot_dfu_start',['../ciot__dfu_8h.html#ab157cc81dbd5e4045ac42b087f200b56',1,'ciot_dfu.h']]], - ['ciot_5fdfu_5fstate_5fcompleted_212',['CIOT_DFU_STATE_COMPLETED',['../ciot__dfu__types_8h.html#a10bd8bfc4bc24520f6fe74ffa7d60365a393d8a9161cf6ac9b5c6f20a31a46ed9',1,'ciot_dfu_types.h']]], - ['ciot_5fdfu_5fstate_5ferror_213',['CIOT_DFU_STATE_ERROR',['../ciot__dfu__types_8h.html#a10bd8bfc4bc24520f6fe74ffa7d60365a2d35a9f74e70953aa9f9da44bb47aa16',1,'ciot_dfu_types.h']]], - ['ciot_5fdfu_5fstate_5fidle_214',['CIOT_DFU_STATE_IDLE',['../ciot__dfu__types_8h.html#a10bd8bfc4bc24520f6fe74ffa7d60365a19824e532f98744f29b7242935287903',1,'ciot_dfu_types.h']]], - ['ciot_5fdfu_5fstate_5fin_5fprogress_215',['CIOT_DFU_STATE_IN_PROGRESS',['../ciot__dfu__types_8h.html#a10bd8bfc4bc24520f6fe74ffa7d60365a2db1f86f2ada419de201e3e4962cab1b',1,'ciot_dfu_types.h']]], - ['ciot_5fdfu_5fstate_5ft_216',['ciot_dfu_state_t',['../ciot__dfu__types_8h.html#a10bd8bfc4bc24520f6fe74ffa7d60365',1,'ciot_dfu_types.h']]], - ['ciot_5fdfu_5fstatus_5fmsg_5ft_217',['ciot_dfu_status_msg_t',['../structciot__dfu__status__msg__t.html',1,'']]], - ['ciot_5fdfu_5fstatus_5ft_218',['ciot_dfu_status_t',['../structciot__dfu__status__t.html',1,'']]], - ['ciot_5fdfu_5fstop_219',['ciot_dfu_stop',['../ciot__dfu_8h.html#af686f43068829e48ff6ca2455a8b1f05',1,'ciot_dfu.h']]], - ['ciot_5fdfu_5ft_220',['ciot_dfu_t',['../ciot__dfu_8h.html#a185c613ee5be1f09245c6f2dcf92d340',1,'ciot_dfu.h']]], - ['ciot_5fdfu_5ftask_221',['ciot_dfu_task',['../ciot__dfu_8h.html#a519f6db211ff754385aba2d45cfb3a28',1,'ciot_dfu.h']]], - ['ciot_5fdfu_5ftype_5fble_222',['CIOT_DFU_TYPE_BLE',['../ciot__dfu__types_8h.html#a7b0d6e81874e327b06555f8c312b963aaa0b6b28f6e7d624adbf2a93286ff2892',1,'ciot_dfu_types.h']]], - ['ciot_5fdfu_5ftype_5ft_223',['ciot_dfu_type_t',['../ciot__dfu__types_8h.html#a7b0d6e81874e327b06555f8c312b963a',1,'ciot_dfu_types.h']]], - ['ciot_5fdfu_5ftype_5fuart_224',['CIOT_DFU_TYPE_UART',['../ciot__dfu__types_8h.html#a7b0d6e81874e327b06555f8c312b963aa7ce5cb795ab9be3288e458a5d3afa7fe',1,'ciot_dfu_types.h']]], - ['ciot_5fdfu_5ftype_5funknown_225',['CIOT_DFU_TYPE_UNKNOWN',['../ciot__dfu__types_8h.html#a7b0d6e81874e327b06555f8c312b963aaf4c3b89af87b4b26c1de07a3c4e2107a',1,'ciot_dfu_types.h']]], - ['ciot_5fdfu_5ftype_5fusb_226',['CIOT_DFU_TYPE_USB',['../ciot__dfu__types_8h.html#a7b0d6e81874e327b06555f8c312b963aa6444ac136a4260d6e2c009d4ca5324be',1,'ciot_dfu_types.h']]], - ['ciot_5fdfu_5ftypes_2eh_227',['ciot_dfu_types.h',['../ciot__dfu__types_8h.html',1,'']]], - ['ciot_5ferr_2eh_228',['ciot_err.h',['../ciot__err_8h.html',1,'']]], - ['ciot_5ferr_5fbase_229',['CIOT_ERR_BASE',['../ciot__err_8h.html#a5c83da3390515076963e6de67984fff5',1,'ciot_err.h']]], - ['ciot_5ferr_5fbusy_230',['CIOT_ERR_BUSY',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a8a64d46b6f851cbea6f4be9827fa5719',1,'ciot_err.h']]], - ['ciot_5ferr_5fchecksum_231',['CIOT_ERR_CHECKSUM',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8ad5d03221253b6f9e2e632dea64791478',1,'ciot_err.h']]], - ['ciot_5ferr_5fclosed_232',['CIOT_ERR_CLOSED',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a671951c11518830a673c4e01f89059bd',1,'ciot_err.h']]], - ['ciot_5ferr_5fconnection_233',['CIOT_ERR_CONNECTION',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a2c1218c0f210769b6a92052cb87aef3e',1,'ciot_err.h']]], - ['ciot_5ferr_5fdeserialization_234',['CIOT_ERR_DESERIALIZATION',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8aedd08488ef3c685bb1e2c47c14a80cb9',1,'ciot_err.h']]], - ['ciot_5ferr_5fdisconnection_235',['CIOT_ERR_DISCONNECTION',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a699674cfe223dd193c22bd43b040e6ee',1,'ciot_err.h']]], - ['ciot_5ferr_5fexception_236',['CIOT_ERR_EXCEPTION',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a54bf87c72caefdedb6407028ba041fcf',1,'ciot_err.h']]], - ['ciot_5ferr_5fimpossible_5fop_237',['CIOT_ERR_IMPOSSIBLE_OP',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a6d5e8817f2b08fcf3e7a18678b397fba',1,'ciot_err.h']]], - ['ciot_5ferr_5finvalid_5farg_238',['CIOT_ERR_INVALID_ARG',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a7b81bbef8df280eaf950be25a97d6b0f',1,'ciot_err.h']]], - ['ciot_5ferr_5finvalid_5fid_239',['CIOT_ERR_INVALID_ID',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a37a385918af7cb9c2a488bd82addef9a',1,'ciot_err.h']]], - ['ciot_5ferr_5finvalid_5fsize_240',['CIOT_ERR_INVALID_SIZE',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8add84c2b5f1832e3842e6639686ca342e',1,'ciot_err.h']]], - ['ciot_5ferr_5finvalid_5fstate_241',['CIOT_ERR_INVALID_STATE',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a87486b88023e82004f4cc7bd8c91a587',1,'ciot_err.h']]], - ['ciot_5ferr_5finvalid_5ftype_242',['CIOT_ERR_INVALID_TYPE',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a92a85995ffcf6be5cd10ed9677827304',1,'ciot_err.h']]], - ['ciot_5ferr_5fmongoose_243',['CIOT_ERR_MONGOOSE',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a811422a99ed9205e5c17a426012b2914',1,'ciot_err.h']]], - ['ciot_5ferr_5fno_5fmemory_244',['CIOT_ERR_NO_MEMORY',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a134ff0d5fe0ca3d4d834e797cbf94bde',1,'ciot_err.h']]], - ['ciot_5ferr_5fnot_5ffound_245',['CIOT_ERR_NOT_FOUND',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a2e6c77a112c02b82bf99b3c0ec247b6b',1,'ciot_err.h']]], - ['ciot_5ferr_5fnot_5fimplemented_246',['CIOT_ERR_NOT_IMPLEMENTED',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8af592c215972533cd90b05e02f8e8d6cd',1,'ciot_err.h']]], - ['ciot_5ferr_5fnot_5fsupported_247',['CIOT_ERR_NOT_SUPPORTED',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8ab80d9a08671e6164cae2d7ecf66af1cf',1,'ciot_err.h']]], - ['ciot_5ferr_5fnull_5farg_248',['CIOT_ERR_NULL_ARG',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a9e389c8626c35577967cf7e312b3a45a',1,'ciot_err.h']]], - ['ciot_5ferr_5foverflow_249',['CIOT_ERR_OVERFLOW',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a9b5fa45b99fba67d690588956d52f7b0',1,'ciot_err.h']]], - ['ciot_5ferr_5frecv_5fdata_250',['CIOT_ERR_RECV_DATA',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a26c7b6aac6b34bf51f17571df94876bc',1,'ciot_err.h']]], - ['ciot_5ferr_5fsend_5fdata_251',['CIOT_ERR_SEND_DATA',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a4c98aa1cfd3dd9cdce9d0a9f6f5b5a74',1,'ciot_err.h']]], - ['ciot_5ferr_5fserialization_252',['CIOT_ERR_SERIALIZATION',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8ae9b9cea99e0d51f7e70b70f11d2d8025',1,'ciot_err.h']]], - ['ciot_5ferr_5ft_253',['ciot_err_t',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8',1,'ciot_err.h']]], - ['ciot_5ferr_5fterminator_5fmissing_254',['CIOT_ERR_TERMINATOR_MISSING',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a6a5c8b52d640c541101f6669f412dc3b',1,'ciot_err.h']]], - ['ciot_5ferr_5ftimeout_255',['CIOT_ERR_TIMEOUT',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8abe6f4938ab424fc41b067a153ac1105c',1,'ciot_err.h']]], - ['ciot_5ferr_5fto_5fmessage_256',['ciot_err_to_message',['../ciot__err_8h.html#a1d1753e50e3d86f2a58cf488442b5f4c',1,'ciot_err.h']]], - ['ciot_5ferr_5fvalidation_5ffailed_257',['CIOT_ERR_VALIDATION_FAILED',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8ab36d19cffa587308a172dc9d67e9ebf0',1,'ciot_err.h']]], - ['ciot_5ferror_5flog_258',['CIOT_ERROR_LOG',['../ciot__err_8h.html#ad14d33778f6214b2efd5d62bf6c6e3f2',1,'ciot_err.h']]], - ['ciot_5ferror_5fprint_259',['CIOT_ERROR_PRINT',['../ciot__err_8h.html#a2d5c5535c945cd775e34e309019df360',1,'ciot_err.h']]], - ['ciot_5ferror_5freturn_260',['CIOT_ERROR_RETURN',['../ciot__err_8h.html#a1806dc8280a05018951cee099f371d2d',1,'ciot_err.h']]], - ['ciot_5feth_2eh_261',['ciot_eth.h',['../ciot__eth_8h.html',1,'']]], - ['ciot_5feth_5fevent_5fconnected_262',['CIOT_ETH_EVENT_CONNECTED',['../ciot__eth_8h.html#acba9cf62e11fb559248dff916f3ba556aa06cce1cad097460e007b222417aaf7a',1,'ciot_eth.h']]], - ['ciot_5feth_5fevent_5fdisconnected_263',['CIOT_ETH_EVENT_DISCONNECTED',['../ciot__eth_8h.html#acba9cf62e11fb559248dff916f3ba556a7a0a49fd6006a25ba1cf375e28fe05fe',1,'ciot_eth.h']]], - ['ciot_5feth_5fevent_5fid_5ft_264',['ciot_eth_event_id_t',['../ciot__eth_8h.html#acba9cf62e11fb559248dff916f3ba556',1,'ciot_eth.h']]], - ['ciot_5feth_5fevent_5fstart_265',['CIOT_ETH_EVENT_START',['../ciot__eth_8h.html#acba9cf62e11fb559248dff916f3ba556aeedce4004914b72cbf5464d1f8dc6620',1,'ciot_eth.h']]], - ['ciot_5feth_5fevent_5fstop_266',['CIOT_ETH_EVENT_STOP',['../ciot__eth_8h.html#acba9cf62e11fb559248dff916f3ba556af7a9e91956122dcb208686cf6f362f4a',1,'ciot_eth.h']]], - ['ciot_5feth_5fnew_267',['ciot_eth_new',['../ciot__eth_8h.html#a2c82abdd259489cac5b0fa093497d90c',1,'ciot_eth.h']]], - ['ciot_5feth_5fprocess_5freq_268',['ciot_eth_process_req',['../ciot__eth_8h.html#a661b7975f64b8017ec7cd6c4f68a4395',1,'ciot_eth.h']]], - ['ciot_5feth_5fsend_5fdata_269',['ciot_eth_send_data',['../ciot__eth_8h.html#a3952717d31db12a55731412a370ceda5',1,'ciot_eth.h']]], - ['ciot_5feth_5fstart_270',['ciot_eth_start',['../ciot__eth_8h.html#abed434192140a1fae6f358608f3407a8',1,'ciot_eth.h']]], - ['ciot_5feth_5fstatus_5fmsg_5ft_271',['ciot_eth_status_msg_t',['../structciot__eth__status__msg__t.html',1,'']]], - ['ciot_5feth_5fstop_272',['ciot_eth_stop',['../ciot__eth_8h.html#af2d6489aa9834dcaecce9c322fd1a96e',1,'ciot_eth.h']]], - ['ciot_5feth_5ft_273',['ciot_eth_t',['../ciot__eth_8h.html#a3f3b88cf1c074f50fd03c724c41d9da7',1,'ciot_eth.h']]], - ['ciot_5fevent_5fdata_274',['ciot_event_data',['../structciot__event__data.html',1,'']]], - ['ciot_5fevent_5fdata_5ft_275',['ciot_event_data_t',['../ciot__common__types_8h.html#aacdc43deb8af6baf83220c9c6a29c32e',1,'ciot_common_types.h']]], - ['ciot_5ffail_276',['CIOT_FAIL',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a71470ad3a7d23f316a2c6de561694646',1,'ciot_err.h']]], - ['ciot_5fgpio_2eh_277',['ciot_gpio.h',['../ciot__gpio_8h.html',1,'']]], - ['ciot_5fgpio_5fcfg_5ft_278',['ciot_gpio_cfg_t',['../structciot__gpio__cfg__t.html',1,'']]], - ['ciot_5fgpio_5fdata_5fu_279',['ciot_gpio_data_u',['../unionciot__gpio__data__u.html',1,'']]], - ['ciot_5fgpio_5fget_5fstate_280',['ciot_gpio_get_state',['../ciot__gpio_8h.html#a5b2cfc4c7dff3ca2d06f5ec2b8026d79',1,'ciot_gpio.h']]], - ['ciot_5fgpio_5fmode_5fdiabled_281',['CIOT_GPIO_MODE_DIABLED',['../ciot__gpio__types_8h.html#ad768bc05ac4cc4639fe4cb7b8ab52c71a0201638f1798ffea9b8f9b091c443768',1,'ciot_gpio_types.h']]], - ['ciot_5fgpio_5fmode_5finput_282',['CIOT_GPIO_MODE_INPUT',['../ciot__gpio__types_8h.html#ad768bc05ac4cc4639fe4cb7b8ab52c71a5dc50aace0aa33de279a2f1ac471a630',1,'ciot_gpio_types.h']]], - ['ciot_5fgpio_5fmode_5foutput_283',['CIOT_GPIO_MODE_OUTPUT',['../ciot__gpio__types_8h.html#ad768bc05ac4cc4639fe4cb7b8ab52c71a4bbdd6e15ba0de21024a2db0c9330b32',1,'ciot_gpio_types.h']]], - ['ciot_5fgpio_5fmode_5ft_284',['ciot_gpio_mode_t',['../ciot__gpio__types_8h.html#ad768bc05ac4cc4639fe4cb7b8ab52c71',1,'ciot_gpio_types.h']]], - ['ciot_5fgpio_5fnew_285',['ciot_gpio_new',['../ciot__gpio_8h.html#aea01096d6b6bfbd522e8657a845f80c3',1,'ciot_gpio.h']]], - ['ciot_5fgpio_5fprocess_5freq_286',['ciot_gpio_process_req',['../ciot__gpio_8h.html#a442851a180a98c165e9f9492c4563737',1,'ciot_gpio.h']]], - ['ciot_5fgpio_5fpull_5fdisabled_287',['CIOT_GPIO_PULL_DISABLED',['../ciot__gpio__types_8h.html#ae4bc515fbd35a99c9107751c09e69dfeaa6266ad862e3d90fcc7467f103417b95',1,'ciot_gpio_types.h']]], - ['ciot_5fgpio_5fpull_5fmode_5ft_288',['ciot_gpio_pull_mode_t',['../ciot__gpio__types_8h.html#ae4bc515fbd35a99c9107751c09e69dfe',1,'ciot_gpio_types.h']]], - ['ciot_5fgpio_5fpulldown_289',['CIOT_GPIO_PULLDOWN',['../ciot__gpio__types_8h.html#ae4bc515fbd35a99c9107751c09e69dfeab6c8129e2821fea62d640964f7266c43',1,'ciot_gpio_types.h']]], - ['ciot_5fgpio_5fpullup_290',['CIOT_GPIO_PULLUP',['../ciot__gpio__types_8h.html#ae4bc515fbd35a99c9107751c09e69dfeaf9207baa17fdde6ffa3b6bd58a1ec754',1,'ciot_gpio_types.h']]], - ['ciot_5fgpio_5freq_5fconfig_291',['CIOT_GPIO_REQ_CONFIG',['../ciot__gpio__types_8h.html#a86bf6bee2d4762a09459175504b9cc2da591932f3178bc6c970e89e7e3d07dfff',1,'ciot_gpio_types.h']]], - ['ciot_5fgpio_5freq_5fdata_5fu_292',['ciot_gpio_req_data_u',['../unionciot__gpio__req__data__u.html',1,'']]], - ['ciot_5fgpio_5freq_5fget_5fstate_293',['CIOT_GPIO_REQ_GET_STATE',['../ciot__gpio__types_8h.html#a86bf6bee2d4762a09459175504b9cc2dabf5ffe4d1ff61a6e18e024b7000933ca',1,'ciot_gpio_types.h']]], - ['ciot_5fgpio_5freq_5fget_5fstate_5ft_294',['ciot_gpio_req_get_state_t',['../structciot__gpio__req__get__state__t.html',1,'']]], - ['ciot_5fgpio_5freq_5fset_5fstate_295',['CIOT_GPIO_REQ_SET_STATE',['../ciot__gpio__types_8h.html#a86bf6bee2d4762a09459175504b9cc2da3717eef4db07663dddac4d766597e985',1,'ciot_gpio_types.h']]], - ['ciot_5fgpio_5freq_5ft_296',['ciot_gpio_req_t',['../structciot__gpio__req__t.html',1,'']]], - ['ciot_5fgpio_5freq_5ftype_5ft_297',['ciot_gpio_req_type_t',['../ciot__gpio__types_8h.html#a86bf6bee2d4762a09459175504b9cc2d',1,'ciot_gpio_types.h']]], - ['ciot_5fgpio_5freq_5funknown_298',['CIOT_GPIO_REQ_UNKNOWN',['../ciot__gpio__types_8h.html#a86bf6bee2d4762a09459175504b9cc2daf32a90c97d64c9ec2a75ebdf92bfc629',1,'ciot_gpio_types.h']]], - ['ciot_5fgpio_5fsend_5fdata_299',['ciot_gpio_send_data',['../ciot__gpio_8h.html#a9c3f8ee56e12174192c444c6be0c1a5c',1,'ciot_gpio.h']]], - ['ciot_5fgpio_5fset_5fstate_300',['ciot_gpio_set_state',['../ciot__gpio_8h.html#a4a869a0c86a5b6cb73c1789a5bbd612b',1,'ciot_gpio.h']]], - ['ciot_5fgpio_5fstart_301',['ciot_gpio_start',['../ciot__gpio_8h.html#adb7495ded0ad7759f8957513c2865799',1,'ciot_gpio.h']]], - ['ciot_5fgpio_5fstate_5ferr_302',['CIOT_GPIO_STATE_ERR',['../ciot__gpio__types_8h.html#ac566dcf32b51c83a8f37164f23fc2cd9af69cfd9cebab632443f7ec571b22b8f1',1,'ciot_gpio_types.h']]], - ['ciot_5fgpio_5fstate_5fhigh_303',['CIOT_GPIO_STATE_HIGH',['../ciot__gpio__types_8h.html#ac566dcf32b51c83a8f37164f23fc2cd9a3b10aa4077009f19e3a75077246f1df5',1,'ciot_gpio_types.h']]], - ['ciot_5fgpio_5fstate_5finfo_5ft_304',['ciot_gpio_state_info_t',['../structciot__gpio__state__info__t.html',1,'']]], - ['ciot_5fgpio_5fstate_5flow_305',['CIOT_GPIO_STATE_LOW',['../ciot__gpio__types_8h.html#ac566dcf32b51c83a8f37164f23fc2cd9a5af664ade1079acf3371a80d83b16e9a',1,'ciot_gpio_types.h']]], - ['ciot_5fgpio_5fstate_5ft_306',['ciot_gpio_state_t',['../ciot__gpio__types_8h.html#ac566dcf32b51c83a8f37164f23fc2cd9',1,'ciot_gpio_types.h']]], - ['ciot_5fgpio_5fstatus_5fmsg_5ft_307',['ciot_gpio_status_msg_t',['../structciot__gpio__status__msg__t.html',1,'']]], - ['ciot_5fgpio_5fstatus_5ft_308',['ciot_gpio_status_t',['../structciot__gpio__status__t.html',1,'']]], - ['ciot_5fgpio_5fstop_309',['ciot_gpio_stop',['../ciot__gpio_8h.html#adcb7cc03019350645bc5cc0898d9606d',1,'ciot_gpio.h']]], - ['ciot_5fgpio_5ft_310',['ciot_gpio_t',['../ciot__gpio_8h.html#ae9e94463a96ddb2055cd747a6ac5b8dc',1,'ciot_gpio.h']]], - ['ciot_5fgpio_5ftypes_2eh_311',['ciot_gpio_types.h',['../ciot__gpio__types_8h.html',1,'']]], - ['ciot_5fhandle_312',['CIOT_HANDLE',['../ciot_8h.html#a06001434900c2b315cf793e5356f2836',1,'ciot.h']]], - ['ciot_5fhttpc_2eh_313',['ciot_httpc.h',['../ciot__httpc_8h.html',1,'']]], - ['ciot_5fhttpc_5fbody_5flen_314',['CIOT_HTTPC_BODY_LEN',['../ciot__httpc__types_8h.html#ac029ebf7c40c24f8ad4cd380f7a3f8dd',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fcfg_5ft_315',['ciot_httpc_cfg_t',['../structciot__httpc__cfg__t.html',1,'']]], - ['ciot_5fhttpc_5fdata_5fu_316',['ciot_httpc_data_u',['../unionciot__httpc__data__u.html',1,'']]], - ['ciot_5fhttpc_5fevent_317',['ciot_httpc_event',['../unionciot__httpc__event.html',1,'']]], - ['ciot_5fhttpc_5fevent_5fconnected_318',['CIOT_HTTPC_EVENT_CONNECTED',['../ciot__httpc_8h.html#a7867b22f4a59e270cd0aadf3165804a8a3f5ae57e03d9b825c8fb4733c15359db',1,'ciot_httpc.h']]], - ['ciot_5fhttpc_5fevent_5fconnecting_319',['CIOT_HTTPC_EVENT_CONNECTING',['../ciot__httpc_8h.html#a7867b22f4a59e270cd0aadf3165804a8afb97828385b4f79444b7ebfc7640bde9',1,'ciot_httpc.h']]], - ['ciot_5fhttpc_5fevent_5fdata_320',['ciot_httpc_event_data',['../structciot__httpc__event__data.html',1,'']]], - ['ciot_5fhttpc_5fevent_5fdata_5ft_321',['ciot_httpc_event_data_t',['../ciot__httpc__types_8h.html#a491fa8406af26b99bd40ebb9ab2329da',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fevent_5fid_322',['ciot_httpc_event_id',['../ciot__httpc_8h.html#a7867b22f4a59e270cd0aadf3165804a8',1,'ciot_httpc.h']]], - ['ciot_5fhttpc_5fevent_5fid_5ft_323',['ciot_httpc_event_id_t',['../ciot__httpc_8h.html#a8992ff730daa4b1341950e1fcc062095',1,'ciot_httpc.h']]], - ['ciot_5fhttpc_5fevent_5fu_324',['ciot_httpc_event_u',['../ciot__httpc__types_8h.html#a7bb2afccf9d5b80356508aae726c6196',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fheader_5flen_325',['CIOT_HTTPC_HEADER_LEN',['../ciot__httpc__types_8h.html#ab752d46c4d848b82390c300cd1ae19b9',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fheader_5fval_326',['CIOT_HTTPC_HEADER_VAL',['../ciot__httpc__types_8h.html#a2a4af7d3487c220befa4d68c66758bc6',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fmethod_5fcopy_327',['CIOT_HTTPC_METHOD_COPY',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7aa8be300f4466d5d8e37ad27c4fb48b67',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fmethod_5fdelete_328',['CIOT_HTTPC_METHOD_DELETE',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a0f4269d141ab0dc5832a06a1e918f882',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fmethod_5fget_329',['CIOT_HTTPC_METHOD_GET',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a650e5214875a4cdd3e347425901c5577',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fmethod_5fhead_330',['CIOT_HTTPC_METHOD_HEAD',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7af157cd0398674ba1012f6768e47ea8bf',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fmethod_5flen_331',['CIOT_HTTPC_METHOD_LEN',['../ciot__httpc__types_8h.html#af6ec592d3f9ba347d3534361538fb04b',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fmethod_5flock_332',['CIOT_HTTPC_METHOD_LOCK',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a9ba67439f21bc5a14f885acb4702e7a6',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fmethod_5fmax_333',['CIOT_HTTPC_METHOD_MAX',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a717d104c5930fd4723ccab14fa590955',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fmethod_5fmkcol_334',['CIOT_HTTPC_METHOD_MKCOL',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a615ae69783de68e87fe6b10d15fcf241',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fmethod_5fmove_335',['CIOT_HTTPC_METHOD_MOVE',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a554691606720719d5c7d18aec331d819',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fmethod_5fnotify_336',['CIOT_HTTPC_METHOD_NOTIFY',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a26c3f63b94bcfab576aee93a1ebe6e58',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fmethod_5foptions_337',['CIOT_HTTPC_METHOD_OPTIONS',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7aad83faf84362fa782451b9b7813cb903',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fmethod_5fpatch_338',['CIOT_HTTPC_METHOD_PATCH',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a3907ae9dfab102ca11b9f52c35831aa3',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fmethod_5fpost_339',['CIOT_HTTPC_METHOD_POST',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7ac0f3e0c43ca1d9895d911a61aa3a0a3d',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fmethod_5fpropfind_340',['CIOT_HTTPC_METHOD_PROPFIND',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a517da021c623763eb791f30ff5a21d8c',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fmethod_5fproppatch_341',['CIOT_HTTPC_METHOD_PROPPATCH',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7ac96588e2a31fb4cab864cafdb28fd6a2',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fmethod_5fput_342',['CIOT_HTTPC_METHOD_PUT',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a3fecc1706149db9a7031a9726564e50e',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fmethod_5fsubscribe_343',['CIOT_HTTPC_METHOD_SUBSCRIBE',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a4995d14b4b9469afee820440e999d031',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fmethod_5ft_344',['ciot_httpc_method_t',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fmethod_5funlock_345',['CIOT_HTTPC_METHOD_UNLOCK',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a5227db99bf72a1289368d5542cfcafa2',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fmethod_5funsubscribe_346',['CIOT_HTTPC_METHOD_UNSUBSCRIBE',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a8a9fbce8b6f60e6d17568fc73d2ae9fa',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fnew_347',['ciot_httpc_new',['../ciot__httpc_8h.html#aa56416d08a9bcfbc90b3732204f02e4c',1,'ciot_httpc.h']]], - ['ciot_5fhttpc_5fprocess_5freq_348',['ciot_httpc_process_req',['../ciot__httpc_8h.html#aeb4ac97854627dc732459e7c0b60a900',1,'ciot_httpc.h']]], - ['ciot_5fhttpc_5freq_5fdata_349',['ciot_httpc_req_data',['../unionciot__httpc__req__data.html',1,'']]], - ['ciot_5fhttpc_5freq_5fdata_5fu_350',['ciot_httpc_req_data_u',['../ciot__httpc__types_8h.html#a2ea83a6895d0ef313aa7381a2d56ca51',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5freq_5fsend_5fdata_351',['CIOT_HTTPC_REQ_SEND_DATA',['../ciot__httpc__types_8h.html#a2b96aed46d17bb281ae66a3ed099c4cbad7ea3f3d9a71d83af66217bb6887312a',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5freq_5fsend_5ft_352',['ciot_httpc_req_send_t',['../structciot__httpc__req__send__t.html',1,'']]], - ['ciot_5fhttpc_5freq_5fset_5fheader_353',['CIOT_HTTPC_REQ_SET_HEADER',['../ciot__httpc__types_8h.html#a2b96aed46d17bb281ae66a3ed099c4cba572be88b8d0c24041a432f1dc4a4ae16',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5freq_5fset_5fheader_5ft_354',['ciot_httpc_req_set_header_t',['../structciot__httpc__req__set__header__t.html',1,'']]], - ['ciot_5fhttpc_5freq_5ft_355',['ciot_httpc_req_t',['../structciot__httpc__req__t.html',1,'']]], - ['ciot_5fhttpc_5freq_5ftype_5ft_356',['ciot_httpc_req_type_t',['../ciot__httpc__types_8h.html#a2b96aed46d17bb281ae66a3ed099c4cb',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5freq_5funknown_357',['CIOT_HTTPC_REQ_UNKNOWN',['../ciot__httpc__types_8h.html#a2b96aed46d17bb281ae66a3ed099c4cba2c25436ee320558e3b39e0278af195e1',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fsend_5fdata_358',['ciot_httpc_send_data',['../ciot__httpc_8h.html#a8b0903c7bdf6e8928d3753c06f13c564',1,'ciot_httpc.h']]], - ['ciot_5fhttpc_5fstart_359',['ciot_httpc_start',['../ciot__httpc_8h.html#a46df5188166f70dba4fdff5393db031e',1,'ciot_httpc.h']]], - ['ciot_5fhttpc_5fstate_5fconnected_360',['CIOT_HTTPC_STATE_CONNECTED',['../ciot__httpc__types_8h.html#aaaa5ea5ab9829620d53957b82e15e5b5a0df909f7e832643e2cf49aa050d023dd',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fstate_5fconnecting_361',['CIOT_HTTPC_STATE_CONNECTING',['../ciot__httpc__types_8h.html#aaaa5ea5ab9829620d53957b82e15e5b5a0bd77b70defc26341e91f9b6922252f9',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fstate_5fdata_5freceived_362',['CIOT_HTTPC_STATE_DATA_RECEIVED',['../ciot__httpc__types_8h.html#aaaa5ea5ab9829620d53957b82e15e5b5a2f5ce6951d2b9d638c13c4938b0c01c7',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fstate_5ferror_363',['CIOT_HTTPC_STATE_ERROR',['../ciot__httpc__types_8h.html#aaaa5ea5ab9829620d53957b82e15e5b5ab4a3e67dcc1afbfba00d0df61b40b8da',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fstate_5fidle_364',['CIOT_HTTPC_STATE_IDLE',['../ciot__httpc__types_8h.html#aaaa5ea5ab9829620d53957b82e15e5b5a76b62150d0e55c88c843115abdd10071',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fstate_5fstarted_365',['CIOT_HTTPC_STATE_STARTED',['../ciot__httpc__types_8h.html#aaaa5ea5ab9829620d53957b82e15e5b5aeb32c53e0ba4ee494743e1931be6eeec',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fstate_5ft_366',['ciot_httpc_state_t',['../ciot__httpc__types_8h.html#aaaa5ea5ab9829620d53957b82e15e5b5',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fstate_5ftimeout_367',['CIOT_HTTPC_STATE_TIMEOUT',['../ciot__httpc__types_8h.html#aaaa5ea5ab9829620d53957b82e15e5b5a41421c36fcf36da91a51f06855224157',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5fstatus_5fmsg_5ft_368',['ciot_httpc_status_msg_t',['../structciot__httpc__status__msg__t.html',1,'']]], - ['ciot_5fhttpc_5fstatus_5ft_369',['ciot_httpc_status_t',['../structciot__httpc__status__t.html',1,'']]], - ['ciot_5fhttpc_5fstop_370',['ciot_httpc_stop',['../ciot__httpc_8h.html#a34deca8f36a9ebbb7b47663a026efc71',1,'ciot_httpc.h']]], - ['ciot_5fhttpc_5ft_371',['ciot_httpc_t',['../ciot__httpc_8h.html#a2c213f8a3a59ead35d64cf064f894fe1',1,'ciot_httpc.h']]], - ['ciot_5fhttpc_5ftransport_5fssl_372',['CIOT_HTTPC_TRANSPORT_SSL',['../ciot__httpc__types_8h.html#ae5d45fa37052b0149488422933d4b7c2a2b14353c34ecb4525e768f4ba62da6b8',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5ftransport_5ftcp_373',['CIOT_HTTPC_TRANSPORT_TCP',['../ciot__httpc__types_8h.html#ae5d45fa37052b0149488422933d4b7c2ac0b77b7cf582d3d2adb20f67dac8cea1',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5ftransport_5ftype_5ft_374',['ciot_httpc_transport_type_t',['../ciot__httpc__types_8h.html#ae5d45fa37052b0149488422933d4b7c2',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5ftransport_5funknown_375',['CIOT_HTTPC_TRANSPORT_UNKNOWN',['../ciot__httpc__types_8h.html#ae5d45fa37052b0149488422933d4b7c2a22a12a1f89b04f673e7c6da6120118fb',1,'ciot_httpc_types.h']]], - ['ciot_5fhttpc_5ftypes_2eh_376',['ciot_httpc_types.h',['../ciot__httpc__types_8h.html',1,'']]], - ['ciot_5fhttpc_5furl_5flen_377',['CIOT_HTTPC_URL_LEN',['../ciot__httpc__types_8h.html#ab32b0446ee870bfb7a79c056a81e6683',1,'ciot_httpc_types.h']]], - ['ciot_5fhttps_2eh_378',['ciot_https.h',['../ciot__https_8h.html',1,'']]], - ['ciot_5fhttps_5faddress_5flen_379',['CIOT_HTTPS_ADDRESS_LEN',['../ciot__https__types_8h.html#abe1cc7f5311018e78e8a49734cce3623',1,'ciot_https_types.h']]], - ['ciot_5fhttps_5fcfg_5ft_380',['ciot_https_cfg_t',['../structciot__https__cfg__t.html',1,'']]], - ['ciot_5fhttps_5fdata_5fu_381',['ciot_https_data_u',['../unionciot__https__data__u.html',1,'']]], - ['ciot_5fhttps_5fevent_382',['ciot_https_event',['../structciot__https__event.html',1,'']]], - ['ciot_5fhttps_5fevent_5fdata_383',['ciot_https_event_data',['../structciot__https__event__data.html',1,'']]], - ['ciot_5fhttps_5fevent_5fdata_384',['CIOT_HTTPS_EVENT_DATA',['../ciot__https_8h.html#a3bfe51b8fc1185d9f555a28985455f12abda42e477b51af9bdec887127fbe6d27',1,'ciot_https.h']]], - ['ciot_5fhttps_5fevent_5fdata_5ft_385',['ciot_https_event_data_t',['../ciot__https__types_8h.html#a2c6c4aa32536b02785ca49d2716498b3',1,'ciot_https_types.h']]], - ['ciot_5fhttps_5fevent_5fid_386',['ciot_https_event_id',['../ciot__https_8h.html#a3bfe51b8fc1185d9f555a28985455f12',1,'ciot_https.h']]], - ['ciot_5fhttps_5fevent_5fid_5ft_387',['ciot_https_event_id_t',['../ciot__https_8h.html#a26069470806c3c576f68c2c7108c07a0',1,'ciot_https.h']]], - ['ciot_5fhttps_5fevent_5fu_388',['ciot_https_event_u',['../ciot__https__types_8h.html#aec67a3b9fe62b79e7252d89476bd4704',1,'ciot_https_types.h']]], - ['ciot_5fhttps_5fmethod_5flen_389',['CIOT_HTTPS_METHOD_LEN',['../ciot__https__types_8h.html#aa7678310edbfc6790c69ab81cd7ccf52',1,'ciot_https_types.h']]], - ['ciot_5fhttps_5fnew_390',['ciot_https_new',['../ciot__https_8h.html#a50f38073c89e88e99b5bf95abbe0b18b',1,'ciot_https.h']]], - ['ciot_5fhttps_5fprocess_5freq_391',['ciot_https_process_req',['../ciot__https_8h.html#a585618f81c962cef6251ffecc942a333',1,'ciot_https.h']]], - ['ciot_5fhttps_5freq_5fdata_5fu_392',['ciot_https_req_data_u',['../unionciot__https__req__data__u.html',1,'']]], - ['ciot_5fhttps_5freq_5ft_393',['ciot_https_req_t',['../structciot__https__req__t.html',1,'']]], - ['ciot_5fhttps_5freq_5ftype_5ft_394',['ciot_https_req_type_t',['../ciot__https__types_8h.html#ade314c7fe1c013e8f3e60935bc820de3',1,'ciot_https_types.h']]], - ['ciot_5fhttps_5freq_5funknown_395',['CIOT_HTTPS_REQ_UNKNOWN',['../ciot__https__types_8h.html#ade314c7fe1c013e8f3e60935bc820de3aefeacc094012affef1849ed248027c31',1,'ciot_https_types.h']]], - ['ciot_5fhttps_5froute_5flen_396',['CIOT_HTTPS_ROUTE_LEN',['../ciot__https__types_8h.html#a8b84b36e97ad2c3a2e7ac72e4d6b2749',1,'ciot_https_types.h']]], - ['ciot_5fhttps_5fsend_5fdata_397',['ciot_https_send_data',['../ciot__https_8h.html#ab9abc9d142e7332b9606568193d1ede0',1,'ciot_https.h']]], - ['ciot_5fhttps_5fstart_398',['ciot_https_start',['../ciot__https_8h.html#a3a7dd3627113a6a829c764500112d752',1,'ciot_https.h']]], - ['ciot_5fhttps_5fstate_5ferror_399',['CIOT_HTTPS_STATE_ERROR',['../ciot__https__types_8h.html#a17a6b65526ea731de25e9da2f1fad0fda5c3019e26199226925ec1ed6790a9207',1,'ciot_https_types.h']]], - ['ciot_5fhttps_5fstate_5fstarted_400',['CIOT_HTTPS_STATE_STARTED',['../ciot__https__types_8h.html#a17a6b65526ea731de25e9da2f1fad0fdaa775c25c0d8b7eeb99d8d53b11bed6c7',1,'ciot_https_types.h']]], - ['ciot_5fhttps_5fstate_5fstopped_401',['CIOT_HTTPS_STATE_STOPPED',['../ciot__https__types_8h.html#a17a6b65526ea731de25e9da2f1fad0fdacd46841a989b783e5bc6221a735f8e1d',1,'ciot_https_types.h']]], - ['ciot_5fhttps_5fstate_5ft_402',['ciot_https_state_t',['../ciot__https__types_8h.html#a17a6b65526ea731de25e9da2f1fad0fd',1,'ciot_https_types.h']]], - ['ciot_5fhttps_5fstatus_5fmsg_5ft_403',['ciot_https_status_msg_t',['../structciot__https__status__msg__t.html',1,'']]], - ['ciot_5fhttps_5fstatus_5ft_404',['ciot_https_status_t',['../structciot__https__status__t.html',1,'']]], - ['ciot_5fhttps_5fstop_405',['ciot_https_stop',['../ciot__https_8h.html#a04b4527bce08440e2643a71679575174',1,'ciot_https.h']]], - ['ciot_5fhttps_5ft_406',['ciot_https_t',['../ciot__https_8h.html#acfd2fcf5803562e750dea3815e1cbd49',1,'ciot_https.h']]], - ['ciot_5fhttps_5ftypes_2eh_407',['ciot_https_types.h',['../ciot__https__types_8h.html',1,'']]], - ['ciot_5fiface_408',['ciot_iface',['../structciot__iface.html',1,'']]], - ['ciot_5fiface_2eh_409',['ciot_iface.h',['../ciot__iface_8h.html',1,'']]], - ['ciot_5fiface_5fbase_410',['ciot_iface_base',['../structciot__iface__base.html',1,'']]], - ['ciot_5fiface_5fbase_5fdata_411',['ciot_iface_base_data',['../structciot__iface__base__data.html',1,'']]], - ['ciot_5fiface_5fbase_5fdata_5ft_412',['ciot_iface_base_data_t',['../ciot__iface_8h.html#a107b2c0cf1b5767a1b482f19bc3fb0ae',1,'ciot_iface.h']]], - ['ciot_5fiface_5fbase_5ft_413',['ciot_iface_base_t',['../ciot__iface_8h.html#abe9d78b6b8e29546fe52054115bea7a0',1,'ciot_iface.h']]], - ['ciot_5fiface_5fcfg_5ffilename_414',['CIOT_IFACE_CFG_FILENAME',['../ciot_8h.html#a69a23dd0ffa7b32ceaa106938030c108',1,'ciot.h']]], - ['ciot_5fiface_5fcfg_5ft_415',['ciot_iface_cfg_t',['../structciot__iface__cfg__t.html',1,'']]], - ['ciot_5fiface_5fevent_5fcustom_416',['CIOT_IFACE_EVENT_CUSTOM',['../ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cba7682c08bf60ddc6f695e62b7b2344a4f',1,'ciot_iface.h']]], - ['ciot_5fiface_5fevent_5fdata_417',['CIOT_IFACE_EVENT_DATA',['../ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cba080fca556c9a023720751526ecad8ccc',1,'ciot_iface.h']]], - ['ciot_5fiface_5fevent_5fdata_5fu_418',['ciot_iface_event_data_u',['../unionciot__iface__event__data__u.html',1,'']]], - ['ciot_5fiface_5fevent_5fdone_419',['CIOT_IFACE_EVENT_DONE',['../ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cbab9bcdc77d1e0c80fdca8b60528af9d81',1,'ciot_iface.h']]], - ['ciot_5fiface_5fevent_5ferror_420',['CIOT_IFACE_EVENT_ERROR',['../ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cba98063df9c53273544ed5b5424a05024e',1,'ciot_iface.h']]], - ['ciot_5fiface_5fevent_5fhandler_5ft_421',['ciot_iface_event_handler_t',['../ciot__iface_8h.html#aa95e39f8029362c17172c4ab860b9b2c',1,'ciot_iface.h']]], - ['ciot_5fiface_5fevent_5finternal_422',['CIOT_IFACE_EVENT_INTERNAL',['../ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cbad1b206ed7fad45c5e6630dc78d91844d',1,'ciot_iface.h']]], - ['ciot_5fiface_5fevent_5frequest_423',['CIOT_IFACE_EVENT_REQUEST',['../ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cba0f80ad7aed1ba3eecf1922446cbdde95',1,'ciot_iface.h']]], - ['ciot_5fiface_5fevent_5fstarted_424',['CIOT_IFACE_EVENT_STARTED',['../ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cba2b18a98e307314d7257854b3f09700a6',1,'ciot_iface.h']]], - ['ciot_5fiface_5fevent_5fstopped_425',['CIOT_IFACE_EVENT_STOPPED',['../ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cbab52a8702f0eaf2aed031a3ca78468a71',1,'ciot_iface.h']]], - ['ciot_5fiface_5fevent_5ft_426',['ciot_iface_event_t',['../structciot__iface__event__t.html',1,'']]], - ['ciot_5fiface_5fevent_5fto_5fstr_427',['ciot_iface_event_to_str',['../ciot__iface_8h.html#aa3ff9b2090848d0920e0a69de86f6250',1,'ciot_iface.h']]], - ['ciot_5fiface_5fevent_5ftype_428',['ciot_iface_event_type',['../ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cb',1,'ciot_iface.h']]], - ['ciot_5fiface_5fevent_5ftype_5ft_429',['ciot_iface_event_type_t',['../ciot__iface_8h.html#ab7cf61a0bac326bd528c23e6ce924c57',1,'ciot_iface.h']]], - ['ciot_5fiface_5fevent_5funknown_430',['CIOT_IFACE_EVENT_UNKNOWN',['../ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cba783c8ee8ead4e6638b0454ffbe5fe009',1,'ciot_iface.h']]], - ['ciot_5fiface_5fget_5fcfg_431',['ciot_iface_get_cfg',['../ciot__iface_8h.html#aef1dd87e5c3111ca65fa4e63ca2c9213',1,'ciot_iface.h']]], - ['ciot_5fiface_5fget_5finfo_432',['ciot_iface_get_info',['../ciot__iface_8h.html#a6b87395146fdad575079c47979fe1cc5',1,'ciot_iface.h']]], - ['ciot_5fiface_5fget_5fmsg_5fid_433',['ciot_iface_get_msg_id',['../ciot__iface_8h.html#aa0070d90be5933f14530c81fca52fcfd',1,'ciot_iface.h']]], - ['ciot_5fiface_5fget_5fstatus_434',['ciot_iface_get_status',['../ciot__iface_8h.html#a7c59fa4a32c0662de361fd89847ab62b',1,'ciot_iface.h']]], - ['ciot_5fiface_5fid_435',['ciot_iface_id',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1e',1,'ciot_ifaces.h']]], - ['ciot_5fiface_5fid_5fble_436',['CIOT_IFACE_ID_BLE',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea2a08ed7ae7a1cc621cb4708a6dd0e396',1,'ciot_ifaces.h']]], - ['ciot_5fiface_5fid_5fble_5fscn_437',['CIOT_IFACE_ID_BLE_SCN',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea7f3c5f3d0ad4f1dfd3d783241d99db3f',1,'ciot_ifaces.h']]], - ['ciot_5fiface_5fid_5fbridge_438',['CIOT_IFACE_ID_BRIDGE',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea38e855c72e72086bdc9b45543981b9d3',1,'ciot_ifaces.h']]], - ['ciot_5fiface_5fid_5fciot_439',['CIOT_IFACE_ID_CIOT',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea49cfed8646f3de92a34287bb413e85ef',1,'ciot_ifaces.h']]], - ['ciot_5fiface_5fid_5fdfu_440',['CIOT_IFACE_ID_DFU',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea663fe58cdc4d896f7729e953d709b9ea',1,'ciot_ifaces.h']]], - ['ciot_5fiface_5fid_5feth_441',['CIOT_IFACE_ID_ETH',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1eae58f8ebc9e8233810e0507dcc8cf3de5',1,'ciot_ifaces.h']]], - ['ciot_5fiface_5fid_5fgpio_442',['CIOT_IFACE_ID_GPIO',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea050d0909d9275b2785e13e92ee6db35d',1,'ciot_ifaces.h']]], - ['ciot_5fiface_5fid_5fhttp_5fclient_443',['CIOT_IFACE_ID_HTTP_CLIENT',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1eadeaee2994eba2268fbf880938d75ce9e',1,'ciot_ifaces.h']]], - ['ciot_5fiface_5fid_5fhttp_5fserver_444',['CIOT_IFACE_ID_HTTP_SERVER',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea10242eda2c41ddb76f3d05a8d3507c14',1,'ciot_ifaces.h']]], - ['ciot_5fiface_5fid_5fmqtt_445',['CIOT_IFACE_ID_MQTT',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1eac8eeadb10c436b739b7bb180d65b053a',1,'ciot_ifaces.h']]], - ['ciot_5fiface_5fid_5fntp_446',['CIOT_IFACE_ID_NTP',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea2c1db03e2628aba552b741a079c4f3b6',1,'ciot_ifaces.h']]], - ['ciot_5fiface_5fid_5fota_447',['CIOT_IFACE_ID_OTA',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea77a9be4a3d71157a99b3931ecb890760',1,'ciot_ifaces.h']]], - ['ciot_5fiface_5fid_5fstorage_448',['CIOT_IFACE_ID_STORAGE',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1eaf73e60bfa3d2bfe988000062e4a6fb5a',1,'ciot_ifaces.h']]], - ['ciot_5fiface_5fid_5fsystem_449',['CIOT_IFACE_ID_SYSTEM',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea46a519b30f420e680495d99a0f013b02',1,'ciot_ifaces.h']]], - ['ciot_5fiface_5fid_5ft_450',['ciot_iface_id_t',['../ciot__ifaces_8h.html#a81dae521394bdd3a9d8b848740f5433a',1,'ciot_ifaces.h']]], - ['ciot_5fiface_5fid_5ftcp_451',['CIOT_IFACE_ID_TCP',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1eace465d93bac433735d3cb4f4256743ea',1,'ciot_ifaces.h']]], - ['ciot_5fiface_5fid_5fuart_452',['CIOT_IFACE_ID_UART',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea70e4ffdab38e4c017b0e82199aceb028',1,'ciot_ifaces.h']]], - ['ciot_5fiface_5fid_5funknown_453',['CIOT_IFACE_ID_UNKNOWN',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1eab83be87e2b46a1081b4213c560c25426',1,'ciot_ifaces.h']]], - ['ciot_5fiface_5fid_5fusb_454',['CIOT_IFACE_ID_USB',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ead428622f610ad7bf11f8c881108a2430',1,'ciot_ifaces.h']]], - ['ciot_5fiface_5fid_5fwifi_455',['CIOT_IFACE_ID_WIFI',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea6ff4fdc5bf330bfbde15f71646b3a14f',1,'ciot_ifaces.h']]], - ['ciot_5fiface_5fprocess_5fmsg_456',['ciot_iface_process_msg',['../ciot__iface_8h.html#a1838217e75528a5d17f7e3b640c58321',1,'ciot_iface.h']]], - ['ciot_5fiface_5fprocess_5freq_457',['ciot_iface_process_req',['../ciot__iface_8h.html#abc404557e0571e7e5ea0c5db63fa8c23',1,'ciot_iface.h']]], - ['ciot_5fiface_5fprocess_5freq_5ffn_458',['ciot_iface_process_req_fn',['../ciot__iface_8h.html#ae586597c42a97043136f6afe51e7ebe8',1,'ciot_iface.h']]], - ['ciot_5fiface_5fregister_5fevent_459',['ciot_iface_register_event',['../ciot__iface_8h.html#abded5657da5e3c7e38c1185b4b14a4a8',1,'ciot_iface.h']]], - ['ciot_5fiface_5fregister_5frequest_460',['ciot_iface_register_request',['../ciot__iface_8h.html#acfdf034f3291c65ee6798ffc860b6f1a',1,'ciot_iface.h']]], - ['ciot_5fiface_5freq_5finfo_461',['ciot_iface_req_info',['../structciot__iface__req__info.html',1,'']]], - ['ciot_5fiface_5freq_5finfo_5ft_462',['ciot_iface_req_info_t',['../ciot__iface_8h.html#a3c7fbbc6d64e6ea8584c014743e20fb9',1,'ciot_iface.h']]], - ['ciot_5fiface_5freq_5fstatus_463',['ciot_iface_req_status',['../ciot__iface_8h.html#aa73c62bfec675d5d722fab4532b753ca',1,'ciot_iface.h']]], - ['ciot_5fiface_5freq_5fstatus_5fidle_464',['CIOT_IFACE_REQ_STATUS_IDLE',['../ciot__iface_8h.html#aa73c62bfec675d5d722fab4532b753caa6fad5b037b43a54a8d8e8f70c6e30eb6',1,'ciot_iface.h']]], - ['ciot_5fiface_5freq_5fstatus_5freceived_465',['CIOT_IFACE_REQ_STATUS_RECEIVED',['../ciot__iface_8h.html#aa73c62bfec675d5d722fab4532b753caa52b88fef2a02a82b04031ad4ba09d0ef',1,'ciot_iface.h']]], - ['ciot_5fiface_5freq_5fstatus_5fsended_466',['CIOT_IFACE_REQ_STATUS_SENDED',['../ciot__iface_8h.html#aa73c62bfec675d5d722fab4532b753caac426693d5012b5aed25f77d2e8bedda5',1,'ciot_iface.h']]], - ['ciot_5fiface_5freq_5fstatus_5ft_467',['ciot_iface_req_status_t',['../ciot__iface_8h.html#a53ef55e31fed0fb7bbc727b4b45c8b18',1,'ciot_iface.h']]], - ['ciot_5fiface_5freset_5frequest_468',['ciot_iface_reset_request',['../ciot__iface_8h.html#aefceafcf049557b64450785501b2470a',1,'ciot_iface.h']]], - ['ciot_5fiface_5fsend_5fdata_469',['ciot_iface_send_data',['../ciot__iface_8h.html#ac30f4e1e8fcb5a66822b04c384890c58',1,'ciot_iface.h']]], - ['ciot_5fiface_5fsend_5fdata_5ffn_470',['ciot_iface_send_data_fn',['../ciot__iface_8h.html#affffc532ae0b36b941fc0ed0376a0a5a',1,'ciot_iface.h']]], - ['ciot_5fiface_5fsend_5fmsg_471',['ciot_iface_send_msg',['../ciot__iface_8h.html#a5e15dc97b9b45855f868dee02c69c166',1,'ciot_iface.h']]], - ['ciot_5fiface_5fsend_5freq_472',['ciot_iface_send_req',['../ciot__iface_8h.html#a5f8b92fd30cad0f550ef9976e037b93e',1,'ciot_iface.h']]], - ['ciot_5fiface_5fsend_5frsp_473',['ciot_iface_send_rsp',['../ciot__iface_8h.html#ae6a255f29e6adcc8a7325c29abba6844',1,'ciot_iface.h']]], - ['ciot_5fiface_5fset_5fserializer_474',['ciot_iface_set_serializer',['../ciot__iface_8h.html#ac6198bf9f283fff84839fcba7aaa0682',1,'ciot_iface.h']]], - ['ciot_5fiface_5fstart_475',['ciot_iface_start',['../ciot__iface_8h.html#a15efdb74520f75fe9f0a695a349f07e0',1,'ciot_iface.h']]], - ['ciot_5fiface_5fstart_5ffn_476',['ciot_iface_start_fn',['../ciot__iface_8h.html#afa768ec7c39932d18718c66358303d16',1,'ciot_iface.h']]], - ['ciot_5fiface_5fstop_477',['ciot_iface_stop',['../ciot__iface_8h.html#a7ad3131a637f86ed8d9a4655f060deca',1,'ciot_iface.h']]], - ['ciot_5fiface_5fstop_5ffn_478',['ciot_iface_stop_fn',['../ciot__iface_8h.html#adbb3382dd13c68ed5090d0021bfd8f29',1,'ciot_iface.h']]], - ['ciot_5fiface_5ft_479',['ciot_iface_t',['../ciot__iface_8h.html#ac87bf8f245c1f7cc82f57bc87de9ad71',1,'ciot_iface.h']]], - ['ciot_5fiface_5fto_5fstr_480',['ciot_iface_to_str',['../ciot__iface_8h.html#ad4bea4982fb363829998c5fa64f76ccb',1,'ciot_iface.h']]], - ['ciot_5fiface_5ftype_5fble_481',['CIOT_IFACE_TYPE_BLE',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a7ca4cc3f201a9ce47e80e5e6685e6fd5',1,'ciot_msg_types.h']]], - ['ciot_5fiface_5ftype_5fble_5fscn_482',['CIOT_IFACE_TYPE_BLE_SCN',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a9d8b8db1db47ef5baf0a7894264e364c',1,'ciot_msg_types.h']]], - ['ciot_5fiface_5ftype_5fbridge_483',['CIOT_IFACE_TYPE_BRIDGE',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a67c77e20c41ae475451f4f01a3b2fdb4',1,'ciot_msg_types.h']]], - ['ciot_5fiface_5ftype_5fciot_484',['CIOT_IFACE_TYPE_CIOT',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608ad57b9f27f19fb7d16c08c4857ae7291d',1,'ciot_msg_types.h']]], - ['ciot_5fiface_5ftype_5fcustom_485',['CIOT_IFACE_TYPE_CUSTOM',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608aff200c36869c4d69a1cb8edf4d45202a',1,'ciot_msg_types.h']]], - ['ciot_5fiface_5ftype_5fdfu_486',['CIOT_IFACE_TYPE_DFU',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608acf86ce5e05bba2ba30d275ce78438806',1,'ciot_msg_types.h']]], - ['ciot_5fiface_5ftype_5feth_487',['CIOT_IFACE_TYPE_ETH',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608aa3dce94aa5a8e8a6c1a0592f59cdb747',1,'ciot_msg_types.h']]], - ['ciot_5fiface_5ftype_5fgpio_488',['CIOT_IFACE_TYPE_GPIO',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a22891d22cf46370531f6eb833b037235',1,'ciot_msg_types.h']]], - ['ciot_5fiface_5ftype_5fhttp_5fclient_489',['CIOT_IFACE_TYPE_HTTP_CLIENT',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608ad89e327f418602211b2202c414291750',1,'ciot_msg_types.h']]], - ['ciot_5fiface_5ftype_5fhttp_5fserver_490',['CIOT_IFACE_TYPE_HTTP_SERVER',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608ab91f2d2aa5ecf13c79d0028a487584ca',1,'ciot_msg_types.h']]], - ['ciot_5fiface_5ftype_5fmqtt_491',['CIOT_IFACE_TYPE_MQTT',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a3065d35cd0a10d31382d9c5b38249ca5',1,'ciot_msg_types.h']]], - ['ciot_5fiface_5ftype_5fntp_492',['CIOT_IFACE_TYPE_NTP',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a08b41fe63e5a4b8ea4710adaac89f8b8',1,'ciot_msg_types.h']]], - ['ciot_5fiface_5ftype_5fota_493',['CIOT_IFACE_TYPE_OTA',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608ae07a8e59d7924852ed66075eefcd1c3d',1,'ciot_msg_types.h']]], - ['ciot_5fiface_5ftype_5fstorage_494',['CIOT_IFACE_TYPE_STORAGE',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a613cf065591c3e8300a4fe009a044aec',1,'ciot_msg_types.h']]], - ['ciot_5fiface_5ftype_5fsystem_495',['CIOT_IFACE_TYPE_SYSTEM',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a327aeede0ef7fba282b1911dfa988d28',1,'ciot_msg_types.h']]], - ['ciot_5fiface_5ftype_5ftcp_496',['CIOT_IFACE_TYPE_TCP',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608ab013ddfd461842f9031bed420c5720bc',1,'ciot_msg_types.h']]], - ['ciot_5fiface_5ftype_5fto_5fstr_497',['ciot_iface_type_to_str',['../ciot__iface_8h.html#a6411ae488746c99b42a7970dcbe6b042',1,'ciot_iface.h']]], - ['ciot_5fiface_5ftype_5fuart_498',['CIOT_IFACE_TYPE_UART',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608ab3a691e3ca526bb17bd62366d83bbcd7',1,'ciot_msg_types.h']]], - ['ciot_5fiface_5ftype_5funknown_499',['CIOT_IFACE_TYPE_UNKNOWN',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a75837371354fe9353d77acc9fc49ee6d',1,'ciot_msg_types.h']]], - ['ciot_5fiface_5ftype_5fusb_500',['CIOT_IFACE_TYPE_USB',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a2c76f658f22fa29ed49d56c697215918',1,'ciot_msg_types.h']]], - ['ciot_5fiface_5ftype_5fwifi_501',['CIOT_IFACE_TYPE_WIFI',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a53e8d8ba26c3663e0a7f9d8a70aa2770',1,'ciot_msg_types.h']]], - ['ciot_5fifaces_502',['ciot_ifaces',['../structciot__ifaces.html',1,'']]], - ['ciot_5fifaces_2eh_503',['ciot_ifaces.h',['../ciot__ifaces_8h.html',1,'']]], - ['ciot_5fifaces_5ft_504',['ciot_ifaces_t',['../ciot__ifaces_8h.html#a689f38bac0aaf012140f11da651c8c0f',1,'ciot_ifaces.h']]], - ['ciot_5finfo_5ft_505',['ciot_info_t',['../structciot__info__t.html',1,'']]], - ['ciot_5flib_2eh_506',['ciot_lib.h',['../ciot__lib_8h.html',1,'']]], - ['ciot_5flog_2eh_507',['ciot_log.h',['../ciot__log_8h.html',1,'']]], - ['ciot_5flog_5fbuffer_5fhex_508',['CIOT_LOG_BUFFER_HEX',['../ciot__log_8h.html#a017fce4c69c3715ce3301383a4b34510',1,'ciot_log.h']]], - ['ciot_5flog_5fhex_509',['CIOT_LOG_HEX',['../ciot__log_8h.html#af003b1fbcac6bc1f6fb1c90d3e89f1ac',1,'ciot_log.h']]], - ['ciot_5flog_5flevel_510',['ciot_log_level',['../ciot__log_8h.html#a399d3388116ce0479b91f0fdb5b56432',1,'ciot_log.h']]], - ['ciot_5flog_5flevel_5fdebug_511',['CIOT_LOG_LEVEL_DEBUG',['../ciot__log_8h.html#a399d3388116ce0479b91f0fdb5b56432a1c854b20829665b670feca84ed8f0260',1,'ciot_log.h']]], - ['ciot_5flog_5flevel_5ferror_512',['CIOT_LOG_LEVEL_ERROR',['../ciot__log_8h.html#a399d3388116ce0479b91f0fdb5b56432a05dd8f3fe5ca95cc5e1da78333e58356',1,'ciot_log.h']]], - ['ciot_5flog_5flevel_5finfo_513',['CIOT_LOG_LEVEL_INFO',['../ciot__log_8h.html#a399d3388116ce0479b91f0fdb5b56432a5f57b5ccf4a45d424a48b7edfc305a6b',1,'ciot_log.h']]], - ['ciot_5flog_5flevel_5fnone_514',['CIOT_LOG_LEVEL_NONE',['../ciot__log_8h.html#a399d3388116ce0479b91f0fdb5b56432a77fe66f0cf4772e333512b1f009c460d',1,'ciot_log.h']]], - ['ciot_5flog_5flevel_5ft_515',['ciot_log_level_t',['../ciot__log_8h.html#af095bb48295769c5ebc399890c12cb93',1,'ciot_log.h']]], - ['ciot_5flog_5flevel_5fverbose_516',['CIOT_LOG_LEVEL_VERBOSE',['../ciot__log_8h.html#a399d3388116ce0479b91f0fdb5b56432a2acc86c1f4f9cc2ff727d0d59f235162',1,'ciot_log.h']]], - ['ciot_5flog_5flevel_5fwarning_517',['CIOT_LOG_LEVEL_WARNING',['../ciot__log_8h.html#a399d3388116ce0479b91f0fdb5b56432af9392e21b089c518e0a9dc1be3d4a799',1,'ciot_log.h']]], - ['ciot_5flog_5fmsg_518',['CIOT_LOG_MSG',['../ciot__log_8h.html#a2f7e6eb84773996a18fc43ccada98dc4',1,'ciot_log.h']]], - ['ciot_5flog_5fmsg_5fp_519',['CIOT_LOG_MSG_P',['../ciot__log_8h.html#a2907f8630cc580826a1ec21930c511d3',1,'ciot_log.h']]], - ['ciot_5flogd_520',['CIOT_LOGD',['../ciot__log_8h.html#a1576040bae89b4db49ec4fa591cc058f',1,'ciot_log.h']]], - ['ciot_5floge_521',['CIOT_LOGE',['../ciot__log_8h.html#a2707adc47298b0e7b3a09627ff04a020',1,'ciot_log.h']]], - ['ciot_5flogi_522',['CIOT_LOGI',['../ciot__log_8h.html#a9e6947da6e5c522adbadd7dea5242e5f',1,'ciot_log.h']]], - ['ciot_5flogv_523',['CIOT_LOGV',['../ciot__log_8h.html#a1e7ff68dc9676c1a06338c170fd52dbc',1,'ciot_log.h']]], - ['ciot_5flogw_524',['CIOT_LOGW',['../ciot__log_8h.html#a95d4dba62da56d115efe881b38c73da6',1,'ciot_log.h']]], - ['ciot_5fmqtt_5fevent_5fconnecting_525',['CIOT_MQTT_EVENT_CONNECTING',['../ciot__mqttc_8h.html#afc1eb0a89e9bcff163827db2fb32b898a7fdb135e2a3ea11cafe0449a29a16d0d',1,'ciot_mqttc.h']]], - ['ciot_5fmqtt_5fevent_5fsubscribed_526',['CIOT_MQTT_EVENT_SUBSCRIBED',['../ciot__mqttc_8h.html#afc1eb0a89e9bcff163827db2fb32b898aa028c2dfe1e1b2a3a3efb1cc698a6b68',1,'ciot_mqttc.h']]], - ['ciot_5fmqtt_5fevent_5funsubscribed_527',['CIOT_MQTT_EVENT_UNSUBSCRIBED',['../ciot__mqttc_8h.html#afc1eb0a89e9bcff163827db2fb32b898a6cefc05e924cb723d9f72f2e674e5ef7',1,'ciot_mqttc.h']]], - ['ciot_5fmqtt_5freq_5fpublish_528',['CIOT_MQTT_REQ_PUBLISH',['../ciot__mqttc__types_8h.html#a2fcaf55ed84bd01f16ae5184e60aab43a5b0bc93e48a1c931162fc99240863279',1,'ciot_mqttc_types.h']]], - ['ciot_5fmqtt_5freq_5fsubscribe_529',['CIOT_MQTT_REQ_SUBSCRIBE',['../ciot__mqttc__types_8h.html#a2fcaf55ed84bd01f16ae5184e60aab43ab1ca6f635ae3eb1dc067fd0058846f55',1,'ciot_mqttc_types.h']]], - ['ciot_5fmqtt_5freq_5funknonw_530',['CIOT_MQTT_REQ_UNKNONW',['../ciot__mqttc__types_8h.html#a2fcaf55ed84bd01f16ae5184e60aab43a1832343a674951b5cc6e0b1281ac8872',1,'ciot_mqttc_types.h']]], - ['ciot_5fmqtt_5fstate_5fconnected_531',['CIOT_MQTT_STATE_CONNECTED',['../ciot__mqttc__types_8h.html#a5ee7ab2e590208687470cf07d7adb2cea79b34e4a21856bfabc772c8491525476',1,'ciot_mqttc_types.h']]], - ['ciot_5fmqtt_5fstate_5fconnecting_532',['CIOT_MQTT_STATE_CONNECTING',['../ciot__mqttc__types_8h.html#a5ee7ab2e590208687470cf07d7adb2ceaead9e930ad102c9ab546ca112841a1a8',1,'ciot_mqttc_types.h']]], - ['ciot_5fmqtt_5fstate_5fdisconnected_533',['CIOT_MQTT_STATE_DISCONNECTED',['../ciot__mqttc__types_8h.html#a5ee7ab2e590208687470cf07d7adb2cea004bb3b5e1c7526ac86d715808871aab',1,'ciot_mqttc_types.h']]], - ['ciot_5fmqtt_5fstate_5fdisconnecting_534',['CIOT_MQTT_STATE_DISCONNECTING',['../ciot__mqttc__types_8h.html#a5ee7ab2e590208687470cf07d7adb2cea556288d80c5f236a85b349084936ad24',1,'ciot_mqttc_types.h']]], - ['ciot_5fmqtt_5fstate_5ferror_535',['CIOT_MQTT_STATE_ERROR',['../ciot__mqttc__types_8h.html#a5ee7ab2e590208687470cf07d7adb2cea3cd3678d8b777367f05ebeb64fa5d6e1',1,'ciot_mqttc_types.h']]], - ['ciot_5fmqtt_5ftransport_5fover_5fssl_536',['CIOT_MQTT_TRANSPORT_OVER_SSL',['../ciot__mqttc__types_8h.html#ac27be04d218be91a37994c044f65e684a5d3cd88c4c3238306de35766ebd4c119',1,'ciot_mqttc_types.h']]], - ['ciot_5fmqtt_5ftransport_5fover_5ftcp_537',['CIOT_MQTT_TRANSPORT_OVER_TCP',['../ciot__mqttc__types_8h.html#ac27be04d218be91a37994c044f65e684a525b4c85b24d94e497cb786ba050b7f9',1,'ciot_mqttc_types.h']]], - ['ciot_5fmqtt_5ftransport_5fover_5fws_538',['CIOT_MQTT_TRANSPORT_OVER_WS',['../ciot__mqttc__types_8h.html#ac27be04d218be91a37994c044f65e684a5ce16156ba60d3c867acb7d960d574fd',1,'ciot_mqttc_types.h']]], - ['ciot_5fmqtt_5ftransport_5fover_5fwss_539',['CIOT_MQTT_TRANSPORT_OVER_WSS',['../ciot__mqttc__types_8h.html#ac27be04d218be91a37994c044f65e684adf27ceb8c08b58be48c97e2057e51fe4',1,'ciot_mqttc_types.h']]], - ['ciot_5fmqtt_5ftransport_5funknown_540',['CIOT_MQTT_TRANSPORT_UNKNOWN',['../ciot__mqttc__types_8h.html#ac27be04d218be91a37994c044f65e684a2f26568f96a771a6de885dcdecc7e83c',1,'ciot_mqttc_types.h']]], - ['ciot_5fmqttc_2eh_541',['ciot_mqttc.h',['../ciot__mqttc_8h.html',1,'']]], - ['ciot_5fmqttc_5fcfg_5ft_542',['ciot_mqttc_cfg_t',['../structciot__mqttc__cfg__t.html',1,'']]], - ['ciot_5fmqttc_5fdata_5fu_543',['ciot_mqttc_data_u',['../unionciot__mqttc__data__u.html',1,'']]], - ['ciot_5fmqttc_5ferror_5ft_544',['ciot_mqttc_error_t',['../structciot__mqttc__error__t.html',1,'']]], - ['ciot_5fmqttc_5fevent_545',['ciot_mqttc_event',['../structciot__mqttc__event.html',1,'']]], - ['ciot_5fmqttc_5fevent_5fdata_546',['ciot_mqttc_event_data',['../structciot__mqttc__event__data.html',1,'']]], - ['ciot_5fmqttc_5fevent_5fdata_5ft_547',['ciot_mqttc_event_data_t',['../ciot__mqttc__types_8h.html#ac871b56a938626c38c705618405ee350',1,'ciot_mqttc_types.h']]], - ['ciot_5fmqttc_5fevent_5fid_548',['ciot_mqttc_event_id',['../ciot__mqttc_8h.html#afc1eb0a89e9bcff163827db2fb32b898',1,'ciot_mqttc.h']]], - ['ciot_5fmqttc_5fevent_5fid_5ft_549',['ciot_mqttc_event_id_t',['../ciot__mqttc_8h.html#a366b460dc8e7ec1e3f89c9247882842a',1,'ciot_mqttc.h']]], - ['ciot_5fmqttc_5fevent_5fu_550',['ciot_mqttc_event_u',['../ciot__mqttc__types_8h.html#ab0721513ba2621aaa8012e6a5f6e79ea',1,'ciot_mqttc_types.h']]], - ['ciot_5fmqttc_5fnew_551',['ciot_mqttc_new',['../ciot__mqttc_8h.html#aa6ac15e5f6cfb3346cff3247dd25c279',1,'ciot_mqttc.h']]], - ['ciot_5fmqttc_5fprocess_5freq_552',['ciot_mqttc_process_req',['../ciot__mqttc_8h.html#aba9394c6a08cb0c2087ffdc537f75125',1,'ciot_mqttc.h']]], - ['ciot_5fmqttc_5fpublish_553',['ciot_mqttc_publish',['../ciot__mqttc_8h.html#a55aab38479c4242b37397c51e15dad37',1,'ciot_mqttc.h']]], - ['ciot_5fmqttc_5freq_5fdata_5fu_554',['ciot_mqttc_req_data_u',['../unionciot__mqttc__req__data__u.html',1,'']]], - ['ciot_5fmqttc_5freq_5fpublish_5ft_555',['ciot_mqttc_req_publish_t',['../structciot__mqttc__req__publish__t.html',1,'']]], - ['ciot_5fmqttc_5freq_5fsubscribe_5ft_556',['ciot_mqttc_req_subscribe_t',['../structciot__mqttc__req__subscribe__t.html',1,'']]], - ['ciot_5fmqttc_5freq_5ft_557',['ciot_mqttc_req_t',['../structciot__mqttc__req__t.html',1,'']]], - ['ciot_5fmqttc_5freq_5ftype_5ft_558',['ciot_mqttc_req_type_t',['../ciot__mqttc__types_8h.html#a2fcaf55ed84bd01f16ae5184e60aab43',1,'ciot_mqttc_types.h']]], - ['ciot_5fmqttc_5freset_5fdata_5frate_559',['ciot_mqttc_reset_data_rate',['../ciot__mqttc_8h.html#ad7bcb714dbb489d3b8508cb7acf72b27',1,'ciot_mqttc.h']]], - ['ciot_5fmqttc_5fsend_5fdata_560',['ciot_mqttc_send_data',['../ciot__mqttc_8h.html#aa04b6f015e9bbc8ab614027c460f899d',1,'ciot_mqttc.h']]], - ['ciot_5fmqttc_5fstart_561',['ciot_mqttc_start',['../ciot__mqttc_8h.html#a19c183447b4f862cb53f6ae127a80db0',1,'ciot_mqttc.h']]], - ['ciot_5fmqttc_5fstate_5ft_562',['ciot_mqttc_state_t',['../ciot__mqttc__types_8h.html#a5ee7ab2e590208687470cf07d7adb2ce',1,'ciot_mqttc_types.h']]], - ['ciot_5fmqttc_5fstatus_5fmsg_5ft_563',['ciot_mqttc_status_msg_t',['../structciot__mqttc__status__msg__t.html',1,'']]], - ['ciot_5fmqttc_5fstatus_5ft_564',['ciot_mqttc_status_t',['../structciot__mqttc__status__t.html',1,'']]], - ['ciot_5fmqttc_5fstop_565',['ciot_mqttc_stop',['../ciot__mqttc_8h.html#af81da24c4d251706f5f901e810752597',1,'ciot_mqttc.h']]], - ['ciot_5fmqttc_5fsubscribe_566',['ciot_mqttc_subscribe',['../ciot__mqttc_8h.html#aee005c5cae5b325548b381df58613742',1,'ciot_mqttc.h']]], - ['ciot_5fmqttc_5ft_567',['ciot_mqttc_t',['../ciot__mqttc_8h.html#a1952c9049b9ddd9b40368e332dec8374',1,'ciot_mqttc.h']]], - ['ciot_5fmqttc_5ftopics_5fcfg_5ft_568',['ciot_mqttc_topics_cfg_t',['../structciot__mqttc__topics__cfg__t.html',1,'']]], - ['ciot_5fmqttc_5ftransport_5ft_569',['ciot_mqttc_transport_t',['../ciot__mqttc__types_8h.html#ac27be04d218be91a37994c044f65e684',1,'ciot_mqttc_types.h']]], - ['ciot_5fmqttc_5ftypes_2eh_570',['ciot_mqttc_types.h',['../ciot__mqttc__types_8h.html',1,'']]], - ['ciot_5fmsg_5fdata_5fu_571',['ciot_msg_data_u',['../unionciot__msg__data__u.html',1,'']]], - ['ciot_5fmsg_5ferror_5ft_572',['ciot_msg_error_t',['../structciot__msg__error__t.html',1,'']]], - ['ciot_5fmsg_5fget_5fsize_573',['CIOT_MSG_GET_SIZE',['../ciot__msg__types_8h.html#a9ba863166c0f0c740fef8994c7f21598',1,'ciot_msg_types.h']]], - ['ciot_5fmsg_5fheader_5fsize_574',['CIOT_MSG_HEADER_SIZE',['../ciot__msg__types_8h.html#aa577da47450d2b604f58ee6e957c7b1a',1,'ciot_msg_types.h']]], - ['ciot_5fmsg_5fheader_5ft_575',['ciot_msg_header_t',['../structciot__msg__header__t.html',1,'']]], - ['ciot_5fmsg_5fiface_5finfo_5ft_576',['ciot_msg_iface_info_t',['../structciot__msg__iface__info__t.html',1,'']]], - ['ciot_5fmsg_5fiface_5ftype_5ft_577',['ciot_msg_iface_type_t',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608',1,'ciot_msg_types.h']]], - ['ciot_5fmsg_5fmax_5fsize_578',['CIOT_MSG_MAX_SIZE',['../ciot__msg__types_8h.html#a3c8f8294a63f46a7a7ed043ba8dacc93',1,'ciot_msg_types.h']]], - ['ciot_5fmsg_5ft_579',['ciot_msg_t',['../structciot__msg__t.html',1,'']]], - ['ciot_5fmsg_5ftype_5fcustom_580',['CIOT_MSG_TYPE_CUSTOM',['../ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba2161a50e60627d09f6278819d93cb4f8',1,'ciot_msg_types.h']]], - ['ciot_5fmsg_5ftype_5ferror_581',['CIOT_MSG_TYPE_ERROR',['../ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba5ca3e5de0b2ddc69c53654a0d13d713a',1,'ciot_msg_types.h']]], - ['ciot_5fmsg_5ftype_5fevent_582',['CIOT_MSG_TYPE_EVENT',['../ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba07a7987e3b4a2f82eb41213b25068458',1,'ciot_msg_types.h']]], - ['ciot_5fmsg_5ftype_5fget_5fconfig_583',['CIOT_MSG_TYPE_GET_CONFIG',['../ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba9ca32ac07611a36e17181e4e2dee5ba7',1,'ciot_msg_types.h']]], - ['ciot_5fmsg_5ftype_5fget_5fstatus_584',['CIOT_MSG_TYPE_GET_STATUS',['../ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba8ebce537fc418c0a5dc2231de2660d5e',1,'ciot_msg_types.h']]], - ['ciot_5fmsg_5ftype_5frequest_585',['CIOT_MSG_TYPE_REQUEST',['../ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba168673ee4b498d56024c3c46d5d6d53a',1,'ciot_msg_types.h']]], - ['ciot_5fmsg_5ftype_5fstart_586',['CIOT_MSG_TYPE_START',['../ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cbacada4954ca221fdc25c2c478625d6a9e',1,'ciot_msg_types.h']]], - ['ciot_5fmsg_5ftype_5fstop_587',['CIOT_MSG_TYPE_STOP',['../ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cbae01a23d279f8674eb8e7fbc4c8b30a28',1,'ciot_msg_types.h']]], - ['ciot_5fmsg_5ftype_5ft_588',['ciot_msg_type_t',['../ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cb',1,'ciot_msg_types.h']]], - ['ciot_5fmsg_5ftype_5fto_5fstr_589',['ciot_msg_type_to_str',['../ciot__msg__types_8h.html#ad74fa5c942e63dc4c806fbfd6414db45',1,'ciot_msg_types.h']]], - ['ciot_5fmsg_5ftype_5funknown_590',['CIOT_MSG_TYPE_UNKNOWN',['../ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba65c33be2457e343493460c29d3b03e0e',1,'ciot_msg_types.h']]], - ['ciot_5fmsg_5ftypes_2eh_591',['ciot_msg_types.h',['../ciot__msg__types_8h.html',1,'']]], - ['ciot_5fnew_592',['ciot_new',['../ciot_8h.html#af5987ba03fd375f7441ab9bf2c53f5f0',1,'ciot.h']]], - ['ciot_5fnrf_5fdfu_2eh_593',['ciot_nrf_dfu.h',['../ciot__nrf__dfu_8h.html',1,'']]], - ['ciot_5fnrf_5fdfu_5fcfg_594',['ciot_nrf_dfu_cfg',['../structciot__nrf__dfu__cfg.html',1,'']]], - ['ciot_5fnrf_5fdfu_5fcfg_5ft_595',['ciot_nrf_dfu_cfg_t',['../ciot__nrf__dfu_8h.html#af6665b1af9b889771ac694b094584274',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fext_5ferror_5fcode_596',['ciot_nrf_dfu_ext_error_code',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fext_5ferror_5fcode_5ft_597',['ciot_nrf_dfu_ext_error_code_t',['../ciot__nrf__dfu_8h.html#a15b30f8e9e3796c5d5ada153348a36ab',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fmax_5fdfu_5fpkt_5flen_5fble_598',['CIOT_NRF_DFU_MAX_DFU_PKT_LEN_BLE',['../ciot__nrf__dfu_8h.html#a7f9149227c077569702eec2a6bf10eb0',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fmax_5fdfu_5fpkt_5flen_5fuart_599',['CIOT_NRF_DFU_MAX_DFU_PKT_LEN_UART',['../ciot__nrf__dfu_8h.html#a47e67583a19bb09b121e5f710d019c65',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fnew_600',['ciot_nrf_dfu_new',['../ciot__nrf__dfu_8h.html#aad325ff49e9a727535ba2245af2896f3',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fop_601',['ciot_nrf_dfu_op',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22f',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fop_5fabort_602',['CIOT_NRF_DFU_OP_ABORT',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fa11aec25a50a4001a3a7d1f5e2eea38b2',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fop_5fcrc_5fget_603',['CIOT_NRF_DFU_OP_CRC_GET',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fa0be8dfd4a9a263aaff04bf4286adf485',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fop_5ffirmware_5fversion_604',['CIOT_NRF_DFU_OP_FIRMWARE_VERSION',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fa6b6934d66b625e1c35b38924626024c6',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fop_5fhardware_5fversion_605',['CIOT_NRF_DFU_OP_HARDWARE_VERSION',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fa59921b1894fcdfe66347bea3b54e4e04',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fop_5finvalid_606',['CIOT_NRF_DFU_OP_INVALID',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22faa86c9874390b6aed30bfb676c780361a',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fop_5fmtu_5fget_607',['CIOT_NRF_DFU_OP_MTU_GET',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fa7ebc56e7820cd05d85a8be13ded4be67',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fop_5fobject_5fcreate_608',['CIOT_NRF_DFU_OP_OBJECT_CREATE',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fa949711c2a53bb4f5a0e95ede57961de5',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fop_5fobject_5fexecute_609',['CIOT_NRF_DFU_OP_OBJECT_EXECUTE',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22facefebfaa540776ef026faf8ffd1d6f2c',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fop_5fobject_5fselect_610',['CIOT_NRF_DFU_OP_OBJECT_SELECT',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fa34e5ddf70ff4473417abfaf2fcca9b37',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fop_5fobject_5fwrite_611',['CIOT_NRF_DFU_OP_OBJECT_WRITE',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fa8d93489a0a27db77cbb426eec1575e43',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fop_5fping_612',['CIOT_NRF_DFU_OP_PING',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fa306c499e291f73d904669d4f5b452484',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fop_5fprotocol_5fversion_613',['CIOT_NRF_DFU_OP_PROTOCOL_VERSION',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fa66b58d6f2457c551911bf581b0b597f5',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fop_5freceipt_5fnotif_5fset_614',['CIOT_NRF_DFU_OP_RECEIPT_NOTIF_SET',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fa441ab25d1d04a7731c0f5e4ce4aa4c3d',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fop_5fresponse_615',['CIOT_NRF_DFU_OP_RESPONSE',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fa384c95064568d91872ccdff4a60ed61a',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fop_5fslip_5fpacket_5fend_616',['CIOT_NRF_DFU_OP_SLIP_PACKET_END',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fac60c573eb055a584d3a2d6a9d81409b3',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fop_5ft_617',['ciot_nrf_dfu_op_t',['../ciot__nrf__dfu_8h.html#a76d2a2022825679c72f023ccc3419ec0',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fpacket_618',['ciot_nrf_dfu_packet',['../structciot__nrf__dfu__packet.html',1,'']]], - ['ciot_5fnrf_5fdfu_5fpacket_5ft_619',['ciot_nrf_dfu_packet_t',['../ciot__nrf__dfu_8h.html#a6b399382dcb80638fd681cded2599bba',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fpacket_5ftype_620',['ciot_nrf_dfu_packet_type',['../ciot__nrf__dfu_8h.html#ab974f696095f5fdfd9a2bf98983ddc06',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fpacket_5ftype_5fapp_5fimage_621',['CIOT_NRF_DFU_PACKET_TYPE_APP_IMAGE',['../ciot__nrf__dfu_8h.html#ab974f696095f5fdfd9a2bf98983ddc06a5ecc108cbe6e0d67b52aa89d30e6536a',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fpacket_5ftype_5finit_622',['CIOT_NRF_DFU_PACKET_TYPE_INIT',['../ciot__nrf__dfu_8h.html#ab974f696095f5fdfd9a2bf98983ddc06a58dd6cb15eff5a9634ae0673debae2ab',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fpacket_5ftype_5ft_623',['ciot_nrf_dfu_packet_type_t',['../ciot__nrf__dfu_8h.html#ad1e2509ab93366447d9f971d533419b0',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fprocess_5freq_624',['ciot_nrf_dfu_process_req',['../ciot__nrf__dfu_8h.html#a470062374eb38631c7bf20f148011ede',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fread_5ffile_625',['ciot_nrf_dfu_read_file',['../ciot__nrf__dfu_8h.html#af751feb3c4ee63d05fe6dc1b2c591d4e',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fres_5fcode_5fext_5ferror_626',['CIOT_NRF_DFU_RES_CODE_EXT_ERROR',['../ciot__nrf__dfu_8h.html#a1fe3f84c3a3765c0c4138d0423e09dbbaf20b2768859408e961a888aae72e4f83',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fres_5fcode_5finsufficient_5fresources_627',['CIOT_NRF_DFU_RES_CODE_INSUFFICIENT_RESOURCES',['../ciot__nrf__dfu_8h.html#a1fe3f84c3a3765c0c4138d0423e09dbba06f56145d9f3ef38be063e323c4bc33c',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fres_5fcode_5finvalid_628',['CIOT_NRF_DFU_RES_CODE_INVALID',['../ciot__nrf__dfu_8h.html#a1fe3f84c3a3765c0c4138d0423e09dbba5363aba557b0d617d6b8c3d3ca2284ca',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fres_5fcode_5finvalid_5fobject_629',['CIOT_NRF_DFU_RES_CODE_INVALID_OBJECT',['../ciot__nrf__dfu_8h.html#a1fe3f84c3a3765c0c4138d0423e09dbba799c1d5ee8dd5574537b167e98499f16',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fres_5fcode_5finvalid_5fparameter_630',['CIOT_NRF_DFU_RES_CODE_INVALID_PARAMETER',['../ciot__nrf__dfu_8h.html#a1fe3f84c3a3765c0c4138d0423e09dbbab2a095ee2dfb1a01af69266390eab21c',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fres_5fcode_5fop_5fcode_5fnot_5fsupported_631',['CIOT_NRF_DFU_RES_CODE_OP_CODE_NOT_SUPPORTED',['../ciot__nrf__dfu_8h.html#a1fe3f84c3a3765c0c4138d0423e09dbbaba90277ffa964d5019755f287e8df8e4',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fres_5fcode_5foperation_5ffailed_632',['CIOT_NRF_DFU_RES_CODE_OPERATION_FAILED',['../ciot__nrf__dfu_8h.html#a1fe3f84c3a3765c0c4138d0423e09dbbae028cd46f32cc471013710a10b1748eb',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fres_5fcode_5foperation_5fnot_5fpermitted_633',['CIOT_NRF_DFU_RES_CODE_OPERATION_NOT_PERMITTED',['../ciot__nrf__dfu_8h.html#a1fe3f84c3a3765c0c4138d0423e09dbba8ae66ea17e57737330c6dbb4e4d28b69',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fres_5fcode_5fsuccess_634',['CIOT_NRF_DFU_RES_CODE_SUCCESS',['../ciot__nrf__dfu_8h.html#a1fe3f84c3a3765c0c4138d0423e09dbba535936d5b4b584ad7bb8a7af9e5552bc',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fres_5fcode_5funsupported_5ftype_635',['CIOT_NRF_DFU_RES_CODE_UNSUPPORTED_TYPE',['../ciot__nrf__dfu_8h.html#a1fe3f84c3a3765c0c4138d0423e09dbba916e351ddf13637d5dfe6c79cd2982bd',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fresult_636',['ciot_nrf_dfu_result',['../ciot__nrf__dfu_8h.html#a1fe3f84c3a3765c0c4138d0423e09dbb',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fresult_5ft_637',['ciot_nrf_dfu_result_t',['../ciot__nrf__dfu_8h.html#a0ef11c38f41f3f2cdcafe8fb6b87f862',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fsend_5fdata_638',['ciot_nrf_dfu_send_data',['../ciot__nrf__dfu_8h.html#afcbdb54986436cb9fdf421ba8f50f077',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fsend_5ffirmware_639',['ciot_nrf_dfu_send_firmware',['../ciot__nrf__dfu_8h.html#af56db9aade46e176e0e286382ca04f7c',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fstart_640',['ciot_nrf_dfu_start',['../ciot__nrf__dfu_8h.html#ade8e82ea98fd5f89242d3a38effba293',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fstart_5fbootloader_641',['ciot_nrf_dfu_start_bootloader',['../ciot__nrf__dfu_8h.html#a818286457b301b0a341208839ade9a90',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fstate_642',['ciot_nrf_dfu_state',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3',1,'ciot_nrf_dfu_state: ciot_nrf_dfu.h'],['../ciot__nrf__dfu_8h.html#aee5e7944d29dc3c5a75706fa4b45cc35',1,'ciot_nrf_dfu_state(ciot_dfu_t self): ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fstate_5fcompleted_643',['CIOT_NRF_DFU_STATE_COMPLETED',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3a445a16b5b89db0c852dc48bc92096b58',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fstate_5fcreate_5fobject_644',['CIOT_NRF_DFU_STATE_CREATE_OBJECT',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3a6b0e0c732f0b02958aa9d9d3055ecd16',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fstate_5ferror_645',['CIOT_NRF_DFU_STATE_ERROR',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3a60afa6e95e03b21559f0579ee7b69b04',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fstate_5fidle_646',['CIOT_NRF_DFU_STATE_IDLE',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3a6455d3c1186b42c96b1f97827e71342f',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fstate_5frequest_5fcrc_647',['CIOT_NRF_DFU_STATE_REQUEST_CRC',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3aa1b1df86ff85c29f399dc91451405784',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fstate_5frequest_5fexecute_648',['CIOT_NRF_DFU_STATE_REQUEST_EXECUTE',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3a0b97b26322ad79bd6d3a725b8eef32b4',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fstate_5fsend_5fping_649',['CIOT_NRF_DFU_STATE_SEND_PING',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3a21b7dbe1f859ebdefdbbac5b77930071',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fstate_5ft_650',['ciot_nrf_dfu_state_t',['../ciot__nrf__dfu_8h.html#a4ef7cf2448bcedc88f7c278ddb30c9a9',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fstate_5fwaiting_5fcrc_651',['CIOT_NRF_DFU_STATE_WAITING_CRC',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3abe14f277137dda905fcd4e5c798c132f',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fstate_5fwaiting_5fcreate_5fobj_652',['CIOT_NRF_DFU_STATE_WAITING_CREATE_OBJ',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3ad8fa89ee49d7550f5f3a49e62e86aa1c',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fstate_5fwaiting_5fexecute_653',['CIOT_NRF_DFU_STATE_WAITING_EXECUTE',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3acac843800e7d29923bdc6189822bbb29',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fstate_5fwaiting_5fping_5fresp_654',['CIOT_NRF_DFU_STATE_WAITING_PING_RESP',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3af5045df1247bf3563ed125171405b002',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fstate_5fwrite_5fdfu_5fpackage_655',['CIOT_NRF_DFU_STATE_WRITE_DFU_PACKAGE',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3aea9a7ecc2182f03fa6bf8ac79eb770b3',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5fstop_656',['ciot_nrf_dfu_stop',['../ciot__nrf__dfu_8h.html#a890127344062271c54ecddd1391c80c3',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5ftask_657',['ciot_nrf_dfu_task',['../ciot__nrf__dfu_8h.html#aac67be0b79a25d514bb05ccf1622c07e',1,'ciot_nrf_dfu.h']]], - ['ciot_5fnrf_5fdfu_5ftimeout_5fsec_658',['CIOT_NRF_DFU_TIMEOUT_SEC',['../ciot__nrf__dfu_8h.html#a907d5c29f7ee7e98e90243fa4f9b6caf',1,'ciot_nrf_dfu.h']]], - ['ciot_5fntp_2eh_659',['ciot_ntp.h',['../ciot__ntp_8h.html',1,'']]], - ['ciot_5fntp_5fcfg_5ft_660',['ciot_ntp_cfg_t',['../structciot__ntp__cfg__t.html',1,'']]], - ['ciot_5fntp_5fdata_5fu_661',['ciot_ntp_data_u',['../unionciot__ntp__data__u.html',1,'']]], - ['ciot_5fntp_5fnew_662',['ciot_ntp_new',['../ciot__ntp_8h.html#a21060aee75e3e21695cb1b47e9dbbea6',1,'ciot_ntp.h']]], - ['ciot_5fntp_5fprocess_5freq_663',['ciot_ntp_process_req',['../ciot__ntp_8h.html#aba2cd40d3a1923cc1c69ae0784bd6f79',1,'ciot_ntp.h']]], - ['ciot_5fntp_5freq_5fdata_5fu_664',['ciot_ntp_req_data_u',['../unionciot__ntp__req__data__u.html',1,'']]], - ['ciot_5fntp_5freq_5ft_665',['ciot_ntp_req_t',['../structciot__ntp__req__t.html',1,'']]], - ['ciot_5fntp_5freq_5ftype_5ft_666',['ciot_ntp_req_type_t',['../ciot__ntp__types_8h.html#a53a7f745407650095dbb3e38c09861fa',1,'ciot_ntp_types.h']]], - ['ciot_5fntp_5freq_5funknown_667',['CIOT_NTP_REQ_UNKNOWN',['../ciot__ntp__types_8h.html#a53a7f745407650095dbb3e38c09861faa4ef58072669af9e608f808ad52143129',1,'ciot_ntp_types.h']]], - ['ciot_5fntp_5fsend_5fdata_668',['ciot_ntp_send_data',['../ciot__ntp_8h.html#a1670e17032214d1a41e0381d2c5844ac',1,'ciot_ntp.h']]], - ['ciot_5fntp_5fset_669',['ciot_ntp_set',['../ciot__ntp_8h.html#abddacb943d084ba3d40cde58b1da45fc',1,'ciot_ntp.h']]], - ['ciot_5fntp_5fstart_670',['ciot_ntp_start',['../ciot__ntp_8h.html#ab2e49de0c8bc987fcbd6ff97912e9f21',1,'ciot_ntp.h']]], - ['ciot_5fntp_5fstate_5ft_671',['ciot_ntp_state_t',['../ciot__ntp__types_8h.html#aa8a357ab71d5a3765f6444a442c00dd8',1,'ciot_ntp_types.h']]], - ['ciot_5fntp_5fstatus_5fmsg_5ft_672',['ciot_ntp_status_msg_t',['../structciot__ntp__status__msg__t.html',1,'']]], - ['ciot_5fntp_5fstatus_5ft_673',['ciot_ntp_status_t',['../structciot__ntp__status__t.html',1,'']]], - ['ciot_5fntp_5fstop_674',['ciot_ntp_stop',['../ciot__ntp_8h.html#a4c928f5a646bc368a33351c0508e5986',1,'ciot_ntp.h']]], - ['ciot_5fntp_5ft_675',['ciot_ntp_t',['../ciot__ntp_8h.html#ac7f8701cb756dab2bc3292c002d6da9e',1,'ciot_ntp.h']]], - ['ciot_5fntp_5ftypes_2eh_676',['ciot_ntp_types.h',['../ciot__ntp__types_8h.html',1,'']]], - ['ciot_5fnull_5fcheck_677',['CIOT_NULL_CHECK',['../ciot__err_8h.html#aa26e80d640e682764d732b12782cc7a3',1,'ciot_err.h']]], - ['ciot_5fok_678',['CIOT_OK',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a608f016995435f4c5f758dc42f5c28dc',1,'ciot_err.h']]], - ['ciot_5fopcuas_2eh_679',['ciot_opcuas.h',['../ciot__opcuas_8h.html',1,'']]], - ['ciot_5fopcuas_5fadd_5fnode_680',['ciot_opcuas_add_node',['../ciot__opcuas_8h.html#a0a3f5503c7a8cee3326a00a7b251b9b2',1,'ciot_opcuas.h']]], - ['ciot_5fopcuas_5fcfg_5ft_681',['ciot_opcuas_cfg_t',['../structciot__opcuas__cfg__t.html',1,'']]], - ['ciot_5fopcuas_5fdata_5fu_682',['ciot_opcuas_data_u',['../unionciot__opcuas__data__u.html',1,'']]], - ['ciot_5fopcuas_5fnew_683',['ciot_opcuas_new',['../ciot__opcuas_8h.html#a2a20908ad8a9104fa199239f790e72a8',1,'ciot_opcuas.h']]], - ['ciot_5fopcuas_5fprocess_5freq_684',['ciot_opcuas_process_req',['../ciot__opcuas_8h.html#a12d974a4c1fd3dfc906cef2a92d7decc',1,'ciot_opcuas.h']]], - ['ciot_5fopcuas_5freq_5fadd_5fnode_685',['CIOT_OPCUAS_REQ_ADD_NODE',['../ciot__opcuas__types_8h.html#a8acb0e423808124be763be38feed658cafc37181f45b08e2fcefb25123744dab2',1,'ciot_opcuas_types.h']]], - ['ciot_5fopcuas_5freq_5fadd_5fnode_5ft_686',['ciot_opcuas_req_add_node_t',['../structciot__opcuas__req__add__node__t.html',1,'']]], - ['ciot_5fopcuas_5freq_5fdata_5fu_687',['ciot_opcuas_req_data_u',['../unionciot__opcuas__req__data__u.html',1,'']]], - ['ciot_5fopcuas_5freq_5frun_688',['CIOT_OPCUAS_REQ_RUN',['../ciot__opcuas__types_8h.html#a8acb0e423808124be763be38feed658ca07fc86e18d23ceab74564968a2d9a895',1,'ciot_opcuas_types.h']]], - ['ciot_5fopcuas_5freq_5ft_689',['ciot_opcuas_req_t',['../structciot__opcuas__req__t.html',1,'']]], - ['ciot_5fopcuas_5freq_5ftype_5ft_690',['ciot_opcuas_req_type_t',['../ciot__opcuas__types_8h.html#a8acb0e423808124be763be38feed658c',1,'ciot_opcuas_types.h']]], - ['ciot_5fopcuas_5freq_5funknown_691',['CIOT_OPCUAS_REQ_UNKNOWN',['../ciot__opcuas__types_8h.html#a8acb0e423808124be763be38feed658ca3e4c72d9a9fec403c2b7bfa0f0bb0543',1,'ciot_opcuas_types.h']]], - ['ciot_5fopcuas_5fsend_5fdata_692',['ciot_opcuas_send_data',['../ciot__opcuas_8h.html#adce1d391f5b3a5aa5f638a8410d95cbc',1,'ciot_opcuas.h']]], - ['ciot_5fopcuas_5fstart_693',['ciot_opcuas_start',['../ciot__opcuas_8h.html#a86fd44bf128861a3cca1f57b680c137e',1,'ciot_opcuas.h']]], - ['ciot_5fopcuas_5fstate_5ferror_694',['CIOT_OPCUAS_STATE_ERROR',['../ciot__opcuas__types_8h.html#ae5b6595b6e677b21cc33b747865552a1a67398559dfbdef65155d1fc16ea24d96',1,'ciot_opcuas_types.h']]], - ['ciot_5fopcuas_5fstate_5fidle_695',['CIOT_OPCUAS_STATE_IDLE',['../ciot__opcuas__types_8h.html#ae5b6595b6e677b21cc33b747865552a1a2712146499e42ecf7da21142d2228d84',1,'ciot_opcuas_types.h']]], - ['ciot_5fopcuas_5fstate_5frunning_696',['CIOT_OPCUAS_STATE_RUNNING',['../ciot__opcuas__types_8h.html#ae5b6595b6e677b21cc33b747865552a1a4658fd4a9b75cead2da6dcc4e22b73fd',1,'ciot_opcuas_types.h']]], - ['ciot_5fopcuas_5fstate_5ft_697',['ciot_opcuas_state_t',['../ciot__opcuas__types_8h.html#ae5b6595b6e677b21cc33b747865552a1',1,'ciot_opcuas_types.h']]], - ['ciot_5fopcuas_5fstatus_5fmsg_5ft_698',['ciot_opcuas_status_msg_t',['../structciot__opcuas__status__msg__t.html',1,'']]], - ['ciot_5fopcuas_5fstatus_5ft_699',['ciot_opcuas_status_t',['../structciot__opcuas__status__t.html',1,'']]], - ['ciot_5fopcuas_5fstop_700',['ciot_opcuas_stop',['../ciot__opcuas_8h.html#a7db26a1290536e33bcad744e00ecf954',1,'ciot_opcuas.h']]], - ['ciot_5fopcuas_5ft_701',['ciot_opcuas_t',['../ciot__opcuas_8h.html#a2a6f8d1050e1c57937371e12b3c850bf',1,'ciot_opcuas.h']]], - ['ciot_5fopcuas_5ftypes_2eh_702',['ciot_opcuas_types.h',['../ciot__opcuas__types_8h.html',1,'']]], - ['ciot_5fota_2eh_703',['ciot_ota.h',['../ciot__ota_8h.html',1,'']]], - ['ciot_5fota_5fcfg_5ft_704',['ciot_ota_cfg_t',['../structciot__ota__cfg__t.html',1,'']]], - ['ciot_5fota_5fdata_5fu_705',['ciot_ota_data_u',['../unionciot__ota__data__u.html',1,'']]], - ['ciot_5fota_5fevent_5fconnected_706',['CIOT_OTA_EVENT_CONNECTED',['../ciot__ota_8h.html#a2a2372b3836fb8585417c8b2717f4d64a9cd3ef2729d29203a80fc481d75a57aa',1,'ciot_ota.h']]], - ['ciot_5fota_5fevent_5fdecrypting_707',['CIOT_OTA_EVENT_DECRYPTING',['../ciot__ota_8h.html#a2a2372b3836fb8585417c8b2717f4d64a36badbcf5c707f55ad68bacc5d54478a',1,'ciot_ota.h']]], - ['ciot_5fota_5fevent_5fid_708',['ciot_ota_event_id',['../ciot__ota_8h.html#a2a2372b3836fb8585417c8b2717f4d64',1,'ciot_ota.h']]], - ['ciot_5fota_5fevent_5fid_5ft_709',['ciot_ota_event_id_t',['../ciot__ota_8h.html#af4e5ec481586fbb21bebf38d0c3cb0be',1,'ciot_ota.h']]], - ['ciot_5fota_5fevent_5freading_5finfo_710',['CIOT_OTA_EVENT_READING_INFO',['../ciot__ota_8h.html#a2a2372b3836fb8585417c8b2717f4d64abddb7e6bac08de2de9f7e05ad8c8a419',1,'ciot_ota.h']]], - ['ciot_5fota_5fevent_5fupdating_5fapp_711',['CIOT_OTA_EVENT_UPDATING_APP',['../ciot__ota_8h.html#a2a2372b3836fb8585417c8b2717f4d64a56891046fa6c9434c52e7b2f77e764ab',1,'ciot_ota.h']]], - ['ciot_5fota_5fevent_5fwriting_712',['CIOT_OTA_EVENT_WRITING',['../ciot__ota_8h.html#a2a2372b3836fb8585417c8b2717f4d64ac31b8578c4d21a016f5a7893554710ab',1,'ciot_ota.h']]], - ['ciot_5fota_5fnew_713',['ciot_ota_new',['../ciot__ota_8h.html#a1919f2727400ca6493343a6400bcfec4',1,'ciot_ota.h']]], - ['ciot_5fota_5fprocess_5freq_714',['ciot_ota_process_req',['../ciot__ota_8h.html#a2ad1d252c2d48d024f67054bc7f71d87',1,'ciot_ota.h']]], - ['ciot_5fota_5freq_5fdata_5fu_715',['ciot_ota_req_data_u',['../unionciot__ota__req__data__u.html',1,'']]], - ['ciot_5fota_5freq_5frollback_716',['CIOT_OTA_REQ_ROLLBACK',['../ciot__ota__types_8h.html#ae4c439b857456a91d723985a8f600c20aded6cefc8280f134660da5d38911c916',1,'ciot_ota_types.h']]], - ['ciot_5fota_5freq_5ft_717',['ciot_ota_req_t',['../structciot__ota__req__t.html',1,'']]], - ['ciot_5fota_5freq_5ftype_5ft_718',['ciot_ota_req_type_t',['../ciot__ota__types_8h.html#ae4c439b857456a91d723985a8f600c20',1,'ciot_ota_types.h']]], - ['ciot_5fota_5freq_5funknown_719',['CIOT_OTA_REQ_UNKNOWN',['../ciot__ota__types_8h.html#ae4c439b857456a91d723985a8f600c20aefbe0949eb768e9bd3e9038282b3c896',1,'ciot_ota_types.h']]], - ['ciot_5fota_5frollback_720',['ciot_ota_rollback',['../ciot__ota_8h.html#ac316b7fc7ebed5e0aae3e23613d12945',1,'ciot_ota.h']]], - ['ciot_5fota_5fsend_5fdata_721',['ciot_ota_send_data',['../ciot__ota_8h.html#a450e80fb9f0810603d54bfd9a0919a38',1,'ciot_ota.h']]], - ['ciot_5fota_5fstart_722',['ciot_ota_start',['../ciot__ota_8h.html#a9a1c226a282e4d4ba2e0d9e0caffa91c',1,'ciot_ota.h']]], - ['ciot_5fota_5fstate_5fchecking_5fdata_723',['CIOT_OTA_STATE_CHECKING_DATA',['../ciot__ota__types_8h.html#a50dd94be7278926fa9490e0209fe3a15a89eb2a71799c2f2f6285eb22c373df0a',1,'ciot_ota_types.h']]], - ['ciot_5fota_5fstate_5fconnected_724',['CIOT_OTA_STATE_CONNECTED',['../ciot__ota__types_8h.html#a50dd94be7278926fa9490e0209fe3a15a0a9339130c6c470f7c4fd9a608b4400c',1,'ciot_ota_types.h']]], - ['ciot_5fota_5fstate_5fdecrypting_725',['CIOT_OTA_STATE_DECRYPTING',['../ciot__ota__types_8h.html#a50dd94be7278926fa9490e0209fe3a15a328e1c668f670a807f03d1c8fab8476d',1,'ciot_ota_types.h']]], - ['ciot_5fota_5fstate_5fdone_726',['CIOT_OTA_STATE_DONE',['../ciot__ota__types_8h.html#a50dd94be7278926fa9490e0209fe3a15a1a1a9c966f7c58260168ad25244adfc9',1,'ciot_ota_types.h']]], - ['ciot_5fota_5fstate_5ferror_727',['CIOT_OTA_STATE_ERROR',['../ciot__ota__types_8h.html#a50dd94be7278926fa9490e0209fe3a15a153fe0b4a80fd5556f1f7b6bd2bacfa9',1,'ciot_ota_types.h']]], - ['ciot_5fota_5fstate_5fflashing_728',['CIOT_OTA_STATE_FLASHING',['../ciot__ota__types_8h.html#a50dd94be7278926fa9490e0209fe3a15a444e12a3d7b6bd961907a3012640918b',1,'ciot_ota_types.h']]], - ['ciot_5fota_5fstate_5fidle_729',['CIOT_OTA_STATE_IDLE',['../ciot__ota__types_8h.html#a50dd94be7278926fa9490e0209fe3a15ad7642fe395ae6f6881ba24403ff160d6',1,'ciot_ota_types.h']]], - ['ciot_5fota_5fstate_5fin_5fprogress_730',['CIOT_OTA_STATE_IN_PROGRESS',['../ciot__ota__types_8h.html#a50dd94be7278926fa9490e0209fe3a15ac82f16265153f90a54472489c2bb3558',1,'ciot_ota_types.h']]], - ['ciot_5fota_5fstate_5finit_731',['CIOT_OTA_STATE_INIT',['../ciot__ota__types_8h.html#a50dd94be7278926fa9490e0209fe3a15a0080d95556253115e20c3731a15be120',1,'ciot_ota_types.h']]], - ['ciot_5fota_5fstate_5fstart_732',['CIOT_OTA_STATE_START',['../ciot__ota__types_8h.html#a50dd94be7278926fa9490e0209fe3a15a8d449f644ab603947f86e4307102565e',1,'ciot_ota_types.h']]], - ['ciot_5fota_5fstate_5ft_733',['ciot_ota_state_t',['../ciot__ota__types_8h.html#a50dd94be7278926fa9490e0209fe3a15',1,'ciot_ota_types.h']]], - ['ciot_5fota_5fstate_5fupdate_5fboot_5fpartition_734',['CIOT_OTA_STATE_UPDATE_BOOT_PARTITION',['../ciot__ota__types_8h.html#a50dd94be7278926fa9490e0209fe3a15a073d84c91e1a42ee2ef9de54b1016ea7',1,'ciot_ota_types.h']]], - ['ciot_5fota_5fstatus_5fmsg_5ft_735',['ciot_ota_status_msg_t',['../structciot__ota__status__msg__t.html',1,'']]], - ['ciot_5fota_5fstatus_5ft_736',['ciot_ota_status_t',['../structciot__ota__status__t.html',1,'']]], - ['ciot_5fota_5fstop_737',['ciot_ota_stop',['../ciot__ota_8h.html#a4fa33a4b506088b382a391192765dc42',1,'ciot_ota.h']]], - ['ciot_5fota_5ft_738',['ciot_ota_t',['../ciot__ota_8h.html#a7639d0166916697e2b3024ff7daa823c',1,'ciot_ota.h']]], - ['ciot_5fota_5ftypes_2eh_739',['ciot_ota_types.h',['../ciot__ota__types_8h.html',1,'']]], - ['ciot_5fproxy_5fsend_5freq_740',['ciot_proxy_send_req',['../ciot_8h.html#af32f995ccbb96d62688e73df1f2998a9',1,'ciot.h']]], - ['ciot_5fregister_5fevent_741',['ciot_register_event',['../ciot_8h.html#a6d0892881a59cab0baba866d2dfdaa33',1,'ciot.h']]], - ['ciot_5freq_5fdata_5fu_742',['ciot_req_data_u',['../unionciot__req__data__u.html',1,'']]], - ['ciot_5freq_5fdelete_5fiface_5fcfg_743',['CIOT_REQ_DELETE_IFACE_CFG',['../ciot__types_8h.html#a03b3036727499342240dda078a6c69a3ad5565cc1fd1218de2af439243c69aad9',1,'ciot_types.h']]], - ['ciot_5freq_5fdelete_5fiface_5fcfg_5ft_744',['ciot_req_delete_iface_cfg_t',['../structciot__req__delete__iface__cfg__t.html',1,'']]], - ['ciot_5freq_5fproxy_5fmsg_745',['CIOT_REQ_PROXY_MSG',['../ciot__types_8h.html#a03b3036727499342240dda078a6c69a3aab488cccdc1e9e5009926c15766ebf2c',1,'ciot_types.h']]], - ['ciot_5freq_5fproxy_5fmsg_5ft_746',['ciot_req_proxy_msg_t',['../structciot__req__proxy__msg__t.html',1,'']]], - ['ciot_5freq_5fresult_5ft_747',['ciot_req_result_t',['../structciot__req__result__t.html',1,'']]], - ['ciot_5freq_5fsave_5fiface_5fcfg_748',['CIOT_REQ_SAVE_IFACE_CFG',['../ciot__types_8h.html#a03b3036727499342240dda078a6c69a3aede746db7e9dbee372ee79789d83fbc0',1,'ciot_types.h']]], - ['ciot_5freq_5fsave_5fiface_5fcfg_5ft_749',['ciot_req_save_iface_cfg_t',['../structciot__req__save__iface__cfg__t.html',1,'']]], - ['ciot_5freq_5ft_750',['ciot_req_t',['../structciot__req__t.html',1,'']]], - ['ciot_5freq_5ftype_5ft_751',['ciot_req_type_t',['../ciot__types_8h.html#a03b3036727499342240dda078a6c69a3',1,'ciot_types.h']]], - ['ciot_5freq_5funknown_752',['CIOT_REQ_UNKNOWN',['../ciot__types_8h.html#a03b3036727499342240dda078a6c69a3a5bfc3b86697b77d7813e8f762e92b4ea',1,'ciot_types.h']]], - ['ciot_5fs_2eh_753',['ciot_s.h',['../ciot__s_8h.html',1,'']]], - ['ciot_5fs_5fbase_5ferr_754',['CIOT_S_BASE_ERR',['../ciot__s_8h.html#a2f0fd14f043350f0bb586e527d72d4ca',1,'ciot_s.h']]], - ['ciot_5fs_5fbuf_5fsize_755',['CIOT_S_BUF_SIZE',['../ciot__s_8h.html#a08b8e7174adadc6c5d23fd15348fa0f3',1,'ciot_s.h']]], - ['ciot_5fs_5fcfg_756',['ciot_s_cfg',['../structciot__s__cfg.html',1,'']]], - ['ciot_5fs_5fcfg_5ft_757',['ciot_s_cfg_t',['../ciot__s_8h.html#a9e2f0df6038e3db27a8f0fa1724cfa74',1,'ciot_s.h']]], - ['ciot_5fs_5fend_5fch_758',['CIOT_S_END_CH',['../ciot__s_8h.html#a958b5b763c873fb977a8cf2dc15dd69f',1,'ciot_s.h']]], - ['ciot_5fs_5fheader_5fsize_759',['CIOT_S_HEADER_SIZE',['../ciot__s_8h.html#a451d99c99313941fbfef451a7a830341',1,'ciot_s.h']]], - ['ciot_5fs_5flenght_5fsize_760',['CIOT_S_LENGHT_SIZE',['../ciot__s_8h.html#a454cbf8a51c076e297148719f8ad4f03',1,'ciot_s.h']]], - ['ciot_5fs_5fmsg_5fhandler_5ft_761',['ciot_s_msg_handler_t',['../ciot__s_8h.html#a4ed3963449a508259fadfdd0842d7c5d',1,'ciot_s.h']]], - ['ciot_5fs_5fnew_762',['ciot_s_new',['../ciot__s_8h.html#a47e024d9119662842e62f2b993b7511c',1,'ciot_s.h']]], - ['ciot_5fs_5fprocess_5fbyte_763',['ciot_s_process_byte',['../ciot__s_8h.html#a4d7f4cef42ccdb61d1ab7dd6adafc391',1,'ciot_s.h']]], - ['ciot_5fs_5fsend_764',['ciot_s_send',['../ciot__s_8h.html#a00fdcbb4aebbad8f80bf1bf1e732a9cb',1,'ciot_s.h']]], - ['ciot_5fs_5fset_5fbridge_5fmode_765',['ciot_s_set_bridge_mode',['../ciot__s_8h.html#a14867c1134859ec897f2ecf11af41793',1,'ciot_s.h']]], - ['ciot_5fs_5fstart_5fch_766',['CIOT_S_START_CH',['../ciot__s_8h.html#a0c8d7eee4ad76474e1a795d539af7489',1,'ciot_s.h']]], - ['ciot_5fs_5fstatus_767',['ciot_s_status',['../ciot__s_8h.html#abf179a683c9ec625bcd80eeffc5225f2',1,'ciot_s.h']]], - ['ciot_5fs_5fstatus_5fread_5fdata_768',['CIOT_S_STATUS_READ_DATA',['../ciot__s_8h.html#abf179a683c9ec625bcd80eeffc5225f2a51cd1ce663428588f8aaa47f17822b12',1,'ciot_s.h']]], - ['ciot_5fs_5fstatus_5ft_769',['ciot_s_status_t',['../ciot__s_8h.html#a061479d073e577bea43e5f500abb7fa3',1,'ciot_s.h']]], - ['ciot_5fs_5fstatus_5ftimeout_770',['CIOT_S_STATUS_TIMEOUT',['../ciot__s_8h.html#abf179a683c9ec625bcd80eeffc5225f2a2221c4f133239b0c83c498778a24aada',1,'ciot_s.h']]], - ['ciot_5fs_5fstatus_5fwait_5fsize_771',['CIOT_S_STATUS_WAIT_SIZE',['../ciot__s_8h.html#abf179a683c9ec625bcd80eeffc5225f2ae053def601f16100aeb60fb82b3c65f8',1,'ciot_s.h']]], - ['ciot_5fs_5fstatus_5fwait_5fstart_5fdata_772',['CIOT_S_STATUS_WAIT_START_DATA',['../ciot__s_8h.html#abf179a683c9ec625bcd80eeffc5225f2a7aadbf38530370cb4ba0d27b44a54306',1,'ciot_s.h']]], - ['ciot_5fs_5ft_773',['ciot_s_t',['../ciot__s_8h.html#a4fb0c1250873e751db7adffc9620b776',1,'ciot_s.h']]], - ['ciot_5fsave_5fiface_5fcfg_774',['ciot_save_iface_cfg',['../ciot_8h.html#aa11d77071edcfb2ae57b26f92cda2e06',1,'ciot.h']]], - ['ciot_5fserializer_775',['ciot_serializer',['../structciot__serializer.html',1,'']]], - ['ciot_5fserializer_2eh_776',['ciot_serializer.h',['../ciot__serializer_8h.html',1,'']]], - ['ciot_5fserializer_5ffrom_5fbytes_777',['ciot_serializer_from_bytes',['../ciot__serializer_8h.html#a2e6ad3f65b3277042564ae00d1ea9522',1,'ciot_serializer.h']]], - ['ciot_5fserializer_5ffrom_5fbytes_5ffn_778',['ciot_serializer_from_bytes_fn',['../ciot__serializer_8h.html#ad4e6ec6f4f6b2794af860108e701a284',1,'ciot_serializer.h']]], - ['ciot_5fserializer_5ft_779',['ciot_serializer_t',['../ciot__serializer_8h.html#ad996f78559d787df7e8f20e6e2c837ac',1,'ciot_serializer.h']]], - ['ciot_5fserializer_5fto_5fbytes_780',['ciot_serializer_to_bytes',['../ciot__serializer_8h.html#acce586f0c1adcf56d07b5c09e1df2c17',1,'ciot_serializer.h']]], - ['ciot_5fserializer_5fto_5fbytes_5ffn_781',['ciot_serializer_to_bytes_fn',['../ciot__serializer_8h.html#ad5f4d77f37d8f97c45e7ac3684c6240d',1,'ciot_serializer.h']]], - ['ciot_5fserializer_5ftype_782',['ciot_serializer_type',['../ciot__serializer_8h.html#ae62dc58498158eda5c753d6c3397702b',1,'ciot_serializer.h']]], - ['ciot_5fserializer_5ftype_5fcustom_783',['CIOT_SERIALIZER_TYPE_CUSTOM',['../ciot__serializer_8h.html#ae62dc58498158eda5c753d6c3397702ba6d5cb551c26a7529e01e27c64dbc2a7a',1,'ciot_serializer.h']]], - ['ciot_5fserializer_5ftype_5fnone_784',['CIOT_SERIALIZER_TYPE_NONE',['../ciot__serializer_8h.html#ae62dc58498158eda5c753d6c3397702ba1628b71e70eb2dcf89b24e63d9d86289',1,'ciot_serializer.h']]], - ['ciot_5fserializer_5ftype_5fprotobuf_785',['CIOT_SERIALIZER_TYPE_PROTOBUF',['../ciot__serializer_8h.html#ae62dc58498158eda5c753d6c3397702ba0f0db27db7f111da963526dfface091e',1,'ciot_serializer.h']]], - ['ciot_5fserializer_5ftype_5ft_786',['ciot_serializer_type_t',['../ciot__serializer_8h.html#a3c892bb829d28086be610a8f850066f7',1,'ciot_serializer.h']]], - ['ciot_5fset_5fstorage_787',['ciot_set_storage',['../ciot_8h.html#ab1f4ff509841bbca90c9a29e870a23fd',1,'ciot.h']]], - ['ciot_5fslip_2eh_788',['ciot_slip.h',['../ciot__slip_8h.html',1,'']]], - ['ciot_5fslip_5fdecode_5fadd_5fbyte_789',['ciot_slip_decode_add_byte',['../ciot__slip_8h.html#a13b065e0e7ef6b2b98aa59e136929654',1,'ciot_slip.h']]], - ['ciot_5fslip_5fencode_790',['ciot_slip_encode',['../ciot__slip_8h.html#a31ccb83d79170663a4a74c3a073b6d45',1,'ciot_slip.h']]], - ['ciot_5fslip_5fread_5fstate_5ft_791',['ciot_slip_read_state_t',['../ciot__slip_8h.html#a290de618dbd8ce83c3c43ec2e9c393a1',1,'ciot_slip.h']]], - ['ciot_5fslip_5fstate_5fclearing_5finvalid_5fpacket_792',['CIOT_SLIP_STATE_CLEARING_INVALID_PACKET',['../ciot__slip_8h.html#a290de618dbd8ce83c3c43ec2e9c393a1a788289583399742eda50d8bd9e88fb06',1,'ciot_slip.h']]], - ['ciot_5fslip_5fstate_5fdecoding_793',['CIOT_SLIP_STATE_DECODING',['../ciot__slip_8h.html#a290de618dbd8ce83c3c43ec2e9c393a1a6eac8f93f0b78328812025bc26c2515e',1,'ciot_slip.h']]], - ['ciot_5fslip_5fstate_5fesc_5freceived_794',['CIOT_SLIP_STATE_ESC_RECEIVED',['../ciot__slip_8h.html#a290de618dbd8ce83c3c43ec2e9c393a1af7e80dc7da481b7a5541ba44c10a1834',1,'ciot_slip.h']]], - ['ciot_5fslip_5ft_795',['ciot_slip_t',['../structciot__slip__t.html',1,'']]], - ['ciot_5fstart_796',['ciot_start',['../ciot_8h.html#a9ed835b9b7224f7757b9382061afc97c',1,'ciot.h']]], - ['ciot_5fstate_5fbusy_797',['CIOT_STATE_BUSY',['../ciot__types_8h.html#a95856e0042526f191649883a3a46dfe2a073c800d62d834a591038d5894ad81a1',1,'ciot_types.h']]], - ['ciot_5fstate_5ferror_798',['CIOT_STATE_ERROR',['../ciot__types_8h.html#a95856e0042526f191649883a3a46dfe2a7b1b50cf522d03e22820f35c9b615dbc',1,'ciot_types.h']]], - ['ciot_5fstate_5fidle_799',['CIOT_STATE_IDLE',['../ciot__types_8h.html#a95856e0042526f191649883a3a46dfe2a39d9db01f73111913fe49087fc809be9',1,'ciot_types.h']]], - ['ciot_5fstate_5ft_800',['ciot_state_t',['../ciot__types_8h.html#a95856e0042526f191649883a3a46dfe2',1,'ciot_types.h']]], - ['ciot_5fstatus_5ft_801',['ciot_status_t',['../structciot__status__t.html',1,'']]], - ['ciot_5fstorage_2eh_802',['ciot_storage.h',['../ciot__storage_8h.html',1,'']]], - ['ciot_5fstorage_5fcfg_5ft_803',['ciot_storage_cfg_t',['../structciot__storage__cfg__t.html',1,'']]], - ['ciot_5fstorage_5fdata_5fu_804',['ciot_storage_data_u',['../unionciot__storage__data__u.html',1,'']]], - ['ciot_5fstorage_5fdelete_805',['ciot_storage_delete',['../ciot__storage_8h.html#a3ef2b7405e84549b877fc3ff56573a70',1,'ciot_storage.h']]], - ['ciot_5fstorage_5fformat_806',['ciot_storage_format',['../ciot__storage_8h.html#a2ba18ab68d78441277427d4d5d17d8e2',1,'ciot_storage.h']]], - ['ciot_5fstorage_5finit_807',['ciot_storage_init',['../ciot__storage_8h.html#a03cb31fbd7d15d42639eca3b35e681b7',1,'ciot_storage.h']]], - ['ciot_5fstorage_5fload_808',['ciot_storage_load',['../ciot__storage_8h.html#a5dc173d4e3d285404c40f975c5ebff7d',1,'ciot_storage.h']]], - ['ciot_5fstorage_5fnew_809',['ciot_storage_new',['../ciot__storage_8h.html#a4f5d3c6bb977f52bb50f491526710e1e',1,'ciot_storage.h']]], - ['ciot_5fstorage_5fprocess_5freq_810',['ciot_storage_process_req',['../ciot__storage_8h.html#a7d7c52b2cee69e6b7c23be1ecc8ed0d7',1,'ciot_storage.h']]], - ['ciot_5fstorage_5freq_5fdelete_811',['CIOT_STORAGE_REQ_DELETE',['../ciot__storage__types_8h.html#ab7057228a41784a8075f122e0c436541af284b0fcdf84425bbd7ea1fedc16ae89',1,'ciot_storage_types.h']]], - ['ciot_5fstorage_5freq_5ffile_5fdata_5ft_812',['ciot_storage_req_file_data_t',['../structciot__storage__req__file__data__t.html',1,'']]], - ['ciot_5fstorage_5freq_5fformat_813',['CIOT_STORAGE_REQ_FORMAT',['../ciot__storage__types_8h.html#ab7057228a41784a8075f122e0c436541a3dadf7c4810cb89e7bf75d0e1624db9a',1,'ciot_storage_types.h']]], - ['ciot_5fstorage_5freq_5fload_814',['CIOT_STORAGE_REQ_LOAD',['../ciot__storage__types_8h.html#ab7057228a41784a8075f122e0c436541aba02c3e6c860284b2f06654a8977bf23',1,'ciot_storage_types.h']]], - ['ciot_5fstorage_5freq_5fsave_815',['CIOT_STORAGE_REQ_SAVE',['../ciot__storage__types_8h.html#ab7057228a41784a8075f122e0c436541a6218cd2bd3e86d2c74b59c95e3466a8e',1,'ciot_storage_types.h']]], - ['ciot_5fstorage_5freq_5ft_816',['ciot_storage_req_t',['../structciot__storage__req__t.html',1,'']]], - ['ciot_5fstorage_5freq_5ftype_5ft_817',['ciot_storage_req_type_t',['../ciot__storage__types_8h.html#ab7057228a41784a8075f122e0c436541',1,'ciot_storage_types.h']]], - ['ciot_5fstorage_5freq_5funknown_818',['CIOT_STORAGE_REQ_UNKNOWN',['../ciot__storage__types_8h.html#ab7057228a41784a8075f122e0c436541a4689fd1c078349f1583ecdbeaf7da85b',1,'ciot_storage_types.h']]], - ['ciot_5fstorage_5fsave_819',['ciot_storage_save',['../ciot__storage_8h.html#ae217d8018730853ce5e77e5c11b8ce4d',1,'ciot_storage.h']]], - ['ciot_5fstorage_5fsend_5fdata_820',['ciot_storage_send_data',['../ciot__storage_8h.html#aa54c8242169de35f8bf2a6a074cc6945',1,'ciot_storage.h']]], - ['ciot_5fstorage_5fstart_821',['ciot_storage_start',['../ciot__storage_8h.html#ade9c8a3a8b08bfbef4d4b7431ec5a740',1,'ciot_storage.h']]], - ['ciot_5fstorage_5fstate_5fidle_822',['CIOT_STORAGE_STATE_IDLE',['../ciot__storage__types_8h.html#a904b5a0e6bb3f9a7880c9d25250ddb86ac1049db8c3ea10d4f1e581674021e625',1,'ciot_storage_types.h']]], - ['ciot_5fstorage_5fstate_5ft_823',['ciot_storage_state_t',['../ciot__storage__types_8h.html#a904b5a0e6bb3f9a7880c9d25250ddb86',1,'ciot_storage_types.h']]], - ['ciot_5fstorage_5fstatus_5fmsg_5ft_824',['ciot_storage_status_msg_t',['../structciot__storage__status__msg__t.html',1,'']]], - ['ciot_5fstorage_5fstatus_5ft_825',['ciot_storage_status_t',['../structciot__storage__status__t.html',1,'']]], - ['ciot_5fstorage_5fstop_826',['ciot_storage_stop',['../ciot__storage_8h.html#ac895b62ff9edf0c92bd9223e66c752ec',1,'ciot_storage.h']]], - ['ciot_5fstorage_5ft_827',['ciot_storage_t',['../ciot__storage_8h.html#abd15a0b08206e1aee533659f5c760024',1,'ciot_storage.h']]], - ['ciot_5fstorage_5ftype_5feeprom_828',['CIOT_STORAGE_TYPE_EEPROM',['../ciot__storage__types_8h.html#abb72c818894c3c97f955258320bae239afc4a37eba78791073c18a5f63c03aeb4',1,'ciot_storage_types.h']]], - ['ciot_5fstorage_5ftype_5fflash_829',['CIOT_STORAGE_TYPE_FLASH',['../ciot__storage__types_8h.html#abb72c818894c3c97f955258320bae239adb7bbd45322a2e288bd6915ce487bbf0',1,'ciot_storage_types.h']]], - ['ciot_5fstorage_5ftype_5ffs_830',['CIOT_STORAGE_TYPE_FS',['../ciot__storage__types_8h.html#abb72c818894c3c97f955258320bae239a5888e89d9b87b625ea64913fdbf4b9ae',1,'ciot_storage_types.h']]], - ['ciot_5fstorage_5ftype_5ft_831',['ciot_storage_type_t',['../ciot__storage__types_8h.html#abb72c818894c3c97f955258320bae239',1,'ciot_storage_types.h']]], - ['ciot_5fstorage_5ftype_5funknown_832',['CIOT_STORAGE_TYPE_UNKNOWN',['../ciot__storage__types_8h.html#abb72c818894c3c97f955258320bae239a83d3bc245d343102f7a7ac18b036aceb',1,'ciot_storage_types.h']]], - ['ciot_5fstorage_5ftypes_2eh_833',['ciot_storage_types.h',['../ciot__storage__types_8h.html',1,'']]], - ['ciot_5fsys_2eh_834',['ciot_sys.h',['../ciot__sys_8h.html',1,'']]], - ['ciot_5fsys_5fcfg_5ft_835',['ciot_sys_cfg_t',['../structciot__sys__cfg__t.html',1,'']]], - ['ciot_5fsys_5fdata_5fu_836',['ciot_sys_data_u',['../unionciot__sys__data__u.html',1,'']]], - ['ciot_5fsys_5fevt_5fbit_5fpooling_837',['CIOT_SYS_EVT_BIT_POOLING',['../ciot__sys_8h.html#a3a3e986404de91f1c9943996fd1b7c2b',1,'ciot_sys.h']]], - ['ciot_5fsys_5ffeatures_5ft_838',['ciot_sys_features_t',['../structciot__sys__features__t.html',1,'']]], - ['ciot_5fsys_5fget_5fhw_839',['ciot_sys_get_hw',['../ciot__sys_8h.html#a7a01e9dc69f9e38add4b67f5d5353c65',1,'ciot_sys.h']]], - ['ciot_5fsys_5fhw_5farduino_840',['CIOT_SYS_HW_ARDUINO',['../ciot__sys__types_8h.html#a7f47e5291a35126d37482ded0232e5efabe1261ec53dded1b8ab49ea4f72f436c',1,'ciot_sys_types.h']]], - ['ciot_5fsys_5fhw_5fesp32_841',['CIOT_SYS_HW_ESP32',['../ciot__sys__types_8h.html#a7f47e5291a35126d37482ded0232e5efad421d4334f8a1f0d9d9bfbcb86f3a8b0',1,'ciot_sys_types.h']]], - ['ciot_5fsys_5fhw_5fesp8266_842',['CIOT_SYS_HW_ESP8266',['../ciot__sys__types_8h.html#a7f47e5291a35126d37482ded0232e5efadcbf5b47597d8916e929fcb8a41f51eb',1,'ciot_sys_types.h']]], - ['ciot_5fsys_5fhw_5ffeatures_5ft_843',['ciot_sys_hw_features_t',['../structciot__sys__hw__features__t.html',1,'']]], - ['ciot_5fsys_5fhw_5flinux_844',['CIOT_SYS_HW_LINUX',['../ciot__sys__types_8h.html#a7f47e5291a35126d37482ded0232e5efa50ce4141c796252e0dd6618bbab7f9e6',1,'ciot_sys_types.h']]], - ['ciot_5fsys_5fhw_5fnrf51_845',['CIOT_SYS_HW_NRF51',['../ciot__sys__types_8h.html#a7f47e5291a35126d37482ded0232e5efa864748032796d5bc1f9f1d8ca757377f',1,'ciot_sys_types.h']]], - ['ciot_5fsys_5fhw_5fnrf52_846',['CIOT_SYS_HW_NRF52',['../ciot__sys__types_8h.html#a7f47e5291a35126d37482ded0232e5efa1d69a7e4e65f5feab317dca37a76c8c7',1,'ciot_sys_types.h']]], - ['ciot_5fsys_5fhw_5ft_847',['ciot_sys_hw_t',['../ciot__sys__types_8h.html#a7f47e5291a35126d37482ded0232e5ef',1,'ciot_sys_types.h']]], - ['ciot_5fsys_5fhw_5funknown_848',['CIOT_SYS_HW_UNKNOWN',['../ciot__sys__types_8h.html#a7f47e5291a35126d37482ded0232e5efaff188acdae36c3f846e46c0fcac0f51f',1,'ciot_sys_types.h']]], - ['ciot_5fsys_5fhw_5fwin32_849',['CIOT_SYS_HW_WIN32',['../ciot__sys__types_8h.html#a7f47e5291a35126d37482ded0232e5efad7c83e675bfd1a4bbc5966f3977896df',1,'ciot_sys_types.h']]], - ['ciot_5fsys_5finfo_5ft_850',['ciot_sys_info_t',['../structciot__sys__info__t.html',1,'']]], - ['ciot_5fsys_5fnew_851',['ciot_sys_new',['../ciot__sys_8h.html#a22dbbf411c0235ce565adc505434a6c5',1,'ciot_sys.h']]], - ['ciot_5fsys_5fprocess_5freq_852',['ciot_sys_process_req',['../ciot__sys_8h.html#a06ce22313cfa75dd3862bf9125cd845c',1,'ciot_sys.h']]], - ['ciot_5fsys_5freq_5fdata_5fu_853',['ciot_sys_req_data_u',['../unionciot__sys__req__data__u.html',1,'']]], - ['ciot_5fsys_5freq_5finit_5fdfu_854',['CIOT_SYS_REQ_INIT_DFU',['../ciot__sys__types_8h.html#a1ee0e84a0f7250d41f9c39d795d6e3a7a051ef1036102b4fb06143109a949073c',1,'ciot_sys_types.h']]], - ['ciot_5fsys_5freq_5frestart_855',['CIOT_SYS_REQ_RESTART',['../ciot__sys__types_8h.html#a1ee0e84a0f7250d41f9c39d795d6e3a7afaec21fbf72d7431b0e1060c30bad2b4',1,'ciot_sys_types.h']]], - ['ciot_5fsys_5freq_5ft_856',['ciot_sys_req_t',['../structciot__sys__req__t.html',1,'']]], - ['ciot_5fsys_5freq_5ftype_5ft_857',['ciot_sys_req_type_t',['../ciot__sys__types_8h.html#a1ee0e84a0f7250d41f9c39d795d6e3a7',1,'ciot_sys_types.h']]], - ['ciot_5fsys_5freq_5funknonw_858',['CIOT_SYS_REQ_UNKNONW',['../ciot__sys__types_8h.html#a1ee0e84a0f7250d41f9c39d795d6e3a7ac7043876735504a548f88a6f78591c97',1,'ciot_sys_types.h']]], - ['ciot_5fsys_5frst_859',['ciot_sys_rst',['../ciot__sys_8h.html#afcb34bf8efb97cfc6f0e87c417508147',1,'ciot_sys.h']]], - ['ciot_5fsys_5fsend_5fdata_860',['ciot_sys_send_data',['../ciot__sys_8h.html#a5fbca2415ce7a76809907b5d3217098b',1,'ciot_sys.h']]], - ['ciot_5fsys_5fset_5fevent_5fbits_861',['ciot_sys_set_event_bits',['../ciot__sys_8h.html#ae3972ff066bf63bde44841a4c6052a14',1,'ciot_sys.h']]], - ['ciot_5fsys_5fsleep_862',['ciot_sys_sleep',['../ciot__sys_8h.html#a642db3584c187d4bfa8b34dca84ea9f8',1,'ciot_sys.h']]], - ['ciot_5fsys_5fstart_863',['ciot_sys_start',['../ciot__sys_8h.html#a4e0bd89f65a81feced88a3b45bf7f541',1,'ciot_sys.h']]], - ['ciot_5fsys_5fstatus_5fmsg_5ft_864',['ciot_sys_status_msg_t',['../structciot__sys__status__msg__t.html',1,'']]], - ['ciot_5fsys_5fstatus_5ft_865',['ciot_sys_status_t',['../structciot__sys__status__t.html',1,'']]], - ['ciot_5fsys_5fstop_866',['ciot_sys_stop',['../ciot__sys_8h.html#a1e3d326166a820fc5716b2516bcca0c3',1,'ciot_sys.h']]], - ['ciot_5fsys_5fsw_5ffeatures_5ft_867',['ciot_sys_sw_features_t',['../structciot__sys__sw__features__t.html',1,'']]], - ['ciot_5fsys_5ft_868',['ciot_sys_t',['../ciot__sys_8h.html#a000d7e2a946477d024a46584409a95cd',1,'ciot_sys.h']]], - ['ciot_5fsys_5ftask_869',['ciot_sys_task',['../ciot__sys_8h.html#a3a9c0875c8a82a6927c7bc27294092c4',1,'ciot_sys.h']]], - ['ciot_5fsys_5ftypes_2eh_870',['ciot_sys_types.h',['../ciot__sys__types_8h.html',1,'']]], - ['ciot_5fsys_5fupdate_5ffeatures_871',['ciot_sys_update_features',['../ciot__sys_8h.html#a5e7145c78ed2af300b57879b856478af',1,'ciot_sys.h']]], - ['ciot_5ft_872',['ciot_t',['../ciot_8h.html#a8543fc73092a47512369c90b44059bb6',1,'ciot.h']]], - ['ciot_5ftarget_5funknown_873',['CIOT_TARGET_UNKNOWN',['../ciot__config_8h.html#a9d4899595ff9cdd8c920802d34e4c4aa',1,'ciot_config.h']]], - ['ciot_5ftask_874',['ciot_task',['../ciot_8h.html#a27c376712b0d3594c545846834d24d25',1,'ciot.h']]], - ['ciot_5ftcp_2eh_875',['ciot_tcp.h',['../ciot__tcp_8h.html',1,'']]], - ['ciot_5ftcp_5fcfg_5ft_876',['ciot_tcp_cfg_t',['../structciot__tcp__cfg__t.html',1,'']]], - ['ciot_5ftcp_5fdata_5fu_877',['ciot_tcp_data_u',['../unionciot__tcp__data__u.html',1,'']]], - ['ciot_5ftcp_5fdhcp_5fcfg_5fclient_878',['CIOT_TCP_DHCP_CFG_CLIENT',['../ciot__tcp__types_8h.html#a6b9f05d16358111acd3b846a7086f32da256c65576b0fdb5d6cde2ec00741053d',1,'ciot_tcp_types.h']]], - ['ciot_5ftcp_5fdhcp_5fcfg_5fdisabled_879',['CIOT_TCP_DHCP_CFG_DISABLED',['../ciot__tcp__types_8h.html#a6b9f05d16358111acd3b846a7086f32daf1cef0fee46226a83db77ffb5adb78aa',1,'ciot_tcp_types.h']]], - ['ciot_5ftcp_5fdhcp_5fcfg_5fno_5fchange_880',['CIOT_TCP_DHCP_CFG_NO_CHANGE',['../ciot__tcp__types_8h.html#a6b9f05d16358111acd3b846a7086f32da612a799c9f8c26c1f3b9a503712bd711',1,'ciot_tcp_types.h']]], - ['ciot_5ftcp_5fdhcp_5fcfg_5fserver_881',['CIOT_TCP_DHCP_CFG_SERVER',['../ciot__tcp__types_8h.html#a6b9f05d16358111acd3b846a7086f32da687fde87cf827b9e89f391a724332b64',1,'ciot_tcp_types.h']]], - ['ciot_5ftcp_5fdhcp_5fcfg_5ft_882',['ciot_tcp_dhcp_cfg_t',['../ciot__tcp__types_8h.html#a6b9f05d16358111acd3b846a7086f32d',1,'ciot_tcp_types.h']]], - ['ciot_5ftcp_5fdhcp_5fstate_5fidle_883',['CIOT_TCP_DHCP_STATE_IDLE',['../ciot__tcp__types_8h.html#a5352e5a5aa4b1ddf306f31d22ceb5823ab0167afbae61b85190d4a3ce6f8e1bb6',1,'ciot_tcp_types.h']]], - ['ciot_5ftcp_5fdhcp_5fstate_5fstarted_884',['CIOT_TCP_DHCP_STATE_STARTED',['../ciot__tcp__types_8h.html#a5352e5a5aa4b1ddf306f31d22ceb5823a498ff82ecd47e1cc74eb97e647f9af41',1,'ciot_tcp_types.h']]], - ['ciot_5ftcp_5fdhcp_5fstate_5fstopped_885',['CIOT_TCP_DHCP_STATE_STOPPED',['../ciot__tcp__types_8h.html#a5352e5a5aa4b1ddf306f31d22ceb5823a4bd1f94974adc3039a15f24009f07725',1,'ciot_tcp_types.h']]], - ['ciot_5ftcp_5fdhcp_5fstate_5ft_886',['ciot_tcp_dhcp_state_t',['../ciot__tcp__types_8h.html#a5352e5a5aa4b1ddf306f31d22ceb5823',1,'ciot_tcp_types.h']]], - ['ciot_5ftcp_5fdhcp_5fstatus_5ft_887',['ciot_tcp_dhcp_status_t',['../structciot__tcp__dhcp__status__t.html',1,'']]], - ['ciot_5ftcp_5fget_5fip_888',['ciot_tcp_get_ip',['../ciot__tcp_8h.html#acf0f0475005d8a35010d7d3795a83709',1,'ciot_tcp.h']]], - ['ciot_5ftcp_5fhandle_889',['ciot_tcp_handle',['../structciot__tcp__handle.html',1,'']]], - ['ciot_5ftcp_5fhandle_5ft_890',['ciot_tcp_handle_t',['../ciot__tcp_8h.html#af40757b42f3a862bda187c4480db9fdd',1,'ciot_tcp.h']]], - ['ciot_5ftcp_5finfo_5ft_891',['ciot_tcp_info_t',['../structciot__tcp__info__t.html',1,'']]], - ['ciot_5ftcp_5finit_892',['ciot_tcp_init',['../ciot__tcp_8h.html#aaf33d525b69a740035727775db744789',1,'ciot_tcp.h']]], - ['ciot_5ftcp_5fnew_893',['ciot_tcp_new',['../ciot__tcp_8h.html#aa7b4877b5e9386676e52472bc2b623fb',1,'ciot_tcp.h']]], - ['ciot_5ftcp_5fprocess_5freq_894',['ciot_tcp_process_req',['../ciot__tcp_8h.html#a8e470218e3e7bbfff2d416270c012a29',1,'ciot_tcp.h']]], - ['ciot_5ftcp_5fregister_5fevent_895',['ciot_tcp_register_event',['../ciot__tcp_8h.html#a6f7038a07ff7a89af6c8b228ebb99cae',1,'ciot_tcp.h']]], - ['ciot_5ftcp_5freq_5fdata_5fu_896',['ciot_tcp_req_data_u',['../unionciot__tcp__req__data__u.html',1,'']]], - ['ciot_5ftcp_5freq_5ft_897',['ciot_tcp_req_t',['../structciot__tcp__req__t.html',1,'']]], - ['ciot_5ftcp_5freq_5ftype_5ft_898',['ciot_tcp_req_type_t',['../ciot__tcp__types_8h.html#a7bba37dedd9e8a5d5374ffa220088210',1,'ciot_tcp_types.h']]], - ['ciot_5ftcp_5freq_5funknown_899',['CIOT_TCP_REQ_UNKNOWN',['../ciot__tcp__types_8h.html#a7bba37dedd9e8a5d5374ffa220088210ad747f2cdac489da51cbb5d9dd8a44331',1,'ciot_tcp_types.h']]], - ['ciot_5ftcp_5fsend_5fdata_900',['ciot_tcp_send_data',['../ciot__tcp_8h.html#a21f1441d7e5b4b9c43ae51509fc12fe7',1,'ciot_tcp.h']]], - ['ciot_5ftcp_5fstart_901',['ciot_tcp_start',['../ciot__tcp_8h.html#a4bc4953f648bd57ec2fd6a0607c8b3eb',1,'ciot_tcp.h']]], - ['ciot_5ftcp_5fstate_5fconnected_902',['CIOT_TCP_STATE_CONNECTED',['../ciot__tcp__types_8h.html#aad64ae7daa8a2c6eefb794318c7c88c4a3266288819ae51df6e46bf607f97cc18',1,'ciot_tcp_types.h']]], - ['ciot_5ftcp_5fstate_5fconnecting_903',['CIOT_TCP_STATE_CONNECTING',['../ciot__tcp__types_8h.html#aad64ae7daa8a2c6eefb794318c7c88c4a8c0ce6cdcfc832aaa59eeb008720264d',1,'ciot_tcp_types.h']]], - ['ciot_5ftcp_5fstate_5ferror_904',['CIOT_TCP_STATE_ERROR',['../ciot__tcp__types_8h.html#aad64ae7daa8a2c6eefb794318c7c88c4ad830cbd0026ab149b983ca446d00da93',1,'ciot_tcp_types.h']]], - ['ciot_5ftcp_5fstate_5fstarted_905',['CIOT_TCP_STATE_STARTED',['../ciot__tcp__types_8h.html#aad64ae7daa8a2c6eefb794318c7c88c4a7c1ef5f54de6485e51c38d35823ef474',1,'ciot_tcp_types.h']]], - ['ciot_5ftcp_5fstate_5fstopped_906',['CIOT_TCP_STATE_STOPPED',['../ciot__tcp__types_8h.html#aad64ae7daa8a2c6eefb794318c7c88c4a1133752fa7b40a274d3cdc1b1f606380',1,'ciot_tcp_types.h']]], - ['ciot_5ftcp_5fstate_5ft_907',['ciot_tcp_state_t',['../ciot__tcp__types_8h.html#aad64ae7daa8a2c6eefb794318c7c88c4',1,'ciot_tcp_types.h']]], - ['ciot_5ftcp_5fstatus_5fmsg_5ft_908',['ciot_tcp_status_msg_t',['../structciot__tcp__status__msg__t.html',1,'']]], - ['ciot_5ftcp_5fstatus_5ft_909',['ciot_tcp_status_t',['../structciot__tcp__status__t.html',1,'']]], - ['ciot_5ftcp_5fstop_910',['ciot_tcp_stop',['../ciot__tcp_8h.html#a4873b02d0f4a5665258cd4ac47e83880',1,'ciot_tcp.h']]], - ['ciot_5ftcp_5ft_911',['ciot_tcp_t',['../ciot__tcp_8h.html#a85ab6c7fac206851e1183e84d8920b04',1,'ciot_tcp.h']]], - ['ciot_5ftcp_5ftype_912',['ciot_tcp_type',['../ciot__tcp_8h.html#a420540e389b2d5f21d7bfbd640f44bd4',1,'ciot_tcp.h']]], - ['ciot_5ftcp_5ftype_5fethernet_913',['CIOT_TCP_TYPE_ETHERNET',['../ciot__tcp_8h.html#a420540e389b2d5f21d7bfbd640f44bd4a567e4dfbd0835d25cf6648942b584639',1,'ciot_tcp.h']]], - ['ciot_5ftcp_5ftype_5ft_914',['ciot_tcp_type_t',['../ciot__tcp_8h.html#a8206ed69c94c5a1a4c934d3fc89a10db',1,'ciot_tcp.h']]], - ['ciot_5ftcp_5ftype_5funknown_915',['CIOT_TCP_TYPE_UNKNOWN',['../ciot__tcp_8h.html#a420540e389b2d5f21d7bfbd640f44bd4aaa42761772eedb190594f60334e7f9b6',1,'ciot_tcp.h']]], - ['ciot_5ftcp_5ftype_5fwifi_5fap_916',['CIOT_TCP_TYPE_WIFI_AP',['../ciot__tcp_8h.html#a420540e389b2d5f21d7bfbd640f44bd4a14d1cd4b6a8ecd2b169de66540675046',1,'ciot_tcp.h']]], - ['ciot_5ftcp_5ftype_5fwifi_5fsta_917',['CIOT_TCP_TYPE_WIFI_STA',['../ciot__tcp_8h.html#a420540e389b2d5f21d7bfbd640f44bd4a0653aba615cacd4d37ca017b39cac2c3',1,'ciot_tcp.h']]], - ['ciot_5ftcp_5ftypes_2eh_918',['ciot_tcp_types.h',['../ciot__tcp__types_8h.html',1,'']]], - ['ciot_5ftimer_2eh_919',['ciot_timer.h',['../ciot__timer_8h.html',1,'']]], - ['ciot_5ftimer_5fcfg_920',['ciot_timer_cfg',['../structciot__timer__cfg.html',1,'']]], - ['ciot_5ftimer_5fcfg_5ft_921',['ciot_timer_cfg_t',['../ciot__timer_8h.html#ae019e659b7b831fe1d18d0cc25a2947a',1,'ciot_timer.h']]], - ['ciot_5ftimer_5fcompare_922',['ciot_timer_compare',['../ciot__timer_8h.html#aed2d654f1ff37f47c42c87a8de300b19',1,'ciot_timer.h']]], - ['ciot_5ftimer_5fevent_5fhandler_5ft_923',['ciot_timer_event_handler_t',['../ciot__timer_8h.html#ae11839d456d62e3e384c7122812fcefc',1,'ciot_timer.h']]], - ['ciot_5ftimer_5fget_924',['ciot_timer_get',['../ciot__timer_8h.html#ade8ee212546acd7193d5b55b803f64ac',1,'ciot_timer.h']]], - ['ciot_5ftimer_5fstart_925',['ciot_timer_start',['../ciot__timer_8h.html#a8d0e55ce9c38fa27cb6cbf0adf38ea85',1,'ciot_timer.h']]], - ['ciot_5ftypes_2eh_926',['ciot_types.h',['../ciot__types_8h.html',1,'']]], - ['ciot_5fuart_2eh_927',['ciot_uart.h',['../ciot__uart_8h.html',1,'']]], - ['ciot_5fuart_5fbase_928',['ciot_uart_base',['../structciot__uart__base.html',1,'']]], - ['ciot_5fuart_5fbase_5ft_929',['ciot_uart_base_t',['../ciot__uart_8h.html#a78b44a6ece241c7fbc110ddba2e3d4db',1,'ciot_uart.h']]], - ['ciot_5fuart_5fcfg_5ft_930',['ciot_uart_cfg_t',['../structciot__uart__cfg__t.html',1,'']]], - ['ciot_5fuart_5fdata_5fu_931',['ciot_uart_data_u',['../unionciot__uart__data__u.html',1,'']]], - ['ciot_5fuart_5ferr_5fbreak_932',['CIOT_UART_ERR_BREAK',['../ciot__uart__types_8h.html#aef6ecadc19ff8f271719099d4858494aaad6937afc4eaec25982854d59b88c44e',1,'ciot_uart_types.h']]], - ['ciot_5fuart_5ferr_5fbuffer_5ffull_933',['CIOT_UART_ERR_BUFFER_FULL',['../ciot__uart__types_8h.html#aef6ecadc19ff8f271719099d4858494aa4980792413629568f394143146dfd34e',1,'ciot_uart_types.h']]], - ['ciot_5fuart_5ferr_5fdata_5fbreak_934',['CIOT_UART_ERR_DATA_BREAK',['../ciot__uart__types_8h.html#aef6ecadc19ff8f271719099d4858494aa29325d36ddc3f3283eb395420109f403',1,'ciot_uart_types.h']]], - ['ciot_5fuart_5ferr_5ffifo_5foverflow_935',['CIOT_UART_ERR_FIFO_OVERFLOW',['../ciot__uart__types_8h.html#aef6ecadc19ff8f271719099d4858494aa4471ad6db30324129d09ef452d3f21ef',1,'ciot_uart_types.h']]], - ['ciot_5fuart_5ferr_5fframe_936',['CIOT_UART_ERR_FRAME',['../ciot__uart__types_8h.html#aef6ecadc19ff8f271719099d4858494aa378a518c8cbc1750b42c1ba8dc74ac53',1,'ciot_uart_types.h']]], - ['ciot_5fuart_5ferr_5fnone_937',['CIOT_UART_ERR_NONE',['../ciot__uart__types_8h.html#aef6ecadc19ff8f271719099d4858494aa247559c3b774b184eefcddff921c7e7f',1,'ciot_uart_types.h']]], - ['ciot_5fuart_5ferr_5fopen_938',['CIOT_UART_ERR_OPEN',['../ciot__uart__types_8h.html#aef6ecadc19ff8f271719099d4858494aa00bbe17b442ed0e94d1f3695b32bda2a',1,'ciot_uart_types.h']]], - ['ciot_5fuart_5ferr_5fparity_939',['CIOT_UART_ERR_PARITY',['../ciot__uart__types_8h.html#aef6ecadc19ff8f271719099d4858494aa673b4c65f8766835eb2acaad965ced62',1,'ciot_uart_types.h']]], - ['ciot_5fuart_5ferr_5funknown_5fevent_940',['CIOT_UART_ERR_UNKNOWN_EVENT',['../ciot__uart__types_8h.html#aef6ecadc19ff8f271719099d4858494aa156f45510839d0ea276118f836a2a60f',1,'ciot_uart_types.h']]], - ['ciot_5fuart_5ferror_5ft_941',['ciot_uart_error_t',['../ciot__uart__types_8h.html#aef6ecadc19ff8f271719099d4858494a',1,'ciot_uart_types.h']]], - ['ciot_5fuart_5fevent_942',['ciot_uart_event',['../unionciot__uart__event.html',1,'']]], - ['ciot_5fuart_5fevent_5fdata_943',['CIOT_UART_EVENT_DATA',['../ciot__uart_8h.html#a03b2c325917b0578e226cad351ffba0ea195c22e4ee22b16b675cc44f64cfdfff',1,'ciot_uart.h']]], - ['ciot_5fuart_5fevent_5fid_944',['ciot_uart_event_id',['../ciot__uart_8h.html#a03b2c325917b0578e226cad351ffba0e',1,'ciot_uart.h']]], - ['ciot_5fuart_5fevent_5fid_5ft_945',['ciot_uart_event_id_t',['../ciot__uart_8h.html#a95cd10e869cbb1e43fcae25dadd5bdfb',1,'ciot_uart.h']]], - ['ciot_5fuart_5fevent_5fu_946',['ciot_uart_event_u',['../ciot__uart__types_8h.html#a1c20b2ee6a468d46d74b5868e93a3aca',1,'ciot_uart_types.h']]], - ['ciot_5fuart_5fnew_947',['ciot_uart_new',['../ciot__uart_8h.html#a2079bc11f1f437a1a3ce490a7db1d60a',1,'ciot_uart.h']]], - ['ciot_5fuart_5fprocess_5freq_948',['ciot_uart_process_req',['../ciot__uart_8h.html#a20f3b90cb598bec62e64a9fbd3bd399b',1,'ciot_uart.h']]], - ['ciot_5fuart_5freq_5fdata_5fu_949',['ciot_uart_req_data_u',['../unionciot__uart__req__data__u.html',1,'']]], - ['ciot_5fuart_5freq_5fenable_5fbridge_5fmode_950',['CIOT_UART_REQ_ENABLE_BRIDGE_MODE',['../ciot__uart__types_8h.html#a9b29402e0c8e8eaed7be0fa4ca22751ca7db606c5c2e1124419279dae212d92b6',1,'ciot_uart_types.h']]], - ['ciot_5fuart_5freq_5fsend_5fbytes_951',['CIOT_UART_REQ_SEND_BYTES',['../ciot__uart__types_8h.html#a9b29402e0c8e8eaed7be0fa4ca22751ca553ca846abf1dd6c736512c293f62134',1,'ciot_uart_types.h']]], - ['ciot_5fuart_5freq_5fsend_5fdata_952',['CIOT_UART_REQ_SEND_DATA',['../ciot__uart__types_8h.html#a9b29402e0c8e8eaed7be0fa4ca22751ca9a3b4577451009d87249a3afa3f5d1a7',1,'ciot_uart_types.h']]], - ['ciot_5fuart_5freq_5fsend_5fdata_5ft_953',['ciot_uart_req_send_data_t',['../structciot__uart__req__send__data__t.html',1,'']]], - ['ciot_5fuart_5freq_5ft_954',['ciot_uart_req_t',['../structciot__uart__req__t.html',1,'']]], - ['ciot_5fuart_5freq_5ftype_5ft_955',['ciot_uart_req_type_t',['../ciot__uart__types_8h.html#a9b29402e0c8e8eaed7be0fa4ca22751c',1,'ciot_uart_types.h']]], - ['ciot_5fuart_5freq_5funknown_956',['CIOT_UART_REQ_UNKNOWN',['../ciot__uart__types_8h.html#a9b29402e0c8e8eaed7be0fa4ca22751ca94d082e7fecb8305a0acb0cc05384352',1,'ciot_uart_types.h']]], - ['ciot_5fuart_5fsend_5fbytes_957',['ciot_uart_send_bytes',['../ciot__uart_8h.html#af238f48d206919d750b36dd95a288903',1,'ciot_uart.h']]], - ['ciot_5fuart_5fsend_5fdata_958',['ciot_uart_send_data',['../ciot__uart_8h.html#a7702c9079dcd8a2e07381df4a54245d6',1,'ciot_uart.h']]], - ['ciot_5fuart_5fset_5fbridge_5fmode_959',['ciot_uart_set_bridge_mode',['../ciot__uart_8h.html#ab19c96e5abc4221723935e06a8035794',1,'ciot_uart.h']]], - ['ciot_5fuart_5fstart_960',['ciot_uart_start',['../ciot__uart_8h.html#a0f475e364cbc39bab4dbdb86cbdb347d',1,'ciot_uart.h']]], - ['ciot_5fuart_5fstate_5fciot_5fs_5ferror_961',['CIOT_UART_STATE_CIOT_S_ERROR',['../ciot__uart__types_8h.html#a00c2af7c6795f37afe35ce3882ab48ecab6941d4ad015b3618bb4389a6fd81b38',1,'ciot_uart_types.h']]], - ['ciot_5fuart_5fstate_5fclosed_962',['CIOT_UART_STATE_CLOSED',['../ciot__uart__types_8h.html#a00c2af7c6795f37afe35ce3882ab48eca68e791de6f32826bfeadcc76ca60bc2e',1,'ciot_uart_types.h']]], - ['ciot_5fuart_5fstate_5finternal_5ferror_963',['CIOT_UART_STATE_INTERNAL_ERROR',['../ciot__uart__types_8h.html#a00c2af7c6795f37afe35ce3882ab48eca9a25df08d25fcbbeed4211d968806f23',1,'ciot_uart_types.h']]], - ['ciot_5fuart_5fstate_5fstarted_964',['CIOT_UART_STATE_STARTED',['../ciot__uart__types_8h.html#a00c2af7c6795f37afe35ce3882ab48eca199a994bef9447f18c393c779a0892c1',1,'ciot_uart_types.h']]], - ['ciot_5fuart_5fstate_5ft_965',['ciot_uart_state_t',['../ciot__uart__types_8h.html#a00c2af7c6795f37afe35ce3882ab48ec',1,'ciot_uart_types.h']]], - ['ciot_5fuart_5fstatus_5fmsg_5ft_966',['ciot_uart_status_msg_t',['../structciot__uart__status__msg__t.html',1,'']]], - ['ciot_5fuart_5fstatus_5ft_967',['ciot_uart_status_t',['../structciot__uart__status__t.html',1,'']]], - ['ciot_5fuart_5fstop_968',['ciot_uart_stop',['../ciot__uart_8h.html#aa59a92031015d710116dd58847aa4207',1,'ciot_uart.h']]], - ['ciot_5fuart_5ft_969',['ciot_uart_t',['../ciot__uart_8h.html#a9e4ec933947db50204ef964efdf776bf',1,'ciot_uart.h']]], - ['ciot_5fuart_5ftask_970',['ciot_uart_task',['../ciot__uart_8h.html#ac8590fc0ab4c129c57c14a442c922c2f',1,'ciot_uart.h']]], - ['ciot_5fuart_5ftypes_2eh_971',['ciot_uart_types.h',['../ciot__uart__types_8h.html',1,'']]], - ['ciot_5fusb_2eh_972',['ciot_usb.h',['../ciot__usb_8h.html',1,'']]], - ['ciot_5fusb_5fcfg_5ft_973',['ciot_usb_cfg_t',['../structciot__usb__cfg__t.html',1,'']]], - ['ciot_5fusb_5fdata_5fu_974',['ciot_usb_data_u',['../unionciot__usb__data__u.html',1,'']]], - ['ciot_5fusb_5fevent_975',['ciot_usb_event',['../unionciot__usb__event.html',1,'']]], - ['ciot_5fusb_5fevent_5fdata_976',['CIOT_USB_EVENT_DATA',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a0f83b5f8ff28920ceaaad901510476c6',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5fdrv_5feptransfer_977',['CIOT_USB_EVENT_DRV_EPTRANSFER',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5ae4003dcdc297ffa8fc4cbd2f9207daa8',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5fdrv_5freset_978',['CIOT_USB_EVENT_DRV_RESET',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5ae4e25ddb62bf2e37c550da599ba49baa',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5fdrv_5fresume_979',['CIOT_USB_EVENT_DRV_RESUME',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a10a07726018e6efe25f3d1e5dca2e895',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5fdrv_5fsetup_980',['CIOT_USB_EVENT_DRV_SETUP',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a9c35023883831b5dc9a630f9121f0c68',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5fdrv_5fsof_981',['CIOT_USB_EVENT_DRV_SOF',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a276f27a10f2d1d8f2b9669e73f741453',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5fdrv_5fsuspend_982',['CIOT_USB_EVENT_DRV_SUSPEND',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a491b16a86bf780ddadb881ba97be218a',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5fdrv_5fwureq_983',['CIOT_USB_EVENT_DRV_WUREQ',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a696943e19333fb49af7bae6c62beb19b',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5ffirst_5fapp_984',['CIOT_USB_EVENT_FIRST_APP',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a51f79a53cfc322086e3efd9e48c5ea6f',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5ffirst_5finternal_985',['CIOT_USB_EVENT_FIRST_INTERNAL',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5ac3c161231a97b52f7b5eafdae193ef58',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5ffirst_5fpower_986',['CIOT_USB_EVENT_FIRST_POWER',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a6d8d7a8948f67370c8d7180f4e35d357',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5fhfclk_5fready_987',['CIOT_USB_EVENT_HFCLK_READY',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5abefb094f2be1ef915bf5e9a20cf34add',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5fid_988',['ciot_usb_event_id',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5fid_5ft_989',['ciot_usb_event_id_t',['../ciot__usb_8h.html#a014429fc850b705c643a7ec24bd55e1e',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5finst_5fappend_990',['CIOT_USB_EVENT_INST_APPEND',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5aaf2b626cb9e5b1be9d2eaa819fd3d386',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5finst_5fremove_991',['CIOT_USB_EVENT_INST_REMOVE',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a70d9c2054d28e7851d2ab32fc21b7e64',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5fpower_5fdetected_992',['CIOT_USB_EVENT_POWER_DETECTED',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5adb38ca4f63e6efb7f66e814211e9a3ad',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5fpower_5fready_993',['CIOT_USB_EVENT_POWER_READY',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5ad179606eaf7b0171f649090a3aa447c6',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5fpower_5fremoved_994',['CIOT_USB_EVENT_POWER_REMOVED',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a8a1cc8b9386234f3133dc7c78eb0bef6',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5fsetup_5fsetaddress_995',['CIOT_USB_EVENT_SETUP_SETADDRESS',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a1ea491afe0afdeef5390fb08ccf65cf8',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5fstart_5freq_996',['CIOT_USB_EVENT_START_REQ',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a4026d37d3f5e925bc054770b9ebe9526',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5fstarted_997',['CIOT_USB_EVENT_STARTED',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5ac5ce262971db46bd319f96d936f97e51',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5fstate_5fchanged_998',['CIOT_USB_EVENT_STATE_CHANGED',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5aaa1ee6bcea019eed94daab3193bd589b',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5fstop_5freq_999',['CIOT_USB_EVENT_STOP_REQ',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a62de26da02a6e09bcd443684af656843',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5fstopped_1000',['CIOT_USB_EVENT_STOPPED',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a2876fe138403454c4c0c4bdec005b795',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5fsuspend_5freq_1001',['CIOT_USB_EVENT_SUSPEND_REQ',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a727280bd1dbf820baf7166b64bd9cf4e',1,'ciot_usb.h']]], - ['ciot_5fusb_5fevent_5fu_1002',['ciot_usb_event_u',['../ciot__usb__types_8h.html#a666a674ab97cf1c7bdf8ca4e6ec67948',1,'ciot_usb_types.h']]], - ['ciot_5fusb_5fevent_5fwakeup_5freq_1003',['CIOT_USB_EVENT_WAKEUP_REQ',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a9911a33a214c0b913128cf4c120bf737',1,'ciot_usb.h']]], - ['ciot_5fusb_5fnew_1004',['ciot_usb_new',['../ciot__usb_8h.html#abfc4f7cd5db3e2e5d94c4cd179d99799',1,'ciot_usb.h']]], - ['ciot_5fusb_5fprocess_5freq_1005',['ciot_usb_process_req',['../ciot__usb_8h.html#aa7629e46c3c5f64fd1a03f449c9a62d9',1,'ciot_usb.h']]], - ['ciot_5fusb_5freq_5fdata_5fu_1006',['ciot_usb_req_data_u',['../unionciot__usb__req__data__u.html',1,'']]], - ['ciot_5fusb_5freq_5ft_1007',['ciot_usb_req_t',['../structciot__usb__req__t.html',1,'']]], - ['ciot_5fusb_5freq_5ftype_5ft_1008',['ciot_usb_req_type_t',['../ciot__usb__types_8h.html#a71fe5023c4df31cb959b5b9b8aae41ef',1,'ciot_usb_types.h']]], - ['ciot_5fusb_5freq_5funknown_1009',['CIOT_USB_REQ_UNKNOWN',['../ciot__usb__types_8h.html#a71fe5023c4df31cb959b5b9b8aae41efa131069815baa028e3106e0f74227b5d7',1,'ciot_usb_types.h']]], - ['ciot_5fusb_5fsend_5fbytes_1010',['ciot_usb_send_bytes',['../ciot__usb_8h.html#abae2505d8aed15ad739be049f4180e28',1,'ciot_usb.h']]], - ['ciot_5fusb_5fsend_5fdata_1011',['ciot_usb_send_data',['../ciot__usb_8h.html#a1ca6b2b7d2fb270d03110baaafa69875',1,'ciot_usb.h']]], - ['ciot_5fusb_5fset_5fbridge_5fmode_1012',['ciot_usb_set_bridge_mode',['../ciot__usb_8h.html#ad2167601e42b510a7c5c23092c4c1d67',1,'ciot_usb.h']]], - ['ciot_5fusb_5fstart_1013',['ciot_usb_start',['../ciot__usb_8h.html#a6fc1bc4653f9484b79d7f6eec7b8a22e',1,'ciot_usb.h']]], - ['ciot_5fusb_5fstate_5fstarted_1014',['CIOT_USB_STATE_STARTED',['../ciot__usb__types_8h.html#a3dc18e37f557a829c8d80f95824d61d4a6e05597b6f5e366cd8b0f7c053faa55b',1,'ciot_usb_types.h']]], - ['ciot_5fusb_5fstate_5fstopped_1015',['CIOT_USB_STATE_STOPPED',['../ciot__usb__types_8h.html#a3dc18e37f557a829c8d80f95824d61d4a481dcefd205d22bd32f4fed57ca1c1a7',1,'ciot_usb_types.h']]], - ['ciot_5fusb_5fstate_5ft_1016',['ciot_usb_state_t',['../ciot__usb__types_8h.html#a3dc18e37f557a829c8d80f95824d61d4',1,'ciot_usb_types.h']]], - ['ciot_5fusb_5fstatus_5fmsg_5ft_1017',['ciot_usb_status_msg_t',['../structciot__usb__status__msg__t.html',1,'']]], - ['ciot_5fusb_5fstatus_5ft_1018',['ciot_usb_status_t',['../structciot__usb__status__t.html',1,'']]], - ['ciot_5fusb_5fstop_1019',['ciot_usb_stop',['../ciot__usb_8h.html#adabdd1e2583c19abdaf9c618ac48744c',1,'ciot_usb.h']]], - ['ciot_5fusb_5ft_1020',['ciot_usb_t',['../ciot__usb_8h.html#a5a423546430ff5b539cecd7181fdf90d',1,'ciot_usb.h']]], - ['ciot_5fusb_5ftask_1021',['ciot_usb_task',['../ciot__usb_8h.html#a3182f3d52d2ed6b62d50f6b28f72e17e',1,'ciot_usb.h']]], - ['ciot_5fusb_5ftypes_2eh_1022',['ciot_usb_types.h',['../ciot__usb__types_8h.html',1,'']]], - ['ciot_5futils_2eh_1023',['ciot_utils.h',['../ciot__utils_8h.html',1,'']]], - ['ciot_5fver_1024',['CIOT_VER',['../ciot__config_8h.html#a308e001caa7470a8d08a2e85a4d96b8b',1,'ciot_config.h']]], - ['ciot_5fwifi_2eh_1025',['ciot_wifi.h',['../ciot__wifi_8h.html',1,'']]], - ['ciot_5fwifi_5fap_5finfo_5ft_1026',['ciot_wifi_ap_info_t',['../structciot__wifi__ap__info__t.html',1,'']]], - ['ciot_5fwifi_5fap_5fnew_1027',['ciot_wifi_ap_new',['../ciot__wifi_8h.html#aff94df1a4c08ca1cbea37d8dcd3f8777',1,'ciot_wifi.h']]], - ['ciot_5fwifi_5fcfg_5ft_1028',['ciot_wifi_cfg_t',['../structciot__wifi__cfg__t.html',1,'']]], - ['ciot_5fwifi_5fdata_5fu_1029',['ciot_wifi_data_u',['../unionciot__wifi__data__u.html',1,'']]], - ['ciot_5fwifi_5fevent_5fap_5fstaconnected_1030',['CIOT_WIFI_EVENT_AP_STACONNECTED',['../ciot__wifi_8h.html#a19c22be5088c4eab517d5814d79e3d1caa23c4adec62d9312d64a71f82f6efd03',1,'ciot_wifi.h']]], - ['ciot_5fwifi_5fevent_5fap_5fstadisconnected_1031',['CIOT_WIFI_EVENT_AP_STADISCONNECTED',['../ciot__wifi_8h.html#a19c22be5088c4eab517d5814d79e3d1caf42578350701e71889e933df00f62043',1,'ciot_wifi.h']]], - ['ciot_5fwifi_5fevent_5fap_5fstart_1032',['CIOT_WIFI_EVENT_AP_START',['../ciot__wifi_8h.html#a19c22be5088c4eab517d5814d79e3d1cac7a40b44a69f4c9761043bf78a5cded3',1,'ciot_wifi.h']]], - ['ciot_5fwifi_5fevent_5fap_5fstop_1033',['CIOT_WIFI_EVENT_AP_STOP',['../ciot__wifi_8h.html#a19c22be5088c4eab517d5814d79e3d1ca52710095670909e218c917ec10e77363',1,'ciot_wifi.h']]], - ['ciot_5fwifi_5fevent_5fid_1034',['ciot_wifi_event_id',['../ciot__wifi_8h.html#a19c22be5088c4eab517d5814d79e3d1c',1,'ciot_wifi.h']]], - ['ciot_5fwifi_5fevent_5fid_5ft_1035',['ciot_wifi_event_id_t',['../ciot__wifi_8h.html#aef3e522ed9507f7dbe6304d5ad31fbf9',1,'ciot_wifi.h']]], - ['ciot_5fwifi_5fevent_5fsta_5fconnected_1036',['CIOT_WIFI_EVENT_STA_CONNECTED',['../ciot__wifi_8h.html#a19c22be5088c4eab517d5814d79e3d1ca1b98996941b31dea8da9c83eb62fea37',1,'ciot_wifi.h']]], - ['ciot_5fwifi_5fevent_5fsta_5fdisconnected_1037',['CIOT_WIFI_EVENT_STA_DISCONNECTED',['../ciot__wifi_8h.html#a19c22be5088c4eab517d5814d79e3d1ca7076a750c510b561b1f0884ddd7e50db',1,'ciot_wifi.h']]], - ['ciot_5fwifi_5fevent_5fsta_5fstart_1038',['CIOT_WIFI_EVENT_STA_START',['../ciot__wifi_8h.html#a19c22be5088c4eab517d5814d79e3d1ca6b713b4b3920bb34f47260c7643ca2b8',1,'ciot_wifi.h']]], - ['ciot_5fwifi_5fevent_5fsta_5fstop_1039',['CIOT_WIFI_EVENT_STA_STOP',['../ciot__wifi_8h.html#a19c22be5088c4eab517d5814d79e3d1ca257ec9d7ea2e07aace2c8a179405e807',1,'ciot_wifi.h']]], - ['ciot_5fwifi_5fget_5fmac_1040',['ciot_wifi_get_mac',['../ciot__wifi_8h.html#a5817f21b0b8d5b22430f3ecb3c3c37a5',1,'ciot_wifi.h']]], - ['ciot_5fwifi_5fif_5fap_1041',['CIOT_WIFI_IF_AP',['../ciot__wifi__types_8h.html#af32b4aaa2c6d9132e310a2d368ca3a6fa7bfdef61a443d4e6f7e5b96acfade2fa',1,'ciot_wifi_types.h']]], - ['ciot_5fwifi_5fif_5fsta_1042',['CIOT_WIFI_IF_STA',['../ciot__wifi__types_8h.html#af32b4aaa2c6d9132e310a2d368ca3a6fa22577cd2b8c579f221be06f275674e60',1,'ciot_wifi_types.h']]], - ['ciot_5fwifi_5fnew_1043',['ciot_wifi_new',['../ciot__wifi_8h.html#a07185c8551c5e40a05d113736a72e1d7',1,'ciot_wifi.h']]], - ['ciot_5fwifi_5fprocess_5freq_1044',['ciot_wifi_process_req',['../ciot__wifi_8h.html#a37b38c412e4f11696f1e2c03852cc1b7',1,'ciot_wifi.h']]], - ['ciot_5fwifi_5freq_5fdata_5fu_1045',['ciot_wifi_req_data_u',['../unionciot__wifi__req__data__u.html',1,'']]], - ['ciot_5fwifi_5freq_5fscan_1046',['CIOT_WIFI_REQ_SCAN',['../ciot__wifi__types_8h.html#a2408faec8016bff6cd0590f0db3b8395af69b99260309c1d8ba4c8a36372fbc7f',1,'ciot_wifi_types.h']]], - ['ciot_5fwifi_5freq_5ft_1047',['ciot_wifi_req_t',['../structciot__wifi__req__t.html',1,'']]], - ['ciot_5fwifi_5freq_5ftype_5ft_1048',['ciot_wifi_req_type_t',['../ciot__wifi__types_8h.html#a2408faec8016bff6cd0590f0db3b8395',1,'ciot_wifi_types.h']]], - ['ciot_5fwifi_5freq_5funknown_1049',['CIOT_WIFI_REQ_UNKNOWN',['../ciot__wifi__types_8h.html#a2408faec8016bff6cd0590f0db3b8395a1cefbec3b48a7dc0c4e8333da88d9c2c',1,'ciot_wifi_types.h']]], - ['ciot_5fwifi_5fscan_5fresult_5ft_1050',['ciot_wifi_scan_result_t',['../structciot__wifi__scan__result__t.html',1,'']]], - ['ciot_5fwifi_5fscan_5fstate_5ferror_1051',['CIOT_WIFI_SCAN_STATE_ERROR',['../ciot__wifi__types_8h.html#ad99bf8f02a2d7a54b3a9a73752e74036aae17584d11aca31c75f644b1ec2b0af4',1,'ciot_wifi_types.h']]], - ['ciot_5fwifi_5fscan_5fstate_5fidle_1052',['CIOT_WIFI_SCAN_STATE_IDLE',['../ciot__wifi__types_8h.html#ad99bf8f02a2d7a54b3a9a73752e74036a4b64a2aa7491e1fc0baa7818e6b0a627',1,'ciot_wifi_types.h']]], - ['ciot_5fwifi_5fscan_5fstate_5fscanned_1053',['CIOT_WIFI_SCAN_STATE_SCANNED',['../ciot__wifi__types_8h.html#ad99bf8f02a2d7a54b3a9a73752e74036a81236e72b5b965ab3003fc7eefa172f8',1,'ciot_wifi_types.h']]], - ['ciot_5fwifi_5fscan_5fstate_5fscanning_1054',['CIOT_WIFI_SCAN_STATE_SCANNING',['../ciot__wifi__types_8h.html#ad99bf8f02a2d7a54b3a9a73752e74036a7112209d7638abecd3bb12235439da52',1,'ciot_wifi_types.h']]], - ['ciot_5fwifi_5fscan_5fstate_5ft_1055',['ciot_wifi_scan_state_t',['../ciot__wifi__types_8h.html#ad99bf8f02a2d7a54b3a9a73752e74036',1,'ciot_wifi_types.h']]], - ['ciot_5fwifi_5fsend_5fdata_1056',['ciot_wifi_send_data',['../ciot__wifi_8h.html#a1444b4045430489fbf88036fe898528a',1,'ciot_wifi.h']]], - ['ciot_5fwifi_5fsta_5fnew_1057',['ciot_wifi_sta_new',['../ciot__wifi_8h.html#a57c540c883f21bdfa6d5d0a92584cc90',1,'ciot_wifi.h']]], - ['ciot_5fwifi_5fstart_1058',['ciot_wifi_start',['../ciot__wifi_8h.html#af030ec8963d45c8374b58b10d3c83b9a',1,'ciot_wifi.h']]], - ['ciot_5fwifi_5fstate_5fidle_1059',['CIOT_WIFI_STATE_IDLE',['../ciot__wifi__types_8h.html#ad1f8d811fc212531fc388a76b784f348a8c2d80f4f370ad20291a732f50de55ef',1,'ciot_wifi_types.h']]], - ['ciot_5fwifi_5fstate_5ft_1060',['ciot_wifi_state_t',['../ciot__wifi__types_8h.html#ad1f8d811fc212531fc388a76b784f348',1,'ciot_wifi_types.h']]], - ['ciot_5fwifi_5fstatus_5fmsg_5ft_1061',['ciot_wifi_status_msg_t',['../structciot__wifi__status__msg__t.html',1,'']]], - ['ciot_5fwifi_5fstatus_5ft_1062',['ciot_wifi_status_t',['../structciot__wifi__status__t.html',1,'']]], - ['ciot_5fwifi_5fstop_1063',['ciot_wifi_stop',['../ciot__wifi_8h.html#aed26866d40b64a5f80c4769481987cc0',1,'ciot_wifi.h']]], - ['ciot_5fwifi_5ft_1064',['ciot_wifi_t',['../ciot__wifi_8h.html#a8a68a35d54f44cd102efdaf03d75d29a',1,'ciot_wifi.h']]], - ['ciot_5fwifi_5ftype_5ft_1065',['ciot_wifi_type_t',['../ciot__wifi__types_8h.html#af32b4aaa2c6d9132e310a2d368ca3a6f',1,'ciot_wifi_types.h']]], - ['ciot_5fwifi_5ftypes_2eh_1066',['ciot_wifi_types.h',['../ciot__wifi__types_8h.html',1,'']]], - ['client_1067',['client',['../structciot__tcp__dhcp__status__t.html#acb22641cf860e836e7394d14b9adae4b',1,'ciot_tcp_dhcp_status_t']]], - ['client_5fid_1068',['client_id',['../structciot__mqttc__cfg__t.html#a71a2e48797aa4b94b9164ea22564c158',1,'ciot_mqttc_cfg_t']]], - ['code_1069',['code',['../structciot__dfu__status__t.html#a45a5b7c00a796a23f01673cef1dbe0a9',1,'ciot_dfu_status_t::code'],['../structciot__mqttc__error__t.html#a45a5b7c00a796a23f01673cef1dbe0a9',1,'ciot_mqttc_error_t::code'],['../structciot__msg__error__t.html#afe73fa7a655419b386e0a10c7beaace3',1,'ciot_msg_error_t::code']]], - ['config_1070',['config',['../unionciot__ble__scn__data__u.html#a77ffb25407771dd73e21b56e0976b3b7',1,'ciot_ble_scn_data_u::config'],['../unionciot__ble__data__u.html#a3bb879297495825c0895764c1b7593b1',1,'ciot_ble_data_u::config'],['../unionciot__bridge__data__u.html#a422a3539477ec835aea97b889564f22a',1,'ciot_bridge_data_u::config'],['../unionciot__data__model__data__u.html#a0a7b5df86de5bd60d09108b02de9d89d',1,'ciot_data_model_data_u::config'],['../unionciot__dfu__data__u.html#a8d4be68066e35bb11aecfff26e3cb30b',1,'ciot_dfu_data_u::config'],['../unionciot__gpio__req__data__u.html#a15039efacca36cdba57c2ccf7b0a3d4f',1,'ciot_gpio_req_data_u::config'],['../unionciot__gpio__data__u.html#a15039efacca36cdba57c2ccf7b0a3d4f',1,'ciot_gpio_data_u::config'],['../unionciot__httpc__data__u.html#a0ddab1f295ea5861939322623d313037',1,'ciot_httpc_data_u::config'],['../unionciot__https__data__u.html#a07d1ec38980b47dde9caaa52c42163cf',1,'ciot_https_data_u::config'],['../unionciot__mqttc__data__u.html#a79c158a8d9a5ddac01d944ca9485764b',1,'ciot_mqttc_data_u::config'],['../unionciot__ntp__data__u.html#a6c17383e9465f668d1e9dcb3cf8d4f4a',1,'ciot_ntp_data_u::config'],['../unionciot__opcuas__data__u.html#aa976951e468c754fef849731243b0acb',1,'ciot_opcuas_data_u::config'],['../unionciot__ota__data__u.html#a62fb934187d712f56dc1289eda8f8cac',1,'ciot_ota_data_u::config'],['../unionciot__storage__data__u.html#aabe6a902449529e66a1bb460116af784',1,'ciot_storage_data_u::config'],['../unionciot__sys__data__u.html#a9d2eb5a0a1a2ed5d529672a8229a8fe8',1,'ciot_sys_data_u::config'],['../unionciot__tcp__data__u.html#a71821427aa3817c68209a151bed81e56',1,'ciot_tcp_data_u::config'],['../unionciot__data__u.html#a82e7ef84cdd4eb20f2da20f0df751fd3',1,'ciot_data_u::config'],['../unionciot__uart__data__u.html#a107556abf8506af23fc4f92aa4d20cea',1,'ciot_uart_data_u::config'],['../unionciot__usb__data__u.html#a5a3eefbe6f21d662a5e318bbf323a00e',1,'ciot_usb_data_u::config'],['../unionciot__wifi__data__u.html#a711c5a971ab69b9cfa4850692e6bbaad',1,'ciot_wifi_data_u::config']]], - ['conn_5fcount_1071',['conn_count',['../structciot__mqttc__status__t.html#acaf4be12cb0cee4fbea5e8e121f6d2e4',1,'ciot_mqttc_status_t::conn_count'],['../structciot__tcp__status__t.html#acaf4be12cb0cee4fbea5e8e121f6d2e4',1,'ciot_tcp_status_t::conn_count']]], - ['content_5flength_1072',['content_length',['../structciot__httpc__req__send__t.html#a675a47f46ecd9d8ec01c738e04c28cbe',1,'ciot_httpc_req_send_t']]], - ['count_1073',['count',['../structciot__cfg.html#a20302e2c99a60d3f612dba57e3f6333b',1,'ciot_cfg::count'],['../structciot__wifi__scan__result__t.html#a20302e2c99a60d3f612dba57e3f6333b',1,'ciot_wifi_scan_result_t::count']]], - ['crc32_5fcompute_1074',['crc32_compute',['../ciot__utils_8h.html#a3c925cbabcbf9b62b099a9c5d5a054ad',1,'ciot_utils.h']]], - ['cts_5fpin_1075',['cts_pin',['../structciot__uart__cfg__t.html#a73580a66f00a6a0ea4a56441d529797f',1,'ciot_uart_cfg_t']]], - ['current_5findex_1076',['current_index',['../structciot__slip__t.html#ad1e3bc5a59e7ed48387fb95383fae12f',1,'ciot_slip_t']]] + ['ciot_20programming_20guide_3',['CIoT - Programming Guide',['../index.html',1,'']]], + ['ciot_2eh_4',['ciot.h',['../ciot_8h.html',1,'']]], + ['ciot_5fble_2eh_5',['ciot_ble.h',['../ciot__ble_8h.html',1,'']]], + ['ciot_5fble_5fcfg_5ft_6',['ciot_ble_cfg_t',['../structciot__ble__cfg__t.html',1,'']]], + ['ciot_5fble_5fdata_5fu_7',['ciot_ble_data_u',['../unionciot__ble__data__u.html',1,'']]], + ['ciot_5fble_5fget_5fmac_8',['ciot_ble_get_mac',['../ciot__ble_8h.html#ada2bfd0d1620ed6addb4768df6e04a1a',1,'ciot_ble.h']]], + ['ciot_5fble_5fifaces_9',['ciot_ble_ifaces',['../structciot__ble__ifaces.html',1,'']]], + ['ciot_5fble_5fifaces_5ft_10',['ciot_ble_ifaces_t',['../ciot__ble_8h.html#a7e2846e13398ef6ffd6def913495f5c2',1,'ciot_ble.h']]], + ['ciot_5fble_5finfo_5ft_11',['ciot_ble_info_t',['../structciot__ble__info__t.html',1,'']]], + ['ciot_5fble_5fmac_5fis_5fvalid_12',['ciot_ble_mac_is_valid',['../ciot__ble_8h.html#afb9a5b45554f53c423a114f63e2b67fd',1,'ciot_ble.h']]], + ['ciot_5fble_5fmac_5ftype_13',['ciot_ble_mac_type',['../ciot__ble_8h.html#a8f93d371d8add01e842d3888601f65bb',1,'ciot_ble.h']]], + ['ciot_5fble_5fmac_5ftype_5fhardware_14',['CIOT_BLE_MAC_TYPE_HARDWARE',['../ciot__ble_8h.html#a8f93d371d8add01e842d3888601f65bba9863cb9813d17d8384e6a4a1d1040099',1,'ciot_ble.h']]], + ['ciot_5fble_5fmac_5ftype_5freal_15',['CIOT_BLE_MAC_TYPE_REAL',['../ciot__ble_8h.html#a8f93d371d8add01e842d3888601f65bba1620399b223e49561ca78b27fc34f548',1,'ciot_ble.h']]], + ['ciot_5fble_5fmac_5ftype_5fsoftware_16',['CIOT_BLE_MAC_TYPE_SOFTWARE',['../ciot__ble_8h.html#a8f93d371d8add01e842d3888601f65bbab0017c745f97c33b61ccf012a920f246',1,'ciot_ble.h']]], + ['ciot_5fble_5fmac_5ftype_5ft_17',['ciot_ble_mac_type_t',['../ciot__ble_8h.html#a05089e2e5330e0767d0ac074a0d48664',1,'ciot_ble.h']]], + ['ciot_5fble_5fmac_5ftype_5funknown_18',['CIOT_BLE_MAC_TYPE_UNKNOWN',['../ciot__ble_8h.html#a8f93d371d8add01e842d3888601f65bbae978837f99a7554a6ea2a13d470d3d33',1,'ciot_ble.h']]], + ['ciot_5fble_5fnew_19',['ciot_ble_new',['../ciot__ble_8h.html#ab9cc93352ac370bae80dc47d28a18f55',1,'ciot_ble.h']]], + ['ciot_5fble_5fprocess_5freq_20',['ciot_ble_process_req',['../ciot__ble_8h.html#aa0249bac01c064dddf3e9327224789d8',1,'ciot_ble.h']]], + ['ciot_5fble_5freq_5fdata_5fu_21',['ciot_ble_req_data_u',['../unionciot__ble__req__data__u.html',1,'']]], + ['ciot_5fble_5freq_5fset_5fmac_22',['CIOT_BLE_REQ_SET_MAC',['../ciot__ble__types_8h.html#a8807333f11d56d9ed98b547b14a73c0aa955a66939faa9e3aeffe11ef0285e61c',1,'ciot_ble_types.h']]], + ['ciot_5fble_5freq_5ft_23',['ciot_ble_req_t',['../structciot__ble__req__t.html',1,'']]], + ['ciot_5fble_5freq_5ftype_5ft_24',['ciot_ble_req_type_t',['../ciot__ble__types_8h.html#a8807333f11d56d9ed98b547b14a73c0a',1,'ciot_ble_types.h']]], + ['ciot_5fble_5freq_5funknown_25',['CIOT_BLE_REQ_UNKNOWN',['../ciot__ble__types_8h.html#a8807333f11d56d9ed98b547b14a73c0aa3e891c72e54ad509017d098852f6ab7e',1,'ciot_ble_types.h']]], + ['ciot_5fble_5fscn_2eh_26',['ciot_ble_scn.h',['../ciot__ble__scn_8h.html',1,'']]], + ['ciot_5fble_5fscn_5fadv_5finfo_5ft_27',['ciot_ble_scn_adv_info_t',['../structciot__ble__scn__adv__info__t.html',1,'']]], + ['ciot_5fble_5fscn_5fcfg_5ft_28',['ciot_ble_scn_cfg_t',['../structciot__ble__scn__cfg__t.html',1,'']]], + ['ciot_5fble_5fscn_5fdata_5fu_29',['ciot_ble_scn_data_u',['../unionciot__ble__scn__data__u.html',1,'']]], + ['ciot_5fble_5fscn_5fget_5fadv_5finfo_30',['ciot_ble_scn_get_adv_info',['../ciot__ble__scn_8h.html#af3c5072d04dee93723266acd2ae40bda',1,'ciot_ble_scn.h']]], + ['ciot_5fble_5fscn_5fhandle_5fevent_31',['ciot_ble_scn_handle_event',['../ciot__ble__scn_8h.html#ac868bbc26c4ba11695e5c3dcaa80b201',1,'ciot_ble_scn.h']]], + ['ciot_5fble_5fscn_5fnew_32',['ciot_ble_scn_new',['../ciot__ble__scn_8h.html#a412a0a86f5b189b653efb2f334d5613f',1,'ciot_ble_scn.h']]], + ['ciot_5fble_5fscn_5fprocess_5freq_33',['ciot_ble_scn_process_req',['../ciot__ble__scn_8h.html#a22b3f45a7f6909bc350f1e7dbee0c599',1,'ciot_ble_scn.h']]], + ['ciot_5fble_5fscn_5freq_5fdata_5fu_34',['ciot_ble_scn_req_data_u',['../unionciot__ble__scn__req__data__u.html',1,'']]], + ['ciot_5fble_5fscn_5freq_5ft_35',['ciot_ble_scn_req_t',['../structciot__ble__scn__req__t.html',1,'']]], + ['ciot_5fble_5fscn_5freq_5ftype_5ft_36',['ciot_ble_scn_req_type_t',['../ciot__ble__scn__types_8h.html#af3789825b72a0e08e09e4c8682a45aaa',1,'ciot_ble_scn_types.h']]], + ['ciot_5fble_5fscn_5freq_5funknown_37',['CIOT_BLE_SCN_REQ_UNKNOWN',['../ciot__ble__scn__types_8h.html#af3789825b72a0e08e09e4c8682a45aaaa49cc27b8e221b0140c8440a39b7c4230',1,'ciot_ble_scn_types.h']]], + ['ciot_5fble_5fscn_5fsend_5fdata_38',['ciot_ble_scn_send_data',['../ciot__ble__scn_8h.html#a2768bcd961a130564cf03a0d21123d91',1,'ciot_ble_scn.h']]], + ['ciot_5fble_5fscn_5fstart_39',['ciot_ble_scn_start',['../ciot__ble__scn_8h.html#a9c8db4404daa80df68b678a3b41aa9b4',1,'ciot_ble_scn.h']]], + ['ciot_5fble_5fscn_5fstate_5factive_40',['CIOT_BLE_SCN_STATE_ACTIVE',['../ciot__ble__scn__types_8h.html#a7c7da8f1c7400acef0666d271a0cae3ca580d5606561bd5a7bf6ece413c1d7216',1,'ciot_ble_scn_types.h']]], + ['ciot_5fble_5fscn_5fstate_5fidle_41',['CIOT_BLE_SCN_STATE_IDLE',['../ciot__ble__scn__types_8h.html#a7c7da8f1c7400acef0666d271a0cae3cab5e38affddd56ac8693c35fe87d3bd43',1,'ciot_ble_scn_types.h']]], + ['ciot_5fble_5fscn_5fstate_5fpassive_42',['CIOT_BLE_SCN_STATE_PASSIVE',['../ciot__ble__scn__types_8h.html#a7c7da8f1c7400acef0666d271a0cae3ca5cc9b57b36fc4add0d1468183936a625',1,'ciot_ble_scn_types.h']]], + ['ciot_5fble_5fscn_5fstate_5ft_43',['ciot_ble_scn_state_t',['../ciot__ble__scn__types_8h.html#a7c7da8f1c7400acef0666d271a0cae3c',1,'ciot_ble_scn_types.h']]], + ['ciot_5fble_5fscn_5fstatus_5fmsg_5ft_44',['ciot_ble_scn_status_msg_t',['../structciot__ble__scn__status__msg__t.html',1,'']]], + ['ciot_5fble_5fscn_5fstatus_5ft_45',['ciot_ble_scn_status_t',['../structciot__ble__scn__status__t.html',1,'']]], + ['ciot_5fble_5fscn_5fstop_46',['ciot_ble_scn_stop',['../ciot__ble__scn_8h.html#acb4c25e68c3ad8a3b3ca67dbcb6e89f2',1,'ciot_ble_scn.h']]], + ['ciot_5fble_5fscn_5ft_47',['ciot_ble_scn_t',['../ciot__ble__scn_8h.html#a2bd73555d4a7af0131f01560fb39e895',1,'ciot_ble_scn.h']]], + ['ciot_5fble_5fscn_5ftypes_2eh_48',['ciot_ble_scn_types.h',['../ciot__ble__scn__types_8h.html',1,'']]], + ['ciot_5fble_5fsend_5fdata_49',['ciot_ble_send_data',['../ciot__ble_8h.html#a4a6fad82ac94edb3e85476136784ae92',1,'ciot_ble.h']]], + ['ciot_5fble_5fset_5fifaces_50',['ciot_ble_set_ifaces',['../ciot__ble_8h.html#aa7915a6de7995a7b3ddb3fad62594ec4',1,'ciot_ble.h']]], + ['ciot_5fble_5fset_5fmac_51',['ciot_ble_set_mac',['../ciot__ble_8h.html#a7d43433b80be91b2ee1be13c7c26ea78',1,'ciot_ble.h']]], + ['ciot_5fble_5fstart_52',['ciot_ble_start',['../ciot__ble_8h.html#a03de82cf82dab2814fa4315b82fdb62c',1,'ciot_ble.h']]], + ['ciot_5fble_5fstate_5fidle_53',['CIOT_BLE_STATE_IDLE',['../ciot__ble__types_8h.html#a01d21e1f3012f0fb9ea61d858db2359ea2431d9b069b261be8bcf1856485b4c1c',1,'ciot_ble_types.h']]], + ['ciot_5fble_5fstate_5fstarted_54',['CIOT_BLE_STATE_STARTED',['../ciot__ble__types_8h.html#a01d21e1f3012f0fb9ea61d858db2359eae825183bbbe4671599dac35618a90d78',1,'ciot_ble_types.h']]], + ['ciot_5fble_5fstate_5ft_55',['ciot_ble_state_t',['../ciot__ble__types_8h.html#a01d21e1f3012f0fb9ea61d858db2359e',1,'ciot_ble_types.h']]], + ['ciot_5fble_5fstatus_5fmsg_5ft_56',['ciot_ble_status_msg_t',['../structciot__ble__status__msg__t.html',1,'']]], + ['ciot_5fble_5fstatus_5ft_57',['ciot_ble_status_t',['../structciot__ble__status__t.html',1,'']]], + ['ciot_5fble_5fstop_58',['ciot_ble_stop',['../ciot__ble_8h.html#a89c4a8b8eac676407cebe70daa7bbdee',1,'ciot_ble.h']]], + ['ciot_5fble_5ft_59',['ciot_ble_t',['../ciot__ble_8h.html#a04af8d5e1d4ca0f72ceacb6e313d9087',1,'ciot_ble.h']]], + ['ciot_5fble_5ftask_60',['ciot_ble_task',['../ciot__ble_8h.html#a3c3fffa1a77cc81312c4c81de699ef6b',1,'ciot_ble.h']]], + ['ciot_5fble_5ftypes_2eh_61',['ciot_ble_types.h',['../ciot__ble__types_8h.html',1,'']]], + ['ciot_5fbridge_2eh_62',['ciot_bridge.h',['../ciot__bridge_8h.html',1,'']]], + ['ciot_5fbridge_5fcfg_5ft_63',['ciot_bridge_cfg_t',['../structciot__bridge__cfg__t.html',1,'']]], + ['ciot_5fbridge_5fdata_5fu_64',['ciot_bridge_data_u',['../unionciot__bridge__data__u.html',1,'']]], + ['ciot_5fbridge_5fget_5ftarget_5fid_65',['ciot_bridge_get_target_id',['../ciot__bridge_8h.html#a3f22ac2c01ff5139c3d5206033259559',1,'ciot_bridge.h']]], + ['ciot_5fbridge_5fnew_66',['ciot_bridge_new',['../ciot__bridge_8h.html#a0dc495dc95e68b21d471d2f4d2c85a23',1,'ciot_bridge.h']]], + ['ciot_5fbridge_5fnull_5ftarget_67',['CIOT_BRIDGE_NULL_TARGET',['../ciot__bridge_8h.html#a3224a430fb71dfab6696211645a53774',1,'ciot_bridge.h']]], + ['ciot_5fbridge_5fprocess_5freq_68',['ciot_bridge_process_req',['../ciot__bridge_8h.html#af52f86ee9e077ab344d6d4e67657a4ec',1,'ciot_bridge.h']]], + ['ciot_5fbridge_5freq_5fdata_5fu_69',['ciot_bridge_req_data_u',['../unionciot__bridge__req__data__u.html',1,'']]], + ['ciot_5fbridge_5freq_5ft_70',['ciot_bridge_req_t',['../structciot__bridge__req__t.html',1,'']]], + ['ciot_5fbridge_5freq_5ftype_5ft_71',['ciot_bridge_req_type_t',['../ciot__bridge__types_8h.html#a2cf15072a075c300521fd081fe207f13',1,'ciot_bridge_types.h']]], + ['ciot_5fbridge_5freq_5funknown_72',['CIOT_BRIDGE_REQ_UNKNOWN',['../ciot__bridge__types_8h.html#a2cf15072a075c300521fd081fe207f13a91947281c4503d5af190b3c39478e32c',1,'ciot_bridge_types.h']]], + ['ciot_5fbridge_5fsend_5fdata_73',['ciot_bridge_send_data',['../ciot__bridge_8h.html#ab3d916e4bbdd0b6a4b5c8504eaa4a4c6',1,'ciot_bridge.h']]], + ['ciot_5fbridge_5fstart_74',['ciot_bridge_start',['../ciot__bridge_8h.html#a2ab34c59e732cf95f9f618d74a7fda9c',1,'ciot_bridge.h']]], + ['ciot_5fbridge_5fstate_5ferror_75',['CIOT_BRIDGE_STATE_ERROR',['../ciot__bridge__types_8h.html#a51ac52a0b49fa4695a6fe70fcdbee55da23ccfff2dd7b803c7221b137c040959b',1,'ciot_bridge_types.h']]], + ['ciot_5fbridge_5fstate_5fidle_76',['CIOT_BRIDGE_STATE_IDLE',['../ciot__bridge__types_8h.html#a51ac52a0b49fa4695a6fe70fcdbee55da7c87588279038f2adb2e81c7fa46c6cf',1,'ciot_bridge_types.h']]], + ['ciot_5fbridge_5fstate_5fstarted_77',['CIOT_BRIDGE_STATE_STARTED',['../ciot__bridge__types_8h.html#a51ac52a0b49fa4695a6fe70fcdbee55da02411a74aaac3fd6dad4ec51736e160c',1,'ciot_bridge_types.h']]], + ['ciot_5fbridge_5fstate_5ft_78',['ciot_bridge_state_t',['../ciot__bridge__types_8h.html#a51ac52a0b49fa4695a6fe70fcdbee55d',1,'ciot_bridge_types.h']]], + ['ciot_5fbridge_5fstatus_5fmsg_5ft_79',['ciot_bridge_status_msg_t',['../structciot__bridge__status__msg__t.html',1,'']]], + ['ciot_5fbridge_5fstatus_5ft_80',['ciot_bridge_status_t',['../structciot__bridge__status__t.html',1,'']]], + ['ciot_5fbridge_5fstop_81',['ciot_bridge_stop',['../ciot__bridge_8h.html#a445c0d9d20d8ebd685a1285b548d7b39',1,'ciot_bridge.h']]], + ['ciot_5fbridge_5ft_82',['ciot_bridge_t',['../ciot__bridge_8h.html#a7888ef6aa3b9be435a47e5658c32af8c',1,'ciot_bridge.h']]], + ['ciot_5fbridge_5ftypes_2eh_83',['ciot_bridge_types.h',['../ciot__bridge__types_8h.html',1,'']]], + ['ciot_5fcfg_84',['ciot_cfg',['../structciot__cfg.html',1,'']]], + ['ciot_5fcfg_5ft_85',['ciot_cfg_t',['../ciot_8h.html#ad09537300f192bf4861b07202f6ed5fe',1,'ciot.h']]], + ['ciot_5fcommon_5ftypes_2eh_86',['ciot_common_types.h',['../ciot__common__types_8h.html',1,'']]], + ['ciot_5fconfig_2eh_87',['ciot_config.h',['../ciot__config_8h.html',1,'']]], + ['ciot_5fconfig_5fapp_5fver_88',['CIOT_CONFIG_APP_VER',['../ciot__config_8h.html#a186bc96636ade48237ab070f06addc99',1,'ciot_config.h']]], + ['ciot_5fconfig_5feth_89',['CIOT_CONFIG_ETH',['../ciot__default_8h.html#a7a33c55b1ce3269738b939eeb19cb71b',1,'ciot_default.h']]], + ['ciot_5fconfig_5ffeature_5fble_5fscn_90',['CIOT_CONFIG_FEATURE_BLE_SCN',['../ciot__config_8h.html#a6dc948a124871514166a7af7e6183803',1,'ciot_config.h']]], + ['ciot_5fconfig_5ffeature_5fbridge_91',['CIOT_CONFIG_FEATURE_BRIDGE',['../ciot__config_8h.html#a9c1d5b23b81041e39ec83946d85e565d',1,'ciot_config.h']]], + ['ciot_5fconfig_5ffeature_5fdfu_92',['CIOT_CONFIG_FEATURE_DFU',['../ciot__config_8h.html#a251d01d6a87722ff3112f7c3e19eb675',1,'ciot_config.h']]], + ['ciot_5fconfig_5ffeature_5fethernet_93',['CIOT_CONFIG_FEATURE_ETHERNET',['../ciot__config_8h.html#aff28490be76958e49cbc2b2ef1e0eb20',1,'ciot_config.h']]], + ['ciot_5fconfig_5ffeature_5fhttpc_94',['CIOT_CONFIG_FEATURE_HTTPC',['../ciot__config_8h.html#abd191e184bd878220a70d25c4ad08abf',1,'ciot_config.h']]], + ['ciot_5fconfig_5ffeature_5fhttps_95',['CIOT_CONFIG_FEATURE_HTTPS',['../ciot__config_8h.html#a8df4e58b5652a4de40cd958e782df114',1,'ciot_config.h']]], + ['ciot_5fconfig_5ffeature_5fmqttc_96',['CIOT_CONFIG_FEATURE_MQTTC',['../ciot__config_8h.html#a595e79e3b6eb41743c2ca97fbd867929',1,'ciot_config.h']]], + ['ciot_5fconfig_5ffeature_5fntp_97',['CIOT_CONFIG_FEATURE_NTP',['../ciot__config_8h.html#a4d3353714ceeeb9fb3c9194e3836f0fd',1,'ciot_config.h']]], + ['ciot_5fconfig_5ffeature_5fota_98',['CIOT_CONFIG_FEATURE_OTA',['../ciot__config_8h.html#a4c4a996f1746ebd2d7346e64a93f69f3',1,'ciot_config.h']]], + ['ciot_5fconfig_5ffeature_5fserializer_99',['CIOT_CONFIG_FEATURE_SERIALIZER',['../ciot__config_8h.html#a9b9559cad470869eca1c6c6a8210d9cd',1,'ciot_config.h']]], + ['ciot_5fconfig_5ffeature_5fstorage_100',['CIOT_CONFIG_FEATURE_STORAGE',['../ciot__config_8h.html#a0fcb171a0d3b1eac51cf9bfa90d906cc',1,'ciot_config.h']]], + ['ciot_5fconfig_5ffeature_5fsystem_101',['CIOT_CONFIG_FEATURE_SYSTEM',['../ciot__config_8h.html#ad140ac0bec42207439a532c0ad082366',1,'ciot_config.h']]], + ['ciot_5fconfig_5ffeature_5ftimer_102',['CIOT_CONFIG_FEATURE_TIMER',['../ciot__config_8h.html#afb001a0ca89034fb9080542d74d24680',1,'ciot_config.h']]], + ['ciot_5fconfig_5ffeature_5fuart_103',['CIOT_CONFIG_FEATURE_UART',['../ciot__config_8h.html#a02f813de273571624eb6c96c1899f757',1,'ciot_config.h']]], + ['ciot_5fconfig_5ffeature_5fusb_104',['CIOT_CONFIG_FEATURE_USB',['../ciot__config_8h.html#a4f43c64c17f3778334fd48cee3edf44b',1,'ciot_config.h']]], + ['ciot_5fconfig_5ffeature_5fwifi_105',['CIOT_CONFIG_FEATURE_WIFI',['../ciot__config_8h.html#aa2894556fa44adea617f243356083f21',1,'ciot_config.h']]], + ['ciot_5fconfig_5fhardware_5fname_106',['CIOT_CONFIG_HARDWARE_NAME',['../ciot__config_8h.html#a246a5924c487a75e59a9e7a3d3dc971b',1,'ciot_config.h']]], + ['ciot_5fconfig_5fhttpc_107',['CIOT_CONFIG_HTTPC',['../ciot__default_8h.html#aef3854df37260fcf01c87b0acabf03dd',1,'ciot_default.h']]], + ['ciot_5fconfig_5fhttpc_5fmethod_108',['CIOT_CONFIG_HTTPC_METHOD',['../ciot__default_8h.html#abf9505c4cab01e148100b048a372663f',1,'ciot_default.h']]], + ['ciot_5fconfig_5fhttpc_5ftimeout_109',['CIOT_CONFIG_HTTPC_TIMEOUT',['../ciot__default_8h.html#ab26205cfa1af914695c961fe6a7c37f7',1,'ciot_default.h']]], + ['ciot_5fconfig_5fhttpc_5ftransport_110',['CIOT_CONFIG_HTTPC_TRANSPORT',['../ciot__default_8h.html#ae166c8150eec3860c86266fbafa30164',1,'ciot_default.h']]], + ['ciot_5fconfig_5fhttpc_5furl_111',['CIOT_CONFIG_HTTPC_URL',['../ciot__default_8h.html#ae5e243b358058e660e46de4d92ec23dd',1,'ciot_default.h']]], + ['ciot_5fconfig_5fhttps_5faddress_112',['CIOT_CONFIG_HTTPS_ADDRESS',['../ciot__default_8h.html#a1a18adba17f39adbcca041afd38dc988',1,'ciot_default.h']]], + ['ciot_5fconfig_5fhttps_5fport_113',['CIOT_CONFIG_HTTPS_PORT',['../ciot__default_8h.html#a67e3c6ac14d049d86edac23aeae48833',1,'ciot_default.h']]], + ['ciot_5fconfig_5fhttps_5froute_114',['CIOT_CONFIG_HTTPS_ROUTE',['../ciot__default_8h.html#ab7eacba51c8ae0c580dbe9fbf5996cc1',1,'ciot_default.h']]], + ['ciot_5fconfig_5flog_5flevel_115',['CIOT_CONFIG_LOG_LEVEL',['../ciot__config_8h.html#aedfdd865ecfa805d726fb9eca008c4b7',1,'ciot_config.h']]], + ['ciot_5fconfig_5fmessage_5flen_116',['CIOT_CONFIG_MESSAGE_LEN',['../ciot__config_8h.html#a2a51fc859e13b6f8377f6675583c6dd1',1,'ciot_config.h']]], + ['ciot_5fconfig_5fmessage_5fpayload_5flen_117',['CIOT_CONFIG_MESSAGE_PAYLOAD_LEN',['../ciot__config_8h.html#a2363f926f2104cad3b5cd5f1b1699f44',1,'ciot_config.h']]], + ['ciot_5fconfig_5fmqtt_5fclient_5fid_5flen_118',['CIOT_CONFIG_MQTT_CLIENT_ID_LEN',['../ciot__mqttc__types_8h.html#a6d8667859c659ff145c1ff7cc6a2296e',1,'ciot_mqttc_types.h']]], + ['ciot_5fconfig_5fmqtt_5fmsg_5flen_119',['CIOT_CONFIG_MQTT_MSG_LEN',['../ciot__mqttc__types_8h.html#a52eaecd264e5b7ce58372236bc489086',1,'ciot_mqttc_types.h']]], + ['ciot_5fconfig_5fmqtt_5fpass_5flen_120',['CIOT_CONFIG_MQTT_PASS_LEN',['../ciot__mqttc__types_8h.html#ac313545fb49c7e509b76bf009b915b50',1,'ciot_mqttc_types.h']]], + ['ciot_5fconfig_5fmqtt_5ftopic_5flen_121',['CIOT_CONFIG_MQTT_TOPIC_LEN',['../ciot__mqttc__types_8h.html#af67c4f0b899c64fc5cb38c9e920abde6',1,'ciot_mqttc_types.h']]], + ['ciot_5fconfig_5fmqtt_5furl_5flen_122',['CIOT_CONFIG_MQTT_URL_LEN',['../ciot__mqttc__types_8h.html#aeb924d17fcd585c2612e41f7f4ad9a1f',1,'ciot_mqttc_types.h']]], + ['ciot_5fconfig_5fmqtt_5fuser_5flen_123',['CIOT_CONFIG_MQTT_USER_LEN',['../ciot__mqttc__types_8h.html#a2612e7ea304728eebf26c76ba9a4935e',1,'ciot_mqttc_types.h']]], + ['ciot_5fconfig_5fmqttc_5fpass_124',['CIOT_CONFIG_MQTTC_PASS',['../ciot__default_8h.html#ac7f8eb636e1dfd5e75ca8a2ccf174981',1,'ciot_default.h']]], + ['ciot_5fconfig_5fmqttc_5fport_125',['CIOT_CONFIG_MQTTC_PORT',['../ciot__default_8h.html#a04e894147896f6ba01229a76c6c1f976',1,'ciot_default.h']]], + ['ciot_5fconfig_5fmqttc_5fqos_126',['CIOT_CONFIG_MQTTC_QOS',['../ciot__default_8h.html#a66e76a6c3a0b20620bee393047c462e6',1,'ciot_default.h']]], + ['ciot_5fconfig_5fmqttc_5ftopic_5fb2d_127',['CIOT_CONFIG_MQTTC_TOPIC_B2D',['../ciot__default_8h.html#a0dad743975d309bddcfe83e7db9f4c43',1,'ciot_default.h']]], + ['ciot_5fconfig_5fmqttc_5ftopic_5fd2b_128',['CIOT_CONFIG_MQTTC_TOPIC_D2B',['../ciot__default_8h.html#a9835f697325cb7920259cad52e13b0a1',1,'ciot_default.h']]], + ['ciot_5fconfig_5fmqttc_5furl_129',['CIOT_CONFIG_MQTTC_URL',['../ciot__default_8h.html#a3ae1f5c8551422aca407ba0e0d7d051a',1,'ciot_default.h']]], + ['ciot_5fconfig_5fmqttc_5fuser_130',['CIOT_CONFIG_MQTTC_USER',['../ciot__default_8h.html#a0bb103892cbaabdd15fb9f93ef6ebfb8',1,'ciot_default.h']]], + ['ciot_5fconfig_5fntp_5fop_5fmode_131',['CIOT_CONFIG_NTP_OP_MODE',['../ciot__default_8h.html#a33bf5b2e0676207bb01e529a4adcf59e',1,'ciot_default.h']]], + ['ciot_5fconfig_5fntp_5fserver1_132',['CIOT_CONFIG_NTP_SERVER1',['../ciot__default_8h.html#ad52d4acc5014fec93b596267a4267489',1,'ciot_default.h']]], + ['ciot_5fconfig_5fntp_5fserver2_133',['CIOT_CONFIG_NTP_SERVER2',['../ciot__default_8h.html#a7e2f6267fdbe83b93e2220a3733f9774',1,'ciot_default.h']]], + ['ciot_5fconfig_5fntp_5fserver3_134',['CIOT_CONFIG_NTP_SERVER3',['../ciot__default_8h.html#ade7f6e32e02db936bfd97768500c7c74',1,'ciot_default.h']]], + ['ciot_5fconfig_5fntp_5fservers_5fcount_135',['CIOT_CONFIG_NTP_SERVERS_COUNT',['../ciot__default_8h.html#ab853f3aa6a7e0229c80b1f5a4fae0fbf',1,'CIOT_CONFIG_NTP_SERVERS_COUNT: ciot_default.h'],['../ciot__ntp__types_8h.html#ab853f3aa6a7e0229c80b1f5a4fae0fbf',1,'CIOT_CONFIG_NTP_SERVERS_COUNT: ciot_ntp_types.h']]], + ['ciot_5fconfig_5fntp_5fsync_5finterval_136',['CIOT_CONFIG_NTP_SYNC_INTERVAL',['../ciot__default_8h.html#ab4fbb783d249bcf33ad25052b6072474',1,'ciot_default.h']]], + ['ciot_5fconfig_5fntp_5fsync_5fmode_137',['CIOT_CONFIG_NTP_SYNC_MODE',['../ciot__default_8h.html#a81124436ceaf4bdbf7fd16ec51729aa7',1,'ciot_default.h']]], + ['ciot_5fconfig_5fota_5fbuf_5fsize_138',['CIOT_CONFIG_OTA_BUF_SIZE',['../ciot__ota_8h.html#af99d5bbe46413966124b473f86fb852d',1,'ciot_ota.h']]], + ['ciot_5fconfig_5fota_5ftask_5fcore_5fid_139',['CIOT_CONFIG_OTA_TASK_CORE_ID',['../ciot__ota_8h.html#a3b57f51588da0ff44484f11d1f27a161',1,'ciot_ota.h']]], + ['ciot_5fconfig_5fota_5ftask_5fpriority_140',['CIOT_CONFIG_OTA_TASK_PRIORITY',['../ciot__ota_8h.html#adb91c2dbebfce89f1528cf9be880599e',1,'ciot_ota.h']]], + ['ciot_5fconfig_5fota_5ftask_5fstack_5fsize_141',['CIOT_CONFIG_OTA_TASK_STACK_SIZE',['../ciot__ota_8h.html#a58196a71cb679cde4bd1e5eea4532721',1,'ciot_ota.h']]], + ['ciot_5fconfig_5fstorage_142',['CIOT_CONFIG_STORAGE',['../ciot__default_8h.html#ab398686897078b551d637f058ec072f7',1,'ciot_default.h']]], + ['ciot_5fconfig_5fstorage_5ftype_143',['CIOT_CONFIG_STORAGE_TYPE',['../ciot__default_8h.html#ac9389de4857fca429528b43c0e70bc08',1,'ciot_default.h']]], + ['ciot_5fconfig_5fsys_144',['CIOT_CONFIG_SYS',['../ciot__default_8h.html#ad1c730d9022fce47870a8de547c63721',1,'ciot_default.h']]], + ['ciot_5fconfig_5ftcp_145',['CIOT_CONFIG_TCP',['../ciot__default_8h.html#a59fb15004027f7b6a0be6bda1b0568b1',1,'ciot_default.h']]], + ['ciot_5fconfig_5ftcp_5fdhcp_146',['CIOT_CONFIG_TCP_DHCP',['../ciot__default_8h.html#abe942f163ef66924c29e63adb6e91cc3',1,'ciot_default.h']]], + ['ciot_5fconfig_5ftcp_5fdns_147',['CIOT_CONFIG_TCP_DNS',['../ciot__default_8h.html#aa196f69c014910ca0e0f37d44b83ad30',1,'ciot_default.h']]], + ['ciot_5fconfig_5ftcp_5fgateway_148',['CIOT_CONFIG_TCP_GATEWAY',['../ciot__default_8h.html#abc5eb2049e9aab488e1bb1846c71b481',1,'ciot_default.h']]], + ['ciot_5fconfig_5ftcp_5fip_149',['CIOT_CONFIG_TCP_IP',['../ciot__default_8h.html#a26d8ac3e34dcb0faaf41977b7dc54607',1,'ciot_default.h']]], + ['ciot_5fconfig_5ftcp_5fmask_150',['CIOT_CONFIG_TCP_MASK',['../ciot__default_8h.html#ab361b51c2b4bb8324a0767a6680cab25',1,'ciot_default.h']]], + ['ciot_5fconfig_5fuart_151',['CIOT_CONFIG_UART',['../ciot__default_8h.html#a0aa6817a5c88e8290142061b6b933252',1,'ciot_default.h']]], + ['ciot_5fconfig_5fuart_5fbaud_5frate_152',['CIOT_CONFIG_UART_BAUD_RATE',['../ciot__default_8h.html#aae6ed2cc1f62936138b7b12cb78eab19',1,'ciot_default.h']]], + ['ciot_5fconfig_5fuart_5fbridge_5fmode_153',['CIOT_CONFIG_UART_BRIDGE_MODE',['../ciot__default_8h.html#ac64f70fbc40557ffc7f0f6c9d4aed430',1,'ciot_default.h']]], + ['ciot_5fconfig_5fuart_5fcts_5fpin_154',['CIOT_CONFIG_UART_CTS_PIN',['../ciot__default_8h.html#a39b5dff57834d4a9f00b09ff9d7e0586',1,'ciot_default.h']]], + ['ciot_5fconfig_5fuart_5fdtr_155',['CIOT_CONFIG_UART_DTR',['../ciot__default_8h.html#a5e191db9399c301be511e6024b2f402d',1,'ciot_default.h']]], + ['ciot_5fconfig_5fuart_5fflow_5fcontrol_156',['CIOT_CONFIG_UART_FLOW_CONTROL',['../ciot__default_8h.html#a0b574bd3271269a00ef9a3364564a650',1,'ciot_default.h']]], + ['ciot_5fconfig_5fuart_5fnum_157',['CIOT_CONFIG_UART_NUM',['../ciot__default_8h.html#af9d6ddc888416ceda770bd6ba0666adf',1,'ciot_default.h']]], + ['ciot_5fconfig_5fuart_5fparity_158',['CIOT_CONFIG_UART_PARITY',['../ciot__default_8h.html#ad5a0b532b36ce2e64548273d4694de52',1,'ciot_default.h']]], + ['ciot_5fconfig_5fuart_5fqueue_5fsize_159',['CIOT_CONFIG_UART_QUEUE_SIZE',['../ciot__uart_8h.html#a68ff35a9890306827119c13486c00137',1,'ciot_uart.h']]], + ['ciot_5fconfig_5fuart_5frts_5fpin_160',['CIOT_CONFIG_UART_RTS_PIN',['../ciot__default_8h.html#ac915c58485a09a470ab105dcd7fdb438',1,'ciot_default.h']]], + ['ciot_5fconfig_5fuart_5frx_5fbuf_5fsize_161',['CIOT_CONFIG_UART_RX_BUF_SIZE',['../ciot__uart_8h.html#ab3755cf621fe54476a2505e7da26fc01',1,'ciot_uart.h']]], + ['ciot_5fconfig_5fuart_5frx_5fpin_162',['CIOT_CONFIG_UART_RX_PIN',['../ciot__default_8h.html#a47a6c4735b406987793ff61a3748c356',1,'ciot_default.h']]], + ['ciot_5fconfig_5fuart_5ftask_5fcore_163',['CIOT_CONFIG_UART_TASK_CORE',['../ciot__uart_8h.html#a797dec8616d7fdc049d273a4d1eb967b',1,'ciot_uart.h']]], + ['ciot_5fconfig_5fuart_5ftask_5fprio_164',['CIOT_CONFIG_UART_TASK_PRIO',['../ciot__uart_8h.html#a2fa421cf8f26edbbb9c809761788e3f6',1,'ciot_uart.h']]], + ['ciot_5fconfig_5fuart_5ftask_5fsize_165',['CIOT_CONFIG_UART_TASK_SIZE',['../ciot__uart_8h.html#ad58f30c8c839283b62501b16212adcc7',1,'ciot_uart.h']]], + ['ciot_5fconfig_5fuart_5ftx_5fbuf_5fsize_166',['CIOT_CONFIG_UART_TX_BUF_SIZE',['../ciot__uart_8h.html#af725b689143a19b64eac902151957d69',1,'ciot_uart.h']]], + ['ciot_5fconfig_5fuart_5ftx_5fpin_167',['CIOT_CONFIG_UART_TX_PIN',['../ciot__default_8h.html#afe80a6e24ff36484761b8a0740e21cd3',1,'ciot_default.h']]], + ['ciot_5fconfig_5fwifi_5fap_168',['CIOT_CONFIG_WIFI_AP',['../ciot__default_8h.html#a27de0c03a642d79eb31e712994646733',1,'ciot_default.h']]], + ['ciot_5fconfig_5fwifi_5fap_5fauth_169',['CIOT_CONFIG_WIFI_AP_AUTH',['../ciot__wifi_8h.html#a42b035be0aacdd70d63a87058414db71',1,'ciot_wifi.h']]], + ['ciot_5fconfig_5fwifi_5fap_5fmax_5fconn_170',['CIOT_CONFIG_WIFI_AP_MAX_CONN',['../ciot__wifi_8h.html#a28cc7b020ea752969183284f9e2f4ddb',1,'ciot_wifi.h']]], + ['ciot_5fconfig_5fwifi_5fap_5fpassword_171',['CIOT_CONFIG_WIFI_AP_PASSWORD',['../ciot__default_8h.html#afdccac291d2c1de6425402fec83189cf',1,'ciot_default.h']]], + ['ciot_5fconfig_5fwifi_5fap_5fssid_172',['CIOT_CONFIG_WIFI_AP_SSID',['../ciot__default_8h.html#a7f79abe5ea5f7e3260843192069bdcaa',1,'ciot_default.h']]], + ['ciot_5fconfig_5fwifi_5fap_5ftcp_173',['CIOT_CONFIG_WIFI_AP_TCP',['../ciot__default_8h.html#a82cca16f86e1276f9a325ebbd1ec5d68',1,'ciot_default.h']]], + ['ciot_5fconfig_5fwifi_5fsta_174',['CIOT_CONFIG_WIFI_STA',['../ciot__default_8h.html#a7c09f75e4ebc749a5c225c760c2befde',1,'ciot_default.h']]], + ['ciot_5fconfig_5fwifi_5fsta_5fpassword_175',['CIOT_CONFIG_WIFI_STA_PASSWORD',['../ciot__default_8h.html#a89cc8bb6906a26e085cd6d79e881717f',1,'ciot_default.h']]], + ['ciot_5fconfig_5fwifi_5fsta_5fssid_176',['CIOT_CONFIG_WIFI_STA_SSID',['../ciot__default_8h.html#a69173d99aec57142ba91edc18300f781',1,'ciot_default.h']]], + ['ciot_5fconfig_5fwifi_5fsta_5ftcp_177',['CIOT_CONFIG_WIFI_STA_TCP',['../ciot__default_8h.html#a195751f0292e7d1046fa7a4b08e5fc23',1,'ciot_default.h']]], + ['ciot_5fcrc_2eh_178',['ciot_crc.h',['../ciot__crc_8h.html',1,'']]], + ['ciot_5fcrc16_5fbe_179',['ciot_crc16_be',['../ciot__crc_8h.html#a5d59ce0d0ffe65eaf7944d695bde59e3',1,'ciot_crc.h']]], + ['ciot_5fcrc16_5fle_180',['ciot_crc16_le',['../ciot__crc_8h.html#a73a6ce791d6f000bad7ee2eedd0d8350',1,'ciot_crc.h']]], + ['ciot_5fcrc32_5fbe_181',['ciot_crc32_be',['../ciot__crc_8h.html#aeed9b1c0c84b16c8e4e4b65be0787ae4',1,'ciot_crc.h']]], + ['ciot_5fcrc32_5fle_182',['ciot_crc32_le',['../ciot__crc_8h.html#ad020e1771e2ff7a25a068ccc1b3d1331',1,'ciot_crc.h']]], + ['ciot_5fcrc8_5fbe_183',['ciot_crc8_be',['../ciot__crc_8h.html#ae831c4d3ed93d649df5ed07e5b9d1c46',1,'ciot_crc.h']]], + ['ciot_5fcrc8_5fle_184',['ciot_crc8_le',['../ciot__crc_8h.html#a39da2d632baf462933f90f3fbe7a63e7',1,'ciot_crc.h']]], + ['ciot_5fdata_5fmodel_5fcfg_5ft_185',['ciot_data_model_cfg_t',['../structciot__data__model__cfg__t.html',1,'']]], + ['ciot_5fdata_5fmodel_5fdata_5fu_186',['ciot_data_model_data_u',['../unionciot__data__model__data__u.html',1,'']]], + ['ciot_5fdata_5fmodel_5freq_5fdata_5fu_187',['ciot_data_model_req_data_u',['../unionciot__data__model__req__data__u.html',1,'']]], + ['ciot_5fdata_5fmodel_5freq_5ft_188',['ciot_data_model_req_t',['../structciot__data__model__req__t.html',1,'']]], + ['ciot_5fdata_5fmodel_5freq_5ftype_5ft_189',['ciot_data_model_req_type_t',['../ciot__data__model__types_8h.html#a07451ab717eebb18aa8bd2b63252454c',1,'ciot_data_model_types.h']]], + ['ciot_5fdata_5fmodel_5freq_5funknown_190',['CIOT_DATA_MODEL_REQ_UNKNOWN',['../ciot__data__model__types_8h.html#a07451ab717eebb18aa8bd2b63252454ca7c15c82a2c513452266ef7531a5d1eda',1,'ciot_data_model_types.h']]], + ['ciot_5fdata_5fmodel_5fstate_5fidle_191',['CIOT_DATA_MODEL_STATE_IDLE',['../ciot__data__model__types_8h.html#a08dca9e6529c70ebf13cda514ebbf05aa3d6e53393cdb43053723613fd71b0be5',1,'ciot_data_model_types.h']]], + ['ciot_5fdata_5fmodel_5fstate_5ft_192',['ciot_data_model_state_t',['../ciot__data__model__types_8h.html#a08dca9e6529c70ebf13cda514ebbf05a',1,'ciot_data_model_types.h']]], + ['ciot_5fdata_5fmodel_5fstatus_5ft_193',['ciot_data_model_status_t',['../structciot__data__model__status__t.html',1,'']]], + ['ciot_5fdata_5fmodel_5ftypes_2eh_194',['ciot_data_model_types.h',['../ciot__data__model__types_8h.html',1,'']]], + ['ciot_5fdata_5fu_195',['ciot_data_u',['../unionciot__data__u.html',1,'']]], + ['ciot_5fdefault_2eh_196',['ciot_default.h',['../ciot__default_8h.html',1,'']]], + ['ciot_5fdelete_5fiface_5fcfg_197',['ciot_delete_iface_cfg',['../ciot_8h.html#a2de16f3df26c78b69f64cf6e20050d4e',1,'ciot.h']]], + ['ciot_5fdfu_2eh_198',['ciot_dfu.h',['../ciot__dfu_8h.html',1,'']]], + ['ciot_5fdfu_5fcfg_5ft_199',['ciot_dfu_cfg_t',['../structciot__dfu__cfg__t.html',1,'']]], + ['ciot_5fdfu_5fdata_5fu_200',['ciot_dfu_data_u',['../unionciot__dfu__data__u.html',1,'']]], + ['ciot_5fdfu_5fevent_5fid_201',['ciot_dfu_event_id',['../ciot__dfu_8h.html#a20fffb74034c28e3c7f56b2466d379fa',1,'ciot_dfu.h']]], + ['ciot_5fdfu_5fevent_5fid_5ft_202',['ciot_dfu_event_id_t',['../ciot__dfu_8h.html#a05b6b5e8d94559756412865daf115077',1,'ciot_dfu.h']]], + ['ciot_5fdfu_5fevent_5fstate_5fchanged_203',['CIOT_DFU_EVENT_STATE_CHANGED',['../ciot__dfu_8h.html#a20fffb74034c28e3c7f56b2466d379faa120fde02407033deee0ab692a65a7902',1,'ciot_dfu.h']]], + ['ciot_5fdfu_5fnew_204',['ciot_dfu_new',['../ciot__dfu_8h.html#a6552eb94e759a22b9fd3e3da8ed1d755',1,'ciot_dfu.h']]], + ['ciot_5fdfu_5fprocess_5freq_205',['ciot_dfu_process_req',['../ciot__dfu_8h.html#ad40861d034c57576a1bf3aaa3fbc2d9b',1,'ciot_dfu.h']]], + ['ciot_5fdfu_5freq_5fdata_5fu_206',['ciot_dfu_req_data_u',['../unionciot__dfu__req__data__u.html',1,'']]], + ['ciot_5fdfu_5freq_5fsend_5ffirmware_207',['CIOT_DFU_REQ_SEND_FIRMWARE',['../ciot__dfu__types_8h.html#a844cd7a14810224e2865786b830ec572a36e2397f2b518b59d8ee9b8d5dada729',1,'ciot_dfu_types.h']]], + ['ciot_5fdfu_5freq_5ft_208',['ciot_dfu_req_t',['../structciot__dfu__req__t.html',1,'']]], + ['ciot_5fdfu_5freq_5ftype_5ft_209',['ciot_dfu_req_type_t',['../ciot__dfu__types_8h.html#a844cd7a14810224e2865786b830ec572',1,'ciot_dfu_types.h']]], + ['ciot_5fdfu_5freq_5funknown_210',['CIOT_DFU_REQ_UNKNOWN',['../ciot__dfu__types_8h.html#a844cd7a14810224e2865786b830ec572a5f70da81c47429d85820f89a4c161485',1,'ciot_dfu_types.h']]], + ['ciot_5fdfu_5fsend_5fdata_211',['ciot_dfu_send_data',['../ciot__dfu_8h.html#a586e31131b7ab4e0acb3df32122a4564',1,'ciot_dfu.h']]], + ['ciot_5fdfu_5fstart_212',['ciot_dfu_start',['../ciot__dfu_8h.html#ab157cc81dbd5e4045ac42b087f200b56',1,'ciot_dfu.h']]], + ['ciot_5fdfu_5fstate_5fcompleted_213',['CIOT_DFU_STATE_COMPLETED',['../ciot__dfu__types_8h.html#a10bd8bfc4bc24520f6fe74ffa7d60365a393d8a9161cf6ac9b5c6f20a31a46ed9',1,'ciot_dfu_types.h']]], + ['ciot_5fdfu_5fstate_5ferror_214',['CIOT_DFU_STATE_ERROR',['../ciot__dfu__types_8h.html#a10bd8bfc4bc24520f6fe74ffa7d60365a2d35a9f74e70953aa9f9da44bb47aa16',1,'ciot_dfu_types.h']]], + ['ciot_5fdfu_5fstate_5fidle_215',['CIOT_DFU_STATE_IDLE',['../ciot__dfu__types_8h.html#a10bd8bfc4bc24520f6fe74ffa7d60365a19824e532f98744f29b7242935287903',1,'ciot_dfu_types.h']]], + ['ciot_5fdfu_5fstate_5fin_5fprogress_216',['CIOT_DFU_STATE_IN_PROGRESS',['../ciot__dfu__types_8h.html#a10bd8bfc4bc24520f6fe74ffa7d60365a2db1f86f2ada419de201e3e4962cab1b',1,'ciot_dfu_types.h']]], + ['ciot_5fdfu_5fstate_5ft_217',['ciot_dfu_state_t',['../ciot__dfu__types_8h.html#a10bd8bfc4bc24520f6fe74ffa7d60365',1,'ciot_dfu_types.h']]], + ['ciot_5fdfu_5fstatus_5fmsg_5ft_218',['ciot_dfu_status_msg_t',['../structciot__dfu__status__msg__t.html',1,'']]], + ['ciot_5fdfu_5fstatus_5ft_219',['ciot_dfu_status_t',['../structciot__dfu__status__t.html',1,'']]], + ['ciot_5fdfu_5fstop_220',['ciot_dfu_stop',['../ciot__dfu_8h.html#af686f43068829e48ff6ca2455a8b1f05',1,'ciot_dfu.h']]], + ['ciot_5fdfu_5ft_221',['ciot_dfu_t',['../ciot__dfu_8h.html#a185c613ee5be1f09245c6f2dcf92d340',1,'ciot_dfu.h']]], + ['ciot_5fdfu_5ftask_222',['ciot_dfu_task',['../ciot__dfu_8h.html#a519f6db211ff754385aba2d45cfb3a28',1,'ciot_dfu.h']]], + ['ciot_5fdfu_5ftype_5fble_223',['CIOT_DFU_TYPE_BLE',['../ciot__dfu__types_8h.html#a7b0d6e81874e327b06555f8c312b963aaa0b6b28f6e7d624adbf2a93286ff2892',1,'ciot_dfu_types.h']]], + ['ciot_5fdfu_5ftype_5ft_224',['ciot_dfu_type_t',['../ciot__dfu__types_8h.html#a7b0d6e81874e327b06555f8c312b963a',1,'ciot_dfu_types.h']]], + ['ciot_5fdfu_5ftype_5fuart_225',['CIOT_DFU_TYPE_UART',['../ciot__dfu__types_8h.html#a7b0d6e81874e327b06555f8c312b963aa7ce5cb795ab9be3288e458a5d3afa7fe',1,'ciot_dfu_types.h']]], + ['ciot_5fdfu_5ftype_5funknown_226',['CIOT_DFU_TYPE_UNKNOWN',['../ciot__dfu__types_8h.html#a7b0d6e81874e327b06555f8c312b963aaf4c3b89af87b4b26c1de07a3c4e2107a',1,'ciot_dfu_types.h']]], + ['ciot_5fdfu_5ftype_5fusb_227',['CIOT_DFU_TYPE_USB',['../ciot__dfu__types_8h.html#a7b0d6e81874e327b06555f8c312b963aa6444ac136a4260d6e2c009d4ca5324be',1,'ciot_dfu_types.h']]], + ['ciot_5fdfu_5ftypes_2eh_228',['ciot_dfu_types.h',['../ciot__dfu__types_8h.html',1,'']]], + ['ciot_5ferr_2eh_229',['ciot_err.h',['../ciot__err_8h.html',1,'']]], + ['ciot_5ferr_5fbase_230',['CIOT_ERR_BASE',['../ciot__err_8h.html#a5c83da3390515076963e6de67984fff5',1,'ciot_err.h']]], + ['ciot_5ferr_5fbusy_231',['CIOT_ERR_BUSY',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a8a64d46b6f851cbea6f4be9827fa5719',1,'ciot_err.h']]], + ['ciot_5ferr_5fchecksum_232',['CIOT_ERR_CHECKSUM',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8ad5d03221253b6f9e2e632dea64791478',1,'ciot_err.h']]], + ['ciot_5ferr_5fclosed_233',['CIOT_ERR_CLOSED',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a671951c11518830a673c4e01f89059bd',1,'ciot_err.h']]], + ['ciot_5ferr_5fconnection_234',['CIOT_ERR_CONNECTION',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a2c1218c0f210769b6a92052cb87aef3e',1,'ciot_err.h']]], + ['ciot_5ferr_5fdeserialization_235',['CIOT_ERR_DESERIALIZATION',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8aedd08488ef3c685bb1e2c47c14a80cb9',1,'ciot_err.h']]], + ['ciot_5ferr_5fdisconnection_236',['CIOT_ERR_DISCONNECTION',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a699674cfe223dd193c22bd43b040e6ee',1,'ciot_err.h']]], + ['ciot_5ferr_5fexception_237',['CIOT_ERR_EXCEPTION',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a54bf87c72caefdedb6407028ba041fcf',1,'ciot_err.h']]], + ['ciot_5ferr_5fimpossible_5fop_238',['CIOT_ERR_IMPOSSIBLE_OP',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a6d5e8817f2b08fcf3e7a18678b397fba',1,'ciot_err.h']]], + ['ciot_5ferr_5finvalid_5farg_239',['CIOT_ERR_INVALID_ARG',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a7b81bbef8df280eaf950be25a97d6b0f',1,'ciot_err.h']]], + ['ciot_5ferr_5finvalid_5fid_240',['CIOT_ERR_INVALID_ID',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a37a385918af7cb9c2a488bd82addef9a',1,'ciot_err.h']]], + ['ciot_5ferr_5finvalid_5fsize_241',['CIOT_ERR_INVALID_SIZE',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8add84c2b5f1832e3842e6639686ca342e',1,'ciot_err.h']]], + ['ciot_5ferr_5finvalid_5fstate_242',['CIOT_ERR_INVALID_STATE',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a87486b88023e82004f4cc7bd8c91a587',1,'ciot_err.h']]], + ['ciot_5ferr_5finvalid_5ftype_243',['CIOT_ERR_INVALID_TYPE',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a92a85995ffcf6be5cd10ed9677827304',1,'ciot_err.h']]], + ['ciot_5ferr_5fmongoose_244',['CIOT_ERR_MONGOOSE',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a811422a99ed9205e5c17a426012b2914',1,'ciot_err.h']]], + ['ciot_5ferr_5fno_5fmemory_245',['CIOT_ERR_NO_MEMORY',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a134ff0d5fe0ca3d4d834e797cbf94bde',1,'ciot_err.h']]], + ['ciot_5ferr_5fnot_5ffound_246',['CIOT_ERR_NOT_FOUND',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a2e6c77a112c02b82bf99b3c0ec247b6b',1,'ciot_err.h']]], + ['ciot_5ferr_5fnot_5fimplemented_247',['CIOT_ERR_NOT_IMPLEMENTED',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8af592c215972533cd90b05e02f8e8d6cd',1,'ciot_err.h']]], + ['ciot_5ferr_5fnot_5fsupported_248',['CIOT_ERR_NOT_SUPPORTED',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8ab80d9a08671e6164cae2d7ecf66af1cf',1,'ciot_err.h']]], + ['ciot_5ferr_5fnull_5farg_249',['CIOT_ERR_NULL_ARG',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a9e389c8626c35577967cf7e312b3a45a',1,'ciot_err.h']]], + ['ciot_5ferr_5foverflow_250',['CIOT_ERR_OVERFLOW',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a9b5fa45b99fba67d690588956d52f7b0',1,'ciot_err.h']]], + ['ciot_5ferr_5frecv_5fdata_251',['CIOT_ERR_RECV_DATA',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a26c7b6aac6b34bf51f17571df94876bc',1,'ciot_err.h']]], + ['ciot_5ferr_5fsend_5fdata_252',['CIOT_ERR_SEND_DATA',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a4c98aa1cfd3dd9cdce9d0a9f6f5b5a74',1,'ciot_err.h']]], + ['ciot_5ferr_5fserialization_253',['CIOT_ERR_SERIALIZATION',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8ae9b9cea99e0d51f7e70b70f11d2d8025',1,'ciot_err.h']]], + ['ciot_5ferr_5ft_254',['ciot_err_t',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8',1,'ciot_err.h']]], + ['ciot_5ferr_5fterminator_5fmissing_255',['CIOT_ERR_TERMINATOR_MISSING',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a6a5c8b52d640c541101f6669f412dc3b',1,'ciot_err.h']]], + ['ciot_5ferr_5ftimeout_256',['CIOT_ERR_TIMEOUT',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8abe6f4938ab424fc41b067a153ac1105c',1,'ciot_err.h']]], + ['ciot_5ferr_5fto_5fmessage_257',['ciot_err_to_message',['../ciot__err_8h.html#a1d1753e50e3d86f2a58cf488442b5f4c',1,'ciot_err.h']]], + ['ciot_5ferr_5fvalidation_5ffailed_258',['CIOT_ERR_VALIDATION_FAILED',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8ab36d19cffa587308a172dc9d67e9ebf0',1,'ciot_err.h']]], + ['ciot_5ferror_5flog_259',['CIOT_ERROR_LOG',['../ciot__err_8h.html#ad14d33778f6214b2efd5d62bf6c6e3f2',1,'ciot_err.h']]], + ['ciot_5ferror_5fprint_260',['CIOT_ERROR_PRINT',['../ciot__err_8h.html#a2d5c5535c945cd775e34e309019df360',1,'ciot_err.h']]], + ['ciot_5ferror_5freturn_261',['CIOT_ERROR_RETURN',['../ciot__err_8h.html#a1806dc8280a05018951cee099f371d2d',1,'ciot_err.h']]], + ['ciot_5feth_2eh_262',['ciot_eth.h',['../ciot__eth_8h.html',1,'']]], + ['ciot_5feth_5fevent_5fconnected_263',['CIOT_ETH_EVENT_CONNECTED',['../ciot__eth_8h.html#acba9cf62e11fb559248dff916f3ba556aa06cce1cad097460e007b222417aaf7a',1,'ciot_eth.h']]], + ['ciot_5feth_5fevent_5fdisconnected_264',['CIOT_ETH_EVENT_DISCONNECTED',['../ciot__eth_8h.html#acba9cf62e11fb559248dff916f3ba556a7a0a49fd6006a25ba1cf375e28fe05fe',1,'ciot_eth.h']]], + ['ciot_5feth_5fevent_5fid_5ft_265',['ciot_eth_event_id_t',['../ciot__eth_8h.html#acba9cf62e11fb559248dff916f3ba556',1,'ciot_eth.h']]], + ['ciot_5feth_5fevent_5fstart_266',['CIOT_ETH_EVENT_START',['../ciot__eth_8h.html#acba9cf62e11fb559248dff916f3ba556aeedce4004914b72cbf5464d1f8dc6620',1,'ciot_eth.h']]], + ['ciot_5feth_5fevent_5fstop_267',['CIOT_ETH_EVENT_STOP',['../ciot__eth_8h.html#acba9cf62e11fb559248dff916f3ba556af7a9e91956122dcb208686cf6f362f4a',1,'ciot_eth.h']]], + ['ciot_5feth_5fnew_268',['ciot_eth_new',['../ciot__eth_8h.html#a2c82abdd259489cac5b0fa093497d90c',1,'ciot_eth.h']]], + ['ciot_5feth_5fprocess_5freq_269',['ciot_eth_process_req',['../ciot__eth_8h.html#a661b7975f64b8017ec7cd6c4f68a4395',1,'ciot_eth.h']]], + ['ciot_5feth_5fsend_5fdata_270',['ciot_eth_send_data',['../ciot__eth_8h.html#a3952717d31db12a55731412a370ceda5',1,'ciot_eth.h']]], + ['ciot_5feth_5fstart_271',['ciot_eth_start',['../ciot__eth_8h.html#abed434192140a1fae6f358608f3407a8',1,'ciot_eth.h']]], + ['ciot_5feth_5fstatus_5fmsg_5ft_272',['ciot_eth_status_msg_t',['../structciot__eth__status__msg__t.html',1,'']]], + ['ciot_5feth_5fstop_273',['ciot_eth_stop',['../ciot__eth_8h.html#af2d6489aa9834dcaecce9c322fd1a96e',1,'ciot_eth.h']]], + ['ciot_5feth_5ft_274',['ciot_eth_t',['../ciot__eth_8h.html#a3f3b88cf1c074f50fd03c724c41d9da7',1,'ciot_eth.h']]], + ['ciot_5fevent_5fdata_275',['ciot_event_data',['../structciot__event__data.html',1,'']]], + ['ciot_5fevent_5fdata_5ft_276',['ciot_event_data_t',['../ciot__common__types_8h.html#aacdc43deb8af6baf83220c9c6a29c32e',1,'ciot_common_types.h']]], + ['ciot_5ffail_277',['CIOT_FAIL',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a71470ad3a7d23f316a2c6de561694646',1,'ciot_err.h']]], + ['ciot_5fgpio_2eh_278',['ciot_gpio.h',['../ciot__gpio_8h.html',1,'']]], + ['ciot_5fgpio_5fcfg_5ft_279',['ciot_gpio_cfg_t',['../structciot__gpio__cfg__t.html',1,'']]], + ['ciot_5fgpio_5fdata_5fu_280',['ciot_gpio_data_u',['../unionciot__gpio__data__u.html',1,'']]], + ['ciot_5fgpio_5fget_5fstate_281',['ciot_gpio_get_state',['../ciot__gpio_8h.html#a5b2cfc4c7dff3ca2d06f5ec2b8026d79',1,'ciot_gpio.h']]], + ['ciot_5fgpio_5fmode_5fdiabled_282',['CIOT_GPIO_MODE_DIABLED',['../ciot__gpio__types_8h.html#ad768bc05ac4cc4639fe4cb7b8ab52c71a0201638f1798ffea9b8f9b091c443768',1,'ciot_gpio_types.h']]], + ['ciot_5fgpio_5fmode_5finput_283',['CIOT_GPIO_MODE_INPUT',['../ciot__gpio__types_8h.html#ad768bc05ac4cc4639fe4cb7b8ab52c71a5dc50aace0aa33de279a2f1ac471a630',1,'ciot_gpio_types.h']]], + ['ciot_5fgpio_5fmode_5foutput_284',['CIOT_GPIO_MODE_OUTPUT',['../ciot__gpio__types_8h.html#ad768bc05ac4cc4639fe4cb7b8ab52c71a4bbdd6e15ba0de21024a2db0c9330b32',1,'ciot_gpio_types.h']]], + ['ciot_5fgpio_5fmode_5ft_285',['ciot_gpio_mode_t',['../ciot__gpio__types_8h.html#ad768bc05ac4cc4639fe4cb7b8ab52c71',1,'ciot_gpio_types.h']]], + ['ciot_5fgpio_5fnew_286',['ciot_gpio_new',['../ciot__gpio_8h.html#aea01096d6b6bfbd522e8657a845f80c3',1,'ciot_gpio.h']]], + ['ciot_5fgpio_5fprocess_5freq_287',['ciot_gpio_process_req',['../ciot__gpio_8h.html#a442851a180a98c165e9f9492c4563737',1,'ciot_gpio.h']]], + ['ciot_5fgpio_5fpull_5fdisabled_288',['CIOT_GPIO_PULL_DISABLED',['../ciot__gpio__types_8h.html#ae4bc515fbd35a99c9107751c09e69dfeaa6266ad862e3d90fcc7467f103417b95',1,'ciot_gpio_types.h']]], + ['ciot_5fgpio_5fpull_5fmode_5ft_289',['ciot_gpio_pull_mode_t',['../ciot__gpio__types_8h.html#ae4bc515fbd35a99c9107751c09e69dfe',1,'ciot_gpio_types.h']]], + ['ciot_5fgpio_5fpulldown_290',['CIOT_GPIO_PULLDOWN',['../ciot__gpio__types_8h.html#ae4bc515fbd35a99c9107751c09e69dfeab6c8129e2821fea62d640964f7266c43',1,'ciot_gpio_types.h']]], + ['ciot_5fgpio_5fpullup_291',['CIOT_GPIO_PULLUP',['../ciot__gpio__types_8h.html#ae4bc515fbd35a99c9107751c09e69dfeaf9207baa17fdde6ffa3b6bd58a1ec754',1,'ciot_gpio_types.h']]], + ['ciot_5fgpio_5freq_5fconfig_292',['CIOT_GPIO_REQ_CONFIG',['../ciot__gpio__types_8h.html#a86bf6bee2d4762a09459175504b9cc2da591932f3178bc6c970e89e7e3d07dfff',1,'ciot_gpio_types.h']]], + ['ciot_5fgpio_5freq_5fdata_5fu_293',['ciot_gpio_req_data_u',['../unionciot__gpio__req__data__u.html',1,'']]], + ['ciot_5fgpio_5freq_5fget_5fstate_294',['CIOT_GPIO_REQ_GET_STATE',['../ciot__gpio__types_8h.html#a86bf6bee2d4762a09459175504b9cc2dabf5ffe4d1ff61a6e18e024b7000933ca',1,'ciot_gpio_types.h']]], + ['ciot_5fgpio_5freq_5fget_5fstate_5ft_295',['ciot_gpio_req_get_state_t',['../structciot__gpio__req__get__state__t.html',1,'']]], + ['ciot_5fgpio_5freq_5fset_5fstate_296',['CIOT_GPIO_REQ_SET_STATE',['../ciot__gpio__types_8h.html#a86bf6bee2d4762a09459175504b9cc2da3717eef4db07663dddac4d766597e985',1,'ciot_gpio_types.h']]], + ['ciot_5fgpio_5freq_5ft_297',['ciot_gpio_req_t',['../structciot__gpio__req__t.html',1,'']]], + ['ciot_5fgpio_5freq_5ftype_5ft_298',['ciot_gpio_req_type_t',['../ciot__gpio__types_8h.html#a86bf6bee2d4762a09459175504b9cc2d',1,'ciot_gpio_types.h']]], + ['ciot_5fgpio_5freq_5funknown_299',['CIOT_GPIO_REQ_UNKNOWN',['../ciot__gpio__types_8h.html#a86bf6bee2d4762a09459175504b9cc2daf32a90c97d64c9ec2a75ebdf92bfc629',1,'ciot_gpio_types.h']]], + ['ciot_5fgpio_5fsend_5fdata_300',['ciot_gpio_send_data',['../ciot__gpio_8h.html#a9c3f8ee56e12174192c444c6be0c1a5c',1,'ciot_gpio.h']]], + ['ciot_5fgpio_5fset_5fstate_301',['ciot_gpio_set_state',['../ciot__gpio_8h.html#a4a869a0c86a5b6cb73c1789a5bbd612b',1,'ciot_gpio.h']]], + ['ciot_5fgpio_5fstart_302',['ciot_gpio_start',['../ciot__gpio_8h.html#adb7495ded0ad7759f8957513c2865799',1,'ciot_gpio.h']]], + ['ciot_5fgpio_5fstate_5ferr_303',['CIOT_GPIO_STATE_ERR',['../ciot__gpio__types_8h.html#ac566dcf32b51c83a8f37164f23fc2cd9af69cfd9cebab632443f7ec571b22b8f1',1,'ciot_gpio_types.h']]], + ['ciot_5fgpio_5fstate_5fhigh_304',['CIOT_GPIO_STATE_HIGH',['../ciot__gpio__types_8h.html#ac566dcf32b51c83a8f37164f23fc2cd9a3b10aa4077009f19e3a75077246f1df5',1,'ciot_gpio_types.h']]], + ['ciot_5fgpio_5fstate_5finfo_5ft_305',['ciot_gpio_state_info_t',['../structciot__gpio__state__info__t.html',1,'']]], + ['ciot_5fgpio_5fstate_5flow_306',['CIOT_GPIO_STATE_LOW',['../ciot__gpio__types_8h.html#ac566dcf32b51c83a8f37164f23fc2cd9a5af664ade1079acf3371a80d83b16e9a',1,'ciot_gpio_types.h']]], + ['ciot_5fgpio_5fstate_5ft_307',['ciot_gpio_state_t',['../ciot__gpio__types_8h.html#ac566dcf32b51c83a8f37164f23fc2cd9',1,'ciot_gpio_types.h']]], + ['ciot_5fgpio_5fstatus_5fmsg_5ft_308',['ciot_gpio_status_msg_t',['../structciot__gpio__status__msg__t.html',1,'']]], + ['ciot_5fgpio_5fstatus_5ft_309',['ciot_gpio_status_t',['../structciot__gpio__status__t.html',1,'']]], + ['ciot_5fgpio_5fstop_310',['ciot_gpio_stop',['../ciot__gpio_8h.html#adcb7cc03019350645bc5cc0898d9606d',1,'ciot_gpio.h']]], + ['ciot_5fgpio_5ft_311',['ciot_gpio_t',['../ciot__gpio_8h.html#ae9e94463a96ddb2055cd747a6ac5b8dc',1,'ciot_gpio.h']]], + ['ciot_5fgpio_5ftypes_2eh_312',['ciot_gpio_types.h',['../ciot__gpio__types_8h.html',1,'']]], + ['ciot_5fhandle_313',['CIOT_HANDLE',['../ciot_8h.html#a06001434900c2b315cf793e5356f2836',1,'ciot.h']]], + ['ciot_5fhttpc_2eh_314',['ciot_httpc.h',['../ciot__httpc_8h.html',1,'']]], + ['ciot_5fhttpc_5fbody_5flen_315',['CIOT_HTTPC_BODY_LEN',['../ciot__httpc__types_8h.html#ac029ebf7c40c24f8ad4cd380f7a3f8dd',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fcfg_5ft_316',['ciot_httpc_cfg_t',['../structciot__httpc__cfg__t.html',1,'']]], + ['ciot_5fhttpc_5fdata_5fu_317',['ciot_httpc_data_u',['../unionciot__httpc__data__u.html',1,'']]], + ['ciot_5fhttpc_5fevent_318',['ciot_httpc_event',['../unionciot__httpc__event.html',1,'']]], + ['ciot_5fhttpc_5fevent_5fconnected_319',['CIOT_HTTPC_EVENT_CONNECTED',['../ciot__httpc_8h.html#a7867b22f4a59e270cd0aadf3165804a8a3f5ae57e03d9b825c8fb4733c15359db',1,'ciot_httpc.h']]], + ['ciot_5fhttpc_5fevent_5fconnecting_320',['CIOT_HTTPC_EVENT_CONNECTING',['../ciot__httpc_8h.html#a7867b22f4a59e270cd0aadf3165804a8afb97828385b4f79444b7ebfc7640bde9',1,'ciot_httpc.h']]], + ['ciot_5fhttpc_5fevent_5fdata_321',['ciot_httpc_event_data',['../structciot__httpc__event__data.html',1,'']]], + ['ciot_5fhttpc_5fevent_5fdata_5ft_322',['ciot_httpc_event_data_t',['../ciot__httpc__types_8h.html#a491fa8406af26b99bd40ebb9ab2329da',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fevent_5fid_323',['ciot_httpc_event_id',['../ciot__httpc_8h.html#a7867b22f4a59e270cd0aadf3165804a8',1,'ciot_httpc.h']]], + ['ciot_5fhttpc_5fevent_5fid_5ft_324',['ciot_httpc_event_id_t',['../ciot__httpc_8h.html#a8992ff730daa4b1341950e1fcc062095',1,'ciot_httpc.h']]], + ['ciot_5fhttpc_5fevent_5fu_325',['ciot_httpc_event_u',['../ciot__httpc__types_8h.html#a7bb2afccf9d5b80356508aae726c6196',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fheader_5flen_326',['CIOT_HTTPC_HEADER_LEN',['../ciot__httpc__types_8h.html#ab752d46c4d848b82390c300cd1ae19b9',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fheader_5fval_327',['CIOT_HTTPC_HEADER_VAL',['../ciot__httpc__types_8h.html#a2a4af7d3487c220befa4d68c66758bc6',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fmethod_5fcopy_328',['CIOT_HTTPC_METHOD_COPY',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7aa8be300f4466d5d8e37ad27c4fb48b67',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fmethod_5fdelete_329',['CIOT_HTTPC_METHOD_DELETE',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a0f4269d141ab0dc5832a06a1e918f882',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fmethod_5fget_330',['CIOT_HTTPC_METHOD_GET',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a650e5214875a4cdd3e347425901c5577',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fmethod_5fhead_331',['CIOT_HTTPC_METHOD_HEAD',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7af157cd0398674ba1012f6768e47ea8bf',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fmethod_5flen_332',['CIOT_HTTPC_METHOD_LEN',['../ciot__httpc__types_8h.html#af6ec592d3f9ba347d3534361538fb04b',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fmethod_5flock_333',['CIOT_HTTPC_METHOD_LOCK',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a9ba67439f21bc5a14f885acb4702e7a6',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fmethod_5fmax_334',['CIOT_HTTPC_METHOD_MAX',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a717d104c5930fd4723ccab14fa590955',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fmethod_5fmkcol_335',['CIOT_HTTPC_METHOD_MKCOL',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a615ae69783de68e87fe6b10d15fcf241',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fmethod_5fmove_336',['CIOT_HTTPC_METHOD_MOVE',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a554691606720719d5c7d18aec331d819',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fmethod_5fnotify_337',['CIOT_HTTPC_METHOD_NOTIFY',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a26c3f63b94bcfab576aee93a1ebe6e58',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fmethod_5foptions_338',['CIOT_HTTPC_METHOD_OPTIONS',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7aad83faf84362fa782451b9b7813cb903',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fmethod_5fpatch_339',['CIOT_HTTPC_METHOD_PATCH',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a3907ae9dfab102ca11b9f52c35831aa3',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fmethod_5fpost_340',['CIOT_HTTPC_METHOD_POST',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7ac0f3e0c43ca1d9895d911a61aa3a0a3d',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fmethod_5fpropfind_341',['CIOT_HTTPC_METHOD_PROPFIND',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a517da021c623763eb791f30ff5a21d8c',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fmethod_5fproppatch_342',['CIOT_HTTPC_METHOD_PROPPATCH',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7ac96588e2a31fb4cab864cafdb28fd6a2',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fmethod_5fput_343',['CIOT_HTTPC_METHOD_PUT',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a3fecc1706149db9a7031a9726564e50e',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fmethod_5fsubscribe_344',['CIOT_HTTPC_METHOD_SUBSCRIBE',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a4995d14b4b9469afee820440e999d031',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fmethod_5ft_345',['ciot_httpc_method_t',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fmethod_5funlock_346',['CIOT_HTTPC_METHOD_UNLOCK',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a5227db99bf72a1289368d5542cfcafa2',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fmethod_5funsubscribe_347',['CIOT_HTTPC_METHOD_UNSUBSCRIBE',['../ciot__httpc__types_8h.html#adb6734aba3ebc70d40f85695053de4a7a8a9fbce8b6f60e6d17568fc73d2ae9fa',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fnew_348',['ciot_httpc_new',['../ciot__httpc_8h.html#aa56416d08a9bcfbc90b3732204f02e4c',1,'ciot_httpc.h']]], + ['ciot_5fhttpc_5fprocess_5freq_349',['ciot_httpc_process_req',['../ciot__httpc_8h.html#aeb4ac97854627dc732459e7c0b60a900',1,'ciot_httpc.h']]], + ['ciot_5fhttpc_5freq_5fdata_350',['ciot_httpc_req_data',['../unionciot__httpc__req__data.html',1,'']]], + ['ciot_5fhttpc_5freq_5fdata_5fu_351',['ciot_httpc_req_data_u',['../ciot__httpc__types_8h.html#a2ea83a6895d0ef313aa7381a2d56ca51',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5freq_5fsend_5fdata_352',['CIOT_HTTPC_REQ_SEND_DATA',['../ciot__httpc__types_8h.html#a2b96aed46d17bb281ae66a3ed099c4cbad7ea3f3d9a71d83af66217bb6887312a',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5freq_5fsend_5ft_353',['ciot_httpc_req_send_t',['../structciot__httpc__req__send__t.html',1,'']]], + ['ciot_5fhttpc_5freq_5fset_5fheader_354',['CIOT_HTTPC_REQ_SET_HEADER',['../ciot__httpc__types_8h.html#a2b96aed46d17bb281ae66a3ed099c4cba572be88b8d0c24041a432f1dc4a4ae16',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5freq_5fset_5fheader_5ft_355',['ciot_httpc_req_set_header_t',['../structciot__httpc__req__set__header__t.html',1,'']]], + ['ciot_5fhttpc_5freq_5ft_356',['ciot_httpc_req_t',['../structciot__httpc__req__t.html',1,'']]], + ['ciot_5fhttpc_5freq_5ftype_5ft_357',['ciot_httpc_req_type_t',['../ciot__httpc__types_8h.html#a2b96aed46d17bb281ae66a3ed099c4cb',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5freq_5funknown_358',['CIOT_HTTPC_REQ_UNKNOWN',['../ciot__httpc__types_8h.html#a2b96aed46d17bb281ae66a3ed099c4cba2c25436ee320558e3b39e0278af195e1',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fsend_5fdata_359',['ciot_httpc_send_data',['../ciot__httpc_8h.html#a8b0903c7bdf6e8928d3753c06f13c564',1,'ciot_httpc.h']]], + ['ciot_5fhttpc_5fstart_360',['ciot_httpc_start',['../ciot__httpc_8h.html#a46df5188166f70dba4fdff5393db031e',1,'ciot_httpc.h']]], + ['ciot_5fhttpc_5fstate_5fconnected_361',['CIOT_HTTPC_STATE_CONNECTED',['../ciot__httpc__types_8h.html#aaaa5ea5ab9829620d53957b82e15e5b5a0df909f7e832643e2cf49aa050d023dd',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fstate_5fconnecting_362',['CIOT_HTTPC_STATE_CONNECTING',['../ciot__httpc__types_8h.html#aaaa5ea5ab9829620d53957b82e15e5b5a0bd77b70defc26341e91f9b6922252f9',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fstate_5fdata_5freceived_363',['CIOT_HTTPC_STATE_DATA_RECEIVED',['../ciot__httpc__types_8h.html#aaaa5ea5ab9829620d53957b82e15e5b5a2f5ce6951d2b9d638c13c4938b0c01c7',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fstate_5ferror_364',['CIOT_HTTPC_STATE_ERROR',['../ciot__httpc__types_8h.html#aaaa5ea5ab9829620d53957b82e15e5b5ab4a3e67dcc1afbfba00d0df61b40b8da',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fstate_5fidle_365',['CIOT_HTTPC_STATE_IDLE',['../ciot__httpc__types_8h.html#aaaa5ea5ab9829620d53957b82e15e5b5a76b62150d0e55c88c843115abdd10071',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fstate_5fstarted_366',['CIOT_HTTPC_STATE_STARTED',['../ciot__httpc__types_8h.html#aaaa5ea5ab9829620d53957b82e15e5b5aeb32c53e0ba4ee494743e1931be6eeec',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fstate_5ft_367',['ciot_httpc_state_t',['../ciot__httpc__types_8h.html#aaaa5ea5ab9829620d53957b82e15e5b5',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fstate_5ftimeout_368',['CIOT_HTTPC_STATE_TIMEOUT',['../ciot__httpc__types_8h.html#aaaa5ea5ab9829620d53957b82e15e5b5a41421c36fcf36da91a51f06855224157',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5fstatus_5fmsg_5ft_369',['ciot_httpc_status_msg_t',['../structciot__httpc__status__msg__t.html',1,'']]], + ['ciot_5fhttpc_5fstatus_5ft_370',['ciot_httpc_status_t',['../structciot__httpc__status__t.html',1,'']]], + ['ciot_5fhttpc_5fstop_371',['ciot_httpc_stop',['../ciot__httpc_8h.html#a34deca8f36a9ebbb7b47663a026efc71',1,'ciot_httpc.h']]], + ['ciot_5fhttpc_5ft_372',['ciot_httpc_t',['../ciot__httpc_8h.html#a2c213f8a3a59ead35d64cf064f894fe1',1,'ciot_httpc.h']]], + ['ciot_5fhttpc_5ftransport_5fssl_373',['CIOT_HTTPC_TRANSPORT_SSL',['../ciot__httpc__types_8h.html#ae5d45fa37052b0149488422933d4b7c2a2b14353c34ecb4525e768f4ba62da6b8',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5ftransport_5ftcp_374',['CIOT_HTTPC_TRANSPORT_TCP',['../ciot__httpc__types_8h.html#ae5d45fa37052b0149488422933d4b7c2ac0b77b7cf582d3d2adb20f67dac8cea1',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5ftransport_5ftype_5ft_375',['ciot_httpc_transport_type_t',['../ciot__httpc__types_8h.html#ae5d45fa37052b0149488422933d4b7c2',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5ftransport_5funknown_376',['CIOT_HTTPC_TRANSPORT_UNKNOWN',['../ciot__httpc__types_8h.html#ae5d45fa37052b0149488422933d4b7c2a22a12a1f89b04f673e7c6da6120118fb',1,'ciot_httpc_types.h']]], + ['ciot_5fhttpc_5ftypes_2eh_377',['ciot_httpc_types.h',['../ciot__httpc__types_8h.html',1,'']]], + ['ciot_5fhttpc_5furl_5flen_378',['CIOT_HTTPC_URL_LEN',['../ciot__httpc__types_8h.html#ab32b0446ee870bfb7a79c056a81e6683',1,'ciot_httpc_types.h']]], + ['ciot_5fhttps_2eh_379',['ciot_https.h',['../ciot__https_8h.html',1,'']]], + ['ciot_5fhttps_5faddress_5flen_380',['CIOT_HTTPS_ADDRESS_LEN',['../ciot__https__types_8h.html#abe1cc7f5311018e78e8a49734cce3623',1,'ciot_https_types.h']]], + ['ciot_5fhttps_5fcfg_5ft_381',['ciot_https_cfg_t',['../structciot__https__cfg__t.html',1,'']]], + ['ciot_5fhttps_5fdata_5fu_382',['ciot_https_data_u',['../unionciot__https__data__u.html',1,'']]], + ['ciot_5fhttps_5fevent_383',['ciot_https_event',['../structciot__https__event.html',1,'']]], + ['ciot_5fhttps_5fevent_5fdata_384',['ciot_https_event_data',['../structciot__https__event__data.html',1,'']]], + ['ciot_5fhttps_5fevent_5fdata_385',['CIOT_HTTPS_EVENT_DATA',['../ciot__https_8h.html#a3bfe51b8fc1185d9f555a28985455f12abda42e477b51af9bdec887127fbe6d27',1,'ciot_https.h']]], + ['ciot_5fhttps_5fevent_5fdata_5ft_386',['ciot_https_event_data_t',['../ciot__https__types_8h.html#a2c6c4aa32536b02785ca49d2716498b3',1,'ciot_https_types.h']]], + ['ciot_5fhttps_5fevent_5fid_387',['ciot_https_event_id',['../ciot__https_8h.html#a3bfe51b8fc1185d9f555a28985455f12',1,'ciot_https.h']]], + ['ciot_5fhttps_5fevent_5fid_5ft_388',['ciot_https_event_id_t',['../ciot__https_8h.html#a26069470806c3c576f68c2c7108c07a0',1,'ciot_https.h']]], + ['ciot_5fhttps_5fevent_5fu_389',['ciot_https_event_u',['../ciot__https__types_8h.html#aec67a3b9fe62b79e7252d89476bd4704',1,'ciot_https_types.h']]], + ['ciot_5fhttps_5fmethod_5flen_390',['CIOT_HTTPS_METHOD_LEN',['../ciot__https__types_8h.html#aa7678310edbfc6790c69ab81cd7ccf52',1,'ciot_https_types.h']]], + ['ciot_5fhttps_5fnew_391',['ciot_https_new',['../ciot__https_8h.html#a50f38073c89e88e99b5bf95abbe0b18b',1,'ciot_https.h']]], + ['ciot_5fhttps_5fprocess_5freq_392',['ciot_https_process_req',['../ciot__https_8h.html#a585618f81c962cef6251ffecc942a333',1,'ciot_https.h']]], + ['ciot_5fhttps_5freq_5fdata_5fu_393',['ciot_https_req_data_u',['../unionciot__https__req__data__u.html',1,'']]], + ['ciot_5fhttps_5freq_5ft_394',['ciot_https_req_t',['../structciot__https__req__t.html',1,'']]], + ['ciot_5fhttps_5freq_5ftype_5ft_395',['ciot_https_req_type_t',['../ciot__https__types_8h.html#ade314c7fe1c013e8f3e60935bc820de3',1,'ciot_https_types.h']]], + ['ciot_5fhttps_5freq_5funknown_396',['CIOT_HTTPS_REQ_UNKNOWN',['../ciot__https__types_8h.html#ade314c7fe1c013e8f3e60935bc820de3aefeacc094012affef1849ed248027c31',1,'ciot_https_types.h']]], + ['ciot_5fhttps_5froute_5flen_397',['CIOT_HTTPS_ROUTE_LEN',['../ciot__https__types_8h.html#a8b84b36e97ad2c3a2e7ac72e4d6b2749',1,'ciot_https_types.h']]], + ['ciot_5fhttps_5fsend_5fdata_398',['ciot_https_send_data',['../ciot__https_8h.html#ab9abc9d142e7332b9606568193d1ede0',1,'ciot_https.h']]], + ['ciot_5fhttps_5fstart_399',['ciot_https_start',['../ciot__https_8h.html#a3a7dd3627113a6a829c764500112d752',1,'ciot_https.h']]], + ['ciot_5fhttps_5fstate_5ferror_400',['CIOT_HTTPS_STATE_ERROR',['../ciot__https__types_8h.html#a17a6b65526ea731de25e9da2f1fad0fda5c3019e26199226925ec1ed6790a9207',1,'ciot_https_types.h']]], + ['ciot_5fhttps_5fstate_5fstarted_401',['CIOT_HTTPS_STATE_STARTED',['../ciot__https__types_8h.html#a17a6b65526ea731de25e9da2f1fad0fdaa775c25c0d8b7eeb99d8d53b11bed6c7',1,'ciot_https_types.h']]], + ['ciot_5fhttps_5fstate_5fstopped_402',['CIOT_HTTPS_STATE_STOPPED',['../ciot__https__types_8h.html#a17a6b65526ea731de25e9da2f1fad0fdacd46841a989b783e5bc6221a735f8e1d',1,'ciot_https_types.h']]], + ['ciot_5fhttps_5fstate_5ft_403',['ciot_https_state_t',['../ciot__https__types_8h.html#a17a6b65526ea731de25e9da2f1fad0fd',1,'ciot_https_types.h']]], + ['ciot_5fhttps_5fstatus_5fmsg_5ft_404',['ciot_https_status_msg_t',['../structciot__https__status__msg__t.html',1,'']]], + ['ciot_5fhttps_5fstatus_5ft_405',['ciot_https_status_t',['../structciot__https__status__t.html',1,'']]], + ['ciot_5fhttps_5fstop_406',['ciot_https_stop',['../ciot__https_8h.html#a04b4527bce08440e2643a71679575174',1,'ciot_https.h']]], + ['ciot_5fhttps_5ft_407',['ciot_https_t',['../ciot__https_8h.html#acfd2fcf5803562e750dea3815e1cbd49',1,'ciot_https.h']]], + ['ciot_5fhttps_5ftypes_2eh_408',['ciot_https_types.h',['../ciot__https__types_8h.html',1,'']]], + ['ciot_5fiface_409',['ciot_iface',['../structciot__iface.html',1,'']]], + ['ciot_5fiface_2eh_410',['ciot_iface.h',['../ciot__iface_8h.html',1,'']]], + ['ciot_5fiface_5fbase_411',['ciot_iface_base',['../structciot__iface__base.html',1,'']]], + ['ciot_5fiface_5fbase_5fdata_412',['ciot_iface_base_data',['../structciot__iface__base__data.html',1,'']]], + ['ciot_5fiface_5fbase_5fdata_5ft_413',['ciot_iface_base_data_t',['../ciot__iface_8h.html#a107b2c0cf1b5767a1b482f19bc3fb0ae',1,'ciot_iface.h']]], + ['ciot_5fiface_5fbase_5ft_414',['ciot_iface_base_t',['../ciot__iface_8h.html#abe9d78b6b8e29546fe52054115bea7a0',1,'ciot_iface.h']]], + ['ciot_5fiface_5fcfg_5ffilename_415',['CIOT_IFACE_CFG_FILENAME',['../ciot_8h.html#a69a23dd0ffa7b32ceaa106938030c108',1,'ciot.h']]], + ['ciot_5fiface_5fcfg_5ft_416',['ciot_iface_cfg_t',['../structciot__iface__cfg__t.html',1,'']]], + ['ciot_5fiface_5fevent_5fcustom_417',['CIOT_IFACE_EVENT_CUSTOM',['../ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cba7682c08bf60ddc6f695e62b7b2344a4f',1,'ciot_iface.h']]], + ['ciot_5fiface_5fevent_5fdata_418',['CIOT_IFACE_EVENT_DATA',['../ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cba080fca556c9a023720751526ecad8ccc',1,'ciot_iface.h']]], + ['ciot_5fiface_5fevent_5fdata_5fu_419',['ciot_iface_event_data_u',['../unionciot__iface__event__data__u.html',1,'']]], + ['ciot_5fiface_5fevent_5fdone_420',['CIOT_IFACE_EVENT_DONE',['../ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cbab9bcdc77d1e0c80fdca8b60528af9d81',1,'ciot_iface.h']]], + ['ciot_5fiface_5fevent_5ferror_421',['CIOT_IFACE_EVENT_ERROR',['../ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cba98063df9c53273544ed5b5424a05024e',1,'ciot_iface.h']]], + ['ciot_5fiface_5fevent_5fhandler_5ft_422',['ciot_iface_event_handler_t',['../ciot__iface_8h.html#aa95e39f8029362c17172c4ab860b9b2c',1,'ciot_iface.h']]], + ['ciot_5fiface_5fevent_5finternal_423',['CIOT_IFACE_EVENT_INTERNAL',['../ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cbad1b206ed7fad45c5e6630dc78d91844d',1,'ciot_iface.h']]], + ['ciot_5fiface_5fevent_5frequest_424',['CIOT_IFACE_EVENT_REQUEST',['../ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cba0f80ad7aed1ba3eecf1922446cbdde95',1,'ciot_iface.h']]], + ['ciot_5fiface_5fevent_5fstarted_425',['CIOT_IFACE_EVENT_STARTED',['../ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cba2b18a98e307314d7257854b3f09700a6',1,'ciot_iface.h']]], + ['ciot_5fiface_5fevent_5fstopped_426',['CIOT_IFACE_EVENT_STOPPED',['../ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cbab52a8702f0eaf2aed031a3ca78468a71',1,'ciot_iface.h']]], + ['ciot_5fiface_5fevent_5ft_427',['ciot_iface_event_t',['../structciot__iface__event__t.html',1,'']]], + ['ciot_5fiface_5fevent_5fto_5fstr_428',['ciot_iface_event_to_str',['../ciot__iface_8h.html#aa3ff9b2090848d0920e0a69de86f6250',1,'ciot_iface.h']]], + ['ciot_5fiface_5fevent_5ftype_429',['ciot_iface_event_type',['../ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cb',1,'ciot_iface.h']]], + ['ciot_5fiface_5fevent_5ftype_5ft_430',['ciot_iface_event_type_t',['../ciot__iface_8h.html#ab7cf61a0bac326bd528c23e6ce924c57',1,'ciot_iface.h']]], + ['ciot_5fiface_5fevent_5funknown_431',['CIOT_IFACE_EVENT_UNKNOWN',['../ciot__iface_8h.html#aab1a8c4944d96c57298e26e8bf3110cba783c8ee8ead4e6638b0454ffbe5fe009',1,'ciot_iface.h']]], + ['ciot_5fiface_5fget_5fcfg_432',['ciot_iface_get_cfg',['../ciot__iface_8h.html#aef1dd87e5c3111ca65fa4e63ca2c9213',1,'ciot_iface.h']]], + ['ciot_5fiface_5fget_5finfo_433',['ciot_iface_get_info',['../ciot__iface_8h.html#a6b87395146fdad575079c47979fe1cc5',1,'ciot_iface.h']]], + ['ciot_5fiface_5fget_5fmsg_5fid_434',['ciot_iface_get_msg_id',['../ciot__iface_8h.html#aa0070d90be5933f14530c81fca52fcfd',1,'ciot_iface.h']]], + ['ciot_5fiface_5fget_5fstatus_435',['ciot_iface_get_status',['../ciot__iface_8h.html#a7c59fa4a32c0662de361fd89847ab62b',1,'ciot_iface.h']]], + ['ciot_5fiface_5fid_436',['ciot_iface_id',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1e',1,'ciot_ifaces.h']]], + ['ciot_5fiface_5fid_5fble_437',['CIOT_IFACE_ID_BLE',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea2a08ed7ae7a1cc621cb4708a6dd0e396',1,'ciot_ifaces.h']]], + ['ciot_5fiface_5fid_5fble_5fscn_438',['CIOT_IFACE_ID_BLE_SCN',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea7f3c5f3d0ad4f1dfd3d783241d99db3f',1,'ciot_ifaces.h']]], + ['ciot_5fiface_5fid_5fbridge_439',['CIOT_IFACE_ID_BRIDGE',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea38e855c72e72086bdc9b45543981b9d3',1,'ciot_ifaces.h']]], + ['ciot_5fiface_5fid_5fciot_440',['CIOT_IFACE_ID_CIOT',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea49cfed8646f3de92a34287bb413e85ef',1,'ciot_ifaces.h']]], + ['ciot_5fiface_5fid_5fdfu_441',['CIOT_IFACE_ID_DFU',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea663fe58cdc4d896f7729e953d709b9ea',1,'ciot_ifaces.h']]], + ['ciot_5fiface_5fid_5feth_442',['CIOT_IFACE_ID_ETH',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1eae58f8ebc9e8233810e0507dcc8cf3de5',1,'ciot_ifaces.h']]], + ['ciot_5fiface_5fid_5fgpio_443',['CIOT_IFACE_ID_GPIO',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea050d0909d9275b2785e13e92ee6db35d',1,'ciot_ifaces.h']]], + ['ciot_5fiface_5fid_5fhttp_5fclient_444',['CIOT_IFACE_ID_HTTP_CLIENT',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1eadeaee2994eba2268fbf880938d75ce9e',1,'ciot_ifaces.h']]], + ['ciot_5fiface_5fid_5fhttp_5fserver_445',['CIOT_IFACE_ID_HTTP_SERVER',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea10242eda2c41ddb76f3d05a8d3507c14',1,'ciot_ifaces.h']]], + ['ciot_5fiface_5fid_5fmqtt_446',['CIOT_IFACE_ID_MQTT',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1eac8eeadb10c436b739b7bb180d65b053a',1,'ciot_ifaces.h']]], + ['ciot_5fiface_5fid_5fntp_447',['CIOT_IFACE_ID_NTP',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea2c1db03e2628aba552b741a079c4f3b6',1,'ciot_ifaces.h']]], + ['ciot_5fiface_5fid_5fota_448',['CIOT_IFACE_ID_OTA',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea77a9be4a3d71157a99b3931ecb890760',1,'ciot_ifaces.h']]], + ['ciot_5fiface_5fid_5fstorage_449',['CIOT_IFACE_ID_STORAGE',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1eaf73e60bfa3d2bfe988000062e4a6fb5a',1,'ciot_ifaces.h']]], + ['ciot_5fiface_5fid_5fsystem_450',['CIOT_IFACE_ID_SYSTEM',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea46a519b30f420e680495d99a0f013b02',1,'ciot_ifaces.h']]], + ['ciot_5fiface_5fid_5ft_451',['ciot_iface_id_t',['../ciot__ifaces_8h.html#a81dae521394bdd3a9d8b848740f5433a',1,'ciot_ifaces.h']]], + ['ciot_5fiface_5fid_5ftcp_452',['CIOT_IFACE_ID_TCP',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1eace465d93bac433735d3cb4f4256743ea',1,'ciot_ifaces.h']]], + ['ciot_5fiface_5fid_5fuart_453',['CIOT_IFACE_ID_UART',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea70e4ffdab38e4c017b0e82199aceb028',1,'ciot_ifaces.h']]], + ['ciot_5fiface_5fid_5funknown_454',['CIOT_IFACE_ID_UNKNOWN',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1eab83be87e2b46a1081b4213c560c25426',1,'ciot_ifaces.h']]], + ['ciot_5fiface_5fid_5fusb_455',['CIOT_IFACE_ID_USB',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ead428622f610ad7bf11f8c881108a2430',1,'ciot_ifaces.h']]], + ['ciot_5fiface_5fid_5fwifi_456',['CIOT_IFACE_ID_WIFI',['../ciot__ifaces_8h.html#a9d5cb59b2cf79db4358c80d28c99dd1ea6ff4fdc5bf330bfbde15f71646b3a14f',1,'ciot_ifaces.h']]], + ['ciot_5fiface_5fprocess_5fmsg_457',['ciot_iface_process_msg',['../ciot__iface_8h.html#a1838217e75528a5d17f7e3b640c58321',1,'ciot_iface.h']]], + ['ciot_5fiface_5fprocess_5freq_458',['ciot_iface_process_req',['../ciot__iface_8h.html#abc404557e0571e7e5ea0c5db63fa8c23',1,'ciot_iface.h']]], + ['ciot_5fiface_5fprocess_5freq_5ffn_459',['ciot_iface_process_req_fn',['../ciot__iface_8h.html#ae586597c42a97043136f6afe51e7ebe8',1,'ciot_iface.h']]], + ['ciot_5fiface_5fregister_5fevent_460',['ciot_iface_register_event',['../ciot__iface_8h.html#abded5657da5e3c7e38c1185b4b14a4a8',1,'ciot_iface.h']]], + ['ciot_5fiface_5fregister_5frequest_461',['ciot_iface_register_request',['../ciot__iface_8h.html#acfdf034f3291c65ee6798ffc860b6f1a',1,'ciot_iface.h']]], + ['ciot_5fiface_5freq_5finfo_462',['ciot_iface_req_info',['../structciot__iface__req__info.html',1,'']]], + ['ciot_5fiface_5freq_5finfo_5ft_463',['ciot_iface_req_info_t',['../ciot__iface_8h.html#a3c7fbbc6d64e6ea8584c014743e20fb9',1,'ciot_iface.h']]], + ['ciot_5fiface_5freq_5fstatus_464',['ciot_iface_req_status',['../ciot__iface_8h.html#aa73c62bfec675d5d722fab4532b753ca',1,'ciot_iface.h']]], + ['ciot_5fiface_5freq_5fstatus_5fidle_465',['CIOT_IFACE_REQ_STATUS_IDLE',['../ciot__iface_8h.html#aa73c62bfec675d5d722fab4532b753caa6fad5b037b43a54a8d8e8f70c6e30eb6',1,'ciot_iface.h']]], + ['ciot_5fiface_5freq_5fstatus_5freceived_466',['CIOT_IFACE_REQ_STATUS_RECEIVED',['../ciot__iface_8h.html#aa73c62bfec675d5d722fab4532b753caa52b88fef2a02a82b04031ad4ba09d0ef',1,'ciot_iface.h']]], + ['ciot_5fiface_5freq_5fstatus_5fsended_467',['CIOT_IFACE_REQ_STATUS_SENDED',['../ciot__iface_8h.html#aa73c62bfec675d5d722fab4532b753caac426693d5012b5aed25f77d2e8bedda5',1,'ciot_iface.h']]], + ['ciot_5fiface_5freq_5fstatus_5ft_468',['ciot_iface_req_status_t',['../ciot__iface_8h.html#a53ef55e31fed0fb7bbc727b4b45c8b18',1,'ciot_iface.h']]], + ['ciot_5fiface_5freset_5frequest_469',['ciot_iface_reset_request',['../ciot__iface_8h.html#aefceafcf049557b64450785501b2470a',1,'ciot_iface.h']]], + ['ciot_5fiface_5fsend_5fdata_470',['ciot_iface_send_data',['../ciot__iface_8h.html#ac30f4e1e8fcb5a66822b04c384890c58',1,'ciot_iface.h']]], + ['ciot_5fiface_5fsend_5fdata_5ffn_471',['ciot_iface_send_data_fn',['../ciot__iface_8h.html#affffc532ae0b36b941fc0ed0376a0a5a',1,'ciot_iface.h']]], + ['ciot_5fiface_5fsend_5fmsg_472',['ciot_iface_send_msg',['../ciot__iface_8h.html#a5e15dc97b9b45855f868dee02c69c166',1,'ciot_iface.h']]], + ['ciot_5fiface_5fsend_5freq_473',['ciot_iface_send_req',['../ciot__iface_8h.html#a5f8b92fd30cad0f550ef9976e037b93e',1,'ciot_iface.h']]], + ['ciot_5fiface_5fsend_5frsp_474',['ciot_iface_send_rsp',['../ciot__iface_8h.html#ae6a255f29e6adcc8a7325c29abba6844',1,'ciot_iface.h']]], + ['ciot_5fiface_5fset_5fserializer_475',['ciot_iface_set_serializer',['../ciot__iface_8h.html#ac6198bf9f283fff84839fcba7aaa0682',1,'ciot_iface.h']]], + ['ciot_5fiface_5fstart_476',['ciot_iface_start',['../ciot__iface_8h.html#a15efdb74520f75fe9f0a695a349f07e0',1,'ciot_iface.h']]], + ['ciot_5fiface_5fstart_5ffn_477',['ciot_iface_start_fn',['../ciot__iface_8h.html#afa768ec7c39932d18718c66358303d16',1,'ciot_iface.h']]], + ['ciot_5fiface_5fstop_478',['ciot_iface_stop',['../ciot__iface_8h.html#a7ad3131a637f86ed8d9a4655f060deca',1,'ciot_iface.h']]], + ['ciot_5fiface_5fstop_5ffn_479',['ciot_iface_stop_fn',['../ciot__iface_8h.html#adbb3382dd13c68ed5090d0021bfd8f29',1,'ciot_iface.h']]], + ['ciot_5fiface_5ft_480',['ciot_iface_t',['../ciot__iface_8h.html#ac87bf8f245c1f7cc82f57bc87de9ad71',1,'ciot_iface.h']]], + ['ciot_5fiface_5fto_5fstr_481',['ciot_iface_to_str',['../ciot__iface_8h.html#ad4bea4982fb363829998c5fa64f76ccb',1,'ciot_iface.h']]], + ['ciot_5fiface_5ftype_5fble_482',['CIOT_IFACE_TYPE_BLE',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a7ca4cc3f201a9ce47e80e5e6685e6fd5',1,'ciot_msg_types.h']]], + ['ciot_5fiface_5ftype_5fble_5fscn_483',['CIOT_IFACE_TYPE_BLE_SCN',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a9d8b8db1db47ef5baf0a7894264e364c',1,'ciot_msg_types.h']]], + ['ciot_5fiface_5ftype_5fbridge_484',['CIOT_IFACE_TYPE_BRIDGE',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a67c77e20c41ae475451f4f01a3b2fdb4',1,'ciot_msg_types.h']]], + ['ciot_5fiface_5ftype_5fciot_485',['CIOT_IFACE_TYPE_CIOT',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608ad57b9f27f19fb7d16c08c4857ae7291d',1,'ciot_msg_types.h']]], + ['ciot_5fiface_5ftype_5fcustom_486',['CIOT_IFACE_TYPE_CUSTOM',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608aff200c36869c4d69a1cb8edf4d45202a',1,'ciot_msg_types.h']]], + ['ciot_5fiface_5ftype_5fdfu_487',['CIOT_IFACE_TYPE_DFU',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608acf86ce5e05bba2ba30d275ce78438806',1,'ciot_msg_types.h']]], + ['ciot_5fiface_5ftype_5feth_488',['CIOT_IFACE_TYPE_ETH',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608aa3dce94aa5a8e8a6c1a0592f59cdb747',1,'ciot_msg_types.h']]], + ['ciot_5fiface_5ftype_5fgpio_489',['CIOT_IFACE_TYPE_GPIO',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a22891d22cf46370531f6eb833b037235',1,'ciot_msg_types.h']]], + ['ciot_5fiface_5ftype_5fhttp_5fclient_490',['CIOT_IFACE_TYPE_HTTP_CLIENT',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608ad89e327f418602211b2202c414291750',1,'ciot_msg_types.h']]], + ['ciot_5fiface_5ftype_5fhttp_5fserver_491',['CIOT_IFACE_TYPE_HTTP_SERVER',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608ab91f2d2aa5ecf13c79d0028a487584ca',1,'ciot_msg_types.h']]], + ['ciot_5fiface_5ftype_5fmqtt_492',['CIOT_IFACE_TYPE_MQTT',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a3065d35cd0a10d31382d9c5b38249ca5',1,'ciot_msg_types.h']]], + ['ciot_5fiface_5ftype_5fntp_493',['CIOT_IFACE_TYPE_NTP',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a08b41fe63e5a4b8ea4710adaac89f8b8',1,'ciot_msg_types.h']]], + ['ciot_5fiface_5ftype_5fota_494',['CIOT_IFACE_TYPE_OTA',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608ae07a8e59d7924852ed66075eefcd1c3d',1,'ciot_msg_types.h']]], + ['ciot_5fiface_5ftype_5fstorage_495',['CIOT_IFACE_TYPE_STORAGE',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a613cf065591c3e8300a4fe009a044aec',1,'ciot_msg_types.h']]], + ['ciot_5fiface_5ftype_5fsystem_496',['CIOT_IFACE_TYPE_SYSTEM',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a327aeede0ef7fba282b1911dfa988d28',1,'ciot_msg_types.h']]], + ['ciot_5fiface_5ftype_5ftcp_497',['CIOT_IFACE_TYPE_TCP',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608ab013ddfd461842f9031bed420c5720bc',1,'ciot_msg_types.h']]], + ['ciot_5fiface_5ftype_5fto_5fstr_498',['ciot_iface_type_to_str',['../ciot__iface_8h.html#a6411ae488746c99b42a7970dcbe6b042',1,'ciot_iface.h']]], + ['ciot_5fiface_5ftype_5fuart_499',['CIOT_IFACE_TYPE_UART',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608ab3a691e3ca526bb17bd62366d83bbcd7',1,'ciot_msg_types.h']]], + ['ciot_5fiface_5ftype_5funknown_500',['CIOT_IFACE_TYPE_UNKNOWN',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a75837371354fe9353d77acc9fc49ee6d',1,'ciot_msg_types.h']]], + ['ciot_5fiface_5ftype_5fusb_501',['CIOT_IFACE_TYPE_USB',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a2c76f658f22fa29ed49d56c697215918',1,'ciot_msg_types.h']]], + ['ciot_5fiface_5ftype_5fwifi_502',['CIOT_IFACE_TYPE_WIFI',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608a53e8d8ba26c3663e0a7f9d8a70aa2770',1,'ciot_msg_types.h']]], + ['ciot_5fifaces_503',['ciot_ifaces',['../structciot__ifaces.html',1,'']]], + ['ciot_5fifaces_2eh_504',['ciot_ifaces.h',['../ciot__ifaces_8h.html',1,'']]], + ['ciot_5fifaces_5ft_505',['ciot_ifaces_t',['../ciot__ifaces_8h.html#a689f38bac0aaf012140f11da651c8c0f',1,'ciot_ifaces.h']]], + ['ciot_5finfo_5ft_506',['ciot_info_t',['../structciot__info__t.html',1,'']]], + ['ciot_5flib_2eh_507',['ciot_lib.h',['../ciot__lib_8h.html',1,'']]], + ['ciot_5flog_2eh_508',['ciot_log.h',['../ciot__log_8h.html',1,'']]], + ['ciot_5flog_5fbuffer_5fhex_509',['CIOT_LOG_BUFFER_HEX',['../ciot__log_8h.html#a017fce4c69c3715ce3301383a4b34510',1,'ciot_log.h']]], + ['ciot_5flog_5fhex_510',['CIOT_LOG_HEX',['../ciot__log_8h.html#af003b1fbcac6bc1f6fb1c90d3e89f1ac',1,'ciot_log.h']]], + ['ciot_5flog_5flevel_511',['ciot_log_level',['../ciot__log_8h.html#a399d3388116ce0479b91f0fdb5b56432',1,'ciot_log.h']]], + ['ciot_5flog_5flevel_5fdebug_512',['CIOT_LOG_LEVEL_DEBUG',['../ciot__log_8h.html#a399d3388116ce0479b91f0fdb5b56432a1c854b20829665b670feca84ed8f0260',1,'ciot_log.h']]], + ['ciot_5flog_5flevel_5ferror_513',['CIOT_LOG_LEVEL_ERROR',['../ciot__log_8h.html#a399d3388116ce0479b91f0fdb5b56432a05dd8f3fe5ca95cc5e1da78333e58356',1,'ciot_log.h']]], + ['ciot_5flog_5flevel_5finfo_514',['CIOT_LOG_LEVEL_INFO',['../ciot__log_8h.html#a399d3388116ce0479b91f0fdb5b56432a5f57b5ccf4a45d424a48b7edfc305a6b',1,'ciot_log.h']]], + ['ciot_5flog_5flevel_5fnone_515',['CIOT_LOG_LEVEL_NONE',['../ciot__log_8h.html#a399d3388116ce0479b91f0fdb5b56432a77fe66f0cf4772e333512b1f009c460d',1,'ciot_log.h']]], + ['ciot_5flog_5flevel_5ft_516',['ciot_log_level_t',['../ciot__log_8h.html#af095bb48295769c5ebc399890c12cb93',1,'ciot_log.h']]], + ['ciot_5flog_5flevel_5fverbose_517',['CIOT_LOG_LEVEL_VERBOSE',['../ciot__log_8h.html#a399d3388116ce0479b91f0fdb5b56432a2acc86c1f4f9cc2ff727d0d59f235162',1,'ciot_log.h']]], + ['ciot_5flog_5flevel_5fwarning_518',['CIOT_LOG_LEVEL_WARNING',['../ciot__log_8h.html#a399d3388116ce0479b91f0fdb5b56432af9392e21b089c518e0a9dc1be3d4a799',1,'ciot_log.h']]], + ['ciot_5flog_5fmsg_519',['CIOT_LOG_MSG',['../ciot__log_8h.html#a2f7e6eb84773996a18fc43ccada98dc4',1,'ciot_log.h']]], + ['ciot_5flog_5fmsg_5fp_520',['CIOT_LOG_MSG_P',['../ciot__log_8h.html#a2907f8630cc580826a1ec21930c511d3',1,'ciot_log.h']]], + ['ciot_5flogd_521',['CIOT_LOGD',['../ciot__log_8h.html#a1576040bae89b4db49ec4fa591cc058f',1,'ciot_log.h']]], + ['ciot_5floge_522',['CIOT_LOGE',['../ciot__log_8h.html#a2707adc47298b0e7b3a09627ff04a020',1,'ciot_log.h']]], + ['ciot_5flogi_523',['CIOT_LOGI',['../ciot__log_8h.html#a9e6947da6e5c522adbadd7dea5242e5f',1,'ciot_log.h']]], + ['ciot_5flogv_524',['CIOT_LOGV',['../ciot__log_8h.html#a1e7ff68dc9676c1a06338c170fd52dbc',1,'ciot_log.h']]], + ['ciot_5flogw_525',['CIOT_LOGW',['../ciot__log_8h.html#a95d4dba62da56d115efe881b38c73da6',1,'ciot_log.h']]], + ['ciot_5fmqtt_5fevent_5fconnecting_526',['CIOT_MQTT_EVENT_CONNECTING',['../ciot__mqttc_8h.html#afc1eb0a89e9bcff163827db2fb32b898a7fdb135e2a3ea11cafe0449a29a16d0d',1,'ciot_mqttc.h']]], + ['ciot_5fmqtt_5fevent_5fsubscribed_527',['CIOT_MQTT_EVENT_SUBSCRIBED',['../ciot__mqttc_8h.html#afc1eb0a89e9bcff163827db2fb32b898aa028c2dfe1e1b2a3a3efb1cc698a6b68',1,'ciot_mqttc.h']]], + ['ciot_5fmqtt_5fevent_5funsubscribed_528',['CIOT_MQTT_EVENT_UNSUBSCRIBED',['../ciot__mqttc_8h.html#afc1eb0a89e9bcff163827db2fb32b898a6cefc05e924cb723d9f72f2e674e5ef7',1,'ciot_mqttc.h']]], + ['ciot_5fmqtt_5freq_5fpublish_529',['CIOT_MQTT_REQ_PUBLISH',['../ciot__mqttc__types_8h.html#a2fcaf55ed84bd01f16ae5184e60aab43a5b0bc93e48a1c931162fc99240863279',1,'ciot_mqttc_types.h']]], + ['ciot_5fmqtt_5freq_5fsubscribe_530',['CIOT_MQTT_REQ_SUBSCRIBE',['../ciot__mqttc__types_8h.html#a2fcaf55ed84bd01f16ae5184e60aab43ab1ca6f635ae3eb1dc067fd0058846f55',1,'ciot_mqttc_types.h']]], + ['ciot_5fmqtt_5freq_5funknonw_531',['CIOT_MQTT_REQ_UNKNONW',['../ciot__mqttc__types_8h.html#a2fcaf55ed84bd01f16ae5184e60aab43a1832343a674951b5cc6e0b1281ac8872',1,'ciot_mqttc_types.h']]], + ['ciot_5fmqtt_5fstate_5fconnected_532',['CIOT_MQTT_STATE_CONNECTED',['../ciot__mqttc__types_8h.html#a5ee7ab2e590208687470cf07d7adb2cea79b34e4a21856bfabc772c8491525476',1,'ciot_mqttc_types.h']]], + ['ciot_5fmqtt_5fstate_5fconnecting_533',['CIOT_MQTT_STATE_CONNECTING',['../ciot__mqttc__types_8h.html#a5ee7ab2e590208687470cf07d7adb2ceaead9e930ad102c9ab546ca112841a1a8',1,'ciot_mqttc_types.h']]], + ['ciot_5fmqtt_5fstate_5fdisconnected_534',['CIOT_MQTT_STATE_DISCONNECTED',['../ciot__mqttc__types_8h.html#a5ee7ab2e590208687470cf07d7adb2cea004bb3b5e1c7526ac86d715808871aab',1,'ciot_mqttc_types.h']]], + ['ciot_5fmqtt_5fstate_5fdisconnecting_535',['CIOT_MQTT_STATE_DISCONNECTING',['../ciot__mqttc__types_8h.html#a5ee7ab2e590208687470cf07d7adb2cea556288d80c5f236a85b349084936ad24',1,'ciot_mqttc_types.h']]], + ['ciot_5fmqtt_5fstate_5ferror_536',['CIOT_MQTT_STATE_ERROR',['../ciot__mqttc__types_8h.html#a5ee7ab2e590208687470cf07d7adb2cea3cd3678d8b777367f05ebeb64fa5d6e1',1,'ciot_mqttc_types.h']]], + ['ciot_5fmqtt_5ftransport_5fover_5fssl_537',['CIOT_MQTT_TRANSPORT_OVER_SSL',['../ciot__mqttc__types_8h.html#ac27be04d218be91a37994c044f65e684a5d3cd88c4c3238306de35766ebd4c119',1,'ciot_mqttc_types.h']]], + ['ciot_5fmqtt_5ftransport_5fover_5ftcp_538',['CIOT_MQTT_TRANSPORT_OVER_TCP',['../ciot__mqttc__types_8h.html#ac27be04d218be91a37994c044f65e684a525b4c85b24d94e497cb786ba050b7f9',1,'ciot_mqttc_types.h']]], + ['ciot_5fmqtt_5ftransport_5fover_5fws_539',['CIOT_MQTT_TRANSPORT_OVER_WS',['../ciot__mqttc__types_8h.html#ac27be04d218be91a37994c044f65e684a5ce16156ba60d3c867acb7d960d574fd',1,'ciot_mqttc_types.h']]], + ['ciot_5fmqtt_5ftransport_5fover_5fwss_540',['CIOT_MQTT_TRANSPORT_OVER_WSS',['../ciot__mqttc__types_8h.html#ac27be04d218be91a37994c044f65e684adf27ceb8c08b58be48c97e2057e51fe4',1,'ciot_mqttc_types.h']]], + ['ciot_5fmqtt_5ftransport_5funknown_541',['CIOT_MQTT_TRANSPORT_UNKNOWN',['../ciot__mqttc__types_8h.html#ac27be04d218be91a37994c044f65e684a2f26568f96a771a6de885dcdecc7e83c',1,'ciot_mqttc_types.h']]], + ['ciot_5fmqttc_2eh_542',['ciot_mqttc.h',['../ciot__mqttc_8h.html',1,'']]], + ['ciot_5fmqttc_5fcfg_5ft_543',['ciot_mqttc_cfg_t',['../structciot__mqttc__cfg__t.html',1,'']]], + ['ciot_5fmqttc_5fdata_5fu_544',['ciot_mqttc_data_u',['../unionciot__mqttc__data__u.html',1,'']]], + ['ciot_5fmqttc_5ferror_5ft_545',['ciot_mqttc_error_t',['../structciot__mqttc__error__t.html',1,'']]], + ['ciot_5fmqttc_5fevent_546',['ciot_mqttc_event',['../structciot__mqttc__event.html',1,'']]], + ['ciot_5fmqttc_5fevent_5fdata_547',['ciot_mqttc_event_data',['../structciot__mqttc__event__data.html',1,'']]], + ['ciot_5fmqttc_5fevent_5fdata_5ft_548',['ciot_mqttc_event_data_t',['../ciot__mqttc__types_8h.html#ac871b56a938626c38c705618405ee350',1,'ciot_mqttc_types.h']]], + ['ciot_5fmqttc_5fevent_5fid_549',['ciot_mqttc_event_id',['../ciot__mqttc_8h.html#afc1eb0a89e9bcff163827db2fb32b898',1,'ciot_mqttc.h']]], + ['ciot_5fmqttc_5fevent_5fid_5ft_550',['ciot_mqttc_event_id_t',['../ciot__mqttc_8h.html#a366b460dc8e7ec1e3f89c9247882842a',1,'ciot_mqttc.h']]], + ['ciot_5fmqttc_5fevent_5fu_551',['ciot_mqttc_event_u',['../ciot__mqttc__types_8h.html#ab0721513ba2621aaa8012e6a5f6e79ea',1,'ciot_mqttc_types.h']]], + ['ciot_5fmqttc_5fnew_552',['ciot_mqttc_new',['../ciot__mqttc_8h.html#aa6ac15e5f6cfb3346cff3247dd25c279',1,'ciot_mqttc.h']]], + ['ciot_5fmqttc_5fprocess_5freq_553',['ciot_mqttc_process_req',['../ciot__mqttc_8h.html#aba9394c6a08cb0c2087ffdc537f75125',1,'ciot_mqttc.h']]], + ['ciot_5fmqttc_5fpublish_554',['ciot_mqttc_publish',['../ciot__mqttc_8h.html#a55aab38479c4242b37397c51e15dad37',1,'ciot_mqttc.h']]], + ['ciot_5fmqttc_5freq_5fdata_5fu_555',['ciot_mqttc_req_data_u',['../unionciot__mqttc__req__data__u.html',1,'']]], + ['ciot_5fmqttc_5freq_5fpublish_5ft_556',['ciot_mqttc_req_publish_t',['../structciot__mqttc__req__publish__t.html',1,'']]], + ['ciot_5fmqttc_5freq_5fsubscribe_5ft_557',['ciot_mqttc_req_subscribe_t',['../structciot__mqttc__req__subscribe__t.html',1,'']]], + ['ciot_5fmqttc_5freq_5ft_558',['ciot_mqttc_req_t',['../structciot__mqttc__req__t.html',1,'']]], + ['ciot_5fmqttc_5freq_5ftype_5ft_559',['ciot_mqttc_req_type_t',['../ciot__mqttc__types_8h.html#a2fcaf55ed84bd01f16ae5184e60aab43',1,'ciot_mqttc_types.h']]], + ['ciot_5fmqttc_5freset_5fdata_5frate_560',['ciot_mqttc_reset_data_rate',['../ciot__mqttc_8h.html#ad7bcb714dbb489d3b8508cb7acf72b27',1,'ciot_mqttc.h']]], + ['ciot_5fmqttc_5fsend_5fdata_561',['ciot_mqttc_send_data',['../ciot__mqttc_8h.html#aa04b6f015e9bbc8ab614027c460f899d',1,'ciot_mqttc.h']]], + ['ciot_5fmqttc_5fstart_562',['ciot_mqttc_start',['../ciot__mqttc_8h.html#a19c183447b4f862cb53f6ae127a80db0',1,'ciot_mqttc.h']]], + ['ciot_5fmqttc_5fstate_5ft_563',['ciot_mqttc_state_t',['../ciot__mqttc__types_8h.html#a5ee7ab2e590208687470cf07d7adb2ce',1,'ciot_mqttc_types.h']]], + ['ciot_5fmqttc_5fstatus_5fmsg_5ft_564',['ciot_mqttc_status_msg_t',['../structciot__mqttc__status__msg__t.html',1,'']]], + ['ciot_5fmqttc_5fstatus_5ft_565',['ciot_mqttc_status_t',['../structciot__mqttc__status__t.html',1,'']]], + ['ciot_5fmqttc_5fstop_566',['ciot_mqttc_stop',['../ciot__mqttc_8h.html#af81da24c4d251706f5f901e810752597',1,'ciot_mqttc.h']]], + ['ciot_5fmqttc_5fsubscribe_567',['ciot_mqttc_subscribe',['../ciot__mqttc_8h.html#aee005c5cae5b325548b381df58613742',1,'ciot_mqttc.h']]], + ['ciot_5fmqttc_5ft_568',['ciot_mqttc_t',['../ciot__mqttc_8h.html#a1952c9049b9ddd9b40368e332dec8374',1,'ciot_mqttc.h']]], + ['ciot_5fmqttc_5ftopics_5fcfg_5ft_569',['ciot_mqttc_topics_cfg_t',['../structciot__mqttc__topics__cfg__t.html',1,'']]], + ['ciot_5fmqttc_5ftransport_5ft_570',['ciot_mqttc_transport_t',['../ciot__mqttc__types_8h.html#ac27be04d218be91a37994c044f65e684',1,'ciot_mqttc_types.h']]], + ['ciot_5fmqttc_5ftypes_2eh_571',['ciot_mqttc_types.h',['../ciot__mqttc__types_8h.html',1,'']]], + ['ciot_5fmsg_5fdata_5fu_572',['ciot_msg_data_u',['../unionciot__msg__data__u.html',1,'']]], + ['ciot_5fmsg_5ferror_5ft_573',['ciot_msg_error_t',['../structciot__msg__error__t.html',1,'']]], + ['ciot_5fmsg_5fget_5fsize_574',['CIOT_MSG_GET_SIZE',['../ciot__msg__types_8h.html#a9ba863166c0f0c740fef8994c7f21598',1,'ciot_msg_types.h']]], + ['ciot_5fmsg_5fheader_5fsize_575',['CIOT_MSG_HEADER_SIZE',['../ciot__msg__types_8h.html#aa577da47450d2b604f58ee6e957c7b1a',1,'ciot_msg_types.h']]], + ['ciot_5fmsg_5fheader_5ft_576',['ciot_msg_header_t',['../structciot__msg__header__t.html',1,'']]], + ['ciot_5fmsg_5fiface_5finfo_5ft_577',['ciot_msg_iface_info_t',['../structciot__msg__iface__info__t.html',1,'']]], + ['ciot_5fmsg_5fiface_5ftype_5ft_578',['ciot_msg_iface_type_t',['../ciot__msg__types_8h.html#ab6f673a5ce5d4f6d33343a054480f608',1,'ciot_msg_types.h']]], + ['ciot_5fmsg_5fmax_5fsize_579',['CIOT_MSG_MAX_SIZE',['../ciot__msg__types_8h.html#a3c8f8294a63f46a7a7ed043ba8dacc93',1,'ciot_msg_types.h']]], + ['ciot_5fmsg_5ft_580',['ciot_msg_t',['../structciot__msg__t.html',1,'']]], + ['ciot_5fmsg_5ftype_5fcustom_581',['CIOT_MSG_TYPE_CUSTOM',['../ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba2161a50e60627d09f6278819d93cb4f8',1,'ciot_msg_types.h']]], + ['ciot_5fmsg_5ftype_5ferror_582',['CIOT_MSG_TYPE_ERROR',['../ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba5ca3e5de0b2ddc69c53654a0d13d713a',1,'ciot_msg_types.h']]], + ['ciot_5fmsg_5ftype_5fevent_583',['CIOT_MSG_TYPE_EVENT',['../ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba07a7987e3b4a2f82eb41213b25068458',1,'ciot_msg_types.h']]], + ['ciot_5fmsg_5ftype_5fget_5fconfig_584',['CIOT_MSG_TYPE_GET_CONFIG',['../ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba9ca32ac07611a36e17181e4e2dee5ba7',1,'ciot_msg_types.h']]], + ['ciot_5fmsg_5ftype_5fget_5fstatus_585',['CIOT_MSG_TYPE_GET_STATUS',['../ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba8ebce537fc418c0a5dc2231de2660d5e',1,'ciot_msg_types.h']]], + ['ciot_5fmsg_5ftype_5frequest_586',['CIOT_MSG_TYPE_REQUEST',['../ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba168673ee4b498d56024c3c46d5d6d53a',1,'ciot_msg_types.h']]], + ['ciot_5fmsg_5ftype_5fstart_587',['CIOT_MSG_TYPE_START',['../ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cbacada4954ca221fdc25c2c478625d6a9e',1,'ciot_msg_types.h']]], + ['ciot_5fmsg_5ftype_5fstop_588',['CIOT_MSG_TYPE_STOP',['../ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cbae01a23d279f8674eb8e7fbc4c8b30a28',1,'ciot_msg_types.h']]], + ['ciot_5fmsg_5ftype_5ft_589',['ciot_msg_type_t',['../ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cb',1,'ciot_msg_types.h']]], + ['ciot_5fmsg_5ftype_5fto_5fstr_590',['ciot_msg_type_to_str',['../ciot__msg__types_8h.html#ad74fa5c942e63dc4c806fbfd6414db45',1,'ciot_msg_types.h']]], + ['ciot_5fmsg_5ftype_5funknown_591',['CIOT_MSG_TYPE_UNKNOWN',['../ciot__msg__types_8h.html#a3519ce8c894c6e69c9969c9b419c09cba65c33be2457e343493460c29d3b03e0e',1,'ciot_msg_types.h']]], + ['ciot_5fmsg_5ftypes_2eh_592',['ciot_msg_types.h',['../ciot__msg__types_8h.html',1,'']]], + ['ciot_5fnew_593',['ciot_new',['../ciot_8h.html#af5987ba03fd375f7441ab9bf2c53f5f0',1,'ciot.h']]], + ['ciot_5fnrf_5fdfu_2eh_594',['ciot_nrf_dfu.h',['../ciot__nrf__dfu_8h.html',1,'']]], + ['ciot_5fnrf_5fdfu_5fcfg_595',['ciot_nrf_dfu_cfg',['../structciot__nrf__dfu__cfg.html',1,'']]], + ['ciot_5fnrf_5fdfu_5fcfg_5ft_596',['ciot_nrf_dfu_cfg_t',['../ciot__nrf__dfu_8h.html#af6665b1af9b889771ac694b094584274',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fext_5ferror_5fcode_597',['ciot_nrf_dfu_ext_error_code',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fext_5ferror_5fcode_5ft_598',['ciot_nrf_dfu_ext_error_code_t',['../ciot__nrf__dfu_8h.html#a15b30f8e9e3796c5d5ada153348a36ab',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fmax_5fdfu_5fpkt_5flen_5fble_599',['CIOT_NRF_DFU_MAX_DFU_PKT_LEN_BLE',['../ciot__nrf__dfu_8h.html#a7f9149227c077569702eec2a6bf10eb0',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fmax_5fdfu_5fpkt_5flen_5fuart_600',['CIOT_NRF_DFU_MAX_DFU_PKT_LEN_UART',['../ciot__nrf__dfu_8h.html#a47e67583a19bb09b121e5f710d019c65',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fnew_601',['ciot_nrf_dfu_new',['../ciot__nrf__dfu_8h.html#aad325ff49e9a727535ba2245af2896f3',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fop_602',['ciot_nrf_dfu_op',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22f',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fop_5fabort_603',['CIOT_NRF_DFU_OP_ABORT',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fa11aec25a50a4001a3a7d1f5e2eea38b2',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fop_5fcrc_5fget_604',['CIOT_NRF_DFU_OP_CRC_GET',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fa0be8dfd4a9a263aaff04bf4286adf485',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fop_5ffirmware_5fversion_605',['CIOT_NRF_DFU_OP_FIRMWARE_VERSION',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fa6b6934d66b625e1c35b38924626024c6',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fop_5fhardware_5fversion_606',['CIOT_NRF_DFU_OP_HARDWARE_VERSION',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fa59921b1894fcdfe66347bea3b54e4e04',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fop_5finvalid_607',['CIOT_NRF_DFU_OP_INVALID',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22faa86c9874390b6aed30bfb676c780361a',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fop_5fmtu_5fget_608',['CIOT_NRF_DFU_OP_MTU_GET',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fa7ebc56e7820cd05d85a8be13ded4be67',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fop_5fobject_5fcreate_609',['CIOT_NRF_DFU_OP_OBJECT_CREATE',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fa949711c2a53bb4f5a0e95ede57961de5',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fop_5fobject_5fexecute_610',['CIOT_NRF_DFU_OP_OBJECT_EXECUTE',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22facefebfaa540776ef026faf8ffd1d6f2c',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fop_5fobject_5fselect_611',['CIOT_NRF_DFU_OP_OBJECT_SELECT',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fa34e5ddf70ff4473417abfaf2fcca9b37',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fop_5fobject_5fwrite_612',['CIOT_NRF_DFU_OP_OBJECT_WRITE',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fa8d93489a0a27db77cbb426eec1575e43',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fop_5fping_613',['CIOT_NRF_DFU_OP_PING',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fa306c499e291f73d904669d4f5b452484',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fop_5fprotocol_5fversion_614',['CIOT_NRF_DFU_OP_PROTOCOL_VERSION',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fa66b58d6f2457c551911bf581b0b597f5',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fop_5freceipt_5fnotif_5fset_615',['CIOT_NRF_DFU_OP_RECEIPT_NOTIF_SET',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fa441ab25d1d04a7731c0f5e4ce4aa4c3d',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fop_5fresponse_616',['CIOT_NRF_DFU_OP_RESPONSE',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fa384c95064568d91872ccdff4a60ed61a',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fop_5fslip_5fpacket_5fend_617',['CIOT_NRF_DFU_OP_SLIP_PACKET_END',['../ciot__nrf__dfu_8h.html#a2abe0b961d351c9d48e8ccd6b703c22fac60c573eb055a584d3a2d6a9d81409b3',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fop_5ft_618',['ciot_nrf_dfu_op_t',['../ciot__nrf__dfu_8h.html#a76d2a2022825679c72f023ccc3419ec0',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fpacket_619',['ciot_nrf_dfu_packet',['../structciot__nrf__dfu__packet.html',1,'']]], + ['ciot_5fnrf_5fdfu_5fpacket_5ft_620',['ciot_nrf_dfu_packet_t',['../ciot__nrf__dfu_8h.html#a6b399382dcb80638fd681cded2599bba',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fpacket_5ftype_621',['ciot_nrf_dfu_packet_type',['../ciot__nrf__dfu_8h.html#ab974f696095f5fdfd9a2bf98983ddc06',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fpacket_5ftype_5fapp_5fimage_622',['CIOT_NRF_DFU_PACKET_TYPE_APP_IMAGE',['../ciot__nrf__dfu_8h.html#ab974f696095f5fdfd9a2bf98983ddc06a5ecc108cbe6e0d67b52aa89d30e6536a',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fpacket_5ftype_5finit_623',['CIOT_NRF_DFU_PACKET_TYPE_INIT',['../ciot__nrf__dfu_8h.html#ab974f696095f5fdfd9a2bf98983ddc06a58dd6cb15eff5a9634ae0673debae2ab',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fpacket_5ftype_5ft_624',['ciot_nrf_dfu_packet_type_t',['../ciot__nrf__dfu_8h.html#ad1e2509ab93366447d9f971d533419b0',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fprocess_5freq_625',['ciot_nrf_dfu_process_req',['../ciot__nrf__dfu_8h.html#a470062374eb38631c7bf20f148011ede',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fread_5ffile_626',['ciot_nrf_dfu_read_file',['../ciot__nrf__dfu_8h.html#af751feb3c4ee63d05fe6dc1b2c591d4e',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fres_5fcode_5fext_5ferror_627',['CIOT_NRF_DFU_RES_CODE_EXT_ERROR',['../ciot__nrf__dfu_8h.html#a1fe3f84c3a3765c0c4138d0423e09dbbaf20b2768859408e961a888aae72e4f83',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fres_5fcode_5finsufficient_5fresources_628',['CIOT_NRF_DFU_RES_CODE_INSUFFICIENT_RESOURCES',['../ciot__nrf__dfu_8h.html#a1fe3f84c3a3765c0c4138d0423e09dbba06f56145d9f3ef38be063e323c4bc33c',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fres_5fcode_5finvalid_629',['CIOT_NRF_DFU_RES_CODE_INVALID',['../ciot__nrf__dfu_8h.html#a1fe3f84c3a3765c0c4138d0423e09dbba5363aba557b0d617d6b8c3d3ca2284ca',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fres_5fcode_5finvalid_5fobject_630',['CIOT_NRF_DFU_RES_CODE_INVALID_OBJECT',['../ciot__nrf__dfu_8h.html#a1fe3f84c3a3765c0c4138d0423e09dbba799c1d5ee8dd5574537b167e98499f16',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fres_5fcode_5finvalid_5fparameter_631',['CIOT_NRF_DFU_RES_CODE_INVALID_PARAMETER',['../ciot__nrf__dfu_8h.html#a1fe3f84c3a3765c0c4138d0423e09dbbab2a095ee2dfb1a01af69266390eab21c',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fres_5fcode_5fop_5fcode_5fnot_5fsupported_632',['CIOT_NRF_DFU_RES_CODE_OP_CODE_NOT_SUPPORTED',['../ciot__nrf__dfu_8h.html#a1fe3f84c3a3765c0c4138d0423e09dbbaba90277ffa964d5019755f287e8df8e4',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fres_5fcode_5foperation_5ffailed_633',['CIOT_NRF_DFU_RES_CODE_OPERATION_FAILED',['../ciot__nrf__dfu_8h.html#a1fe3f84c3a3765c0c4138d0423e09dbbae028cd46f32cc471013710a10b1748eb',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fres_5fcode_5foperation_5fnot_5fpermitted_634',['CIOT_NRF_DFU_RES_CODE_OPERATION_NOT_PERMITTED',['../ciot__nrf__dfu_8h.html#a1fe3f84c3a3765c0c4138d0423e09dbba8ae66ea17e57737330c6dbb4e4d28b69',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fres_5fcode_5fsuccess_635',['CIOT_NRF_DFU_RES_CODE_SUCCESS',['../ciot__nrf__dfu_8h.html#a1fe3f84c3a3765c0c4138d0423e09dbba535936d5b4b584ad7bb8a7af9e5552bc',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fres_5fcode_5funsupported_5ftype_636',['CIOT_NRF_DFU_RES_CODE_UNSUPPORTED_TYPE',['../ciot__nrf__dfu_8h.html#a1fe3f84c3a3765c0c4138d0423e09dbba916e351ddf13637d5dfe6c79cd2982bd',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fresult_637',['ciot_nrf_dfu_result',['../ciot__nrf__dfu_8h.html#a1fe3f84c3a3765c0c4138d0423e09dbb',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fresult_5ft_638',['ciot_nrf_dfu_result_t',['../ciot__nrf__dfu_8h.html#a0ef11c38f41f3f2cdcafe8fb6b87f862',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fsend_5fdata_639',['ciot_nrf_dfu_send_data',['../ciot__nrf__dfu_8h.html#afcbdb54986436cb9fdf421ba8f50f077',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fsend_5ffirmware_640',['ciot_nrf_dfu_send_firmware',['../ciot__nrf__dfu_8h.html#af56db9aade46e176e0e286382ca04f7c',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fstart_641',['ciot_nrf_dfu_start',['../ciot__nrf__dfu_8h.html#ade8e82ea98fd5f89242d3a38effba293',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fstart_5fbootloader_642',['ciot_nrf_dfu_start_bootloader',['../ciot__nrf__dfu_8h.html#a818286457b301b0a341208839ade9a90',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fstate_643',['ciot_nrf_dfu_state',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3',1,'ciot_nrf_dfu_state: ciot_nrf_dfu.h'],['../ciot__nrf__dfu_8h.html#aee5e7944d29dc3c5a75706fa4b45cc35',1,'ciot_nrf_dfu_state(ciot_dfu_t self): ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fstate_5fcompleted_644',['CIOT_NRF_DFU_STATE_COMPLETED',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3a445a16b5b89db0c852dc48bc92096b58',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fstate_5fcreate_5fobject_645',['CIOT_NRF_DFU_STATE_CREATE_OBJECT',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3a6b0e0c732f0b02958aa9d9d3055ecd16',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fstate_5ferror_646',['CIOT_NRF_DFU_STATE_ERROR',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3a60afa6e95e03b21559f0579ee7b69b04',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fstate_5fidle_647',['CIOT_NRF_DFU_STATE_IDLE',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3a6455d3c1186b42c96b1f97827e71342f',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fstate_5frequest_5fcrc_648',['CIOT_NRF_DFU_STATE_REQUEST_CRC',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3aa1b1df86ff85c29f399dc91451405784',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fstate_5frequest_5fexecute_649',['CIOT_NRF_DFU_STATE_REQUEST_EXECUTE',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3a0b97b26322ad79bd6d3a725b8eef32b4',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fstate_5fsend_5fping_650',['CIOT_NRF_DFU_STATE_SEND_PING',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3a21b7dbe1f859ebdefdbbac5b77930071',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fstate_5ft_651',['ciot_nrf_dfu_state_t',['../ciot__nrf__dfu_8h.html#a4ef7cf2448bcedc88f7c278ddb30c9a9',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fstate_5fwaiting_5fcrc_652',['CIOT_NRF_DFU_STATE_WAITING_CRC',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3abe14f277137dda905fcd4e5c798c132f',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fstate_5fwaiting_5fcreate_5fobj_653',['CIOT_NRF_DFU_STATE_WAITING_CREATE_OBJ',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3ad8fa89ee49d7550f5f3a49e62e86aa1c',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fstate_5fwaiting_5fexecute_654',['CIOT_NRF_DFU_STATE_WAITING_EXECUTE',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3acac843800e7d29923bdc6189822bbb29',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fstate_5fwaiting_5fping_5fresp_655',['CIOT_NRF_DFU_STATE_WAITING_PING_RESP',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3af5045df1247bf3563ed125171405b002',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fstate_5fwrite_5fdfu_5fpackage_656',['CIOT_NRF_DFU_STATE_WRITE_DFU_PACKAGE',['../ciot__nrf__dfu_8h.html#a548699ff1d8ff4bef907d5387fc33af3aea9a7ecc2182f03fa6bf8ac79eb770b3',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5fstop_657',['ciot_nrf_dfu_stop',['../ciot__nrf__dfu_8h.html#a890127344062271c54ecddd1391c80c3',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5ftask_658',['ciot_nrf_dfu_task',['../ciot__nrf__dfu_8h.html#aac67be0b79a25d514bb05ccf1622c07e',1,'ciot_nrf_dfu.h']]], + ['ciot_5fnrf_5fdfu_5ftimeout_5fsec_659',['CIOT_NRF_DFU_TIMEOUT_SEC',['../ciot__nrf__dfu_8h.html#a907d5c29f7ee7e98e90243fa4f9b6caf',1,'ciot_nrf_dfu.h']]], + ['ciot_5fntp_2eh_660',['ciot_ntp.h',['../ciot__ntp_8h.html',1,'']]], + ['ciot_5fntp_5fcfg_5ft_661',['ciot_ntp_cfg_t',['../structciot__ntp__cfg__t.html',1,'']]], + ['ciot_5fntp_5fdata_5fu_662',['ciot_ntp_data_u',['../unionciot__ntp__data__u.html',1,'']]], + ['ciot_5fntp_5fnew_663',['ciot_ntp_new',['../ciot__ntp_8h.html#a21060aee75e3e21695cb1b47e9dbbea6',1,'ciot_ntp.h']]], + ['ciot_5fntp_5fprocess_5freq_664',['ciot_ntp_process_req',['../ciot__ntp_8h.html#aba2cd40d3a1923cc1c69ae0784bd6f79',1,'ciot_ntp.h']]], + ['ciot_5fntp_5freq_5fdata_5fu_665',['ciot_ntp_req_data_u',['../unionciot__ntp__req__data__u.html',1,'']]], + ['ciot_5fntp_5freq_5ft_666',['ciot_ntp_req_t',['../structciot__ntp__req__t.html',1,'']]], + ['ciot_5fntp_5freq_5ftype_5ft_667',['ciot_ntp_req_type_t',['../ciot__ntp__types_8h.html#a53a7f745407650095dbb3e38c09861fa',1,'ciot_ntp_types.h']]], + ['ciot_5fntp_5freq_5funknown_668',['CIOT_NTP_REQ_UNKNOWN',['../ciot__ntp__types_8h.html#a53a7f745407650095dbb3e38c09861faa4ef58072669af9e608f808ad52143129',1,'ciot_ntp_types.h']]], + ['ciot_5fntp_5fsend_5fdata_669',['ciot_ntp_send_data',['../ciot__ntp_8h.html#a1670e17032214d1a41e0381d2c5844ac',1,'ciot_ntp.h']]], + ['ciot_5fntp_5fset_670',['ciot_ntp_set',['../ciot__ntp_8h.html#abddacb943d084ba3d40cde58b1da45fc',1,'ciot_ntp.h']]], + ['ciot_5fntp_5fstart_671',['ciot_ntp_start',['../ciot__ntp_8h.html#ab2e49de0c8bc987fcbd6ff97912e9f21',1,'ciot_ntp.h']]], + ['ciot_5fntp_5fstate_5ft_672',['ciot_ntp_state_t',['../ciot__ntp__types_8h.html#aa8a357ab71d5a3765f6444a442c00dd8',1,'ciot_ntp_types.h']]], + ['ciot_5fntp_5fstatus_5fmsg_5ft_673',['ciot_ntp_status_msg_t',['../structciot__ntp__status__msg__t.html',1,'']]], + ['ciot_5fntp_5fstatus_5ft_674',['ciot_ntp_status_t',['../structciot__ntp__status__t.html',1,'']]], + ['ciot_5fntp_5fstop_675',['ciot_ntp_stop',['../ciot__ntp_8h.html#a4c928f5a646bc368a33351c0508e5986',1,'ciot_ntp.h']]], + ['ciot_5fntp_5ft_676',['ciot_ntp_t',['../ciot__ntp_8h.html#ac7f8701cb756dab2bc3292c002d6da9e',1,'ciot_ntp.h']]], + ['ciot_5fntp_5ftypes_2eh_677',['ciot_ntp_types.h',['../ciot__ntp__types_8h.html',1,'']]], + ['ciot_5fnull_5fcheck_678',['CIOT_NULL_CHECK',['../ciot__err_8h.html#aa26e80d640e682764d732b12782cc7a3',1,'ciot_err.h']]], + ['ciot_5fok_679',['CIOT_OK',['../ciot__err_8h.html#ad6378d4036e8a842176b2db8efb349c8a608f016995435f4c5f758dc42f5c28dc',1,'ciot_err.h']]], + ['ciot_5fopcuas_2eh_680',['ciot_opcuas.h',['../ciot__opcuas_8h.html',1,'']]], + ['ciot_5fopcuas_5fadd_5fnode_681',['ciot_opcuas_add_node',['../ciot__opcuas_8h.html#a0a3f5503c7a8cee3326a00a7b251b9b2',1,'ciot_opcuas.h']]], + ['ciot_5fopcuas_5fcfg_5ft_682',['ciot_opcuas_cfg_t',['../structciot__opcuas__cfg__t.html',1,'']]], + ['ciot_5fopcuas_5fdata_5fu_683',['ciot_opcuas_data_u',['../unionciot__opcuas__data__u.html',1,'']]], + ['ciot_5fopcuas_5fnew_684',['ciot_opcuas_new',['../ciot__opcuas_8h.html#a2a20908ad8a9104fa199239f790e72a8',1,'ciot_opcuas.h']]], + ['ciot_5fopcuas_5fprocess_5freq_685',['ciot_opcuas_process_req',['../ciot__opcuas_8h.html#a12d974a4c1fd3dfc906cef2a92d7decc',1,'ciot_opcuas.h']]], + ['ciot_5fopcuas_5freq_5fadd_5fnode_686',['CIOT_OPCUAS_REQ_ADD_NODE',['../ciot__opcuas__types_8h.html#a8acb0e423808124be763be38feed658cafc37181f45b08e2fcefb25123744dab2',1,'ciot_opcuas_types.h']]], + ['ciot_5fopcuas_5freq_5fadd_5fnode_5ft_687',['ciot_opcuas_req_add_node_t',['../structciot__opcuas__req__add__node__t.html',1,'']]], + ['ciot_5fopcuas_5freq_5fdata_5fu_688',['ciot_opcuas_req_data_u',['../unionciot__opcuas__req__data__u.html',1,'']]], + ['ciot_5fopcuas_5freq_5frun_689',['CIOT_OPCUAS_REQ_RUN',['../ciot__opcuas__types_8h.html#a8acb0e423808124be763be38feed658ca07fc86e18d23ceab74564968a2d9a895',1,'ciot_opcuas_types.h']]], + ['ciot_5fopcuas_5freq_5ft_690',['ciot_opcuas_req_t',['../structciot__opcuas__req__t.html',1,'']]], + ['ciot_5fopcuas_5freq_5ftype_5ft_691',['ciot_opcuas_req_type_t',['../ciot__opcuas__types_8h.html#a8acb0e423808124be763be38feed658c',1,'ciot_opcuas_types.h']]], + ['ciot_5fopcuas_5freq_5funknown_692',['CIOT_OPCUAS_REQ_UNKNOWN',['../ciot__opcuas__types_8h.html#a8acb0e423808124be763be38feed658ca3e4c72d9a9fec403c2b7bfa0f0bb0543',1,'ciot_opcuas_types.h']]], + ['ciot_5fopcuas_5fsend_5fdata_693',['ciot_opcuas_send_data',['../ciot__opcuas_8h.html#adce1d391f5b3a5aa5f638a8410d95cbc',1,'ciot_opcuas.h']]], + ['ciot_5fopcuas_5fstart_694',['ciot_opcuas_start',['../ciot__opcuas_8h.html#a86fd44bf128861a3cca1f57b680c137e',1,'ciot_opcuas.h']]], + ['ciot_5fopcuas_5fstate_5ferror_695',['CIOT_OPCUAS_STATE_ERROR',['../ciot__opcuas__types_8h.html#ae5b6595b6e677b21cc33b747865552a1a67398559dfbdef65155d1fc16ea24d96',1,'ciot_opcuas_types.h']]], + ['ciot_5fopcuas_5fstate_5fidle_696',['CIOT_OPCUAS_STATE_IDLE',['../ciot__opcuas__types_8h.html#ae5b6595b6e677b21cc33b747865552a1a2712146499e42ecf7da21142d2228d84',1,'ciot_opcuas_types.h']]], + ['ciot_5fopcuas_5fstate_5frunning_697',['CIOT_OPCUAS_STATE_RUNNING',['../ciot__opcuas__types_8h.html#ae5b6595b6e677b21cc33b747865552a1a4658fd4a9b75cead2da6dcc4e22b73fd',1,'ciot_opcuas_types.h']]], + ['ciot_5fopcuas_5fstate_5ft_698',['ciot_opcuas_state_t',['../ciot__opcuas__types_8h.html#ae5b6595b6e677b21cc33b747865552a1',1,'ciot_opcuas_types.h']]], + ['ciot_5fopcuas_5fstatus_5fmsg_5ft_699',['ciot_opcuas_status_msg_t',['../structciot__opcuas__status__msg__t.html',1,'']]], + ['ciot_5fopcuas_5fstatus_5ft_700',['ciot_opcuas_status_t',['../structciot__opcuas__status__t.html',1,'']]], + ['ciot_5fopcuas_5fstop_701',['ciot_opcuas_stop',['../ciot__opcuas_8h.html#a7db26a1290536e33bcad744e00ecf954',1,'ciot_opcuas.h']]], + ['ciot_5fopcuas_5ft_702',['ciot_opcuas_t',['../ciot__opcuas_8h.html#a2a6f8d1050e1c57937371e12b3c850bf',1,'ciot_opcuas.h']]], + ['ciot_5fopcuas_5ftypes_2eh_703',['ciot_opcuas_types.h',['../ciot__opcuas__types_8h.html',1,'']]], + ['ciot_5fota_2eh_704',['ciot_ota.h',['../ciot__ota_8h.html',1,'']]], + ['ciot_5fota_5fcfg_5ft_705',['ciot_ota_cfg_t',['../structciot__ota__cfg__t.html',1,'']]], + ['ciot_5fota_5fdata_5fu_706',['ciot_ota_data_u',['../unionciot__ota__data__u.html',1,'']]], + ['ciot_5fota_5fevent_5fconnected_707',['CIOT_OTA_EVENT_CONNECTED',['../ciot__ota_8h.html#a2a2372b3836fb8585417c8b2717f4d64a9cd3ef2729d29203a80fc481d75a57aa',1,'ciot_ota.h']]], + ['ciot_5fota_5fevent_5fdecrypting_708',['CIOT_OTA_EVENT_DECRYPTING',['../ciot__ota_8h.html#a2a2372b3836fb8585417c8b2717f4d64a36badbcf5c707f55ad68bacc5d54478a',1,'ciot_ota.h']]], + ['ciot_5fota_5fevent_5fid_709',['ciot_ota_event_id',['../ciot__ota_8h.html#a2a2372b3836fb8585417c8b2717f4d64',1,'ciot_ota.h']]], + ['ciot_5fota_5fevent_5fid_5ft_710',['ciot_ota_event_id_t',['../ciot__ota_8h.html#af4e5ec481586fbb21bebf38d0c3cb0be',1,'ciot_ota.h']]], + ['ciot_5fota_5fevent_5freading_5finfo_711',['CIOT_OTA_EVENT_READING_INFO',['../ciot__ota_8h.html#a2a2372b3836fb8585417c8b2717f4d64abddb7e6bac08de2de9f7e05ad8c8a419',1,'ciot_ota.h']]], + ['ciot_5fota_5fevent_5fupdating_5fapp_712',['CIOT_OTA_EVENT_UPDATING_APP',['../ciot__ota_8h.html#a2a2372b3836fb8585417c8b2717f4d64a56891046fa6c9434c52e7b2f77e764ab',1,'ciot_ota.h']]], + ['ciot_5fota_5fevent_5fwriting_713',['CIOT_OTA_EVENT_WRITING',['../ciot__ota_8h.html#a2a2372b3836fb8585417c8b2717f4d64ac31b8578c4d21a016f5a7893554710ab',1,'ciot_ota.h']]], + ['ciot_5fota_5fnew_714',['ciot_ota_new',['../ciot__ota_8h.html#a1919f2727400ca6493343a6400bcfec4',1,'ciot_ota.h']]], + ['ciot_5fota_5fprocess_5freq_715',['ciot_ota_process_req',['../ciot__ota_8h.html#a2ad1d252c2d48d024f67054bc7f71d87',1,'ciot_ota.h']]], + ['ciot_5fota_5freq_5fdata_5fu_716',['ciot_ota_req_data_u',['../unionciot__ota__req__data__u.html',1,'']]], + ['ciot_5fota_5freq_5frollback_717',['CIOT_OTA_REQ_ROLLBACK',['../ciot__ota__types_8h.html#ae4c439b857456a91d723985a8f600c20aded6cefc8280f134660da5d38911c916',1,'ciot_ota_types.h']]], + ['ciot_5fota_5freq_5ft_718',['ciot_ota_req_t',['../structciot__ota__req__t.html',1,'']]], + ['ciot_5fota_5freq_5ftype_5ft_719',['ciot_ota_req_type_t',['../ciot__ota__types_8h.html#ae4c439b857456a91d723985a8f600c20',1,'ciot_ota_types.h']]], + ['ciot_5fota_5freq_5funknown_720',['CIOT_OTA_REQ_UNKNOWN',['../ciot__ota__types_8h.html#ae4c439b857456a91d723985a8f600c20aefbe0949eb768e9bd3e9038282b3c896',1,'ciot_ota_types.h']]], + ['ciot_5fota_5frollback_721',['ciot_ota_rollback',['../ciot__ota_8h.html#ac316b7fc7ebed5e0aae3e23613d12945',1,'ciot_ota.h']]], + ['ciot_5fota_5fsend_5fdata_722',['ciot_ota_send_data',['../ciot__ota_8h.html#a450e80fb9f0810603d54bfd9a0919a38',1,'ciot_ota.h']]], + ['ciot_5fota_5fstart_723',['ciot_ota_start',['../ciot__ota_8h.html#a9a1c226a282e4d4ba2e0d9e0caffa91c',1,'ciot_ota.h']]], + ['ciot_5fota_5fstate_5fchecking_5fdata_724',['CIOT_OTA_STATE_CHECKING_DATA',['../ciot__ota__types_8h.html#a50dd94be7278926fa9490e0209fe3a15a89eb2a71799c2f2f6285eb22c373df0a',1,'ciot_ota_types.h']]], + ['ciot_5fota_5fstate_5fconnected_725',['CIOT_OTA_STATE_CONNECTED',['../ciot__ota__types_8h.html#a50dd94be7278926fa9490e0209fe3a15a0a9339130c6c470f7c4fd9a608b4400c',1,'ciot_ota_types.h']]], + ['ciot_5fota_5fstate_5fdecrypting_726',['CIOT_OTA_STATE_DECRYPTING',['../ciot__ota__types_8h.html#a50dd94be7278926fa9490e0209fe3a15a328e1c668f670a807f03d1c8fab8476d',1,'ciot_ota_types.h']]], + ['ciot_5fota_5fstate_5fdone_727',['CIOT_OTA_STATE_DONE',['../ciot__ota__types_8h.html#a50dd94be7278926fa9490e0209fe3a15a1a1a9c966f7c58260168ad25244adfc9',1,'ciot_ota_types.h']]], + ['ciot_5fota_5fstate_5ferror_728',['CIOT_OTA_STATE_ERROR',['../ciot__ota__types_8h.html#a50dd94be7278926fa9490e0209fe3a15a153fe0b4a80fd5556f1f7b6bd2bacfa9',1,'ciot_ota_types.h']]], + ['ciot_5fota_5fstate_5fflashing_729',['CIOT_OTA_STATE_FLASHING',['../ciot__ota__types_8h.html#a50dd94be7278926fa9490e0209fe3a15a444e12a3d7b6bd961907a3012640918b',1,'ciot_ota_types.h']]], + ['ciot_5fota_5fstate_5fidle_730',['CIOT_OTA_STATE_IDLE',['../ciot__ota__types_8h.html#a50dd94be7278926fa9490e0209fe3a15ad7642fe395ae6f6881ba24403ff160d6',1,'ciot_ota_types.h']]], + ['ciot_5fota_5fstate_5fin_5fprogress_731',['CIOT_OTA_STATE_IN_PROGRESS',['../ciot__ota__types_8h.html#a50dd94be7278926fa9490e0209fe3a15ac82f16265153f90a54472489c2bb3558',1,'ciot_ota_types.h']]], + ['ciot_5fota_5fstate_5finit_732',['CIOT_OTA_STATE_INIT',['../ciot__ota__types_8h.html#a50dd94be7278926fa9490e0209fe3a15a0080d95556253115e20c3731a15be120',1,'ciot_ota_types.h']]], + ['ciot_5fota_5fstate_5fstart_733',['CIOT_OTA_STATE_START',['../ciot__ota__types_8h.html#a50dd94be7278926fa9490e0209fe3a15a8d449f644ab603947f86e4307102565e',1,'ciot_ota_types.h']]], + ['ciot_5fota_5fstate_5ft_734',['ciot_ota_state_t',['../ciot__ota__types_8h.html#a50dd94be7278926fa9490e0209fe3a15',1,'ciot_ota_types.h']]], + ['ciot_5fota_5fstate_5fupdate_5fboot_5fpartition_735',['CIOT_OTA_STATE_UPDATE_BOOT_PARTITION',['../ciot__ota__types_8h.html#a50dd94be7278926fa9490e0209fe3a15a073d84c91e1a42ee2ef9de54b1016ea7',1,'ciot_ota_types.h']]], + ['ciot_5fota_5fstatus_5fmsg_5ft_736',['ciot_ota_status_msg_t',['../structciot__ota__status__msg__t.html',1,'']]], + ['ciot_5fota_5fstatus_5ft_737',['ciot_ota_status_t',['../structciot__ota__status__t.html',1,'']]], + ['ciot_5fota_5fstop_738',['ciot_ota_stop',['../ciot__ota_8h.html#a4fa33a4b506088b382a391192765dc42',1,'ciot_ota.h']]], + ['ciot_5fota_5ft_739',['ciot_ota_t',['../ciot__ota_8h.html#a7639d0166916697e2b3024ff7daa823c',1,'ciot_ota.h']]], + ['ciot_5fota_5ftypes_2eh_740',['ciot_ota_types.h',['../ciot__ota__types_8h.html',1,'']]], + ['ciot_5fproxy_5fsend_5freq_741',['ciot_proxy_send_req',['../ciot_8h.html#af32f995ccbb96d62688e73df1f2998a9',1,'ciot.h']]], + ['ciot_5fregister_5fevent_742',['ciot_register_event',['../ciot_8h.html#a6d0892881a59cab0baba866d2dfdaa33',1,'ciot.h']]], + ['ciot_5freq_5fdata_5fu_743',['ciot_req_data_u',['../unionciot__req__data__u.html',1,'']]], + ['ciot_5freq_5fdelete_5fiface_5fcfg_744',['CIOT_REQ_DELETE_IFACE_CFG',['../ciot__types_8h.html#a03b3036727499342240dda078a6c69a3ad5565cc1fd1218de2af439243c69aad9',1,'ciot_types.h']]], + ['ciot_5freq_5fdelete_5fiface_5fcfg_5ft_745',['ciot_req_delete_iface_cfg_t',['../structciot__req__delete__iface__cfg__t.html',1,'']]], + ['ciot_5freq_5fproxy_5fmsg_746',['CIOT_REQ_PROXY_MSG',['../ciot__types_8h.html#a03b3036727499342240dda078a6c69a3aab488cccdc1e9e5009926c15766ebf2c',1,'ciot_types.h']]], + ['ciot_5freq_5fproxy_5fmsg_5ft_747',['ciot_req_proxy_msg_t',['../structciot__req__proxy__msg__t.html',1,'']]], + ['ciot_5freq_5fresult_5ft_748',['ciot_req_result_t',['../structciot__req__result__t.html',1,'']]], + ['ciot_5freq_5fsave_5fiface_5fcfg_749',['CIOT_REQ_SAVE_IFACE_CFG',['../ciot__types_8h.html#a03b3036727499342240dda078a6c69a3aede746db7e9dbee372ee79789d83fbc0',1,'ciot_types.h']]], + ['ciot_5freq_5fsave_5fiface_5fcfg_5ft_750',['ciot_req_save_iface_cfg_t',['../structciot__req__save__iface__cfg__t.html',1,'']]], + ['ciot_5freq_5ft_751',['ciot_req_t',['../structciot__req__t.html',1,'']]], + ['ciot_5freq_5ftype_5ft_752',['ciot_req_type_t',['../ciot__types_8h.html#a03b3036727499342240dda078a6c69a3',1,'ciot_types.h']]], + ['ciot_5freq_5funknown_753',['CIOT_REQ_UNKNOWN',['../ciot__types_8h.html#a03b3036727499342240dda078a6c69a3a5bfc3b86697b77d7813e8f762e92b4ea',1,'ciot_types.h']]], + ['ciot_5fs_2eh_754',['ciot_s.h',['../ciot__s_8h.html',1,'']]], + ['ciot_5fs_5fbase_5ferr_755',['CIOT_S_BASE_ERR',['../ciot__s_8h.html#a2f0fd14f043350f0bb586e527d72d4ca',1,'ciot_s.h']]], + ['ciot_5fs_5fbuf_5fsize_756',['CIOT_S_BUF_SIZE',['../ciot__s_8h.html#a08b8e7174adadc6c5d23fd15348fa0f3',1,'ciot_s.h']]], + ['ciot_5fs_5fcfg_757',['ciot_s_cfg',['../structciot__s__cfg.html',1,'']]], + ['ciot_5fs_5fcfg_5ft_758',['ciot_s_cfg_t',['../ciot__s_8h.html#a9e2f0df6038e3db27a8f0fa1724cfa74',1,'ciot_s.h']]], + ['ciot_5fs_5fend_5fch_759',['CIOT_S_END_CH',['../ciot__s_8h.html#a958b5b763c873fb977a8cf2dc15dd69f',1,'ciot_s.h']]], + ['ciot_5fs_5fheader_5fsize_760',['CIOT_S_HEADER_SIZE',['../ciot__s_8h.html#a451d99c99313941fbfef451a7a830341',1,'ciot_s.h']]], + ['ciot_5fs_5flenght_5fsize_761',['CIOT_S_LENGHT_SIZE',['../ciot__s_8h.html#a454cbf8a51c076e297148719f8ad4f03',1,'ciot_s.h']]], + ['ciot_5fs_5fmsg_5fhandler_5ft_762',['ciot_s_msg_handler_t',['../ciot__s_8h.html#a4ed3963449a508259fadfdd0842d7c5d',1,'ciot_s.h']]], + ['ciot_5fs_5fnew_763',['ciot_s_new',['../ciot__s_8h.html#a47e024d9119662842e62f2b993b7511c',1,'ciot_s.h']]], + ['ciot_5fs_5fprocess_5fbyte_764',['ciot_s_process_byte',['../ciot__s_8h.html#a4d7f4cef42ccdb61d1ab7dd6adafc391',1,'ciot_s.h']]], + ['ciot_5fs_5fsend_765',['ciot_s_send',['../ciot__s_8h.html#a00fdcbb4aebbad8f80bf1bf1e732a9cb',1,'ciot_s.h']]], + ['ciot_5fs_5fset_5fbridge_5fmode_766',['ciot_s_set_bridge_mode',['../ciot__s_8h.html#a14867c1134859ec897f2ecf11af41793',1,'ciot_s.h']]], + ['ciot_5fs_5fstart_5fch_767',['CIOT_S_START_CH',['../ciot__s_8h.html#a0c8d7eee4ad76474e1a795d539af7489',1,'ciot_s.h']]], + ['ciot_5fs_5fstatus_768',['ciot_s_status',['../ciot__s_8h.html#abf179a683c9ec625bcd80eeffc5225f2',1,'ciot_s.h']]], + ['ciot_5fs_5fstatus_5fread_5fdata_769',['CIOT_S_STATUS_READ_DATA',['../ciot__s_8h.html#abf179a683c9ec625bcd80eeffc5225f2a51cd1ce663428588f8aaa47f17822b12',1,'ciot_s.h']]], + ['ciot_5fs_5fstatus_5ft_770',['ciot_s_status_t',['../ciot__s_8h.html#a061479d073e577bea43e5f500abb7fa3',1,'ciot_s.h']]], + ['ciot_5fs_5fstatus_5ftimeout_771',['CIOT_S_STATUS_TIMEOUT',['../ciot__s_8h.html#abf179a683c9ec625bcd80eeffc5225f2a2221c4f133239b0c83c498778a24aada',1,'ciot_s.h']]], + ['ciot_5fs_5fstatus_5fwait_5fsize_772',['CIOT_S_STATUS_WAIT_SIZE',['../ciot__s_8h.html#abf179a683c9ec625bcd80eeffc5225f2ae053def601f16100aeb60fb82b3c65f8',1,'ciot_s.h']]], + ['ciot_5fs_5fstatus_5fwait_5fstart_5fdata_773',['CIOT_S_STATUS_WAIT_START_DATA',['../ciot__s_8h.html#abf179a683c9ec625bcd80eeffc5225f2a7aadbf38530370cb4ba0d27b44a54306',1,'ciot_s.h']]], + ['ciot_5fs_5ft_774',['ciot_s_t',['../ciot__s_8h.html#a4fb0c1250873e751db7adffc9620b776',1,'ciot_s.h']]], + ['ciot_5fsave_5fiface_5fcfg_775',['ciot_save_iface_cfg',['../ciot_8h.html#aa11d77071edcfb2ae57b26f92cda2e06',1,'ciot.h']]], + ['ciot_5fserializer_776',['ciot_serializer',['../structciot__serializer.html',1,'']]], + ['ciot_5fserializer_2eh_777',['ciot_serializer.h',['../ciot__serializer_8h.html',1,'']]], + ['ciot_5fserializer_5ffrom_5fbytes_778',['ciot_serializer_from_bytes',['../ciot__serializer_8h.html#a2e6ad3f65b3277042564ae00d1ea9522',1,'ciot_serializer.h']]], + ['ciot_5fserializer_5ffrom_5fbytes_5ffn_779',['ciot_serializer_from_bytes_fn',['../ciot__serializer_8h.html#ad4e6ec6f4f6b2794af860108e701a284',1,'ciot_serializer.h']]], + ['ciot_5fserializer_5ft_780',['ciot_serializer_t',['../ciot__serializer_8h.html#ad996f78559d787df7e8f20e6e2c837ac',1,'ciot_serializer.h']]], + ['ciot_5fserializer_5fto_5fbytes_781',['ciot_serializer_to_bytes',['../ciot__serializer_8h.html#acce586f0c1adcf56d07b5c09e1df2c17',1,'ciot_serializer.h']]], + ['ciot_5fserializer_5fto_5fbytes_5ffn_782',['ciot_serializer_to_bytes_fn',['../ciot__serializer_8h.html#ad5f4d77f37d8f97c45e7ac3684c6240d',1,'ciot_serializer.h']]], + ['ciot_5fserializer_5ftype_783',['ciot_serializer_type',['../ciot__serializer_8h.html#ae62dc58498158eda5c753d6c3397702b',1,'ciot_serializer.h']]], + ['ciot_5fserializer_5ftype_5fcustom_784',['CIOT_SERIALIZER_TYPE_CUSTOM',['../ciot__serializer_8h.html#ae62dc58498158eda5c753d6c3397702ba6d5cb551c26a7529e01e27c64dbc2a7a',1,'ciot_serializer.h']]], + ['ciot_5fserializer_5ftype_5fnone_785',['CIOT_SERIALIZER_TYPE_NONE',['../ciot__serializer_8h.html#ae62dc58498158eda5c753d6c3397702ba1628b71e70eb2dcf89b24e63d9d86289',1,'ciot_serializer.h']]], + ['ciot_5fserializer_5ftype_5fprotobuf_786',['CIOT_SERIALIZER_TYPE_PROTOBUF',['../ciot__serializer_8h.html#ae62dc58498158eda5c753d6c3397702ba0f0db27db7f111da963526dfface091e',1,'ciot_serializer.h']]], + ['ciot_5fserializer_5ftype_5ft_787',['ciot_serializer_type_t',['../ciot__serializer_8h.html#a3c892bb829d28086be610a8f850066f7',1,'ciot_serializer.h']]], + ['ciot_5fset_5fstorage_788',['ciot_set_storage',['../ciot_8h.html#ab1f4ff509841bbca90c9a29e870a23fd',1,'ciot.h']]], + ['ciot_5fslip_2eh_789',['ciot_slip.h',['../ciot__slip_8h.html',1,'']]], + ['ciot_5fslip_5fdecode_5fadd_5fbyte_790',['ciot_slip_decode_add_byte',['../ciot__slip_8h.html#a13b065e0e7ef6b2b98aa59e136929654',1,'ciot_slip.h']]], + ['ciot_5fslip_5fencode_791',['ciot_slip_encode',['../ciot__slip_8h.html#a31ccb83d79170663a4a74c3a073b6d45',1,'ciot_slip.h']]], + ['ciot_5fslip_5fread_5fstate_5ft_792',['ciot_slip_read_state_t',['../ciot__slip_8h.html#a290de618dbd8ce83c3c43ec2e9c393a1',1,'ciot_slip.h']]], + ['ciot_5fslip_5fstate_5fclearing_5finvalid_5fpacket_793',['CIOT_SLIP_STATE_CLEARING_INVALID_PACKET',['../ciot__slip_8h.html#a290de618dbd8ce83c3c43ec2e9c393a1a788289583399742eda50d8bd9e88fb06',1,'ciot_slip.h']]], + ['ciot_5fslip_5fstate_5fdecoding_794',['CIOT_SLIP_STATE_DECODING',['../ciot__slip_8h.html#a290de618dbd8ce83c3c43ec2e9c393a1a6eac8f93f0b78328812025bc26c2515e',1,'ciot_slip.h']]], + ['ciot_5fslip_5fstate_5fesc_5freceived_795',['CIOT_SLIP_STATE_ESC_RECEIVED',['../ciot__slip_8h.html#a290de618dbd8ce83c3c43ec2e9c393a1af7e80dc7da481b7a5541ba44c10a1834',1,'ciot_slip.h']]], + ['ciot_5fslip_5ft_796',['ciot_slip_t',['../structciot__slip__t.html',1,'']]], + ['ciot_5fstart_797',['ciot_start',['../ciot_8h.html#a9ed835b9b7224f7757b9382061afc97c',1,'ciot.h']]], + ['ciot_5fstate_5fbusy_798',['CIOT_STATE_BUSY',['../ciot__types_8h.html#a95856e0042526f191649883a3a46dfe2a073c800d62d834a591038d5894ad81a1',1,'ciot_types.h']]], + ['ciot_5fstate_5ferror_799',['CIOT_STATE_ERROR',['../ciot__types_8h.html#a95856e0042526f191649883a3a46dfe2a7b1b50cf522d03e22820f35c9b615dbc',1,'ciot_types.h']]], + ['ciot_5fstate_5fidle_800',['CIOT_STATE_IDLE',['../ciot__types_8h.html#a95856e0042526f191649883a3a46dfe2a39d9db01f73111913fe49087fc809be9',1,'ciot_types.h']]], + ['ciot_5fstate_5ft_801',['ciot_state_t',['../ciot__types_8h.html#a95856e0042526f191649883a3a46dfe2',1,'ciot_types.h']]], + ['ciot_5fstatus_5ft_802',['ciot_status_t',['../structciot__status__t.html',1,'']]], + ['ciot_5fstorage_2eh_803',['ciot_storage.h',['../ciot__storage_8h.html',1,'']]], + ['ciot_5fstorage_5fcfg_5ft_804',['ciot_storage_cfg_t',['../structciot__storage__cfg__t.html',1,'']]], + ['ciot_5fstorage_5fdata_5fu_805',['ciot_storage_data_u',['../unionciot__storage__data__u.html',1,'']]], + ['ciot_5fstorage_5fdelete_806',['ciot_storage_delete',['../ciot__storage_8h.html#a3ef2b7405e84549b877fc3ff56573a70',1,'ciot_storage.h']]], + ['ciot_5fstorage_5fformat_807',['ciot_storage_format',['../ciot__storage_8h.html#a2ba18ab68d78441277427d4d5d17d8e2',1,'ciot_storage.h']]], + ['ciot_5fstorage_5finit_808',['ciot_storage_init',['../ciot__storage_8h.html#a03cb31fbd7d15d42639eca3b35e681b7',1,'ciot_storage.h']]], + ['ciot_5fstorage_5fload_809',['ciot_storage_load',['../ciot__storage_8h.html#a5dc173d4e3d285404c40f975c5ebff7d',1,'ciot_storage.h']]], + ['ciot_5fstorage_5fnew_810',['ciot_storage_new',['../ciot__storage_8h.html#a4f5d3c6bb977f52bb50f491526710e1e',1,'ciot_storage.h']]], + ['ciot_5fstorage_5fprocess_5freq_811',['ciot_storage_process_req',['../ciot__storage_8h.html#a7d7c52b2cee69e6b7c23be1ecc8ed0d7',1,'ciot_storage.h']]], + ['ciot_5fstorage_5freq_5fdelete_812',['CIOT_STORAGE_REQ_DELETE',['../ciot__storage__types_8h.html#ab7057228a41784a8075f122e0c436541af284b0fcdf84425bbd7ea1fedc16ae89',1,'ciot_storage_types.h']]], + ['ciot_5fstorage_5freq_5ffile_5fdata_5ft_813',['ciot_storage_req_file_data_t',['../structciot__storage__req__file__data__t.html',1,'']]], + ['ciot_5fstorage_5freq_5fformat_814',['CIOT_STORAGE_REQ_FORMAT',['../ciot__storage__types_8h.html#ab7057228a41784a8075f122e0c436541a3dadf7c4810cb89e7bf75d0e1624db9a',1,'ciot_storage_types.h']]], + ['ciot_5fstorage_5freq_5fload_815',['CIOT_STORAGE_REQ_LOAD',['../ciot__storage__types_8h.html#ab7057228a41784a8075f122e0c436541aba02c3e6c860284b2f06654a8977bf23',1,'ciot_storage_types.h']]], + ['ciot_5fstorage_5freq_5fsave_816',['CIOT_STORAGE_REQ_SAVE',['../ciot__storage__types_8h.html#ab7057228a41784a8075f122e0c436541a6218cd2bd3e86d2c74b59c95e3466a8e',1,'ciot_storage_types.h']]], + ['ciot_5fstorage_5freq_5ft_817',['ciot_storage_req_t',['../structciot__storage__req__t.html',1,'']]], + ['ciot_5fstorage_5freq_5ftype_5ft_818',['ciot_storage_req_type_t',['../ciot__storage__types_8h.html#ab7057228a41784a8075f122e0c436541',1,'ciot_storage_types.h']]], + ['ciot_5fstorage_5freq_5funknown_819',['CIOT_STORAGE_REQ_UNKNOWN',['../ciot__storage__types_8h.html#ab7057228a41784a8075f122e0c436541a4689fd1c078349f1583ecdbeaf7da85b',1,'ciot_storage_types.h']]], + ['ciot_5fstorage_5fsave_820',['ciot_storage_save',['../ciot__storage_8h.html#ae217d8018730853ce5e77e5c11b8ce4d',1,'ciot_storage.h']]], + ['ciot_5fstorage_5fsend_5fdata_821',['ciot_storage_send_data',['../ciot__storage_8h.html#aa54c8242169de35f8bf2a6a074cc6945',1,'ciot_storage.h']]], + ['ciot_5fstorage_5fstart_822',['ciot_storage_start',['../ciot__storage_8h.html#ade9c8a3a8b08bfbef4d4b7431ec5a740',1,'ciot_storage.h']]], + ['ciot_5fstorage_5fstate_5fidle_823',['CIOT_STORAGE_STATE_IDLE',['../ciot__storage__types_8h.html#a904b5a0e6bb3f9a7880c9d25250ddb86ac1049db8c3ea10d4f1e581674021e625',1,'ciot_storage_types.h']]], + ['ciot_5fstorage_5fstate_5ft_824',['ciot_storage_state_t',['../ciot__storage__types_8h.html#a904b5a0e6bb3f9a7880c9d25250ddb86',1,'ciot_storage_types.h']]], + ['ciot_5fstorage_5fstatus_5fmsg_5ft_825',['ciot_storage_status_msg_t',['../structciot__storage__status__msg__t.html',1,'']]], + ['ciot_5fstorage_5fstatus_5ft_826',['ciot_storage_status_t',['../structciot__storage__status__t.html',1,'']]], + ['ciot_5fstorage_5fstop_827',['ciot_storage_stop',['../ciot__storage_8h.html#ac895b62ff9edf0c92bd9223e66c752ec',1,'ciot_storage.h']]], + ['ciot_5fstorage_5ft_828',['ciot_storage_t',['../ciot__storage_8h.html#abd15a0b08206e1aee533659f5c760024',1,'ciot_storage.h']]], + ['ciot_5fstorage_5ftype_5feeprom_829',['CIOT_STORAGE_TYPE_EEPROM',['../ciot__storage__types_8h.html#abb72c818894c3c97f955258320bae239afc4a37eba78791073c18a5f63c03aeb4',1,'ciot_storage_types.h']]], + ['ciot_5fstorage_5ftype_5fflash_830',['CIOT_STORAGE_TYPE_FLASH',['../ciot__storage__types_8h.html#abb72c818894c3c97f955258320bae239adb7bbd45322a2e288bd6915ce487bbf0',1,'ciot_storage_types.h']]], + ['ciot_5fstorage_5ftype_5ffs_831',['CIOT_STORAGE_TYPE_FS',['../ciot__storage__types_8h.html#abb72c818894c3c97f955258320bae239a5888e89d9b87b625ea64913fdbf4b9ae',1,'ciot_storage_types.h']]], + ['ciot_5fstorage_5ftype_5ft_832',['ciot_storage_type_t',['../ciot__storage__types_8h.html#abb72c818894c3c97f955258320bae239',1,'ciot_storage_types.h']]], + ['ciot_5fstorage_5ftype_5funknown_833',['CIOT_STORAGE_TYPE_UNKNOWN',['../ciot__storage__types_8h.html#abb72c818894c3c97f955258320bae239a83d3bc245d343102f7a7ac18b036aceb',1,'ciot_storage_types.h']]], + ['ciot_5fstorage_5ftypes_2eh_834',['ciot_storage_types.h',['../ciot__storage__types_8h.html',1,'']]], + ['ciot_5fsys_2eh_835',['ciot_sys.h',['../ciot__sys_8h.html',1,'']]], + ['ciot_5fsys_5fcfg_5ft_836',['ciot_sys_cfg_t',['../structciot__sys__cfg__t.html',1,'']]], + ['ciot_5fsys_5fdata_5fu_837',['ciot_sys_data_u',['../unionciot__sys__data__u.html',1,'']]], + ['ciot_5fsys_5fevt_5fbit_5fpooling_838',['CIOT_SYS_EVT_BIT_POOLING',['../ciot__sys_8h.html#a3a3e986404de91f1c9943996fd1b7c2b',1,'ciot_sys.h']]], + ['ciot_5fsys_5ffeatures_5ft_839',['ciot_sys_features_t',['../structciot__sys__features__t.html',1,'']]], + ['ciot_5fsys_5fget_5fhw_840',['ciot_sys_get_hw',['../ciot__sys_8h.html#a7a01e9dc69f9e38add4b67f5d5353c65',1,'ciot_sys.h']]], + ['ciot_5fsys_5fhw_5farduino_841',['CIOT_SYS_HW_ARDUINO',['../ciot__sys__types_8h.html#a7f47e5291a35126d37482ded0232e5efabe1261ec53dded1b8ab49ea4f72f436c',1,'ciot_sys_types.h']]], + ['ciot_5fsys_5fhw_5fesp32_842',['CIOT_SYS_HW_ESP32',['../ciot__sys__types_8h.html#a7f47e5291a35126d37482ded0232e5efad421d4334f8a1f0d9d9bfbcb86f3a8b0',1,'ciot_sys_types.h']]], + ['ciot_5fsys_5fhw_5fesp8266_843',['CIOT_SYS_HW_ESP8266',['../ciot__sys__types_8h.html#a7f47e5291a35126d37482ded0232e5efadcbf5b47597d8916e929fcb8a41f51eb',1,'ciot_sys_types.h']]], + ['ciot_5fsys_5fhw_5ffeatures_5ft_844',['ciot_sys_hw_features_t',['../structciot__sys__hw__features__t.html',1,'']]], + ['ciot_5fsys_5fhw_5flinux_845',['CIOT_SYS_HW_LINUX',['../ciot__sys__types_8h.html#a7f47e5291a35126d37482ded0232e5efa50ce4141c796252e0dd6618bbab7f9e6',1,'ciot_sys_types.h']]], + ['ciot_5fsys_5fhw_5fnrf51_846',['CIOT_SYS_HW_NRF51',['../ciot__sys__types_8h.html#a7f47e5291a35126d37482ded0232e5efa864748032796d5bc1f9f1d8ca757377f',1,'ciot_sys_types.h']]], + ['ciot_5fsys_5fhw_5fnrf52_847',['CIOT_SYS_HW_NRF52',['../ciot__sys__types_8h.html#a7f47e5291a35126d37482ded0232e5efa1d69a7e4e65f5feab317dca37a76c8c7',1,'ciot_sys_types.h']]], + ['ciot_5fsys_5fhw_5ft_848',['ciot_sys_hw_t',['../ciot__sys__types_8h.html#a7f47e5291a35126d37482ded0232e5ef',1,'ciot_sys_types.h']]], + ['ciot_5fsys_5fhw_5funknown_849',['CIOT_SYS_HW_UNKNOWN',['../ciot__sys__types_8h.html#a7f47e5291a35126d37482ded0232e5efaff188acdae36c3f846e46c0fcac0f51f',1,'ciot_sys_types.h']]], + ['ciot_5fsys_5fhw_5fwin32_850',['CIOT_SYS_HW_WIN32',['../ciot__sys__types_8h.html#a7f47e5291a35126d37482ded0232e5efad7c83e675bfd1a4bbc5966f3977896df',1,'ciot_sys_types.h']]], + ['ciot_5fsys_5finfo_5ft_851',['ciot_sys_info_t',['../structciot__sys__info__t.html',1,'']]], + ['ciot_5fsys_5fnew_852',['ciot_sys_new',['../ciot__sys_8h.html#a22dbbf411c0235ce565adc505434a6c5',1,'ciot_sys.h']]], + ['ciot_5fsys_5fprocess_5freq_853',['ciot_sys_process_req',['../ciot__sys_8h.html#a06ce22313cfa75dd3862bf9125cd845c',1,'ciot_sys.h']]], + ['ciot_5fsys_5freq_5fdata_5fu_854',['ciot_sys_req_data_u',['../unionciot__sys__req__data__u.html',1,'']]], + ['ciot_5fsys_5freq_5finit_5fdfu_855',['CIOT_SYS_REQ_INIT_DFU',['../ciot__sys__types_8h.html#a1ee0e84a0f7250d41f9c39d795d6e3a7a051ef1036102b4fb06143109a949073c',1,'ciot_sys_types.h']]], + ['ciot_5fsys_5freq_5frestart_856',['CIOT_SYS_REQ_RESTART',['../ciot__sys__types_8h.html#a1ee0e84a0f7250d41f9c39d795d6e3a7afaec21fbf72d7431b0e1060c30bad2b4',1,'ciot_sys_types.h']]], + ['ciot_5fsys_5freq_5ft_857',['ciot_sys_req_t',['../structciot__sys__req__t.html',1,'']]], + ['ciot_5fsys_5freq_5ftype_5ft_858',['ciot_sys_req_type_t',['../ciot__sys__types_8h.html#a1ee0e84a0f7250d41f9c39d795d6e3a7',1,'ciot_sys_types.h']]], + ['ciot_5fsys_5freq_5funknonw_859',['CIOT_SYS_REQ_UNKNONW',['../ciot__sys__types_8h.html#a1ee0e84a0f7250d41f9c39d795d6e3a7ac7043876735504a548f88a6f78591c97',1,'ciot_sys_types.h']]], + ['ciot_5fsys_5frst_860',['ciot_sys_rst',['../ciot__sys_8h.html#afcb34bf8efb97cfc6f0e87c417508147',1,'ciot_sys.h']]], + ['ciot_5fsys_5fsend_5fdata_861',['ciot_sys_send_data',['../ciot__sys_8h.html#a5fbca2415ce7a76809907b5d3217098b',1,'ciot_sys.h']]], + ['ciot_5fsys_5fset_5fevent_5fbits_862',['ciot_sys_set_event_bits',['../ciot__sys_8h.html#ae3972ff066bf63bde44841a4c6052a14',1,'ciot_sys.h']]], + ['ciot_5fsys_5fsleep_863',['ciot_sys_sleep',['../ciot__sys_8h.html#a642db3584c187d4bfa8b34dca84ea9f8',1,'ciot_sys.h']]], + ['ciot_5fsys_5fstart_864',['ciot_sys_start',['../ciot__sys_8h.html#a4e0bd89f65a81feced88a3b45bf7f541',1,'ciot_sys.h']]], + ['ciot_5fsys_5fstatus_5fmsg_5ft_865',['ciot_sys_status_msg_t',['../structciot__sys__status__msg__t.html',1,'']]], + ['ciot_5fsys_5fstatus_5ft_866',['ciot_sys_status_t',['../structciot__sys__status__t.html',1,'']]], + ['ciot_5fsys_5fstop_867',['ciot_sys_stop',['../ciot__sys_8h.html#a1e3d326166a820fc5716b2516bcca0c3',1,'ciot_sys.h']]], + ['ciot_5fsys_5fsw_5ffeatures_5ft_868',['ciot_sys_sw_features_t',['../structciot__sys__sw__features__t.html',1,'']]], + ['ciot_5fsys_5ft_869',['ciot_sys_t',['../ciot__sys_8h.html#a000d7e2a946477d024a46584409a95cd',1,'ciot_sys.h']]], + ['ciot_5fsys_5ftask_870',['ciot_sys_task',['../ciot__sys_8h.html#a3a9c0875c8a82a6927c7bc27294092c4',1,'ciot_sys.h']]], + ['ciot_5fsys_5ftypes_2eh_871',['ciot_sys_types.h',['../ciot__sys__types_8h.html',1,'']]], + ['ciot_5fsys_5fupdate_5ffeatures_872',['ciot_sys_update_features',['../ciot__sys_8h.html#a5e7145c78ed2af300b57879b856478af',1,'ciot_sys.h']]], + ['ciot_5ft_873',['ciot_t',['../ciot_8h.html#a8543fc73092a47512369c90b44059bb6',1,'ciot.h']]], + ['ciot_5ftarget_5funknown_874',['CIOT_TARGET_UNKNOWN',['../ciot__config_8h.html#a9d4899595ff9cdd8c920802d34e4c4aa',1,'ciot_config.h']]], + ['ciot_5ftask_875',['ciot_task',['../ciot_8h.html#a27c376712b0d3594c545846834d24d25',1,'ciot.h']]], + ['ciot_5ftcp_2eh_876',['ciot_tcp.h',['../ciot__tcp_8h.html',1,'']]], + ['ciot_5ftcp_5fcfg_5ft_877',['ciot_tcp_cfg_t',['../structciot__tcp__cfg__t.html',1,'']]], + ['ciot_5ftcp_5fdata_5fu_878',['ciot_tcp_data_u',['../unionciot__tcp__data__u.html',1,'']]], + ['ciot_5ftcp_5fdhcp_5fcfg_5fclient_879',['CIOT_TCP_DHCP_CFG_CLIENT',['../ciot__tcp__types_8h.html#a6b9f05d16358111acd3b846a7086f32da256c65576b0fdb5d6cde2ec00741053d',1,'ciot_tcp_types.h']]], + ['ciot_5ftcp_5fdhcp_5fcfg_5fdisabled_880',['CIOT_TCP_DHCP_CFG_DISABLED',['../ciot__tcp__types_8h.html#a6b9f05d16358111acd3b846a7086f32daf1cef0fee46226a83db77ffb5adb78aa',1,'ciot_tcp_types.h']]], + ['ciot_5ftcp_5fdhcp_5fcfg_5fno_5fchange_881',['CIOT_TCP_DHCP_CFG_NO_CHANGE',['../ciot__tcp__types_8h.html#a6b9f05d16358111acd3b846a7086f32da612a799c9f8c26c1f3b9a503712bd711',1,'ciot_tcp_types.h']]], + ['ciot_5ftcp_5fdhcp_5fcfg_5fserver_882',['CIOT_TCP_DHCP_CFG_SERVER',['../ciot__tcp__types_8h.html#a6b9f05d16358111acd3b846a7086f32da687fde87cf827b9e89f391a724332b64',1,'ciot_tcp_types.h']]], + ['ciot_5ftcp_5fdhcp_5fcfg_5ft_883',['ciot_tcp_dhcp_cfg_t',['../ciot__tcp__types_8h.html#a6b9f05d16358111acd3b846a7086f32d',1,'ciot_tcp_types.h']]], + ['ciot_5ftcp_5fdhcp_5fstate_5fidle_884',['CIOT_TCP_DHCP_STATE_IDLE',['../ciot__tcp__types_8h.html#a5352e5a5aa4b1ddf306f31d22ceb5823ab0167afbae61b85190d4a3ce6f8e1bb6',1,'ciot_tcp_types.h']]], + ['ciot_5ftcp_5fdhcp_5fstate_5fstarted_885',['CIOT_TCP_DHCP_STATE_STARTED',['../ciot__tcp__types_8h.html#a5352e5a5aa4b1ddf306f31d22ceb5823a498ff82ecd47e1cc74eb97e647f9af41',1,'ciot_tcp_types.h']]], + ['ciot_5ftcp_5fdhcp_5fstate_5fstopped_886',['CIOT_TCP_DHCP_STATE_STOPPED',['../ciot__tcp__types_8h.html#a5352e5a5aa4b1ddf306f31d22ceb5823a4bd1f94974adc3039a15f24009f07725',1,'ciot_tcp_types.h']]], + ['ciot_5ftcp_5fdhcp_5fstate_5ft_887',['ciot_tcp_dhcp_state_t',['../ciot__tcp__types_8h.html#a5352e5a5aa4b1ddf306f31d22ceb5823',1,'ciot_tcp_types.h']]], + ['ciot_5ftcp_5fdhcp_5fstatus_5ft_888',['ciot_tcp_dhcp_status_t',['../structciot__tcp__dhcp__status__t.html',1,'']]], + ['ciot_5ftcp_5fget_5fip_889',['ciot_tcp_get_ip',['../ciot__tcp_8h.html#acf0f0475005d8a35010d7d3795a83709',1,'ciot_tcp.h']]], + ['ciot_5ftcp_5fhandle_890',['ciot_tcp_handle',['../structciot__tcp__handle.html',1,'']]], + ['ciot_5ftcp_5fhandle_5ft_891',['ciot_tcp_handle_t',['../ciot__tcp_8h.html#af40757b42f3a862bda187c4480db9fdd',1,'ciot_tcp.h']]], + ['ciot_5ftcp_5finfo_5ft_892',['ciot_tcp_info_t',['../structciot__tcp__info__t.html',1,'']]], + ['ciot_5ftcp_5finit_893',['ciot_tcp_init',['../ciot__tcp_8h.html#aaf33d525b69a740035727775db744789',1,'ciot_tcp.h']]], + ['ciot_5ftcp_5fnew_894',['ciot_tcp_new',['../ciot__tcp_8h.html#aa7b4877b5e9386676e52472bc2b623fb',1,'ciot_tcp.h']]], + ['ciot_5ftcp_5fprocess_5freq_895',['ciot_tcp_process_req',['../ciot__tcp_8h.html#a8e470218e3e7bbfff2d416270c012a29',1,'ciot_tcp.h']]], + ['ciot_5ftcp_5fregister_5fevent_896',['ciot_tcp_register_event',['../ciot__tcp_8h.html#a6f7038a07ff7a89af6c8b228ebb99cae',1,'ciot_tcp.h']]], + ['ciot_5ftcp_5freq_5fdata_5fu_897',['ciot_tcp_req_data_u',['../unionciot__tcp__req__data__u.html',1,'']]], + ['ciot_5ftcp_5freq_5ft_898',['ciot_tcp_req_t',['../structciot__tcp__req__t.html',1,'']]], + ['ciot_5ftcp_5freq_5ftype_5ft_899',['ciot_tcp_req_type_t',['../ciot__tcp__types_8h.html#a7bba37dedd9e8a5d5374ffa220088210',1,'ciot_tcp_types.h']]], + ['ciot_5ftcp_5freq_5funknown_900',['CIOT_TCP_REQ_UNKNOWN',['../ciot__tcp__types_8h.html#a7bba37dedd9e8a5d5374ffa220088210ad747f2cdac489da51cbb5d9dd8a44331',1,'ciot_tcp_types.h']]], + ['ciot_5ftcp_5fsend_5fdata_901',['ciot_tcp_send_data',['../ciot__tcp_8h.html#a21f1441d7e5b4b9c43ae51509fc12fe7',1,'ciot_tcp.h']]], + ['ciot_5ftcp_5fstart_902',['ciot_tcp_start',['../ciot__tcp_8h.html#a4bc4953f648bd57ec2fd6a0607c8b3eb',1,'ciot_tcp.h']]], + ['ciot_5ftcp_5fstate_5fconnected_903',['CIOT_TCP_STATE_CONNECTED',['../ciot__tcp__types_8h.html#aad64ae7daa8a2c6eefb794318c7c88c4a3266288819ae51df6e46bf607f97cc18',1,'ciot_tcp_types.h']]], + ['ciot_5ftcp_5fstate_5fconnecting_904',['CIOT_TCP_STATE_CONNECTING',['../ciot__tcp__types_8h.html#aad64ae7daa8a2c6eefb794318c7c88c4a8c0ce6cdcfc832aaa59eeb008720264d',1,'ciot_tcp_types.h']]], + ['ciot_5ftcp_5fstate_5ferror_905',['CIOT_TCP_STATE_ERROR',['../ciot__tcp__types_8h.html#aad64ae7daa8a2c6eefb794318c7c88c4ad830cbd0026ab149b983ca446d00da93',1,'ciot_tcp_types.h']]], + ['ciot_5ftcp_5fstate_5fstarted_906',['CIOT_TCP_STATE_STARTED',['../ciot__tcp__types_8h.html#aad64ae7daa8a2c6eefb794318c7c88c4a7c1ef5f54de6485e51c38d35823ef474',1,'ciot_tcp_types.h']]], + ['ciot_5ftcp_5fstate_5fstopped_907',['CIOT_TCP_STATE_STOPPED',['../ciot__tcp__types_8h.html#aad64ae7daa8a2c6eefb794318c7c88c4a1133752fa7b40a274d3cdc1b1f606380',1,'ciot_tcp_types.h']]], + ['ciot_5ftcp_5fstate_5ft_908',['ciot_tcp_state_t',['../ciot__tcp__types_8h.html#aad64ae7daa8a2c6eefb794318c7c88c4',1,'ciot_tcp_types.h']]], + ['ciot_5ftcp_5fstatus_5fmsg_5ft_909',['ciot_tcp_status_msg_t',['../structciot__tcp__status__msg__t.html',1,'']]], + ['ciot_5ftcp_5fstatus_5ft_910',['ciot_tcp_status_t',['../structciot__tcp__status__t.html',1,'']]], + ['ciot_5ftcp_5fstop_911',['ciot_tcp_stop',['../ciot__tcp_8h.html#a4873b02d0f4a5665258cd4ac47e83880',1,'ciot_tcp.h']]], + ['ciot_5ftcp_5ft_912',['ciot_tcp_t',['../ciot__tcp_8h.html#a85ab6c7fac206851e1183e84d8920b04',1,'ciot_tcp.h']]], + ['ciot_5ftcp_5ftype_913',['ciot_tcp_type',['../ciot__tcp_8h.html#a420540e389b2d5f21d7bfbd640f44bd4',1,'ciot_tcp.h']]], + ['ciot_5ftcp_5ftype_5fethernet_914',['CIOT_TCP_TYPE_ETHERNET',['../ciot__tcp_8h.html#a420540e389b2d5f21d7bfbd640f44bd4a567e4dfbd0835d25cf6648942b584639',1,'ciot_tcp.h']]], + ['ciot_5ftcp_5ftype_5ft_915',['ciot_tcp_type_t',['../ciot__tcp_8h.html#a8206ed69c94c5a1a4c934d3fc89a10db',1,'ciot_tcp.h']]], + ['ciot_5ftcp_5ftype_5funknown_916',['CIOT_TCP_TYPE_UNKNOWN',['../ciot__tcp_8h.html#a420540e389b2d5f21d7bfbd640f44bd4aaa42761772eedb190594f60334e7f9b6',1,'ciot_tcp.h']]], + ['ciot_5ftcp_5ftype_5fwifi_5fap_917',['CIOT_TCP_TYPE_WIFI_AP',['../ciot__tcp_8h.html#a420540e389b2d5f21d7bfbd640f44bd4a14d1cd4b6a8ecd2b169de66540675046',1,'ciot_tcp.h']]], + ['ciot_5ftcp_5ftype_5fwifi_5fsta_918',['CIOT_TCP_TYPE_WIFI_STA',['../ciot__tcp_8h.html#a420540e389b2d5f21d7bfbd640f44bd4a0653aba615cacd4d37ca017b39cac2c3',1,'ciot_tcp.h']]], + ['ciot_5ftcp_5ftypes_2eh_919',['ciot_tcp_types.h',['../ciot__tcp__types_8h.html',1,'']]], + ['ciot_5ftimer_2eh_920',['ciot_timer.h',['../ciot__timer_8h.html',1,'']]], + ['ciot_5ftimer_5fcfg_921',['ciot_timer_cfg',['../structciot__timer__cfg.html',1,'']]], + ['ciot_5ftimer_5fcfg_5ft_922',['ciot_timer_cfg_t',['../ciot__timer_8h.html#ae019e659b7b831fe1d18d0cc25a2947a',1,'ciot_timer.h']]], + ['ciot_5ftimer_5fcompare_923',['ciot_timer_compare',['../ciot__timer_8h.html#aed2d654f1ff37f47c42c87a8de300b19',1,'ciot_timer.h']]], + ['ciot_5ftimer_5fevent_5fhandler_5ft_924',['ciot_timer_event_handler_t',['../ciot__timer_8h.html#ae11839d456d62e3e384c7122812fcefc',1,'ciot_timer.h']]], + ['ciot_5ftimer_5fget_925',['ciot_timer_get',['../ciot__timer_8h.html#ade8ee212546acd7193d5b55b803f64ac',1,'ciot_timer.h']]], + ['ciot_5ftimer_5fstart_926',['ciot_timer_start',['../ciot__timer_8h.html#a8d0e55ce9c38fa27cb6cbf0adf38ea85',1,'ciot_timer.h']]], + ['ciot_5ftypes_2eh_927',['ciot_types.h',['../ciot__types_8h.html',1,'']]], + ['ciot_5fuart_2eh_928',['ciot_uart.h',['../ciot__uart_8h.html',1,'']]], + ['ciot_5fuart_5fbase_929',['ciot_uart_base',['../structciot__uart__base.html',1,'']]], + ['ciot_5fuart_5fbase_5ft_930',['ciot_uart_base_t',['../ciot__uart_8h.html#a78b44a6ece241c7fbc110ddba2e3d4db',1,'ciot_uart.h']]], + ['ciot_5fuart_5fcfg_5ft_931',['ciot_uart_cfg_t',['../structciot__uart__cfg__t.html',1,'']]], + ['ciot_5fuart_5fdata_5fu_932',['ciot_uart_data_u',['../unionciot__uart__data__u.html',1,'']]], + ['ciot_5fuart_5ferr_5fbreak_933',['CIOT_UART_ERR_BREAK',['../ciot__uart__types_8h.html#aef6ecadc19ff8f271719099d4858494aaad6937afc4eaec25982854d59b88c44e',1,'ciot_uart_types.h']]], + ['ciot_5fuart_5ferr_5fbuffer_5ffull_934',['CIOT_UART_ERR_BUFFER_FULL',['../ciot__uart__types_8h.html#aef6ecadc19ff8f271719099d4858494aa4980792413629568f394143146dfd34e',1,'ciot_uart_types.h']]], + ['ciot_5fuart_5ferr_5fdata_5fbreak_935',['CIOT_UART_ERR_DATA_BREAK',['../ciot__uart__types_8h.html#aef6ecadc19ff8f271719099d4858494aa29325d36ddc3f3283eb395420109f403',1,'ciot_uart_types.h']]], + ['ciot_5fuart_5ferr_5ffifo_5foverflow_936',['CIOT_UART_ERR_FIFO_OVERFLOW',['../ciot__uart__types_8h.html#aef6ecadc19ff8f271719099d4858494aa4471ad6db30324129d09ef452d3f21ef',1,'ciot_uart_types.h']]], + ['ciot_5fuart_5ferr_5fframe_937',['CIOT_UART_ERR_FRAME',['../ciot__uart__types_8h.html#aef6ecadc19ff8f271719099d4858494aa378a518c8cbc1750b42c1ba8dc74ac53',1,'ciot_uart_types.h']]], + ['ciot_5fuart_5ferr_5fnone_938',['CIOT_UART_ERR_NONE',['../ciot__uart__types_8h.html#aef6ecadc19ff8f271719099d4858494aa247559c3b774b184eefcddff921c7e7f',1,'ciot_uart_types.h']]], + ['ciot_5fuart_5ferr_5fopen_939',['CIOT_UART_ERR_OPEN',['../ciot__uart__types_8h.html#aef6ecadc19ff8f271719099d4858494aa00bbe17b442ed0e94d1f3695b32bda2a',1,'ciot_uart_types.h']]], + ['ciot_5fuart_5ferr_5fparity_940',['CIOT_UART_ERR_PARITY',['../ciot__uart__types_8h.html#aef6ecadc19ff8f271719099d4858494aa673b4c65f8766835eb2acaad965ced62',1,'ciot_uart_types.h']]], + ['ciot_5fuart_5ferr_5funknown_5fevent_941',['CIOT_UART_ERR_UNKNOWN_EVENT',['../ciot__uart__types_8h.html#aef6ecadc19ff8f271719099d4858494aa156f45510839d0ea276118f836a2a60f',1,'ciot_uart_types.h']]], + ['ciot_5fuart_5ferror_5ft_942',['ciot_uart_error_t',['../ciot__uart__types_8h.html#aef6ecadc19ff8f271719099d4858494a',1,'ciot_uart_types.h']]], + ['ciot_5fuart_5fevent_943',['ciot_uart_event',['../unionciot__uart__event.html',1,'']]], + ['ciot_5fuart_5fevent_5fdata_944',['CIOT_UART_EVENT_DATA',['../ciot__uart_8h.html#a03b2c325917b0578e226cad351ffba0ea195c22e4ee22b16b675cc44f64cfdfff',1,'ciot_uart.h']]], + ['ciot_5fuart_5fevent_5fid_945',['ciot_uart_event_id',['../ciot__uart_8h.html#a03b2c325917b0578e226cad351ffba0e',1,'ciot_uart.h']]], + ['ciot_5fuart_5fevent_5fid_5ft_946',['ciot_uart_event_id_t',['../ciot__uart_8h.html#a95cd10e869cbb1e43fcae25dadd5bdfb',1,'ciot_uart.h']]], + ['ciot_5fuart_5fevent_5fu_947',['ciot_uart_event_u',['../ciot__uart__types_8h.html#a1c20b2ee6a468d46d74b5868e93a3aca',1,'ciot_uart_types.h']]], + ['ciot_5fuart_5fnew_948',['ciot_uart_new',['../ciot__uart_8h.html#a2079bc11f1f437a1a3ce490a7db1d60a',1,'ciot_uart.h']]], + ['ciot_5fuart_5fprocess_5freq_949',['ciot_uart_process_req',['../ciot__uart_8h.html#a20f3b90cb598bec62e64a9fbd3bd399b',1,'ciot_uart.h']]], + ['ciot_5fuart_5freq_5fdata_5fu_950',['ciot_uart_req_data_u',['../unionciot__uart__req__data__u.html',1,'']]], + ['ciot_5fuart_5freq_5fenable_5fbridge_5fmode_951',['CIOT_UART_REQ_ENABLE_BRIDGE_MODE',['../ciot__uart__types_8h.html#a9b29402e0c8e8eaed7be0fa4ca22751ca7db606c5c2e1124419279dae212d92b6',1,'ciot_uart_types.h']]], + ['ciot_5fuart_5freq_5fsend_5fbytes_952',['CIOT_UART_REQ_SEND_BYTES',['../ciot__uart__types_8h.html#a9b29402e0c8e8eaed7be0fa4ca22751ca553ca846abf1dd6c736512c293f62134',1,'ciot_uart_types.h']]], + ['ciot_5fuart_5freq_5fsend_5fdata_953',['CIOT_UART_REQ_SEND_DATA',['../ciot__uart__types_8h.html#a9b29402e0c8e8eaed7be0fa4ca22751ca9a3b4577451009d87249a3afa3f5d1a7',1,'ciot_uart_types.h']]], + ['ciot_5fuart_5freq_5fsend_5fdata_5ft_954',['ciot_uart_req_send_data_t',['../structciot__uart__req__send__data__t.html',1,'']]], + ['ciot_5fuart_5freq_5ft_955',['ciot_uart_req_t',['../structciot__uart__req__t.html',1,'']]], + ['ciot_5fuart_5freq_5ftype_5ft_956',['ciot_uart_req_type_t',['../ciot__uart__types_8h.html#a9b29402e0c8e8eaed7be0fa4ca22751c',1,'ciot_uart_types.h']]], + ['ciot_5fuart_5freq_5funknown_957',['CIOT_UART_REQ_UNKNOWN',['../ciot__uart__types_8h.html#a9b29402e0c8e8eaed7be0fa4ca22751ca94d082e7fecb8305a0acb0cc05384352',1,'ciot_uart_types.h']]], + ['ciot_5fuart_5fsend_5fbytes_958',['ciot_uart_send_bytes',['../ciot__uart_8h.html#af238f48d206919d750b36dd95a288903',1,'ciot_uart.h']]], + ['ciot_5fuart_5fsend_5fdata_959',['ciot_uart_send_data',['../ciot__uart_8h.html#a7702c9079dcd8a2e07381df4a54245d6',1,'ciot_uart.h']]], + ['ciot_5fuart_5fset_5fbridge_5fmode_960',['ciot_uart_set_bridge_mode',['../ciot__uart_8h.html#ab19c96e5abc4221723935e06a8035794',1,'ciot_uart.h']]], + ['ciot_5fuart_5fstart_961',['ciot_uart_start',['../ciot__uart_8h.html#a0f475e364cbc39bab4dbdb86cbdb347d',1,'ciot_uart.h']]], + ['ciot_5fuart_5fstate_5fciot_5fs_5ferror_962',['CIOT_UART_STATE_CIOT_S_ERROR',['../ciot__uart__types_8h.html#a00c2af7c6795f37afe35ce3882ab48ecab6941d4ad015b3618bb4389a6fd81b38',1,'ciot_uart_types.h']]], + ['ciot_5fuart_5fstate_5fclosed_963',['CIOT_UART_STATE_CLOSED',['../ciot__uart__types_8h.html#a00c2af7c6795f37afe35ce3882ab48eca68e791de6f32826bfeadcc76ca60bc2e',1,'ciot_uart_types.h']]], + ['ciot_5fuart_5fstate_5finternal_5ferror_964',['CIOT_UART_STATE_INTERNAL_ERROR',['../ciot__uart__types_8h.html#a00c2af7c6795f37afe35ce3882ab48eca9a25df08d25fcbbeed4211d968806f23',1,'ciot_uart_types.h']]], + ['ciot_5fuart_5fstate_5fstarted_965',['CIOT_UART_STATE_STARTED',['../ciot__uart__types_8h.html#a00c2af7c6795f37afe35ce3882ab48eca199a994bef9447f18c393c779a0892c1',1,'ciot_uart_types.h']]], + ['ciot_5fuart_5fstate_5ft_966',['ciot_uart_state_t',['../ciot__uart__types_8h.html#a00c2af7c6795f37afe35ce3882ab48ec',1,'ciot_uart_types.h']]], + ['ciot_5fuart_5fstatus_5fmsg_5ft_967',['ciot_uart_status_msg_t',['../structciot__uart__status__msg__t.html',1,'']]], + ['ciot_5fuart_5fstatus_5ft_968',['ciot_uart_status_t',['../structciot__uart__status__t.html',1,'']]], + ['ciot_5fuart_5fstop_969',['ciot_uart_stop',['../ciot__uart_8h.html#aa59a92031015d710116dd58847aa4207',1,'ciot_uart.h']]], + ['ciot_5fuart_5ft_970',['ciot_uart_t',['../ciot__uart_8h.html#a9e4ec933947db50204ef964efdf776bf',1,'ciot_uart.h']]], + ['ciot_5fuart_5ftask_971',['ciot_uart_task',['../ciot__uart_8h.html#ac8590fc0ab4c129c57c14a442c922c2f',1,'ciot_uart.h']]], + ['ciot_5fuart_5ftypes_2eh_972',['ciot_uart_types.h',['../ciot__uart__types_8h.html',1,'']]], + ['ciot_5fusb_2eh_973',['ciot_usb.h',['../ciot__usb_8h.html',1,'']]], + ['ciot_5fusb_5fcfg_5ft_974',['ciot_usb_cfg_t',['../structciot__usb__cfg__t.html',1,'']]], + ['ciot_5fusb_5fdata_5fu_975',['ciot_usb_data_u',['../unionciot__usb__data__u.html',1,'']]], + ['ciot_5fusb_5fevent_976',['ciot_usb_event',['../unionciot__usb__event.html',1,'']]], + ['ciot_5fusb_5fevent_5fdata_977',['CIOT_USB_EVENT_DATA',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a0f83b5f8ff28920ceaaad901510476c6',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5fdrv_5feptransfer_978',['CIOT_USB_EVENT_DRV_EPTRANSFER',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5ae4003dcdc297ffa8fc4cbd2f9207daa8',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5fdrv_5freset_979',['CIOT_USB_EVENT_DRV_RESET',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5ae4e25ddb62bf2e37c550da599ba49baa',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5fdrv_5fresume_980',['CIOT_USB_EVENT_DRV_RESUME',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a10a07726018e6efe25f3d1e5dca2e895',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5fdrv_5fsetup_981',['CIOT_USB_EVENT_DRV_SETUP',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a9c35023883831b5dc9a630f9121f0c68',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5fdrv_5fsof_982',['CIOT_USB_EVENT_DRV_SOF',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a276f27a10f2d1d8f2b9669e73f741453',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5fdrv_5fsuspend_983',['CIOT_USB_EVENT_DRV_SUSPEND',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a491b16a86bf780ddadb881ba97be218a',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5fdrv_5fwureq_984',['CIOT_USB_EVENT_DRV_WUREQ',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a696943e19333fb49af7bae6c62beb19b',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5ffirst_5fapp_985',['CIOT_USB_EVENT_FIRST_APP',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a51f79a53cfc322086e3efd9e48c5ea6f',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5ffirst_5finternal_986',['CIOT_USB_EVENT_FIRST_INTERNAL',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5ac3c161231a97b52f7b5eafdae193ef58',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5ffirst_5fpower_987',['CIOT_USB_EVENT_FIRST_POWER',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a6d8d7a8948f67370c8d7180f4e35d357',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5fhfclk_5fready_988',['CIOT_USB_EVENT_HFCLK_READY',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5abefb094f2be1ef915bf5e9a20cf34add',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5fid_989',['ciot_usb_event_id',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5fid_5ft_990',['ciot_usb_event_id_t',['../ciot__usb_8h.html#a014429fc850b705c643a7ec24bd55e1e',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5finst_5fappend_991',['CIOT_USB_EVENT_INST_APPEND',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5aaf2b626cb9e5b1be9d2eaa819fd3d386',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5finst_5fremove_992',['CIOT_USB_EVENT_INST_REMOVE',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a70d9c2054d28e7851d2ab32fc21b7e64',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5fpower_5fdetected_993',['CIOT_USB_EVENT_POWER_DETECTED',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5adb38ca4f63e6efb7f66e814211e9a3ad',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5fpower_5fready_994',['CIOT_USB_EVENT_POWER_READY',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5ad179606eaf7b0171f649090a3aa447c6',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5fpower_5fremoved_995',['CIOT_USB_EVENT_POWER_REMOVED',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a8a1cc8b9386234f3133dc7c78eb0bef6',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5fsetup_5fsetaddress_996',['CIOT_USB_EVENT_SETUP_SETADDRESS',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a1ea491afe0afdeef5390fb08ccf65cf8',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5fstart_5freq_997',['CIOT_USB_EVENT_START_REQ',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a4026d37d3f5e925bc054770b9ebe9526',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5fstarted_998',['CIOT_USB_EVENT_STARTED',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5ac5ce262971db46bd319f96d936f97e51',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5fstate_5fchanged_999',['CIOT_USB_EVENT_STATE_CHANGED',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5aaa1ee6bcea019eed94daab3193bd589b',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5fstop_5freq_1000',['CIOT_USB_EVENT_STOP_REQ',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a62de26da02a6e09bcd443684af656843',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5fstopped_1001',['CIOT_USB_EVENT_STOPPED',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a2876fe138403454c4c0c4bdec005b795',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5fsuspend_5freq_1002',['CIOT_USB_EVENT_SUSPEND_REQ',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a727280bd1dbf820baf7166b64bd9cf4e',1,'ciot_usb.h']]], + ['ciot_5fusb_5fevent_5fu_1003',['ciot_usb_event_u',['../ciot__usb__types_8h.html#a666a674ab97cf1c7bdf8ca4e6ec67948',1,'ciot_usb_types.h']]], + ['ciot_5fusb_5fevent_5fwakeup_5freq_1004',['CIOT_USB_EVENT_WAKEUP_REQ',['../ciot__usb_8h.html#a0dca39c70c3854cb378c750cf03a92a5a9911a33a214c0b913128cf4c120bf737',1,'ciot_usb.h']]], + ['ciot_5fusb_5fnew_1005',['ciot_usb_new',['../ciot__usb_8h.html#abfc4f7cd5db3e2e5d94c4cd179d99799',1,'ciot_usb.h']]], + ['ciot_5fusb_5fprocess_5freq_1006',['ciot_usb_process_req',['../ciot__usb_8h.html#aa7629e46c3c5f64fd1a03f449c9a62d9',1,'ciot_usb.h']]], + ['ciot_5fusb_5freq_5fdata_5fu_1007',['ciot_usb_req_data_u',['../unionciot__usb__req__data__u.html',1,'']]], + ['ciot_5fusb_5freq_5ft_1008',['ciot_usb_req_t',['../structciot__usb__req__t.html',1,'']]], + ['ciot_5fusb_5freq_5ftype_5ft_1009',['ciot_usb_req_type_t',['../ciot__usb__types_8h.html#a71fe5023c4df31cb959b5b9b8aae41ef',1,'ciot_usb_types.h']]], + ['ciot_5fusb_5freq_5funknown_1010',['CIOT_USB_REQ_UNKNOWN',['../ciot__usb__types_8h.html#a71fe5023c4df31cb959b5b9b8aae41efa131069815baa028e3106e0f74227b5d7',1,'ciot_usb_types.h']]], + ['ciot_5fusb_5fsend_5fbytes_1011',['ciot_usb_send_bytes',['../ciot__usb_8h.html#abae2505d8aed15ad739be049f4180e28',1,'ciot_usb.h']]], + ['ciot_5fusb_5fsend_5fdata_1012',['ciot_usb_send_data',['../ciot__usb_8h.html#a1ca6b2b7d2fb270d03110baaafa69875',1,'ciot_usb.h']]], + ['ciot_5fusb_5fset_5fbridge_5fmode_1013',['ciot_usb_set_bridge_mode',['../ciot__usb_8h.html#ad2167601e42b510a7c5c23092c4c1d67',1,'ciot_usb.h']]], + ['ciot_5fusb_5fstart_1014',['ciot_usb_start',['../ciot__usb_8h.html#a6fc1bc4653f9484b79d7f6eec7b8a22e',1,'ciot_usb.h']]], + ['ciot_5fusb_5fstate_5fstarted_1015',['CIOT_USB_STATE_STARTED',['../ciot__usb__types_8h.html#a3dc18e37f557a829c8d80f95824d61d4a6e05597b6f5e366cd8b0f7c053faa55b',1,'ciot_usb_types.h']]], + ['ciot_5fusb_5fstate_5fstopped_1016',['CIOT_USB_STATE_STOPPED',['../ciot__usb__types_8h.html#a3dc18e37f557a829c8d80f95824d61d4a481dcefd205d22bd32f4fed57ca1c1a7',1,'ciot_usb_types.h']]], + ['ciot_5fusb_5fstate_5ft_1017',['ciot_usb_state_t',['../ciot__usb__types_8h.html#a3dc18e37f557a829c8d80f95824d61d4',1,'ciot_usb_types.h']]], + ['ciot_5fusb_5fstatus_5fmsg_5ft_1018',['ciot_usb_status_msg_t',['../structciot__usb__status__msg__t.html',1,'']]], + ['ciot_5fusb_5fstatus_5ft_1019',['ciot_usb_status_t',['../structciot__usb__status__t.html',1,'']]], + ['ciot_5fusb_5fstop_1020',['ciot_usb_stop',['../ciot__usb_8h.html#adabdd1e2583c19abdaf9c618ac48744c',1,'ciot_usb.h']]], + ['ciot_5fusb_5ft_1021',['ciot_usb_t',['../ciot__usb_8h.html#a5a423546430ff5b539cecd7181fdf90d',1,'ciot_usb.h']]], + ['ciot_5fusb_5ftask_1022',['ciot_usb_task',['../ciot__usb_8h.html#a3182f3d52d2ed6b62d50f6b28f72e17e',1,'ciot_usb.h']]], + ['ciot_5fusb_5ftypes_2eh_1023',['ciot_usb_types.h',['../ciot__usb__types_8h.html',1,'']]], + ['ciot_5futils_2eh_1024',['ciot_utils.h',['../ciot__utils_8h.html',1,'']]], + ['ciot_5fver_1025',['CIOT_VER',['../ciot__config_8h.html#a308e001caa7470a8d08a2e85a4d96b8b',1,'ciot_config.h']]], + ['ciot_5fwifi_2eh_1026',['ciot_wifi.h',['../ciot__wifi_8h.html',1,'']]], + ['ciot_5fwifi_5fap_5finfo_5ft_1027',['ciot_wifi_ap_info_t',['../structciot__wifi__ap__info__t.html',1,'']]], + ['ciot_5fwifi_5fap_5fnew_1028',['ciot_wifi_ap_new',['../ciot__wifi_8h.html#aff94df1a4c08ca1cbea37d8dcd3f8777',1,'ciot_wifi.h']]], + ['ciot_5fwifi_5fcfg_5ft_1029',['ciot_wifi_cfg_t',['../structciot__wifi__cfg__t.html',1,'']]], + ['ciot_5fwifi_5fdata_5fu_1030',['ciot_wifi_data_u',['../unionciot__wifi__data__u.html',1,'']]], + ['ciot_5fwifi_5fevent_5fap_5fstaconnected_1031',['CIOT_WIFI_EVENT_AP_STACONNECTED',['../ciot__wifi_8h.html#a19c22be5088c4eab517d5814d79e3d1caa23c4adec62d9312d64a71f82f6efd03',1,'ciot_wifi.h']]], + ['ciot_5fwifi_5fevent_5fap_5fstadisconnected_1032',['CIOT_WIFI_EVENT_AP_STADISCONNECTED',['../ciot__wifi_8h.html#a19c22be5088c4eab517d5814d79e3d1caf42578350701e71889e933df00f62043',1,'ciot_wifi.h']]], + ['ciot_5fwifi_5fevent_5fap_5fstart_1033',['CIOT_WIFI_EVENT_AP_START',['../ciot__wifi_8h.html#a19c22be5088c4eab517d5814d79e3d1cac7a40b44a69f4c9761043bf78a5cded3',1,'ciot_wifi.h']]], + ['ciot_5fwifi_5fevent_5fap_5fstop_1034',['CIOT_WIFI_EVENT_AP_STOP',['../ciot__wifi_8h.html#a19c22be5088c4eab517d5814d79e3d1ca52710095670909e218c917ec10e77363',1,'ciot_wifi.h']]], + ['ciot_5fwifi_5fevent_5fid_1035',['ciot_wifi_event_id',['../ciot__wifi_8h.html#a19c22be5088c4eab517d5814d79e3d1c',1,'ciot_wifi.h']]], + ['ciot_5fwifi_5fevent_5fid_5ft_1036',['ciot_wifi_event_id_t',['../ciot__wifi_8h.html#aef3e522ed9507f7dbe6304d5ad31fbf9',1,'ciot_wifi.h']]], + ['ciot_5fwifi_5fevent_5fsta_5fconnected_1037',['CIOT_WIFI_EVENT_STA_CONNECTED',['../ciot__wifi_8h.html#a19c22be5088c4eab517d5814d79e3d1ca1b98996941b31dea8da9c83eb62fea37',1,'ciot_wifi.h']]], + ['ciot_5fwifi_5fevent_5fsta_5fdisconnected_1038',['CIOT_WIFI_EVENT_STA_DISCONNECTED',['../ciot__wifi_8h.html#a19c22be5088c4eab517d5814d79e3d1ca7076a750c510b561b1f0884ddd7e50db',1,'ciot_wifi.h']]], + ['ciot_5fwifi_5fevent_5fsta_5fstart_1039',['CIOT_WIFI_EVENT_STA_START',['../ciot__wifi_8h.html#a19c22be5088c4eab517d5814d79e3d1ca6b713b4b3920bb34f47260c7643ca2b8',1,'ciot_wifi.h']]], + ['ciot_5fwifi_5fevent_5fsta_5fstop_1040',['CIOT_WIFI_EVENT_STA_STOP',['../ciot__wifi_8h.html#a19c22be5088c4eab517d5814d79e3d1ca257ec9d7ea2e07aace2c8a179405e807',1,'ciot_wifi.h']]], + ['ciot_5fwifi_5fget_5fmac_1041',['ciot_wifi_get_mac',['../ciot__wifi_8h.html#a5817f21b0b8d5b22430f3ecb3c3c37a5',1,'ciot_wifi.h']]], + ['ciot_5fwifi_5fif_5fap_1042',['CIOT_WIFI_IF_AP',['../ciot__wifi__types_8h.html#af32b4aaa2c6d9132e310a2d368ca3a6fa7bfdef61a443d4e6f7e5b96acfade2fa',1,'ciot_wifi_types.h']]], + ['ciot_5fwifi_5fif_5fsta_1043',['CIOT_WIFI_IF_STA',['../ciot__wifi__types_8h.html#af32b4aaa2c6d9132e310a2d368ca3a6fa22577cd2b8c579f221be06f275674e60',1,'ciot_wifi_types.h']]], + ['ciot_5fwifi_5fnew_1044',['ciot_wifi_new',['../ciot__wifi_8h.html#a07185c8551c5e40a05d113736a72e1d7',1,'ciot_wifi.h']]], + ['ciot_5fwifi_5fprocess_5freq_1045',['ciot_wifi_process_req',['../ciot__wifi_8h.html#a37b38c412e4f11696f1e2c03852cc1b7',1,'ciot_wifi.h']]], + ['ciot_5fwifi_5freq_5fdata_5fu_1046',['ciot_wifi_req_data_u',['../unionciot__wifi__req__data__u.html',1,'']]], + ['ciot_5fwifi_5freq_5fscan_1047',['CIOT_WIFI_REQ_SCAN',['../ciot__wifi__types_8h.html#a2408faec8016bff6cd0590f0db3b8395af69b99260309c1d8ba4c8a36372fbc7f',1,'ciot_wifi_types.h']]], + ['ciot_5fwifi_5freq_5ft_1048',['ciot_wifi_req_t',['../structciot__wifi__req__t.html',1,'']]], + ['ciot_5fwifi_5freq_5ftype_5ft_1049',['ciot_wifi_req_type_t',['../ciot__wifi__types_8h.html#a2408faec8016bff6cd0590f0db3b8395',1,'ciot_wifi_types.h']]], + ['ciot_5fwifi_5freq_5funknown_1050',['CIOT_WIFI_REQ_UNKNOWN',['../ciot__wifi__types_8h.html#a2408faec8016bff6cd0590f0db3b8395a1cefbec3b48a7dc0c4e8333da88d9c2c',1,'ciot_wifi_types.h']]], + ['ciot_5fwifi_5fscan_5fresult_5ft_1051',['ciot_wifi_scan_result_t',['../structciot__wifi__scan__result__t.html',1,'']]], + ['ciot_5fwifi_5fscan_5fstate_5ferror_1052',['CIOT_WIFI_SCAN_STATE_ERROR',['../ciot__wifi__types_8h.html#ad99bf8f02a2d7a54b3a9a73752e74036aae17584d11aca31c75f644b1ec2b0af4',1,'ciot_wifi_types.h']]], + ['ciot_5fwifi_5fscan_5fstate_5fidle_1053',['CIOT_WIFI_SCAN_STATE_IDLE',['../ciot__wifi__types_8h.html#ad99bf8f02a2d7a54b3a9a73752e74036a4b64a2aa7491e1fc0baa7818e6b0a627',1,'ciot_wifi_types.h']]], + ['ciot_5fwifi_5fscan_5fstate_5fscanned_1054',['CIOT_WIFI_SCAN_STATE_SCANNED',['../ciot__wifi__types_8h.html#ad99bf8f02a2d7a54b3a9a73752e74036a81236e72b5b965ab3003fc7eefa172f8',1,'ciot_wifi_types.h']]], + ['ciot_5fwifi_5fscan_5fstate_5fscanning_1055',['CIOT_WIFI_SCAN_STATE_SCANNING',['../ciot__wifi__types_8h.html#ad99bf8f02a2d7a54b3a9a73752e74036a7112209d7638abecd3bb12235439da52',1,'ciot_wifi_types.h']]], + ['ciot_5fwifi_5fscan_5fstate_5ft_1056',['ciot_wifi_scan_state_t',['../ciot__wifi__types_8h.html#ad99bf8f02a2d7a54b3a9a73752e74036',1,'ciot_wifi_types.h']]], + ['ciot_5fwifi_5fsend_5fdata_1057',['ciot_wifi_send_data',['../ciot__wifi_8h.html#a1444b4045430489fbf88036fe898528a',1,'ciot_wifi.h']]], + ['ciot_5fwifi_5fsta_5fnew_1058',['ciot_wifi_sta_new',['../ciot__wifi_8h.html#a57c540c883f21bdfa6d5d0a92584cc90',1,'ciot_wifi.h']]], + ['ciot_5fwifi_5fstart_1059',['ciot_wifi_start',['../ciot__wifi_8h.html#af030ec8963d45c8374b58b10d3c83b9a',1,'ciot_wifi.h']]], + ['ciot_5fwifi_5fstate_5fidle_1060',['CIOT_WIFI_STATE_IDLE',['../ciot__wifi__types_8h.html#ad1f8d811fc212531fc388a76b784f348a8c2d80f4f370ad20291a732f50de55ef',1,'ciot_wifi_types.h']]], + ['ciot_5fwifi_5fstate_5ft_1061',['ciot_wifi_state_t',['../ciot__wifi__types_8h.html#ad1f8d811fc212531fc388a76b784f348',1,'ciot_wifi_types.h']]], + ['ciot_5fwifi_5fstatus_5fmsg_5ft_1062',['ciot_wifi_status_msg_t',['../structciot__wifi__status__msg__t.html',1,'']]], + ['ciot_5fwifi_5fstatus_5ft_1063',['ciot_wifi_status_t',['../structciot__wifi__status__t.html',1,'']]], + ['ciot_5fwifi_5fstop_1064',['ciot_wifi_stop',['../ciot__wifi_8h.html#aed26866d40b64a5f80c4769481987cc0',1,'ciot_wifi.h']]], + ['ciot_5fwifi_5ft_1065',['ciot_wifi_t',['../ciot__wifi_8h.html#a8a68a35d54f44cd102efdaf03d75d29a',1,'ciot_wifi.h']]], + ['ciot_5fwifi_5ftype_5ft_1066',['ciot_wifi_type_t',['../ciot__wifi__types_8h.html#af32b4aaa2c6d9132e310a2d368ca3a6f',1,'ciot_wifi_types.h']]], + ['ciot_5fwifi_5ftypes_2eh_1067',['ciot_wifi_types.h',['../ciot__wifi__types_8h.html',1,'']]], + ['client_1068',['client',['../structciot__tcp__dhcp__status__t.html#acb22641cf860e836e7394d14b9adae4b',1,'ciot_tcp_dhcp_status_t']]], + ['client_5fid_1069',['client_id',['../structciot__mqttc__cfg__t.html#a71a2e48797aa4b94b9164ea22564c158',1,'ciot_mqttc_cfg_t']]], + ['code_1070',['code',['../structciot__dfu__status__t.html#a45a5b7c00a796a23f01673cef1dbe0a9',1,'ciot_dfu_status_t::code'],['../structciot__mqttc__error__t.html#a45a5b7c00a796a23f01673cef1dbe0a9',1,'ciot_mqttc_error_t::code'],['../structciot__msg__error__t.html#afe73fa7a655419b386e0a10c7beaace3',1,'ciot_msg_error_t::code']]], + ['config_1071',['config',['../unionciot__ble__scn__data__u.html#a77ffb25407771dd73e21b56e0976b3b7',1,'ciot_ble_scn_data_u::config'],['../unionciot__ble__data__u.html#a3bb879297495825c0895764c1b7593b1',1,'ciot_ble_data_u::config'],['../unionciot__bridge__data__u.html#a422a3539477ec835aea97b889564f22a',1,'ciot_bridge_data_u::config'],['../unionciot__data__model__data__u.html#a0a7b5df86de5bd60d09108b02de9d89d',1,'ciot_data_model_data_u::config'],['../unionciot__dfu__data__u.html#a8d4be68066e35bb11aecfff26e3cb30b',1,'ciot_dfu_data_u::config'],['../unionciot__gpio__req__data__u.html#a15039efacca36cdba57c2ccf7b0a3d4f',1,'ciot_gpio_req_data_u::config'],['../unionciot__gpio__data__u.html#a15039efacca36cdba57c2ccf7b0a3d4f',1,'ciot_gpio_data_u::config'],['../unionciot__httpc__data__u.html#a0ddab1f295ea5861939322623d313037',1,'ciot_httpc_data_u::config'],['../unionciot__https__data__u.html#a07d1ec38980b47dde9caaa52c42163cf',1,'ciot_https_data_u::config'],['../unionciot__mqttc__data__u.html#a79c158a8d9a5ddac01d944ca9485764b',1,'ciot_mqttc_data_u::config'],['../unionciot__ntp__data__u.html#a6c17383e9465f668d1e9dcb3cf8d4f4a',1,'ciot_ntp_data_u::config'],['../unionciot__opcuas__data__u.html#aa976951e468c754fef849731243b0acb',1,'ciot_opcuas_data_u::config'],['../unionciot__ota__data__u.html#a62fb934187d712f56dc1289eda8f8cac',1,'ciot_ota_data_u::config'],['../unionciot__storage__data__u.html#aabe6a902449529e66a1bb460116af784',1,'ciot_storage_data_u::config'],['../unionciot__sys__data__u.html#a9d2eb5a0a1a2ed5d529672a8229a8fe8',1,'ciot_sys_data_u::config'],['../unionciot__tcp__data__u.html#a71821427aa3817c68209a151bed81e56',1,'ciot_tcp_data_u::config'],['../unionciot__data__u.html#a82e7ef84cdd4eb20f2da20f0df751fd3',1,'ciot_data_u::config'],['../unionciot__uart__data__u.html#a107556abf8506af23fc4f92aa4d20cea',1,'ciot_uart_data_u::config'],['../unionciot__usb__data__u.html#a5a3eefbe6f21d662a5e318bbf323a00e',1,'ciot_usb_data_u::config'],['../unionciot__wifi__data__u.html#a711c5a971ab69b9cfa4850692e6bbaad',1,'ciot_wifi_data_u::config']]], + ['conn_5fcount_1072',['conn_count',['../structciot__mqttc__status__t.html#acaf4be12cb0cee4fbea5e8e121f6d2e4',1,'ciot_mqttc_status_t::conn_count'],['../structciot__tcp__status__t.html#acaf4be12cb0cee4fbea5e8e121f6d2e4',1,'ciot_tcp_status_t::conn_count']]], + ['content_5flength_1073',['content_length',['../structciot__httpc__req__send__t.html#a675a47f46ecd9d8ec01c738e04c28cbe',1,'ciot_httpc_req_send_t']]], + ['core_1074',['Core',['../group__core.html',1,'']]], + ['count_1075',['count',['../structciot__cfg.html#a20302e2c99a60d3f612dba57e3f6333b',1,'ciot_cfg::count'],['../structciot__wifi__scan__result__t.html#a20302e2c99a60d3f612dba57e3f6333b',1,'ciot_wifi_scan_result_t::count']]], + ['crc32_5fcompute_1076',['crc32_compute',['../ciot__utils_8h.html#a3c925cbabcbf9b62b099a9c5d5a054ad',1,'ciot_utils.h']]], + ['cts_5fpin_1077',['cts_pin',['../structciot__uart__cfg__t.html#a73580a66f00a6a0ea4a56441d529797f',1,'ciot_uart_cfg_t']]], + ['current_5findex_1078',['current_index',['../structciot__slip__t.html#ad1e3bc5a59e7ed48387fb95383fae12f',1,'ciot_slip_t']]] ]; diff --git a/docs/search/all_6.js b/docs/search/all_6.js index c2fc75e..00bce45 100644 --- a/docs/search/all_6.js +++ b/docs/search/all_6.js @@ -2,5 +2,6 @@ var searchData= [ ['gateway_0',['gateway',['../structciot__tcp__cfg__t.html#a0beca1eecd2529c061a6dc4cb8a412fd',1,'ciot_tcp_cfg_t']]], ['get_5fstate_1',['get_state',['../unionciot__gpio__req__data__u.html#a93559a0f91d62042000a3276dc457506',1,'ciot_gpio_req_data_u']]], - ['gpio_2',['gpio',['../structciot__sys__hw__features__t.html#a633be9f96069e4c7cb47b431f80ca974',1,'ciot_sys_hw_features_t']]] + ['gpio_2',['gpio',['../structciot__sys__hw__features__t.html#a633be9f96069e4c7cb47b431f80ca974',1,'ciot_sys_hw_features_t']]], + ['guide_3',['CIoT - Programming Guide',['../index.html',1,'']]] ]; diff --git a/docs/search/all_8.js b/docs/search/all_8.js index 87e32ff..820fcec 100644 --- a/docs/search/all_8.js +++ b/docs/search/all_8.js @@ -11,5 +11,6 @@ var searchData= ['init_8',['init',['../structciot__ntp__status__t.html#a49f666045d24aa8becc5244bc2396aca',1,'ciot_ntp_status_t']]], ['init_5fpacket_9',['init_packet',['../structciot__nrf__dfu__cfg.html#a795b5a3aa5d9214e635ad47549f52f15',1,'ciot_nrf_dfu_cfg']]], ['interval_10',['interval',['../structciot__ble__scn__cfg__t.html#a6c52a3d605c056768b59164ce8df8334',1,'ciot_ble_scn_cfg_t']]], - ['ip_11',['ip',['../structciot__tcp__cfg__t.html#ae81515e082f9bc33e8968181945586da',1,'ciot_tcp_cfg_t::ip'],['../structciot__tcp__info__t.html#ae81515e082f9bc33e8968181945586da',1,'ciot_tcp_info_t::ip']]] + ['introduction_11',['Introduction',['../index.html#intro',1,'']]], + ['ip_12',['ip',['../structciot__tcp__cfg__t.html#ae81515e082f9bc33e8968181945586da',1,'ciot_tcp_cfg_t::ip'],['../structciot__tcp__info__t.html#ae81515e082f9bc33e8968181945586da',1,'ciot_tcp_info_t::ip']]] ]; diff --git a/docs/search/all_9.js b/docs/search/all_9.js index 6a6ec05..d7b17d3 100644 --- a/docs/search/all_9.js +++ b/docs/search/all_9.js @@ -3,5 +3,6 @@ var searchData= ['last_5fmsg_5ftime_0',['last_msg_time',['../structciot__mqttc__status__t.html#a44794759868576e0404c9cf629863797',1,'ciot_mqttc_status_t']]], ['last_5fsync_1',['last_sync',['../structciot__ntp__status__t.html#a1fd97d69dc5fc2ad2bd7be4f1d6e1a3d',1,'ciot_ntp_status_t']]], ['lifetime_2',['lifetime',['../structciot__sys__status__t.html#a569e06e92ec3d06c5ebf7f40d7f9a84e',1,'ciot_sys_status_t']]], - ['localization_3',['localization',['../structciot__opcuas__req__add__node__t.html#aa5f4b442eedc591f6e6e03787e6343bc',1,'ciot_opcuas_req_add_node_t']]] + ['list_3',['Todo List',['../todo.html',1,'']]], + ['localization_4',['localization',['../structciot__opcuas__req__add__node__t.html#aa5f4b442eedc591f6e6e03787e6343bc',1,'ciot_opcuas_req_add_node_t']]] ]; diff --git a/docs/search/all_a.js b/docs/search/all_a.js index 946cffd..c0be726 100644 --- a/docs/search/all_a.js +++ b/docs/search/all_a.js @@ -1,12 +1,13 @@ var searchData= [ ['mac_0',['mac',['../structciot__ble__scn__adv__info__t.html#a2f32c75fb4bc7ba39243ef4a9f8eacc1',1,'ciot_ble_scn_adv_info_t::mac'],['../structciot__ble__cfg__t.html#a2f32c75fb4bc7ba39243ef4a9f8eacc1',1,'ciot_ble_cfg_t::mac'],['../structciot__tcp__info__t.html#a2f32c75fb4bc7ba39243ef4a9f8eacc1',1,'ciot_tcp_info_t::mac']]], - ['mask_1',['mask',['../structciot__tcp__cfg__t.html#ada50f0e7b89816d02459e3e520b018bf',1,'ciot_tcp_cfg_t']]], - ['max_5fpackage_5flen_2',['max_package_len',['../structciot__nrf__dfu__cfg.html#a9e30754c48462959a3efdef7ac582744',1,'ciot_nrf_dfu_cfg']]], - ['method_3',['method',['../structciot__httpc__cfg__t.html#ad10985b96579c7c2030050715bcad45d',1,'ciot_httpc_cfg_t::method'],['../structciot__https__event__data.html#af63c670f07c4a0a799e8581e95d4810e',1,'ciot_https_event_data::method']]], - ['mode_4',['mode',['../structciot__gpio__cfg__t.html#a7d76e224ede8a4fa709cc3a505a81975',1,'ciot_gpio_cfg_t']]], - ['mqtt_5',['mqtt',['../structciot__ifaces.html#afda8467a92fbc5a6bb84aa0703cf6605',1,'ciot_ifaces::mqtt'],['../unionciot__msg__data__u.html#a57eed7a24887f5d1adba0df0ca8f29f5',1,'ciot_msg_data_u::mqtt']]], - ['mqtt_5fclient_6',['mqtt_client',['../structciot__sys__sw__features__t.html#a1f1d5466bff3ee92c8a67e4b067159a2',1,'ciot_sys_sw_features_t']]], - ['msg_7',['msg',['../unionciot__iface__event__data__u.html#abd6b36b1e2c07eaa53b376fdbf0e9345',1,'ciot_iface_event_data_u::msg'],['../structciot__mqttc__req__publish__t.html#a2a544a28a9461b0de1f303ca407c459f',1,'ciot_mqttc_req_publish_t::msg']]], - ['msg_5ftype_8',['msg_type',['../structciot__msg__error__t.html#a61e21da913274adbd45e28f694651b11',1,'ciot_msg_error_t']]] + ['mainpage_2eh_1',['mainpage.h',['../mainpage_8h.html',1,'']]], + ['mask_2',['mask',['../structciot__tcp__cfg__t.html#ada50f0e7b89816d02459e3e520b018bf',1,'ciot_tcp_cfg_t']]], + ['max_5fpackage_5flen_3',['max_package_len',['../structciot__nrf__dfu__cfg.html#a9e30754c48462959a3efdef7ac582744',1,'ciot_nrf_dfu_cfg']]], + ['method_4',['method',['../structciot__httpc__cfg__t.html#ad10985b96579c7c2030050715bcad45d',1,'ciot_httpc_cfg_t::method'],['../structciot__https__event__data.html#af63c670f07c4a0a799e8581e95d4810e',1,'ciot_https_event_data::method']]], + ['mode_5',['mode',['../structciot__gpio__cfg__t.html#a7d76e224ede8a4fa709cc3a505a81975',1,'ciot_gpio_cfg_t']]], + ['mqtt_6',['mqtt',['../structciot__ifaces.html#afda8467a92fbc5a6bb84aa0703cf6605',1,'ciot_ifaces::mqtt'],['../unionciot__msg__data__u.html#a57eed7a24887f5d1adba0df0ca8f29f5',1,'ciot_msg_data_u::mqtt']]], + ['mqtt_5fclient_7',['mqtt_client',['../structciot__sys__sw__features__t.html#a1f1d5466bff3ee92c8a67e4b067159a2',1,'ciot_sys_sw_features_t']]], + ['msg_8',['msg',['../unionciot__iface__event__data__u.html#abd6b36b1e2c07eaa53b376fdbf0e9345',1,'ciot_iface_event_data_u::msg'],['../structciot__mqttc__req__publish__t.html#a2a544a28a9461b0de1f303ca407c459f',1,'ciot_mqttc_req_publish_t::msg']]], + ['msg_5ftype_9',['msg_type',['../structciot__msg__error__t.html#a61e21da913274adbd45e28f694651b11',1,'ciot_msg_error_t']]] ]; diff --git a/docs/search/all_b.js b/docs/search/all_b.js index 4515d1b..d9f1748 100644 --- a/docs/search/all_b.js +++ b/docs/search/all_b.js @@ -2,20 +2,21 @@ var searchData= [ ['netif_0',['netif',['../structciot__tcp__handle.html#af47c5ec8385375f1765e2728e856714a',1,'ciot_tcp_handle']]], ['node_5fid_1',['node_id',['../structciot__opcuas__req__add__node__t.html#a381f93ba5743e8813f554bda3c272257',1,'ciot_opcuas_req_add_node_t']]], - ['nrf_5fdfu_5fext_5ferror_5ffw_5fversion_5ffailure_2',['NRF_DFU_EXT_ERROR_FW_VERSION_FAILURE',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876a6c02c9ae073844a47747ce63fa3d7130',1,'ciot_nrf_dfu.h']]], - ['nrf_5fdfu_5fext_5ferror_5fhash_5ffailed_3',['NRF_DFU_EXT_ERROR_HASH_FAILED',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876a7bf63807b9f68dd5b74e6ec16c4e92ee',1,'ciot_nrf_dfu.h']]], - ['nrf_5fdfu_5fext_5ferror_5fhw_5fversion_5ffailure_4',['NRF_DFU_EXT_ERROR_HW_VERSION_FAILURE',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876a8774f8de1e6fe337794f1dd01c1372f2',1,'ciot_nrf_dfu.h']]], - ['nrf_5fdfu_5fext_5ferror_5finit_5fcommand_5finvalid_5',['NRF_DFU_EXT_ERROR_INIT_COMMAND_INVALID',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876aa1444e9416d8c46a6bee2f8af10a847e',1,'ciot_nrf_dfu.h']]], - ['nrf_5fdfu_5fext_5ferror_5finsufficient_5fspace_6',['NRF_DFU_EXT_ERROR_INSUFFICIENT_SPACE',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876a1b058729e996daf5b636d9e1466196b7',1,'ciot_nrf_dfu.h']]], - ['nrf_5fdfu_5fext_5ferror_5finvalid_5ferror_5fcode_7',['NRF_DFU_EXT_ERROR_INVALID_ERROR_CODE',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876ae9642fdf6a86410f790f975077d92f8f',1,'ciot_nrf_dfu.h']]], - ['nrf_5fdfu_5fext_5ferror_5fno_5ferror_8',['NRF_DFU_EXT_ERROR_NO_ERROR',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876acd7fa6a508c1e3839856c82ebdfc617d',1,'ciot_nrf_dfu.h']]], - ['nrf_5fdfu_5fext_5ferror_5fsd_5fversion_5ffailure_9',['NRF_DFU_EXT_ERROR_SD_VERSION_FAILURE',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876a9d52a14d24c2c26773961819baac956d',1,'ciot_nrf_dfu.h']]], - ['nrf_5fdfu_5fext_5ferror_5fsignature_5fmissing_10',['NRF_DFU_EXT_ERROR_SIGNATURE_MISSING',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876a44ad275bc794402797d4b8149eadaaa9',1,'ciot_nrf_dfu.h']]], - ['nrf_5fdfu_5fext_5ferror_5funknown_5fcommand_11',['NRF_DFU_EXT_ERROR_UNKNOWN_COMMAND',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876a889fcdbcd2b35b8363e5b4fcb3c68135',1,'ciot_nrf_dfu.h']]], - ['nrf_5fdfu_5fext_5ferror_5fverification_5ffailed_12',['NRF_DFU_EXT_ERROR_VERIFICATION_FAILED',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876a4511b180056f03eb9a6d793540fc7950',1,'ciot_nrf_dfu.h']]], - ['nrf_5fdfu_5fext_5ferror_5fwrong_5fcommand_5fformat_13',['NRF_DFU_EXT_ERROR_WRONG_COMMAND_FORMAT',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876a2189d8a473d22eed4eeb95cab818dbfc',1,'ciot_nrf_dfu.h']]], - ['nrf_5fdfu_5fext_5ferror_5fwrong_5fhash_5ftype_14',['NRF_DFU_EXT_ERROR_WRONG_HASH_TYPE',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876ad03f610f0b797c20379f644792d86c08',1,'ciot_nrf_dfu.h']]], - ['nrf_5fdfu_5fext_5ferror_5fwrong_5fsignature_5ftype_15',['NRF_DFU_EXT_ERROR_WRONG_SIGNATURE_TYPE',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876a94fbaa466d441666a84115b95711d334',1,'ciot_nrf_dfu.h']]], - ['ntp_16',['ntp',['../structciot__ifaces.html#a3ee37815964e9fd49d2dfee631dacedf',1,'ciot_ifaces::ntp'],['../unionciot__msg__data__u.html#a562d7a6cdd9053ec0bf7431017972903',1,'ciot_msg_data_u::ntp'],['../structciot__sys__sw__features__t.html#a34018b7bbca3d89088500ca3a47a66fd',1,'ciot_sys_sw_features_t::ntp']]], - ['num_17',['num',['../structciot__gpio__state__info__t.html#a7beea8f6745c478347f244cadef771c2',1,'ciot_gpio_state_info_t::num'],['../structciot__gpio__req__get__state__t.html#a7beea8f6745c478347f244cadef771c2',1,'ciot_gpio_req_get_state_t::num'],['../structciot__uart__cfg__t.html#abea371f9030e15a5d2a4c181576833d8',1,'ciot_uart_cfg_t::num']]] + ['notes_2',['Release notes',['../index.html#notes',1,'']]], + ['nrf_5fdfu_5fext_5ferror_5ffw_5fversion_5ffailure_3',['NRF_DFU_EXT_ERROR_FW_VERSION_FAILURE',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876a6c02c9ae073844a47747ce63fa3d7130',1,'ciot_nrf_dfu.h']]], + ['nrf_5fdfu_5fext_5ferror_5fhash_5ffailed_4',['NRF_DFU_EXT_ERROR_HASH_FAILED',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876a7bf63807b9f68dd5b74e6ec16c4e92ee',1,'ciot_nrf_dfu.h']]], + ['nrf_5fdfu_5fext_5ferror_5fhw_5fversion_5ffailure_5',['NRF_DFU_EXT_ERROR_HW_VERSION_FAILURE',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876a8774f8de1e6fe337794f1dd01c1372f2',1,'ciot_nrf_dfu.h']]], + ['nrf_5fdfu_5fext_5ferror_5finit_5fcommand_5finvalid_6',['NRF_DFU_EXT_ERROR_INIT_COMMAND_INVALID',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876aa1444e9416d8c46a6bee2f8af10a847e',1,'ciot_nrf_dfu.h']]], + ['nrf_5fdfu_5fext_5ferror_5finsufficient_5fspace_7',['NRF_DFU_EXT_ERROR_INSUFFICIENT_SPACE',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876a1b058729e996daf5b636d9e1466196b7',1,'ciot_nrf_dfu.h']]], + ['nrf_5fdfu_5fext_5ferror_5finvalid_5ferror_5fcode_8',['NRF_DFU_EXT_ERROR_INVALID_ERROR_CODE',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876ae9642fdf6a86410f790f975077d92f8f',1,'ciot_nrf_dfu.h']]], + ['nrf_5fdfu_5fext_5ferror_5fno_5ferror_9',['NRF_DFU_EXT_ERROR_NO_ERROR',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876acd7fa6a508c1e3839856c82ebdfc617d',1,'ciot_nrf_dfu.h']]], + ['nrf_5fdfu_5fext_5ferror_5fsd_5fversion_5ffailure_10',['NRF_DFU_EXT_ERROR_SD_VERSION_FAILURE',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876a9d52a14d24c2c26773961819baac956d',1,'ciot_nrf_dfu.h']]], + ['nrf_5fdfu_5fext_5ferror_5fsignature_5fmissing_11',['NRF_DFU_EXT_ERROR_SIGNATURE_MISSING',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876a44ad275bc794402797d4b8149eadaaa9',1,'ciot_nrf_dfu.h']]], + ['nrf_5fdfu_5fext_5ferror_5funknown_5fcommand_12',['NRF_DFU_EXT_ERROR_UNKNOWN_COMMAND',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876a889fcdbcd2b35b8363e5b4fcb3c68135',1,'ciot_nrf_dfu.h']]], + ['nrf_5fdfu_5fext_5ferror_5fverification_5ffailed_13',['NRF_DFU_EXT_ERROR_VERIFICATION_FAILED',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876a4511b180056f03eb9a6d793540fc7950',1,'ciot_nrf_dfu.h']]], + ['nrf_5fdfu_5fext_5ferror_5fwrong_5fcommand_5fformat_14',['NRF_DFU_EXT_ERROR_WRONG_COMMAND_FORMAT',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876a2189d8a473d22eed4eeb95cab818dbfc',1,'ciot_nrf_dfu.h']]], + ['nrf_5fdfu_5fext_5ferror_5fwrong_5fhash_5ftype_15',['NRF_DFU_EXT_ERROR_WRONG_HASH_TYPE',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876ad03f610f0b797c20379f644792d86c08',1,'ciot_nrf_dfu.h']]], + ['nrf_5fdfu_5fext_5ferror_5fwrong_5fsignature_5ftype_16',['NRF_DFU_EXT_ERROR_WRONG_SIGNATURE_TYPE',['../ciot__nrf__dfu_8h.html#a9b1886dcffda4260c62de821ec13d876a94fbaa466d441666a84115b95711d334',1,'ciot_nrf_dfu.h']]], + ['ntp_17',['ntp',['../structciot__ifaces.html#a3ee37815964e9fd49d2dfee631dacedf',1,'ciot_ifaces::ntp'],['../unionciot__msg__data__u.html#a562d7a6cdd9053ec0bf7431017972903',1,'ciot_msg_data_u::ntp'],['../structciot__sys__sw__features__t.html#a34018b7bbca3d89088500ca3a47a66fd',1,'ciot_sys_sw_features_t::ntp']]], + ['num_18',['num',['../structciot__gpio__state__info__t.html#a7beea8f6745c478347f244cadef771c2',1,'ciot_gpio_state_info_t::num'],['../structciot__gpio__req__get__state__t.html#a7beea8f6745c478347f244cadef771c2',1,'ciot_gpio_req_get_state_t::num'],['../structciot__uart__cfg__t.html#abea371f9030e15a5d2a4c181576833d8',1,'ciot_uart_cfg_t::num']]] ]; diff --git a/docs/search/all_d.js b/docs/search/all_d.js index f55b346..d5d5524 100644 --- a/docs/search/all_d.js +++ b/docs/search/all_d.js @@ -9,8 +9,9 @@ var searchData= ['pin_5fmask_6',['pin_mask',['../structciot__gpio__cfg__t.html#a3feeb7044549691a36c39cc7c9b2ed2c',1,'ciot_gpio_cfg_t']]], ['port_7',['port',['../structciot__https__cfg__t.html#a63c89c04d1feae07ca35558055155ffb',1,'ciot_https_cfg_t::port'],['../structciot__mqttc__cfg__t.html#a83a04ad582de2b7d36b96f9db429c2c6',1,'ciot_mqttc_cfg_t::port'],['../structciot__opcuas__cfg__t.html#a83a04ad582de2b7d36b96f9db429c2c6',1,'ciot_opcuas_cfg_t::port']]], ['process_5freq_8',['process_req',['../structciot__iface__base.html#ae2b271bbc55ea5a64e70f8566010f2cb',1,'ciot_iface_base']]], - ['proxy_5fmsg_9',['proxy_msg',['../unionciot__req__data__u.html#a778eb3ed59eb3397b9efad8d48d34b62',1,'ciot_req_data_u']]], - ['ptr_10',['ptr',['../structciot__event__data.html#aaa8222c604b0b520bc2205ddcc42d855',1,'ciot_event_data::ptr'],['../structciot__iface__base__data.html#add9af9569af79ec26dd741fb226b38ba',1,'ciot_iface_base_data::ptr'],['../structciot__iface__base.html#add9af9569af79ec26dd741fb226b38ba',1,'ciot_iface_base::ptr']]], - ['publish_11',['publish',['../unionciot__mqttc__req__data__u.html#ae7b5bde19c99952b5a737b600f3c21e6',1,'ciot_mqttc_req_data_u']]], - ['pull_12',['pull',['../structciot__gpio__cfg__t.html#a5ee68c0e31fa06f342fad371023bdc4e',1,'ciot_gpio_cfg_t']]] + ['programming_20guide_9',['CIoT - Programming Guide',['../index.html',1,'']]], + ['proxy_5fmsg_10',['proxy_msg',['../unionciot__req__data__u.html#a778eb3ed59eb3397b9efad8d48d34b62',1,'ciot_req_data_u']]], + ['ptr_11',['ptr',['../structciot__event__data.html#aaa8222c604b0b520bc2205ddcc42d855',1,'ciot_event_data::ptr'],['../structciot__iface__base__data.html#add9af9569af79ec26dd741fb226b38ba',1,'ciot_iface_base_data::ptr'],['../structciot__iface__base.html#add9af9569af79ec26dd741fb226b38ba',1,'ciot_iface_base::ptr']]], + ['publish_12',['publish',['../unionciot__mqttc__req__data__u.html#ae7b5bde19c99952b5a737b600f3c21e6',1,'ciot_mqttc_req_data_u']]], + ['pull_13',['pull',['../structciot__gpio__cfg__t.html#a5ee68c0e31fa06f342fad371023bdc4e',1,'ciot_gpio_cfg_t']]] ]; diff --git a/docs/search/all_f.js b/docs/search/all_f.js index 3eafdbd..8db5e3d 100644 --- a/docs/search/all_f.js +++ b/docs/search/all_f.js @@ -1,16 +1,18 @@ var searchData= [ - ['req_0',['req',['../structciot__iface__base.html#aa04a90d2225ba674bcdc0c62f4a78c2c',1,'ciot_iface_base']]], - ['request_1',['request',['../unionciot__ble__scn__data__u.html#a4fff0375f4b234a60fcd5e6723d9c8a9',1,'ciot_ble_scn_data_u::request'],['../unionciot__ble__data__u.html#a6aeefeee1b018d7d77c41f66f6015cf9',1,'ciot_ble_data_u::request'],['../unionciot__bridge__data__u.html#a21b1ec52268024ae8c4b0eca1dc2a491',1,'ciot_bridge_data_u::request'],['../unionciot__data__model__data__u.html#a8342e156b9596a1154ff4ce550adb30f',1,'ciot_data_model_data_u::request'],['../unionciot__dfu__data__u.html#aeec32200114264e8556110d5c2ffc44c',1,'ciot_dfu_data_u::request'],['../unionciot__gpio__data__u.html#ac3fb50fe28f5e2ea50c6f662aa19beca',1,'ciot_gpio_data_u::request'],['../unionciot__httpc__data__u.html#a57c784a27da9399f6d1a7bd2122a3c65',1,'ciot_httpc_data_u::request'],['../unionciot__https__data__u.html#af4b02bc60804013ff8623f078ec43efe',1,'ciot_https_data_u::request'],['../unionciot__mqttc__data__u.html#af4d809ae5adfaf23b4229995212f0ded',1,'ciot_mqttc_data_u::request'],['../unionciot__ntp__data__u.html#a0a55111acf65b88d386268c615a69499',1,'ciot_ntp_data_u::request'],['../unionciot__opcuas__data__u.html#a66e033d989ec031368788f08deba7feb',1,'ciot_opcuas_data_u::request'],['../unionciot__ota__data__u.html#a4e22c6ea4c9d8fad6bbd0d3894c82627',1,'ciot_ota_data_u::request'],['../unionciot__storage__data__u.html#ae35bc5d21998e1401aa886359cafd044',1,'ciot_storage_data_u::request'],['../unionciot__sys__data__u.html#a7146ff86f43fac1f87c45f31c3a3bd20',1,'ciot_sys_data_u::request'],['../unionciot__tcp__data__u.html#aaf3b24e7b5d38ca3f76ca38e5e43ad7e',1,'ciot_tcp_data_u::request'],['../unionciot__data__u.html#a8975b1b5a295a8ee8669dfcce942dcd5',1,'ciot_data_u::request'],['../unionciot__uart__data__u.html#aeac55f9a4429aa466599b8875763ff38',1,'ciot_uart_data_u::request'],['../unionciot__usb__data__u.html#aebb2adef59fcdc91db3d185996066c6a',1,'ciot_usb_data_u::request'],['../unionciot__wifi__data__u.html#a95d1196af9ebc0b64f6f7e2842812448',1,'ciot_wifi_data_u::request']]], - ['reserve_2',['reserve',['../structciot__ntp__status__t.html#ac6c17ab632a9c78bc9fa846e9baeea7b',1,'ciot_ntp_status_t']]], - ['reserved_3',['reserved',['../structciot__ble__scn__cfg__t.html#acb7bc06bed6f6408d719334fc41698c7',1,'ciot_ble_scn_cfg_t::reserved'],['../structciot__ota__cfg__t.html#acb7bc06bed6f6408d719334fc41698c7',1,'ciot_ota_cfg_t::reserved'],['../structciot__sys__hw__features__t.html#a5a6ed8c04a3db86066924b1a1bf4dad3',1,'ciot_sys_hw_features_t::reserved'],['../structciot__sys__sw__features__t.html#a5a6ed8c04a3db86066924b1a1bf4dad3',1,'ciot_sys_sw_features_t::reserved'],['../structciot__uart__cfg__t.html#acb7bc06bed6f6408d719334fc41698c7',1,'ciot_uart_cfg_t::reserved']]], - ['response_5fsize_4',['response_size',['../structciot__iface__req__info.html#a0b61a5ca677a324b62936d18d21ff362',1,'ciot_iface_req_info']]], - ['restart_5',['restart',['../structciot__ota__cfg__t.html#a63de528fa8d98b79adfe7f9f68880c17',1,'ciot_ota_cfg_t']]], - ['result_6',['result',['../unionciot__req__data__u.html#a90808ce2b0f0710bbe9799c64e8df0db',1,'ciot_req_data_u']]], - ['route_7',['route',['../structciot__https__cfg__t.html#a98bcbc9e1ebf74ba486f246d76f5bac1',1,'ciot_https_cfg_t']]], - ['rssi_8',['rssi',['../structciot__ble__scn__adv__info__t.html#a3b962e67ba74725bd60ca3c29f785abe',1,'ciot_ble_scn_adv_info_t::rssi'],['../structciot__wifi__ap__info__t.html#a3b962e67ba74725bd60ca3c29f785abe',1,'ciot_wifi_ap_info_t::rssi']]], - ['rst_5fcount_9',['rst_count',['../structciot__sys__status__t.html#acc644e0c68521fc2c21bdf5acb5f5812',1,'ciot_sys_status_t']]], - ['rst_5freason_10',['rst_reason',['../structciot__sys__status__t.html#aa4f71758f86d92d3ae60a541335f579d',1,'ciot_sys_status_t']]], - ['rts_5fpin_11',['rts_pin',['../structciot__uart__cfg__t.html#a3c82534f71c473adbf7fa380db7badc2',1,'ciot_uart_cfg_t']]], - ['rx_5fpin_12',['rx_pin',['../structciot__uart__cfg__t.html#ab461fda70a78750930429bcc68db5a98',1,'ciot_uart_cfg_t']]] + ['release_20notes_0',['Release notes',['../index.html#notes',1,'']]], + ['req_1',['req',['../structciot__iface__base.html#aa04a90d2225ba674bcdc0c62f4a78c2c',1,'ciot_iface_base']]], + ['request_2',['request',['../unionciot__ble__scn__data__u.html#a4fff0375f4b234a60fcd5e6723d9c8a9',1,'ciot_ble_scn_data_u::request'],['../unionciot__ble__data__u.html#a6aeefeee1b018d7d77c41f66f6015cf9',1,'ciot_ble_data_u::request'],['../unionciot__bridge__data__u.html#a21b1ec52268024ae8c4b0eca1dc2a491',1,'ciot_bridge_data_u::request'],['../unionciot__data__model__data__u.html#a8342e156b9596a1154ff4ce550adb30f',1,'ciot_data_model_data_u::request'],['../unionciot__dfu__data__u.html#aeec32200114264e8556110d5c2ffc44c',1,'ciot_dfu_data_u::request'],['../unionciot__gpio__data__u.html#ac3fb50fe28f5e2ea50c6f662aa19beca',1,'ciot_gpio_data_u::request'],['../unionciot__httpc__data__u.html#a57c784a27da9399f6d1a7bd2122a3c65',1,'ciot_httpc_data_u::request'],['../unionciot__https__data__u.html#af4b02bc60804013ff8623f078ec43efe',1,'ciot_https_data_u::request'],['../unionciot__mqttc__data__u.html#af4d809ae5adfaf23b4229995212f0ded',1,'ciot_mqttc_data_u::request'],['../unionciot__ntp__data__u.html#a0a55111acf65b88d386268c615a69499',1,'ciot_ntp_data_u::request'],['../unionciot__opcuas__data__u.html#a66e033d989ec031368788f08deba7feb',1,'ciot_opcuas_data_u::request'],['../unionciot__ota__data__u.html#a4e22c6ea4c9d8fad6bbd0d3894c82627',1,'ciot_ota_data_u::request'],['../unionciot__storage__data__u.html#ae35bc5d21998e1401aa886359cafd044',1,'ciot_storage_data_u::request'],['../unionciot__sys__data__u.html#a7146ff86f43fac1f87c45f31c3a3bd20',1,'ciot_sys_data_u::request'],['../unionciot__tcp__data__u.html#aaf3b24e7b5d38ca3f76ca38e5e43ad7e',1,'ciot_tcp_data_u::request'],['../unionciot__data__u.html#a8975b1b5a295a8ee8669dfcce942dcd5',1,'ciot_data_u::request'],['../unionciot__uart__data__u.html#aeac55f9a4429aa466599b8875763ff38',1,'ciot_uart_data_u::request'],['../unionciot__usb__data__u.html#aebb2adef59fcdc91db3d185996066c6a',1,'ciot_usb_data_u::request'],['../unionciot__wifi__data__u.html#a95d1196af9ebc0b64f6f7e2842812448',1,'ciot_wifi_data_u::request']]], + ['requirements_3',['Requirements',['../index.html#requirements',1,'Requirements'],['../todo.html#_todo000001',1,'Requirements']]], + ['reserve_4',['reserve',['../structciot__ntp__status__t.html#ac6c17ab632a9c78bc9fa846e9baeea7b',1,'ciot_ntp_status_t']]], + ['reserved_5',['reserved',['../structciot__ble__scn__cfg__t.html#acb7bc06bed6f6408d719334fc41698c7',1,'ciot_ble_scn_cfg_t::reserved'],['../structciot__ota__cfg__t.html#acb7bc06bed6f6408d719334fc41698c7',1,'ciot_ota_cfg_t::reserved'],['../structciot__sys__hw__features__t.html#a5a6ed8c04a3db86066924b1a1bf4dad3',1,'ciot_sys_hw_features_t::reserved'],['../structciot__sys__sw__features__t.html#a5a6ed8c04a3db86066924b1a1bf4dad3',1,'ciot_sys_sw_features_t::reserved'],['../structciot__uart__cfg__t.html#acb7bc06bed6f6408d719334fc41698c7',1,'ciot_uart_cfg_t::reserved']]], + ['response_5fsize_6',['response_size',['../structciot__iface__req__info.html#a0b61a5ca677a324b62936d18d21ff362',1,'ciot_iface_req_info']]], + ['restart_7',['restart',['../structciot__ota__cfg__t.html#a63de528fa8d98b79adfe7f9f68880c17',1,'ciot_ota_cfg_t']]], + ['result_8',['result',['../unionciot__req__data__u.html#a90808ce2b0f0710bbe9799c64e8df0db',1,'ciot_req_data_u']]], + ['route_9',['route',['../structciot__https__cfg__t.html#a98bcbc9e1ebf74ba486f246d76f5bac1',1,'ciot_https_cfg_t']]], + ['rssi_10',['rssi',['../structciot__ble__scn__adv__info__t.html#a3b962e67ba74725bd60ca3c29f785abe',1,'ciot_ble_scn_adv_info_t::rssi'],['../structciot__wifi__ap__info__t.html#a3b962e67ba74725bd60ca3c29f785abe',1,'ciot_wifi_ap_info_t::rssi']]], + ['rst_5fcount_11',['rst_count',['../structciot__sys__status__t.html#acc644e0c68521fc2c21bdf5acb5f5812',1,'ciot_sys_status_t']]], + ['rst_5freason_12',['rst_reason',['../structciot__sys__status__t.html#aa4f71758f86d92d3ae60a541335f579d',1,'ciot_sys_status_t']]], + ['rts_5fpin_13',['rts_pin',['../structciot__uart__cfg__t.html#a3c82534f71c473adbf7fa380db7badc2',1,'ciot_uart_cfg_t']]], + ['rx_5fpin_14',['rx_pin',['../structciot__uart__cfg__t.html#ab461fda70a78750930429bcc68db5a98',1,'ciot_uart_cfg_t']]] ]; diff --git a/docs/search/files_1.js b/docs/search/files_1.js new file mode 100644 index 0000000..a4e5a82 --- /dev/null +++ b/docs/search/files_1.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['mainpage_2eh_0',['mainpage.h',['../mainpage_8h.html',1,'']]] +]; diff --git a/docs/search/groups_0.js b/docs/search/groups_0.js index f24ba66..1177924 100644 --- a/docs/search/groups_0.js +++ b/docs/search/groups_0.js @@ -1,5 +1,4 @@ var searchData= [ - ['hardware_5finterfaces_0',['Hardware_interfaces',['../group__hardware__interfaces.html',1,'']]], - ['hardware_5ftypes_1',['Hardware_types',['../group__hardware__types.html',1,'']]] + ['core_0',['Core',['../group__core.html',1,'']]] ]; diff --git a/docs/search/groups_1.js b/docs/search/groups_1.js index b050bdd..f24ba66 100644 --- a/docs/search/groups_1.js +++ b/docs/search/groups_1.js @@ -1,5 +1,5 @@ var searchData= [ - ['software_5finterfaces_0',['Software_interfaces',['../group__software__interfaces.html',1,'']]], - ['software_5ftypes_1',['Software_types',['../group__software__types.html',1,'']]] + ['hardware_5finterfaces_0',['Hardware_interfaces',['../group__hardware__interfaces.html',1,'']]], + ['hardware_5ftypes_1',['Hardware_types',['../group__hardware__types.html',1,'']]] ]; diff --git a/docs/search/groups_2.js b/docs/search/groups_2.js new file mode 100644 index 0000000..b050bdd --- /dev/null +++ b/docs/search/groups_2.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['software_5finterfaces_0',['Software_interfaces',['../group__software__interfaces.html',1,'']]], + ['software_5ftypes_1',['Software_types',['../group__software__types.html',1,'']]] +]; diff --git a/docs/search/groups_3.js b/docs/search/groups_3.js new file mode 100644 index 0000000..5ec2166 --- /dev/null +++ b/docs/search/groups_3.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['utils_0',['Utils',['../group__utils.html',1,'']]] +]; diff --git a/docs/search/pages_0.js b/docs/search/pages_0.js new file mode 100644 index 0000000..f6136da --- /dev/null +++ b/docs/search/pages_0.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['ciot_20programming_20guide_0',['CIoT - Programming Guide',['../index.html',1,'']]] +]; diff --git a/docs/search/pages_1.js b/docs/search/pages_1.js new file mode 100644 index 0000000..2627e14 --- /dev/null +++ b/docs/search/pages_1.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['guide_0',['CIoT - Programming Guide',['../index.html',1,'']]] +]; diff --git a/docs/search/pages_2.js b/docs/search/pages_2.js new file mode 100644 index 0000000..feadd94 --- /dev/null +++ b/docs/search/pages_2.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['list_0',['Todo List',['../todo.html',1,'']]] +]; diff --git a/docs/search/pages_3.js b/docs/search/pages_3.js new file mode 100644 index 0000000..8f21b52 --- /dev/null +++ b/docs/search/pages_3.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['programming_20guide_0',['CIoT - Programming Guide',['../index.html',1,'']]] +]; diff --git a/docs/search/pages_4.js b/docs/search/pages_4.js new file mode 100644 index 0000000..83220ef --- /dev/null +++ b/docs/search/pages_4.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['todo_20list_0',['Todo List',['../todo.html',1,'']]] +]; diff --git a/docs/search/searchdata.js b/docs/search/searchdata.js index 93f8ebc..c683b77 100644 --- a/docs/search/searchdata.js +++ b/docs/search/searchdata.js @@ -2,14 +2,15 @@ var indexSectionsWithContent = { 0: "abcdefghilmnopqrstuvw", 1: "c", - 2: "c", + 2: "cm", 3: "bc", 4: "abcdefghilmnopqrstuvw", 5: "c", 6: "c", 7: "chn", 8: "ch", - 9: "hs" + 9: "chsu", + 10: "cglpt" }; var indexSectionNames = @@ -23,7 +24,8 @@ var indexSectionNames = 6: "enums", 7: "enumvalues", 8: "defines", - 9: "groups" + 9: "groups", + 10: "pages" }; var indexSectionLabels = @@ -37,6 +39,7 @@ var indexSectionLabels = 6: "Enumerations", 7: "Enumerator", 8: "Macros", - 9: "Modules" + 9: "Modules", + 10: "Pages" }; diff --git a/docs/todo.html b/docs/todo.html new file mode 100644 index 0000000..a29b4d1 --- /dev/null +++ b/docs/todo.html @@ -0,0 +1,123 @@ + + + + + + + +CioT: Todo List + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
CioT 0.1.0 +
+
Connected IoT
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Todo List
+
+
+
+
page CIoT - Programming Guide
+

Create a more detailed version of this documentation

+

+

Implement ciot_mbus interface

+

+

Implement ciot_opcuas interface

+

+

Implement ciot_opcuac interface

+

+

Implement unit tests

+

+

Create GHA to generate TAGs and Releases

+
+
+
+
+
+ + + + diff --git a/docs/topics.html b/docs/topics.html index c7c272d..8658434 100644 --- a/docs/topics.html +++ b/docs/topics.html @@ -97,10 +97,12 @@
Here is a list of all topics with brief descriptions:
- - - - + + + + + +
 Hardware_typesTypes definitions of hardware resources
 Hardware_interfacesInterfaces that implements hardware resources
 Software_typesTypes definitions of software resources
 Software_interfacesInterfaces that implements software resources
 CoreThe core of CIoT library
 Hardware_typesTypes related to hardware abstraction interfaces
 Hardware_interfacesInterfaces that represents a hardware abstraction
 Software_typesTypes related to software abstraction interfaces
 Software_interfacesInterfaces that represents a software abstraction
 UtilsAuxilliary implementations like encoding/decoding, serialization/deserialization, conversions, math operations, etc
diff --git a/docs/topics.js b/docs/topics.js index 3ab3ce2..7644428 100644 --- a/docs/topics.js +++ b/docs/topics.js @@ -1,7 +1,9 @@ var topics = [ + [ "Core", "group__core.html", "group__core" ], [ "Hardware_types", "group__hardware__types.html", "group__hardware__types" ], [ "Hardware_interfaces", "group__hardware__interfaces.html", "group__hardware__interfaces" ], [ "Software_types", "group__software__types.html", "group__software__types" ], - [ "Software_interfaces", "group__software__interfaces.html", "group__software__interfaces" ] + [ "Software_interfaces", "group__software__interfaces.html", "group__software__interfaces" ], + [ "Utils", "group__utils.html", "group__utils" ] ]; \ No newline at end of file diff --git a/include/ciot.h b/include/ciot.h index 9f3446b..903a971 100644 --- a/include/ciot.h +++ b/include/ciot.h @@ -1,5 +1,6 @@ /** * @file ciot_n.h + * @ingroup core * @brief Header file for the CIOT network module. * @version 0.1 * @date 2023-10-10 diff --git a/include/ciot_err.h b/include/ciot_err.h index a2353bf..b93ecb7 100644 --- a/include/ciot_err.h +++ b/include/ciot_err.h @@ -1,5 +1,6 @@ /** * @file ciot_err.h + * @ingroup core * @brief Header file for CIOT error handling. * @version 0.1 * @date 2023-10-09 diff --git a/include/ciot_iface.h b/include/ciot_iface.h index f85e8d8..4c66bf0 100644 --- a/include/ciot_iface.h +++ b/include/ciot_iface.h @@ -1,5 +1,6 @@ /** * @file ciot_iface.h + * @ingroup core * @brief Header file for the CIOT interface. * @version 0.1 * @date 2023-10-09 diff --git a/include/ciot_lib.h b/include/ciot_lib.h index 8761131..614d6a4 100644 --- a/include/ciot_lib.h +++ b/include/ciot_lib.h @@ -12,9 +12,18 @@ #ifndef __CIOT_LIB__H__ #define __CIOT_LIB__H__ +/** + * @defgroup core + * @brief The core of CIoT library +*/ +#include "ciot.h" +#include "ciot_iface.h" +#include "ciot_err.h" +#include "ciot_log.h" + /** * @defgroup hardware_types - * @brief Types definitions of hardware resources + * @brief Types related to hardware abstraction interfaces */ #include "types/ciot_ble_types.h" #include "types/ciot_ble_scn_types.h" @@ -28,7 +37,7 @@ /** * @defgroup hardware_interfaces - * @brief Interfaces that implements hardware resources + * @brief Interfaces that represents a hardware abstraction */ #include "ciot_ble.h" #include "ciot_ble_scn.h" @@ -42,7 +51,7 @@ /** * @defgroup software_types - * @brief Types definitions of software resources + * @brief Types related to software abstraction interfaces */ #include "types/ciot_bridge_types.h" #include "types/ciot_dfu_types.h" @@ -56,7 +65,7 @@ /** * @defgroup software_interfaces - * @brief Interfaces that implements software resources + * @brief Interfaces that represents a software abstraction */ #include "ciot_bridge.h" #include "ciot_dfu.h" @@ -70,4 +79,13 @@ #include "ciot_ota.h" #include "ciot_sys.h" +/** + * @defgroup utils + * @brief Auxilliary implementations like encoding/decoding, serialization/deserialization, conversions, math operations, etc + */ +#include "ciot_s.h" +#include "ciot_serializer.h" +#include "ciot_timer.h" +#include "ciot_utils.h" + #endif //!__CIOT_LIB__H__ diff --git a/include/ciot_log.h b/include/ciot_log.h index 394128c..50816b9 100644 --- a/include/ciot_log.h +++ b/include/ciot_log.h @@ -1,5 +1,6 @@ /** * @file ciot_log.h + * @ingroup core * @brief Header file for CIOT logging functionality. * @version 0.1 * @date 2023-10-18 diff --git a/include/ciot_s.h b/include/ciot_s.h index ede6bd9..a2d165d 100644 --- a/include/ciot_s.h +++ b/include/ciot_s.h @@ -1,5 +1,6 @@ /** * @file ciot_s.h + * @ingroup utils * @brief Header file for CIOT_S (Communication Interface Over Transport) module. * @version 0.1 * @date 2023-10-09 diff --git a/include/ciot_serializer.h b/include/ciot_serializer.h index 2eccbe9..155025d 100644 --- a/include/ciot_serializer.h +++ b/include/ciot_serializer.h @@ -1,5 +1,6 @@ /** * @file ciot_serializer.h + * @ingroup utils * @brief Header file for CIOT Serializer module. * @version 0.1 * @date 2024-04-13 diff --git a/include/ciot_timer.h b/include/ciot_timer.h index a43447e..be513cf 100644 --- a/include/ciot_timer.h +++ b/include/ciot_timer.h @@ -1,5 +1,6 @@ /** * @file ciot_timer.h + * @ingroup utils * @brief Header file for CIOT timer module. * @version 0.1 * @date 2024-01-09 diff --git a/include/ciot_utils.h b/include/ciot_utils.h index 15545b8..3b86f85 100644 --- a/include/ciot_utils.h +++ b/include/ciot_utils.h @@ -1,5 +1,6 @@ /** * @file ciot_util.h + * @ingroup utils * @brief Header file for CIOT utility functions. * @version 0.1 * @date 2023-12-08 diff --git a/include/mainpage.h b/include/mainpage.h new file mode 100644 index 0000000..d6b3b1b --- /dev/null +++ b/include/mainpage.h @@ -0,0 +1,44 @@ +/** @file mainpage.h +* @brief Definition of class Template +* +* $Header: /nfs/slac/g/glast/ground/cvs/workbook/pages/advanced_doxygen/usingDoxygen.htm,v 1.1.1.1 2007/06/29 15:03:16 chuckp Exp $ +*/ +/** @mainpage CIoT - Programming Guide +* +* @authors Wesley José Santos +* +* @section intro Introduction +* This is the documentation for Connected IoT (CIOT). CIoT is a library created to facilitate the implementation of IoT devices. +* This document describes how to use CIoT APIs. This library is based on interfaces implementations. Each interface have it own tyes. +* CIoT implementations are divided in four topics: +* - Core: CIoT core implementation +* - Hardware types: types related to hardware abstraction interfaces +* - Hardware interfaces: interfaces that represents a hardware abstraction +* - Software types: types related to software abstraction interfaces +* - Software interfaces: interfaces that represents a software abstraction +* - Utils: auxilliary implementations like encoding/decondig, serialization/deserialization, math operations, timers, etc. +*

Each interface implementation follow an general common abstraction defined by the CIoT Core. An interface header file must implement the following methods: +* - ciot_iface_new(handle): Create a new interface instance +* - ciot_iface_start(self, cfg): Start the interface using the specified configuration +* - ciot_iface_stop(self): Stop the interface +* - ciot_iface_process_req(self, req): Use the interface to process an external request +* - ciot_iface_send_data(self, data, size): User the interface to send data +*


+* @section notes Release notes +* This software is under development. Use at your own risk. +*
+* @section requirements Requirements +* @verbatim + - Mingw32 for Windows + - ESP IDF for Espressif devices + - nRF5 SDK 17 for Nordic devices + @endverbatim +*
+* @todo Create a more detailed version of this documentation +* @todo Implement ciot_mbus interface +* @todo Implement ciot_opcuas interface +* @todo Implement ciot_opcuac interface +* @todo Implement unit tests +* @todo Create GHA to generate TAGs and Releases +* +*/ \ No newline at end of file