Initial commit: CCU621_M firmware project with BLE debug link support.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-08 17:28:36 +08:00
commit 9ceb218f80
1597 changed files with 724159 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
/*
* Copyright (C) 2015-2018 Alibaba Group Holding Limited
*/
#ifndef _IOTX_CM_MQTT_H_
#define _IOTX_CM_MQTT_H_
#include "iotx_cm.h"
#include "iotx_cm_internal.h"
typedef struct {
uintptr_t packet_id;
char * topic;
void * user_data;
iotx_mqtt_event_handle_func_fpt sub_state_cb;
iotx_cm_data_handle_cb sub_recieve_cb;
dlist_t linked_list;
} mqtt_sub_node_t;
iotx_cm_connection_t *iotx_cm_open_mqtt(iotx_cm_init_param_t *params);
#endif /* _LINKKIT_CM_H_ */