Merge pull request #1067 from openmv/fir_module

Move py_fir module to generic modules.
This commit is contained in:
Ibrahim Abd Elkader 2020-12-30 02:39:55 +02:00 committed by GitHub
commit 7e513ba158
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit 92c5b360464995d95e861bd72f707d88097f4bca
Subproject commit dfb96a35ae19e8439842b0bbb43ce00515409cf4

View File

@ -44,6 +44,7 @@ SRCS += $(addprefix modules/, \
py_omv.c \
py_sensor.c \
py_tf.c \
py_fir.c \
)
SRCS += $(addprefix imlib/, \

View File

@ -13,7 +13,6 @@
#include "py/nlr.h"
#include "py/gc.h"
#include "py/mphal.h"
#include "systick.h"
#include "cambus.h"
#include "MLX90640_API.h"
@ -24,7 +23,6 @@
#include "omv_boardconfig.h"
#include "framebuffer.h"
#include "sensor.h"
#include "py_helper.h"
#include "py_assert.h"
#include "py_image.h"

View File

@ -145,6 +145,7 @@ FIRM_OBJ += $(addprefix $(BUILD)/$(OMV_DIR)/modules/, \
py_omv.o \
py_sensor.o \
py_tf.o \
py_fir.o \
)
FIRM_OBJ += $(addprefix $(BUILD)/$(OMV_DIR)/imlib/, \