10 lines
137 B
C
10 lines
137 B
C
|
typedef struct {
|
||
|
TaskHandle_t taskHandle;
|
||
|
int32_t event_id;
|
||
|
int topic_len;
|
||
|
char topic[64];
|
||
|
int data_len;
|
||
|
char data[32];
|
||
|
} MQTT_t;
|
||
|
|