From efdb38b32942fca5c46b34ccb23c65fe81de04fa Mon Sep 17 00:00:00 2001 From: Brad Nelson Date: Fri, 4 Feb 2022 09:33:46 -0800 Subject: [PATCH] Fix break due to ram size on ESP32. --- ueforth/Makefile | 1 + ueforth/esp32/config.h | 2 +- ueforth/esp32/options.h | 1 - 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ueforth/Makefile b/ueforth/Makefile index 44c6cd2..6af9e28 100644 --- a/ueforth/Makefile +++ b/ueforth/Makefile @@ -382,6 +382,7 @@ ESP32_PARTS = common/replace.js \ common/calling.h \ common/core.h \ common/interp.h \ + esp32/config.h \ esp32/options.h \ esp32/builtins.h \ esp32/builtins.cpp \ diff --git a/ueforth/esp32/config.h b/ueforth/esp32/config.h index 4392872..4ea139b 100644 --- a/ueforth/esp32/config.h +++ b/ueforth/esp32/config.h @@ -12,6 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -#define HEAP_SIZE (128 * 1024) +#define HEAP_SIZE (100 * 1024) #define STACK_CELLS 512 #define INTERRUPT_STACK_CELLS 64 diff --git a/ueforth/esp32/options.h b/ueforth/esp32/options.h index 1718129..25d2834 100644 --- a/ueforth/esp32/options.h +++ b/ueforth/esp32/options.h @@ -16,7 +16,6 @@ #define ENABLE_SPIFFS_SUPPORT #define ENABLE_WIFI_SUPPORT #define ENABLE_MDNS_SUPPORT -#define ENABLE_WEBSERVER_SUPPORT #define ENABLE_I2C_SUPPORT #define ENABLE_SOCKETS_SUPPORT #define ENABLE_FREERTOS_SUPPORT