stmhal: fixing malloc when used with external libraries

This commit is contained in:
Matt Brejza 2016-07-15 00:13:07 +01:00 committed by Paul Sokolovsky
parent 37b143ce9e
commit afd4909a0f
1 changed files with 3 additions and 3 deletions

View File

@ -235,9 +235,9 @@ static inline mp_uint_t disable_irq(void) {
// garbage-collected heap. For completeness, emulate C heap via
// GC heap. Note that MicroPython core never uses malloc() and friends,
// so these defines are mostly to help extension module writers.
#define malloc gc_alloc
#define free gc_free
#define realloc gc_realloc
#define malloc(n) m_malloc(n)
#define free(p) m_free(p)
#define realloc(p, n) m_realloc(p, n)
// see stm32f4XX_hal_conf.h USE_USB_FS & USE_USB_HS
// at the moment only USB_FS is supported