Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of Smoothie by
ahbmalloc.h
00001 #ifndef _AHBMALLOC_H 00002 #define _AHBMALLOC_H 00003 00004 #include <stdint.h> 00005 #include <stdlib.h> 00006 00007 typedef enum { 00008 AHB_BANK_0, 00009 AHB_BANK_1, 00010 AHB_NUM_BANKS 00011 } BANK; 00012 00013 void* ahbmalloc(size_t size, BANK bank) __attribute__ ((warning("deprecated, please use new (AHB0) blah(); or blah = AHB0.alloc(size);"))); 00014 void ahbfree(void* ptr, size_t size); 00015 00016 #endif /* _AHBMALLOC_H */
Generated on Tue Jul 12 2022 20:09:00 by
1.7.2
