We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8061e8e commit c920dbbCopy full SHA for c920dbb
main.c
@@ -149,7 +149,7 @@ STATIC vm_memory_t allocate_vm_memory(void) {
149
(void)common_hal_os_getenv_int("CIRCUITPY_PYSTACK_SIZE", &pystack_size);
150
// Check if value is valid
151
pystack_size = pystack_size - pystack_size % sizeof(size_t); // Round down to multiple of 4.
152
- if ((CIRCUITPY_PYSTACK_SIZE != pystack_size) && (pystack_size < 384)) {
+ if (pystack_size < 384) {
153
serial_write_compressed(translate("\nWARNING: Invalid CIRCUITPY_PYSTACK_SIZE, defaulting back to build value.\n\n"));
154
pystack_size = CIRCUITPY_PYSTACK_SIZE; // Reset
155
}
0 commit comments