Merge pull request #1643 from openmv/niclav_bluetooth

boards/NICLAV: Enable Bluetooth.
This commit is contained in:
Ibrahim Abdelkader 2022-05-20 15:46:10 +02:00 committed by GitHub
commit f22c6745c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 2 deletions

@ -1 +1 @@
Subproject commit c9e87104a0129d7d104d8e015e85901705c9e6cc
Subproject commit 5d8b34615a7eaf5f4467849a688278fad542dcd1

View File

@ -7,3 +7,4 @@ freeze ("$(MPY_LIB_DIR)/", "rpc.py")
freeze ("$(MPY_LIB_DIR)/", "rtsp.py")
freeze ("$(MPY_LIB_DIR)/", "vl53l1x.py")
freeze ("$(MPY_LIB_DIR)/", "urequests.py")
freeze ("$(MPY_LIB_DIR)/", "ble_advertising.py")

View File

@ -151,7 +151,7 @@
#define OMV_FB_SIZE (400K) // FB memory: header + VGA/GS image
#define OMV_FB_ALLOC_SIZE (100K) // minimum fb alloc size
#define OMV_STACK_SIZE (64K)
#define OMV_HEAP_SIZE (192K)
#define OMV_HEAP_SIZE (183K)
#define OMV_LINE_BUF_SIZE (3 * 1024) // Image line buffer round(640 * 2BPP * 2 buffers).
#define OMV_MSC_BUF_SIZE (2K) // USB MSC bot data

View File

@ -19,6 +19,8 @@ MICROPY_PY_WINC1500 = 0
MICROPY_PY_IMU = 1
MICROPY_PY_LWIP = 1
MICROPY_PY_NETWORK_CYW43 = 1
MICROPY_PY_BLUETOOTH = 1
MICROPY_BLUETOOTH_NIMBLE = 1
MICROPY_PY_AUDIO = 1
MICROPY_PY_MICRO_SPEECH = 0
MICROPY_PY_LCD = 1