boards/NICLA_VISION: Reduce flash usage.

This commit is contained in:
iabdalkader 2024-02-09 16:50:03 +02:00
parent 552fa2e808
commit b69f9306d4
2 changed files with 8 additions and 3 deletions

View File

@ -2,7 +2,6 @@ include("$(MPY_DIR)/extmod/asyncio")
# Drivers
require("lsm6dsox")
require("espflash")
require("onewire")
require("ds18x20")
require("dht")

View File

@ -1,12 +1,18 @@
/*
* This file is part of the OpenMV project.
* Copyright (c) 2013-2016 Kwabena W. Agyeman <kwagyeman@openmv.io>
*
* Copyright (c) 2024 Ibrahim Abdelkader <iabdalkader@openmv.io>
* Copyright (c) 2024 Kwabena W. Agyeman <kwagyeman@openmv.io>
*
* This work is licensed under the MIT license, see the file LICENSE for details.
*
* Ulab config file.
*
*/
#ifndef __ULAB_CONFIG_H__
#define __ULAB_CONFIG_H__
// Override ulab defaults here.
#define NDARRAY_BINARY_USES_FUN_POINTER (1)
#define ULAB_VECTORISE_USES_FUN_POINTER (1)
#define ULAB_SCIPY_HAS_OPTIMIZE_MODULE (1)
#define ULAB_SCIPY_HAS_SPECIAL_MODULE (0)
#endif //__ULAB_CONFIG_H__