From 0c63112ca7a40842180d8296d3ea15260d593b38 Mon Sep 17 00:00:00 2001 From: Carlos Medeiros Date: Thu, 16 May 2024 17:23:03 +0100 Subject: [PATCH] setting APP_MIN_STACK_SIZE for all devices --- app/Makefile | 2 +- app/Makefile.version | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Makefile b/app/Makefile index f73c5aae..aba35df4 100755 --- a/app/Makefile +++ b/app/Makefile @@ -70,7 +70,7 @@ endif ifeq ($(TARGET_NAME),TARGET_NANOS) APP_STACK_MIN_SIZE := 1600 -else ifeq ($(TARGET_NAME),TARGET_NANOX) +else APP_STACK_MIN_SIZE := 3800 endif diff --git a/app/Makefile.version b/app/Makefile.version index 782e3ff0..cbfcb90d 100644 --- a/app/Makefile.version +++ b/app/Makefile.version @@ -3,4 +3,4 @@ APPVERSION_M=2 # This is the `spec_version` field of `Runtime` APPVERSION_N=35 # This is the patch version of this release -APPVERSION_P=21 +APPVERSION_P=22