1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-21 10:26:06 +03:00

Fix compilation error when Esp.h is included first in sketch (#590)

This commit is contained in:
Ivan Grokhotkov 2015-08-05 08:48:21 -04:00
parent cc152de907
commit 661ccb23ae

View File

@ -1,8 +1,8 @@
/* /*
Esp.h - ESP8266-specific APIs Esp.h - ESP8266-specific APIs
Copyright (c) 2015 Ivan Grokhotkov. All rights reserved. Copyright (c) 2015 Ivan Grokhotkov. All rights reserved.
This file is part of the esp8266 core for Arduino environment. This file is part of the esp8266 core for Arduino environment.
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either License as published by the Free Software Foundation; either
@ -20,6 +20,9 @@
#ifndef ESP_H #ifndef ESP_H
#define ESP_H #define ESP_H
#include <Arduino.h>
/** /**
* AVR macros for WDT managment * AVR macros for WDT managment
*/ */