From f55e931e3e44e14a978d34674b08ef33e236d189 Mon Sep 17 00:00:00 2001 From: Willy-JL <49810075+Willy-JL@users.noreply.github.com> Date: Fri, 18 Oct 2024 02:57:42 +0100 Subject: [PATCH] JS: Test moving JS runner into flash --- applications/system/js_app/application.fam | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/applications/system/js_app/application.fam b/applications/system/js_app/application.fam index a29251f0e..ef8105d6b 100644 --- a/applications/system/js_app/application.fam +++ b/applications/system/js_app/application.fam @@ -1,15 +1,15 @@ App( appid="js_app", name="JS Runner", - apptype=FlipperAppType.EXTERNAL, + apptype=FlipperAppType.SYSTEM, entry_point="js_app", - cdefines=["JS_RUNNER_FAP"], + # cdefines=["JS_RUNNER_FAP"], # Sources separation breaks linking when internal, comment as needed - sources=[ - "*.c*", - "!modules", - "modules/js_flipper.c", - ], + # sources=[ + # "*.c*", + # "!modules", + # "modules/js_flipper.c", + # ], stack_size=2 * 1024, resources="examples", order=0, @@ -34,7 +34,7 @@ App( appid="js_app_start", apptype=FlipperAppType.STARTUP, entry_point="js_app_on_system_start", - sources=["js_start.c"], + # sources=["js_start.c"], order=160, )