mirror of
https://github.com/espressif/esp-mqtt.git
synced 2025-11-04 17:12:31 +01:00
10 lines
128 B
C
10 lines
128 B
C
|
|
#ifndef _PLATFORM_H__
|
||
|
|
#define _PLATFORM_H__
|
||
|
|
|
||
|
|
//Support ESP32
|
||
|
|
#ifdef ESP_PLATFORM
|
||
|
|
#include "platform_esp32_idf.h"
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|