eLooM for STM32 application
v3.3.0
|
System memory management. More...
Go to the source code of this file.
Functions | |
void * | SysAlloc (size_t nSize) |
void | SysFree (void *pvData) |
System memory management.
This file declares API function to alloc and release block of memory. The application can use its own memory allocation strategy.
Copyright (c) 2020 STMicroelectronics. All rights reserved.
This software is licensed under terms that can be found in the LICENSE file in the root directory of this software component. If no LICENSE file comes with this software, it is provided AS-IS.
void * SysAlloc | ( | size_t | nSize | ) |
Allocate a block of memory of a specific size.
nSize | [IN] specifies the size in byte of the requested memory. |
void SysFree | ( | void * | pvData | ) |
Release a block of memory.
pvData | [IN] specifies the start of teh block of memory to release. |