mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
Merge pull request #1718 from openmv/uvc_dma_alloc
uvc: Link dma_alloc allocator.
This commit is contained in:
commit
c53140cb78
@ -519,6 +519,7 @@ UVC_OBJ += $(addprefix $(BUILD)/$(CMSIS_DIR)/src/,\
|
||||
|
||||
UVC_OBJ += $(addprefix $(BUILD)/$(OMV_DIR)/alloc/, \
|
||||
fb_alloc.o \
|
||||
dma_alloc.o \
|
||||
unaligned_memcpy.o \
|
||||
)
|
||||
|
||||
|
||||
@ -57,6 +57,12 @@ void __attribute__((noreturn)) __fatal_error()
|
||||
}
|
||||
}
|
||||
|
||||
void __attribute__((noreturn)) mp_raise_msg_varg(const void *err, ...)
|
||||
{
|
||||
while (1) {
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef STACK_PROTECTOR
|
||||
uint32_t __stack_chk_guard=0xDEADBEEF;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user