mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
Merge pull request #2710 from Sighthesia/patch-1
Some checks failed
🔥 Firmware Build / build-firmware (ARDUINO_GIGA) (push) Has been cancelled
🔥 Firmware Build / build-firmware (ARDUINO_NANO_33_BLE_SENSE) (push) Has been cancelled
🔥 Firmware Build / build-firmware (ARDUINO_NANO_RP2040_CONNECT) (push) Has been cancelled
🔥 Firmware Build / build-firmware (ARDUINO_NICLA_VISION) (push) Has been cancelled
🔥 Firmware Build / build-firmware (ARDUINO_PORTENTA_H7) (push) Has been cancelled
🔥 Firmware Build / build-firmware (DOCKER) (push) Has been cancelled
🔥 Firmware Build / build-firmware (OPENMV2) (push) Has been cancelled
🔥 Firmware Build / build-firmware (OPENMV3) (push) Has been cancelled
🔥 Firmware Build / build-firmware (OPENMV4) (push) Has been cancelled
🔥 Firmware Build / build-firmware (OPENMV4P) (push) Has been cancelled
🔥 Firmware Build / build-firmware (OPENMVPT) (push) Has been cancelled
🔥 Firmware Build / build-firmware (OPENMV_AE3) (push) Has been cancelled
🔥 Firmware Build / build-firmware (OPENMV_RT1060) (push) Has been cancelled
🔥 Firmware Build / code-size-report (push) Has been cancelled
🔥 Firmware Build / stable-release (push) Has been cancelled
🔥 Firmware Build / development-release (push) Has been cancelled
Some checks failed
🔥 Firmware Build / build-firmware (ARDUINO_GIGA) (push) Has been cancelled
🔥 Firmware Build / build-firmware (ARDUINO_NANO_33_BLE_SENSE) (push) Has been cancelled
🔥 Firmware Build / build-firmware (ARDUINO_NANO_RP2040_CONNECT) (push) Has been cancelled
🔥 Firmware Build / build-firmware (ARDUINO_NICLA_VISION) (push) Has been cancelled
🔥 Firmware Build / build-firmware (ARDUINO_PORTENTA_H7) (push) Has been cancelled
🔥 Firmware Build / build-firmware (DOCKER) (push) Has been cancelled
🔥 Firmware Build / build-firmware (OPENMV2) (push) Has been cancelled
🔥 Firmware Build / build-firmware (OPENMV3) (push) Has been cancelled
🔥 Firmware Build / build-firmware (OPENMV4) (push) Has been cancelled
🔥 Firmware Build / build-firmware (OPENMV4P) (push) Has been cancelled
🔥 Firmware Build / build-firmware (OPENMVPT) (push) Has been cancelled
🔥 Firmware Build / build-firmware (OPENMV_AE3) (push) Has been cancelled
🔥 Firmware Build / build-firmware (OPENMV_RT1060) (push) Has been cancelled
🔥 Firmware Build / code-size-report (push) Has been cancelled
🔥 Firmware Build / stable-release (push) Has been cancelled
🔥 Firmware Build / development-release (push) Has been cancelled
ports: Add conditional compilation for py_fir_init0()
This commit is contained in:
commit
5acf5baf92
@ -1,4 +1,5 @@
|
||||
set(MICROPY_PY_CSI 1)
|
||||
set(MICROPY_PY_FIR 1)
|
||||
set(MICROPY_PY_ULAB 1)
|
||||
set(MICROPY_PY_NINAW10 1)
|
||||
set(MICROPY_PY_WINC1500 0)
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
set(MICROPY_PY_CSI 1)
|
||||
set(MICROPY_PY_FIR 1)
|
||||
set(MICROPY_PY_ULAB 1)
|
||||
set(MICROPY_PY_NINAW10 0)
|
||||
set(MICROPY_PY_WINC1500 0)
|
||||
|
||||
@ -95,7 +95,9 @@ soft_reset:
|
||||
mp_init();
|
||||
|
||||
// Initialise low-level sub-systems.
|
||||
#if MICROPY_PY_FIR
|
||||
py_fir_init0();
|
||||
#endif // MICROPY_PY_FIR
|
||||
#if MICROPY_PY_TV
|
||||
py_tv_init0();
|
||||
#endif
|
||||
|
||||
@ -180,7 +180,9 @@ soft_reset:
|
||||
fb_alloc_init0();
|
||||
framebuffer_init0();
|
||||
|
||||
#if MICROPY_PY_FIR
|
||||
py_fir_init0();
|
||||
#endif // MICROPY_PY_FIR
|
||||
|
||||
#if MICROPY_PY_CSI
|
||||
if (omv_csi_init() != 0) {
|
||||
|
||||
@ -191,7 +191,9 @@ soft_reset:
|
||||
mp_init();
|
||||
|
||||
// Initialise low-level sub-systems.
|
||||
#if MICROPY_PY_FIR
|
||||
py_fir_init0();
|
||||
#endif // MICROPY_PY_FIR
|
||||
#if MICROPY_PY_TV
|
||||
py_tv_init0();
|
||||
#endif
|
||||
|
||||
Loading…
Reference in New Issue
Block a user