Fix break due to ram size on ESP32.

This commit is contained in:
Brad Nelson
2022-02-04 09:33:46 -08:00
parent 7fb96c4dd1
commit efdb38b329
3 changed files with 2 additions and 2 deletions

View File

@ -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 \

View File

@ -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

View File

@ -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