From 705d3eb0320b01ce48e2790298e6802a254aa03e Mon Sep 17 00:00:00 2001 From: xs5871 Date: Sat, 11 Feb 2023 17:05:14 +0000 Subject: [PATCH] Remove supervisor stack limit from boot.py --- boot.py | 3 --- docs/en/flashing.md | 4 +--- 2 files changed, 1 insertion(+), 6 deletions(-) mode change 100755 => 100644 boot.py diff --git a/boot.py b/boot.py old mode 100755 new mode 100644 index aafa105..e69de29 --- a/boot.py +++ b/boot.py @@ -1,3 +0,0 @@ -import supervisor - -supervisor.set_next_stack_limit(4096 + 4096) diff --git a/docs/en/flashing.md b/docs/en/flashing.md index f807bcc..f23bebe 100644 --- a/docs/en/flashing.md +++ b/docs/en/flashing.md @@ -9,9 +9,7 @@ Linux). Given `make` and `rsync` are available on your system (in `$PATH`), the following will copy the `kmk` tree to your CircuitPython device, and will copy the file defined as `USER_KEYMAP` as your `main.py`. It will also copy our -`boot.py`, which allocates a larger stack size (simply - more of the device's -RAM will be available to KMK and your keyboard config) than CircuitPython's -default. If any of these files exist on your CircuitPython device already, they +`boot.py`. If any of these files exist on your CircuitPython device already, they will be overwritten without a prompt. If you get permissions errors here, **don't run make as root or with sudo**. See