feat(mqtt): Add esp-mqtt

Commit ID: 13018449

Add global "mqtt" to manage both "ESP-MQTT" and "IBM-MQTT". Using select the target MQTT to using like selecting SSL.
This commit is contained in:
dongheng
2019-03-18 14:43:28 +08:00
parent 2ce8246b8f
commit 04ee11ee53
49 changed files with 2745 additions and 11 deletions

View File

@ -0,0 +1,14 @@
/*
* This file is subject to the terms and conditions defined in
* file 'LICENSE', which is part of this source code package.
* Tuan PM <tuanpm at live dot com>
*/
#ifndef _PLATFORM_H__
#define _PLATFORM_H__
//Support ESP32
#ifdef ESP_PLATFORM
#include "platform_esp32_idf.h"
#endif
#endif