mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
* Add pre-compiled MicroPython library and headers. * Change Makefile to link libmp.a remove libusbgeneric * Change linker script to support MicroPython memory layout. * Change OTG handle name in stm32f4xx_it.c * Change main to init libmp and export Python functions. * Add MicroPython bindings to src
9 lines
173 B
C
9 lines
173 B
C
extern uint32_t _ram_start;
|
|
extern uint32_t _heap_start;
|
|
extern uint32_t _ram_end;
|
|
extern uint32_t _heap_end;
|
|
|
|
void gc_collect(void);
|
|
|
|
MP_DECLARE_CONST_FUN_OBJ(pyb_gc_obj);
|