The Cayenne MQTT mbed Library provides functions to easily connect to the Cayenne IoT project builder.

Dependents:   Cayenne-ESP8266Interface Cayenne-WIZnet_Library Cayenne-WIZnetInterface Cayenne-X-NUCLEO-IDW01M1 ... more

Committer:
jburhenn
Date:
Wed Jan 25 11:10:39 2017 -0700
Branch:
feature/multivalue
Revision:
23:1a9aed5e77c9
Parent:
22:0dbabcc6e7b2
CayenneDataArray updates for multivalue support.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jburhenn 0:09ef59d2d0f7 1 /*******************************************************************************
jburhenn 0:09ef59d2d0f7 2 * Copyright (c) 2014 IBM Corp.
jburhenn 0:09ef59d2d0f7 3 *
jburhenn 0:09ef59d2d0f7 4 * All rights reserved. This program and the accompanying materials
jburhenn 0:09ef59d2d0f7 5 * are made available under the terms of the Eclipse Public License v1.0
jburhenn 0:09ef59d2d0f7 6 * and Eclipse Distribution License v1.0 which accompany this distribution.
jburhenn 0:09ef59d2d0f7 7 *
jburhenn 0:09ef59d2d0f7 8 * The Eclipse Public License is available at
jburhenn 0:09ef59d2d0f7 9 * http://www.eclipse.org/legal/epl-v10.html
jburhenn 0:09ef59d2d0f7 10 * and the Eclipse Distribution License is available at
jburhenn 0:09ef59d2d0f7 11 * http://www.eclipse.org/org/documents/edl-v10.php.
jburhenn 0:09ef59d2d0f7 12 *
jburhenn 0:09ef59d2d0f7 13 * Contributors:
jburhenn 0:09ef59d2d0f7 14 * Ian Craggs - initial API and implementation and/or initial documentation
jburhenn 0:09ef59d2d0f7 15 * Xiang Rong - 442039 Add makefile to Embedded C client
jburhenn 0:09ef59d2d0f7 16 *******************************************************************************/
jburhenn 0:09ef59d2d0f7 17
jburhenn 0:09ef59d2d0f7 18 #ifndef MQTTSUBSCRIBE_H_
jburhenn 0:09ef59d2d0f7 19 #define MQTTSUBSCRIBE_H_
jburhenn 0:09ef59d2d0f7 20
jburhenn 0:09ef59d2d0f7 21 #if !defined(DLLImport)
jburhenn 0:09ef59d2d0f7 22 #define DLLImport
jburhenn 0:09ef59d2d0f7 23 #endif
jburhenn 0:09ef59d2d0f7 24 #if !defined(DLLExport)
jburhenn 0:09ef59d2d0f7 25 #define DLLExport
jburhenn 0:09ef59d2d0f7 26 #endif
jburhenn 0:09ef59d2d0f7 27
jburhenn 22:0dbabcc6e7b2 28 DLLExport int MQTTSerialize_subscribe(unsigned char* buf, size_t buflen, unsigned char dup, unsigned short packetid,
jburhenn 0:09ef59d2d0f7 29 int count, MQTTString topicFilters[], int requestedQoSs[]);
jburhenn 0:09ef59d2d0f7 30
jburhenn 0:09ef59d2d0f7 31 DLLExport int MQTTDeserialize_subscribe(unsigned char* dup, unsigned short* packetid,
jburhenn 22:0dbabcc6e7b2 32 int maxcount, int* count, MQTTString topicFilters[], int requestedQoSs[], unsigned char* buf, size_t len);
jburhenn 0:09ef59d2d0f7 33
jburhenn 22:0dbabcc6e7b2 34 DLLExport int MQTTSerialize_suback(unsigned char* buf, size_t buflen, unsigned short packetid, int count, int* grantedQoSs);
jburhenn 0:09ef59d2d0f7 35
jburhenn 22:0dbabcc6e7b2 36 DLLExport int MQTTDeserialize_suback(unsigned short* packetid, int maxcount, int* count, int grantedQoSs[], unsigned char* buf, size_t len);
jburhenn 0:09ef59d2d0f7 37
jburhenn 0:09ef59d2d0f7 38
jburhenn 0:09ef59d2d0f7 39 #endif /* MQTTSUBSCRIBE_H_ */