ports/all: Update MicroPython port config.

Signed-off-by: iabdalkader <i.abdalkader@gmail.com>
This commit is contained in:
iabdalkader 2024-11-29 15:23:24 +01:00
parent c698808d52
commit e300208b67
4 changed files with 10 additions and 0 deletions

View File

@ -32,6 +32,7 @@
} while (0);
#define MICROPY_ENABLE_VM_ABORT (1)
#define MICROPY_OPT_COMPUTED_GOTO (1)
#define MICROPY_GC_SPLIT_HEAP (1)
#define CYW43_CHIPSET_FIRMWARE_INCLUDE_FILE "lib/cyw43-driver/firmware/w4343WA1_7_45_98_102_combined.h"
#define MICROPY_BANNER_NAME_AND_VERSION "OpenMV " OPENMV_GIT_TAG "; MicroPython " MICROPY_GIT_TAG

View File

@ -32,4 +32,7 @@
} while (0);
#define MICROPY_ENABLE_VM_ABORT (1)
#define MICROPY_OPT_COMPUTED_GOTO (1)
#define MICROPY_SCHEDULER_DEPTH (8)
#define MICROPY_SCHEDULER_STATIC_NODES (1)
#define MICROPY_BANNER_NAME_AND_VERSION "OpenMV " OPENMV_GIT_TAG "; MicroPython " MICROPY_GIT_TAG

View File

@ -32,4 +32,5 @@
} while (0);
#define MICROPY_ENABLE_VM_ABORT (1)
#define MICROPY_OPT_COMPUTED_GOTO (1)
#define MICROPY_BANNER_NAME_AND_VERSION "OpenMV " OPENMV_GIT_TAG "; MicroPython " MICROPY_GIT_TAG

View File

@ -32,7 +32,12 @@
} while (0);
#define MICROPY_ENABLE_VM_ABORT (1)
#define MICROPY_OPT_COMPUTED_GOTO (1)
#define MICROPY_GC_SPLIT_HEAP (1)
#define MICROPY_PY_VFS (1)
#define MICROPY_PY_SOCKET_EXTENDED_STATE (1)
#define MICROPY_BANNER_NAME_AND_VERSION "OpenMV " OPENMV_GIT_TAG "; MicroPython " MICROPY_GIT_TAG
#define MICROPY_BOARD_FATAL_ERROR __fatal_error
#define MICROPY_HW_DMA_ENABLE_AUTO_TURN_OFF (0)
void __fatal_error(const char *);