Files
MXC-A36_2024.04.17/MXC-Screen_display/lvgl_Dashboard_8080/Src/dram_mem.h

10 lines
168 B
C

#ifndef __BTDM_MEM_H__
#define __BTDM_MEM_H__
#include <stdint.h>
void * dram_malloc( uint32_t xWantedSize );
void dram_free( void * pv );
#endif // __BTDM_MEM_H__