diff --git a/esp8266_deauther/SerialInterface.cpp b/esp8266_deauther/SerialInterface.cpp index f690c36..0d918c0 100644 --- a/esp8266_deauther/SerialInterface.cpp +++ b/esp8266_deauther/SerialInterface.cpp @@ -12,7 +12,7 @@ */ SerialInterface::SerialInterface() { - list = new LinkedList; + list = new SimpleList; } void SerialInterface::load() { diff --git a/esp8266_deauther/SerialInterface.h b/esp8266_deauther/SerialInterface.h index 71d3ea8..1234955 100644 --- a/esp8266_deauther/SerialInterface.h +++ b/esp8266_deauther/SerialInterface.h @@ -21,6 +21,7 @@ extern "C" { #include "RGBLed.h" #include "Neopixel.h" #include "A_config.h" +#include "SimpleList.h" #ifdef DIGITAL_LED extern DigitalLed led; @@ -77,7 +78,7 @@ class SerialInterface { private: bool enabled; - LinkedList* list; + SimpleList* list; bool executing = false; bool continuously = false; uint32_t continueTime = 0;