Merge pull request #1087 from dhalbert/increase-dyn-stack-size

increase new dynamic stack size to a comfortable value for now
This commit is contained in:
Scott Shawcroft 2018-08-05 22:08:13 -07:00 committed by GitHub
commit 2029c4e87e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -340,6 +340,6 @@ void run_background_tasks(void);
// TODO(tannewt): Make this 6k+ for any non-express M4 boards because they cache sectors on the
// stack.
#define CIRCUITPY_DEFAULT_STACK_SIZE 2048
#define CIRCUITPY_DEFAULT_STACK_SIZE 4096
#endif // __INCLUDED_MPCONFIGPORT_H

View File

@ -242,6 +242,6 @@ void run_background_tasks(void);
#define MICROPY_VM_HOOK_RETURN run_background_tasks();
//#define CIRCUITPY_BOOT_OUTPUT_FILE "/boot_out.txt"
#define CIRCUITPY_DEFAULT_STACK_SIZE 2048
#define CIRCUITPY_DEFAULT_STACK_SIZE 4096
#endif