mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-22 21:23:07 +03:00
28 lines
463 B
C
28 lines
463 B
C
/*
|
|
* lwipr_platform.h
|
|
*
|
|
* Created on: Feb 8, 2016
|
|
* Author: slavey
|
|
*
|
|
*/
|
|
|
|
#ifndef AXTLS_8266_COMPAT_LWIPR_PLATFORM_H_
|
|
#define AXTLS_8266_COMPAT_LWIPR_PLATFORM_H_
|
|
|
|
/* Add here all platform specific things */
|
|
|
|
|
|
// Some calls require the watchdog to be reset
|
|
#ifndef WATCHDOG_FEED
|
|
#define WATCHDOG_FEED()
|
|
#endif
|
|
|
|
|
|
/* SSL_DEBUG is for more information */
|
|
#ifndef SSL_DEBUG
|
|
#define AXL_DEBUG(...)
|
|
#endif
|
|
|
|
|
|
#endif /* AXTLS_8266_COMPAT_LWIPR_PLATFORM_H_ */
|