Fork of my MQTTGateway

Dependencies:   mbed-http

Committer:
vpcola
Date:
Sat Apr 08 14:45:51 2017 +0000
Revision:
0:f1d3878b8dd9
Initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
vpcola 0:f1d3878b8dd9 1 /**
vpcola 0:f1d3878b8dd9 2 * Copyright (c) 2015 Digi International Inc.,
vpcola 0:f1d3878b8dd9 3 * All rights not expressly granted are reserved.
vpcola 0:f1d3878b8dd9 4 *
vpcola 0:f1d3878b8dd9 5 * This Source Code Form is subject to the terms of the Mozilla Public
vpcola 0:f1d3878b8dd9 6 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
vpcola 0:f1d3878b8dd9 7 * You can obtain one at http://mozilla.org/MPL/2.0/.
vpcola 0:f1d3878b8dd9 8 *
vpcola 0:f1d3878b8dd9 9 * Digi International Inc. 11001 Bren Road East, Minnetonka, MN 55343
vpcola 0:f1d3878b8dd9 10 * =======================================================================
vpcola 0:f1d3878b8dd9 11 */
vpcola 0:f1d3878b8dd9 12
vpcola 0:f1d3878b8dd9 13 #if !defined(__DIGIMESH_FRAME_H_)
vpcola 0:f1d3878b8dd9 14 #define __DIGIMESH_FRAME_H_
vpcola 0:f1d3878b8dd9 15
vpcola 0:f1d3878b8dd9 16 #include "ApiFrame.h"
vpcola 0:f1d3878b8dd9 17
vpcola 0:f1d3878b8dd9 18 class TxFrameDM : public ApiFrame
vpcola 0:f1d3878b8dd9 19 {
vpcola 0:f1d3878b8dd9 20 public:
vpcola 0:f1d3878b8dd9 21 /** Class constructor */
vpcola 0:f1d3878b8dd9 22 TxFrameDM(uint64_t addr, uint16_t addr16, uint8_t broadcast_rad,
vpcola 0:f1d3878b8dd9 23 uint8_t tx_opt, const uint8_t *const data, uint16_t len);
vpcola 0:f1d3878b8dd9 24
vpcola 0:f1d3878b8dd9 25 /** Class constructor */
vpcola 0:f1d3878b8dd9 26 TxFrameDM(uint64_t addr, uint16_t addr16, uint8_t source_ep, uint8_t dest_ep,
vpcola 0:f1d3878b8dd9 27 uint16_t cluster_id, uint16_t profile_id, uint8_t broadcast_rad,
vpcola 0:f1d3878b8dd9 28 uint8_t tx_opt, const uint8_t *const data, uint16_t len);
vpcola 0:f1d3878b8dd9 29 };
vpcola 0:f1d3878b8dd9 30
vpcola 0:f1d3878b8dd9 31 #endif /* __DIGIMESH_FRAME_H_ */