Skip to content

Instantly share code, notes, and snippets.

Created March 19, 2017 02:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/e7467f62b1fa8000d2fbb4e24e926c0d to your computer and use it in GitHub Desktop.
Save anonymous/e7467f62b1fa8000d2fbb4e24e926c0d to your computer and use it in GitHub Desktop.
WiFi_interrupt_sloved
#include <SoftwareSerial.h>
.
.
.
.
void disable(void);
void enable(void);
.
.
.
void disable(void)
{
ETS_GPIO_INTR_DISABLE();
}
void enable(void)
{
ETS_GPIO_INTR_ENABLE();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment