PORTENTA: Enable WiFi.

This commit is contained in:
iabdalkader 2020-10-09 19:10:35 +02:00
parent c41623d333
commit da3cf72f27
3 changed files with 6 additions and 8 deletions

View File

@ -12,7 +12,7 @@
#define __IMLIB_CONFIG_H__ #define __IMLIB_CONFIG_H__
// Enable LAB LUT // Enable LAB LUT
#define IMLIB_ENABLE_LAB_LUT //#define IMLIB_ENABLE_LAB_LUT
// Enable YUV LUT // Enable YUV LUT
//#define IMLIB_ENABLE_YUV_LUT //#define IMLIB_ENABLE_YUV_LUT

View File

@ -137,8 +137,8 @@
#define OMV_FB_SIZE (4M) // FB memory: header + VGA/GS image #define OMV_FB_SIZE (4M) // FB memory: header + VGA/GS image
#define OMV_FB_ALLOC_SIZE (3M) // minimum fb alloc size #define OMV_FB_ALLOC_SIZE (3M) // minimum fb alloc size
#define OMV_STACK_SIZE (15K) #define OMV_STACK_SIZE (32K)
#define OMV_HEAP_SIZE (224K) #define OMV_HEAP_SIZE (212K)
#define OMV_SDRAM_SIZE (8 * 1024 * 1024) // This needs to be here for UVC firmware. #define OMV_SDRAM_SIZE (8 * 1024 * 1024) // This needs to be here for UVC firmware.
#define OMV_SDRAM_TEST (0) #define OMV_SDRAM_TEST (0)
@ -154,9 +154,7 @@
#define OMV_DTCM_ORIGIN 0x20000000 // Note accessible by CPU and MDMA only. #define OMV_DTCM_ORIGIN 0x20000000 // Note accessible by CPU and MDMA only.
#define OMV_DTCM_LENGTH 128K #define OMV_DTCM_LENGTH 128K
#define OMV_SRAM1_ORIGIN 0x30000000 #define OMV_SRAM1_ORIGIN 0x30000000
#define OMV_SRAM1_LENGTH 256K #define OMV_SRAM1_LENGTH 288K
#define OMV_SRAM3_ORIGIN 0x30040000
#define OMV_SRAM3_LENGTH 32K
#define OMV_SRAM4_ORIGIN 0x38000000 #define OMV_SRAM4_ORIGIN 0x38000000
#define OMV_SRAM4_LENGTH 64K #define OMV_SRAM4_LENGTH 64K
#define OMV_AXI_SRAM_ORIGIN 0x24000000 #define OMV_AXI_SRAM_ORIGIN 0x24000000

View File

@ -14,5 +14,5 @@ FROZEN_MPY_DIR=$(TOP_DIR)/../scripts/libraries
OMV_BOARD_EXTRA_CFLAGS = -DCORE_CM7 OMV_BOARD_EXTRA_CFLAGS = -DCORE_CM7
MICROPY_PY_ULAB = 1 MICROPY_PY_ULAB = 1
MICROPY_PY_WINC1500 = 0 MICROPY_PY_WINC1500 = 0
MICROPY_PY_LWIP = 0 MICROPY_PY_LWIP = 1
MICROPY_PY_NETWORK_CYW43 = 0 MICROPY_PY_NETWORK_CYW43 = 1